Metadata-Version: 2.1
Name: pyflaskcreator
Version: 1.0.3
Summary: Package that creates a simple Flask project structure to use in new projects
Home-page: UNKNOWN
Author: Jael Gonzalez
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE


<p align="center">



</p>





<h1 align="center">pyFlaskCreator </h1>

<h5 align="center">Generate simple Flask project template</h5>



# Installation



```

pip install pyflaskcreator

```



# Usage



```

pyflaskcreator [-h] -p PATH [-e ENV]



options:

  -h, --help            show this help message and exit

  -p PATH, --path PATH  Path of the app

  -e ENV, --env ENV     Python enviroment name

```

# Example

&nbsp;

**Running :** 

```

pyflaskcreator -p myApp

```



**Output**



![Output Image](https://github.com/Jael-G/pyFlaskCreator/tree/main/media/output.png)





**Project Structure**



```

/myApp

├── static/

│   ├── flask_icon.png

│   └── welcome.css

├── templates/

│   └── welcome.html

├── venv/

└── app.py

```



**Executing App**

```

cd myApp

python app.py

```



**Landing Page**



![Output Image](https://github.com/Jael-G/pyFlaskCreator/tree/main/media/landing_page.png)

