PyBlueprintMaker


NamePyBlueprintMaker JSON
Version 0.1.2 PyPI version JSON
download
home_pagehttps://github.com/patimejia/PyBlueprintMaker
SummaryPython-based tool that helps you create organized project directories or structures. It uses best practices and incorporates fixtures, pytest, and the Python Standard Library to ensure the quality of the project's organization and structure
upload_time2023-03-29 23:12:25
maintainer
docs_urlNone
authorPatricia Mejia
requires_python
license
keywords project-scaffolding project-structure python-project-template python-project-generator best-practices pytest fixtures python-standard-library code-quality project-management
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PyBlueprintMaker

`PyBlueprintMaker` is a Python-based project scaffolding tool that helps you create well-organized project structures using best-practices, `fixtures`, `pytest`, and the Python Standard Library. With support for various folder configurations and comprehensive testing, PyBlueprintMaker is the ultimate solution for maintainable projects.

## Why is File Structure Important?

A well-organized file structure is crucial for any software project. It makes your code easier to understand, navigate, and maintain. Following best practices for file structure ensures consistency across projects, which can be especially helpful when collaborating with others or when you revisit your project after some time.

## Best Practices

Some best practices for organizing Python projects include:

- Separating source code and test code into different folders.
- Using meaningful and descriptive names for files and folders.
- Including a `README.md` file to provide an overview and usage instructions.
- Adding a `LICENSE` file to specify the terms under which the project can be used.
- Grouping related files together, such as scripts for different project structures.

## Installation

To install PyBlueprintMaker, you can use `pip`:

```
pip install PyBlueprintMaker
```

Alternatively, you can install from source by cloning this repository and running:

```
python setup.py install
```

Make sure to also include any necessary dependencies that are not automatically installed.

## Usage

To use PyBlueprintMaker, run the following command:

```
python main.py [output_path] [structure]

```

Where `output_path` is the desired output path for the project structure and `structure` is the project structure to create. The supported structures are `web_app`, `data_science`, or `modular`.

For example, to create a `web_app` project structure in a folder named `my_project`, run the following command:

```
python main.py my_project web_app

```

## Outputs and Structures

PyBlueprintMaker supports four project structures: `etl`, `modular`, `ml`, and `web`.

- The `etl` structure is designed for data engineering projects and includes directories for src, tests, and data with subdirectories for extract, transform, and load. This structure helps ensure the separation of concerns and promotes modularity in data processing.

- The `modular` structure is intended for projects that consist of reusable modules that perform specific functions. It includes directories for src and tests, with the option to specify the module names as arguments. This structure helps facilitate code reuse and modular design.

- The `ml` structure is designed for machine learning projects and includes directories for src, tests, and data with subdirectories for data and models. This structure promotes good coding practices for machine learning, including separate data and model subdirectories, and separate preprocess, features, train, and evaluate scripts.

- The `web` structure is intended for web application projects and includes directories for src, tests, static, and templates. This structure follows best practices for web development, with src containing the application logic, static containing static files such as CSS and JavaScript, and templates containing the HTML templates.

## Contributing

If you find any issues or have suggestions, feel free to open an issue or submit a pull request.

## License

PyBlueprintMaker is licensed under the [MIT LICENSE](LICENSE).

## Support

If you like this project, please consider sharing a coffee. Thank you! 🦉

<a href="https://www.buymeacoffee.com/patimejiaS" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-blue.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/patimejia/PyBlueprintMaker",
    "name": "PyBlueprintMaker",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "project-scaffolding project-structure python-project-template python-project-generator best-practices pytest fixtures python-standard-library code-quality project-management",
    "author": "Patricia Mejia",
    "author_email": "contact@patimejia.com",
    "download_url": "https://files.pythonhosted.org/packages/3d/90/3c0cb065dd4644f373824b336a2585b38d7e7abddac23d5bb5116a1330f9/PyBlueprintMaker-0.1.2.tar.gz",
    "platform": null,
    "description": "# PyBlueprintMaker\n\n`PyBlueprintMaker` is a Python-based project scaffolding tool that helps you create well-organized project structures using best-practices, `fixtures`, `pytest`, and the Python Standard Library. With support for various folder configurations and comprehensive testing, PyBlueprintMaker is the ultimate solution for maintainable projects.\n\n## Why is File Structure Important?\n\nA well-organized file structure is crucial for any software project. It makes your code easier to understand, navigate, and maintain. Following best practices for file structure ensures consistency across projects, which can be especially helpful when collaborating with others or when you revisit your project after some time.\n\n## Best Practices\n\nSome best practices for organizing Python projects include:\n\n- Separating source code and test code into different folders.\n- Using meaningful and descriptive names for files and folders.\n- Including a `README.md` file to provide an overview and usage instructions.\n- Adding a `LICENSE` file to specify the terms under which the project can be used.\n- Grouping related files together, such as scripts for different project structures.\n\n## Installation\n\nTo install PyBlueprintMaker, you can use `pip`:\n\n```\npip install PyBlueprintMaker\n```\n\nAlternatively, you can install from source by cloning this repository and running:\n\n```\npython setup.py install\n```\n\nMake sure to also include any necessary dependencies that are not automatically installed.\n\n## Usage\n\nTo use PyBlueprintMaker, run the following command:\n\n```\npython main.py [output_path] [structure]\n\n```\n\nWhere `output_path` is the desired output path for the project structure and `structure` is the project structure to create. The supported structures are `web_app`, `data_science`, or `modular`.\n\nFor example, to create a `web_app` project structure in a folder named `my_project`, run the following command:\n\n```\npython main.py my_project web_app\n\n```\n\n## Outputs and Structures\n\nPyBlueprintMaker supports four project structures: `etl`, `modular`, `ml`, and `web`.\n\n- The `etl` structure is designed for data engineering projects and includes directories for src, tests, and data with subdirectories for extract, transform, and load. This structure helps ensure the separation of concerns and promotes modularity in data processing.\n\n- The `modular` structure is intended for projects that consist of reusable modules that perform specific functions. It includes directories for src and tests, with the option to specify the module names as arguments. This structure helps facilitate code reuse and modular design.\n\n- The `ml` structure is designed for machine learning projects and includes directories for src, tests, and data with subdirectories for data and models. This structure promotes good coding practices for machine learning, including separate data and model subdirectories, and separate preprocess, features, train, and evaluate scripts.\n\n- The `web` structure is intended for web application projects and includes directories for src, tests, static, and templates. This structure follows best practices for web development, with src containing the application logic, static containing static files such as CSS and JavaScript, and templates containing the HTML templates.\n\n## Contributing\n\nIf you find any issues or have suggestions, feel free to open an issue or submit a pull request.\n\n## License\n\nPyBlueprintMaker is licensed under the [MIT LICENSE](LICENSE).\n\n## Support\n\nIf you like this project, please consider sharing a coffee. Thank you! \ud83e\udd89\n\n<a href=\"https://www.buymeacoffee.com/patimejiaS\" target=\"_blank\"><img src=\"https://cdn.buymeacoffee.com/buttons/v2/default-blue.png\" alt=\"Buy Me A Coffee\" style=\"height: 60px !important;width: 217px !important;\" ></a>\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Python-based tool that helps you create organized project directories or structures. It uses best practices and incorporates fixtures, pytest, and the Python Standard Library to ensure the quality of the project's organization and structure",
    "version": "0.1.2",
    "split_keywords": [
        "project-scaffolding",
        "project-structure",
        "python-project-template",
        "python-project-generator",
        "best-practices",
        "pytest",
        "fixtures",
        "python-standard-library",
        "code-quality",
        "project-management"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36d1a14f3a799b2b808c48f973379c5f42169e039c2185b103edaa5eeac2e969",
                "md5": "fda269173bf0492a5617d52582314719",
                "sha256": "db9eaa83643c5b19fac8f4db793fb68d141dbefaae7c580e3dd9180f8f5ac061"
            },
            "downloads": -1,
            "filename": "PyBlueprintMaker-0.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "fda269173bf0492a5617d52582314719",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 6287,
            "upload_time": "2023-03-29T23:12:23",
            "upload_time_iso_8601": "2023-03-29T23:12:23.705467Z",
            "url": "https://files.pythonhosted.org/packages/36/d1/a14f3a799b2b808c48f973379c5f42169e039c2185b103edaa5eeac2e969/PyBlueprintMaker-0.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d903c0cb065dd4644f373824b336a2585b38d7e7abddac23d5bb5116a1330f9",
                "md5": "253731a365c2d1942d80d491a1ff15e0",
                "sha256": "3669fece4114204b482578013011b8edcf64d60aa7dd1e62d5d0f10b7e849a19"
            },
            "downloads": -1,
            "filename": "PyBlueprintMaker-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "253731a365c2d1942d80d491a1ff15e0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 5467,
            "upload_time": "2023-03-29T23:12:25",
            "upload_time_iso_8601": "2023-03-29T23:12:25.724168Z",
            "url": "https://files.pythonhosted.org/packages/3d/90/3c0cb065dd4644f373824b336a2585b38d7e7abddac23d5bb5116a1330f9/PyBlueprintMaker-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-29 23:12:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "patimejia",
    "github_project": "PyBlueprintMaker",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pyblueprintmaker"
}
        
Elapsed time: 0.06586s