fastapienv


Namefastapienv JSON
Version 1.0.1 PyPI version JSON
download
home_page
SummaryA Python module that creates a Python environment and generates FastAPI boilerplate code.
upload_time2023-06-19 20:09:37
maintainer
docs_urlNone
authorGautam Sagar Mallela
requires_python
license
keywords python module fastapi boilerplate
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Your Module

A Python module that creates a Python environment and generates FastAPI boilerplate code.

This Module can even run your project as soon as it creates entire environment Make sure to use other parameters.

## Installation

You can install the module using pip:

## Usage

To use the module, import it and call the `createFastApiEnvironment` function:

```python
import fastapienv

# for creating just python environment and fast api boiler plate code
createFastApiEnvironment('{{your_prefered_env_name}}')

# here is the example for all the options provided in my module
createFastApiEnvironment("myenv", activate_env=True, start_server=True, server_host="localhost", server_port=8000, server_reload=True)

# activate_env will activate the environment after creating it.
# start_server will start the fast api server using uvicorn.
# server_host will be used to give the ip address or host name.
# server_port will be used to change the port number at which your fast api server should run
# server_reload will be used for dynamic reloading of your server if any changes happens to your files.

```
            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "fastapienv",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "python module fastapi boilerplate",
    "author": "Gautam Sagar Mallela",
    "author_email": "gautamsagar.mallela99@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/89/26/93f2e69875425c894242ce6964fbad5725bf4972e8daa15c98008bc7caea/fastapienv-1.0.1.tar.gz",
    "platform": null,
    "description": "# Your Module\n\nA Python module that creates a Python environment and generates FastAPI boilerplate code.\n\nThis Module can even run your project as soon as it creates entire environment Make sure to use other parameters.\n\n## Installation\n\nYou can install the module using pip:\n\n## Usage\n\nTo use the module, import it and call the `createFastApiEnvironment` function:\n\n```python\nimport fastapienv\n\n# for creating just python environment and fast api boiler plate code\ncreateFastApiEnvironment('{{your_prefered_env_name}}')\n\n# here is the example for all the options provided in my module\ncreateFastApiEnvironment(\"myenv\", activate_env=True, start_server=True, server_host=\"localhost\", server_port=8000, server_reload=True)\n\n# activate_env will activate the environment after creating it.\n# start_server will start the fast api server using uvicorn.\n# server_host will be used to give the ip address or host name.\n# server_port will be used to change the port number at which your fast api server should run\n# server_reload will be used for dynamic reloading of your server if any changes happens to your files.\n\n```",
    "bugtrack_url": null,
    "license": "",
    "summary": "A Python module that creates a Python environment and generates FastAPI boilerplate code.",
    "version": "1.0.1",
    "project_urls": null,
    "split_keywords": [
        "python",
        "module",
        "fastapi",
        "boilerplate"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "892693f2e69875425c894242ce6964fbad5725bf4972e8daa15c98008bc7caea",
                "md5": "0d8c41c49e8a077c549ae51aed33f532",
                "sha256": "4b6cfae9cdfb0d5ab8a5de74743bb485b648180d2e027f2585d01aaf8840ff6f"
            },
            "downloads": -1,
            "filename": "fastapienv-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "0d8c41c49e8a077c549ae51aed33f532",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2854,
            "upload_time": "2023-06-19T20:09:37",
            "upload_time_iso_8601": "2023-06-19T20:09:37.723499Z",
            "url": "https://files.pythonhosted.org/packages/89/26/93f2e69875425c894242ce6964fbad5725bf4972e8daa15c98008bc7caea/fastapienv-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-19 20:09:37",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "fastapienv"
}
        
Elapsed time: 0.09662s