Skip to content

cjrequena/learning-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Learning Python

[Repository Structure and Python]

your_project/
├── src/                    # Source code
│   └── your_package/       # Main package
│       ├── __init__.py
│       ├── module1.py
│       └── module2.py
│
├── tests/                  # Unit tests
│   ├── __init__.py
│   ├── test_module1.py
│   └── test_module2.py
│
├── scripts/                # Standalone scripts
│   └── run_this.py
│
├── docs/                   # Documentation
│   └── index.md
│
├── .gitignore              # Git ignore file
├── pyproject.toml          # Modern Python project config (preferred)
├── requirements.txt        # Dependencies (for pip)
├── README.md               # Project overview
├── LICENSE                 # License file
└── setup.cfg / setup.py    # Package info (if needed)

About

Learning Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published