pymodulegen
Table of Contents
Description
pymodulegen is a project aimed to generate python modules and packages, and add root directory of the project in sys path to allow importing parent modules in child using absolute paths relative to root directory.
Issue Resolution
This section outlines the types of issues and problems that our package, pymodulegen, is designed to address. If you encounter any of the following scenarios, our package can be a valuable solution:
Problem 1: Importing modules from parent packages
Since Python 3.3, referencing or importing a module in the parent directory is not allowed. Hence, we must handle it manually. For example, in a folder structure like the one below,
.
├── directory_tree.txt
└── src
├── main.py
└── api
├── __init__.py
└── common
├── load_environment.py
├── __init__.py
└── v1
├── __init__.py
└── endpoints
├── chat.py
├── __init__.py
If you wish to import 'load_environment' into 'chat.py', you will get the following error:
chat.py:
from src.api.common import load_environment
Error:
File "your-machine-path\project-root\src\api\v1\endpoints\chat.py", line 1, in <module>
from src.api.common import load_environment
ModuleNotFoundError: No module named 'src'
Problem 2: Creating folder structures, packages and modules for a python project
Currently, in Python development, we have to either manually create files and folders (along with init.py files) or use a third-party template provider like Cookiecutter, FastAPI Project Generator,Django-style CLI, etc. However, if you want to generate packages as per your liking in a custom fashion, it can only be done manually for the time being.
How Our Package Helps
When we setup the folder structures using our package, it includes codes in the init.py file (or in the module itself, depending on the user preference), which will allow us to do imports using absolute paths (not relative paths, like the usage of '.','..') even from parent packages. Also, it is pretty easy to setup folder structures using our command-line tool rather than doing it manually.
Installation
Using pip
pip install pymodulegen
Clone from source
git clone https://github.com/YashNarK/pymodulegen.git
Usage
To generate a module or package and set root directory, use the following command:
pymodulegen module_name [--options]
Options:
module_name: The name of the module to generate.--directory: (Optional) The directory where the module should be created.--root_directory: (Optional) The root directory for sys.path.--is_module_only: (Optional) Specify if the module should be used as a module only.--not_is_module_only: (Optional) Specify if the module should be used as a main program as well
Contributing
Contributions are welcome! Please follow these guidelines:
- Create an issue to discuss major changes or enhancements.
- Fork the repository and create a new branch for your contribution.
- Submit a pull request with a clear description of your changes.
- Follow coding standards and maintain code quality.
License
This project is licensed under the MIT License.
Acknowledgments
I would like to acknowledge the following resources that were helpful during the development of this project:
- GeeksforGeeks - Python Import from Parent Directory: This tutorial provided valuable insights into importing modules from parent directories in Python. It was a useful reference while working on this project.
Contact
- Email: narenkrithick@gmail.com
- GitHub: YashNarK
Examples and Screenshots
Example 1
Generate a module named "mymodule" in the current directory (default settings).
Example 2
Generate a module named "chatgpt" in the "app/api/v1/endpoints" directory with root directory "project-root" and use it as a main program as well.
Example 3
Generate a package (with init.py) named "my_package" in the current directory (default settings) with a module my_module.
Release files for pymodulegen 0.0.8
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pymodulegen-0.0.8.tar.gz | 7.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pymodulegen-0.0.8-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 14.2 kB
Release files / pymodulegen-0.0.8.tar.gz
| Download URL | pymodulegen-0.0.8.tar.gz |
|---|---|
| Size | 7.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
4db77a749378d66015295e8db7d17a9014fff12599283125c739219b490838c6
|
|
BLAKE2b-256 checksum How to use checksums |
6f743956a4c662284b5742722367883a2d77532453cdac9bea8def6c162c6dfe
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.10.0
|
Release files / pymodulegen-0.0.8-py3-none-any.whl
| Download URL | pymodulegen-0.0.8-py3-none-any.whl |
|---|---|
| Size | 6.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
bb3be906e1fdfb3d2f2404ef4f308acc03064e23f0efe5a9035c145314399108
|
|
BLAKE2b-256 checksum How to use checksums |
7bd05ab2ec66e9060a38d21881bf7a5ca705cc7d5a48a6f3b0f70d39c46559ba
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.10.0
|