8000 Python-software-engineering/source-code/code-organization at master · gjbex/Python-software-engineering · GitHub
[go: up one dir, main page]

Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Code organization

Simple example of code organization in packages, modules.

What is it?

  1. my_pkg: Python package.
  2. __init__.py: package-level documentation and version information.
  3. my_module.py: simple module in the my_pkg package.
  4. my_script.py: Python script that uses the my_module module in the my_pkg package.
0