Metadata-Version: 2.1
Name: Flask-Beginner
Version: 0.0.3
Summary: a quick project directory maker for flask
Home-page: https://github.com/r1cardohj/flask-beginner
Author: r1cardohj
License: MIT
Keywords: flask extension development
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Requires-Dist: flask
Provides-Extra: all
Requires-Dist: flask-login ; extra == 'all'
Requires-Dist: flask-wtf ; extra == 'all'
Requires-Dist: flask-sqlalchemy ; extra == 'all'
Requires-Dist: Flask-Migrate ; extra == 'all'

# flask-beginner

a quick project directory maker for flask.^_^

**Quick Start**

create a new dir such as `yourproject`

``` bash
cd yourproject
python -m venv env
env\Scripts\activate 
```

then

``` bash
(env):pip install flask-beginner
(env):beginner -n myapp
```

your project will like this
``` bash
yourproject
│  .gitignore
│  README.md
│  requirements.txt
│  test.py
│  wsgi.py
│
└─myapp
    │  __init__.py
    │  extensions.py
    │  forms.py
    │  models.py
    │  settings.py
    │
    ├─blueprints
    │      __init__.py
    │
    ├─static
    └─templates
        │  base.html
        └─errors
            │  404.html
            │  400.html
            │  500.html
```

**Version**

v 0.0.1 2023.8.6 create

v 0.0.2 2023.8.6 add app file `__init__.py`

 V 0.0.3 2023.8.7:

    1. do not replace the original file
    2. Code optimization

## zh-hans

憋死我了一直写英文。

flask-beginner是用于 ~~偷懒~~ 

是用于创建我自己用的比较顺手的一个flask项目结构，

这个包依赖于flask，

也就是说开启一个flask项目直接用这个包就行。

虽然说这个包诞生以后的下载量可能完全是我自己在贡献，

但是这种全世界都能下载的感觉

真好啊 ^_^

