School/.venv/lib/python3.9/site-packages/mathprolib-0.1.7-py3.9.egg-info/PKG-INFO
Kristofers Solo 1e065cc4b2 Updated .venv
2021-11-22 17:11:45 +02:00

63 lines
2.6 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Metadata-Version: 2.1
Name: mathprolib
Version: 0.1.7
Summary: 数学运算专用库,使用简单,内含三角学、分数、科学计算法等实用功能。
Home-page: https://gitee.com/index-1048576/mathlib
Author: 2097152, Toby_Lai, Programmer-1048576
Author-email: cookies_wrmdcxy@126.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
License-File: LICENSE
# flask_appmanager
[![star](https://gitee.com/toby_lai/flask_appmanager/badge/star.svg?theme=dark)](https://gitee.com/toby_lai/flask_appmanager/stargazers)[![fork](https://gitee.com/toby_lai/flask_appmanager/badge/fork.svg?theme=dark)](https://gitee.com/toby_lai/flask_appmanager/members)
#### 介绍
使用flask做的后台插件暂时功能很少欢迎issue或pull request
#### 功能
【先按照示例代码配置先】
> 运行后进入
> localhost:5000/manager
输入账号密码admin 12345还没完全做好登陆系统QWQ可以[pull request](https://gitee.com/toby_lai/flask_appmanager/pulls)来帮帮忙)
然后进入后台(界面如下)
![后台界面](https://images.gitee.com/uploads/images/2020/0722/224844_c029d383_6580637.png "批注 2020-07-22 151843.png")
目前的功能:
1. 查看路由和函数连接关系(概览页面)
2. 上传文件到静态资源目录
更多文档:[https://gitee.com/toby_lai/flask_appmanager/wikis](https://gitee.com/toby_lai/flask_appmanager/wikis)
_可以[pull request](https://gitee.com/toby_lai/flask_appmanager/pulls)来提交新功能哦~_
#### 安装教程
```git
cd 你的python site-package路径
git clone https://gitee.com/toby_lai/flask_appmanager.git
```
#### 示例代码
简单几行,即可启动
```python
from flask import *
from flask_appmanager import *
app=Flask(__file__,static_folder='static')
#自己先创建静态目录并把static_folder参数设置为静态目录名称
app.config['SECRET_KEY'] = '给session设置key自己修改' #这个key随便设置也行但不要给别人看
manage_app(app,'static')#给app添加上后台第二个参数是静态目录名称 **_> 最核心语句_**
app.run()#运行
```
[提交issue](https://gitee.com/toby_lai/flask_appmanager/issues) |
[新建pull request](https://gitee.com/toby_lai/flask_appmanager/pulls)