# Python Project Template Example 1 Create Basic Project

> Sub-skill of python-project-template: Example 1: Create Basic Project (+2).

- Skill: `vamseeachanta/python-project-template-example-1-create-basic-project` (Agent Skill)
- Install (CLI): `npx skillmds@latest add vamseeachanta/python-project-template-example-1-create-basic-project`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vamseeachanta/python-project-template-example-1-create-basic-project/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: vamseeachanta (https://skillmd.com/u/vamseeachanta)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/vamseeachanta/python-project-template-example-1-create-basic-project

---


# Example 1: Create Basic Project (+2)

## Example 1: Create Basic Project


```bash
# Invoke skill
/python-project-template my-analysis-tool

# Result: Complete project structure created
# - pyproject.toml configured
# - src/my_analysis_tool/ with core module
# - tests/ with conftest.py and example test
# - UV environment ready
```


## Example 2: Create Library Project


```bash
# Create library project
/python-project-template my-library --type library

# Additional features:
# - Package publishing configuration
# - Documentation with Sphinx
# - API reference structure
```


## Example 3: Create Data Pipeline Project


```bash
# Create data pipeline project
/python-project-template data-pipeline --type pipeline

# Additional features:
# - data/raw/ and data/processed/ directories
# - reports/ for output
# - scripts/ with execution templates
```

