创建文件api
from flask import Blueprint
route_api = Blueprint('api_page', __name__)
@route_api.route('/api1')
def index():
...
yekong
3年前 (2021-08-20)
喜欢
pip3 install -i https://mirrors.aliyun.com/pypi/simple flask
pip3 install -i https://mirrors.aliyun.com/pypi/simple 包名
...
yekong
3年前 (2021-08-20)
喜欢
from flask import Flask
app = Flask(__name__)
@app.route('/')
def helloword():
return 'Hello Word'
if __name__ == &...
yekong
3年前 (2021-08-20)
喜欢
pip3 install Flask
或者使用阿里云的源进行安装
pip3 install -i https://mirrors.aliyun.com/pypi/simple flask
...
yekong
3年前 (2021-08-20)
喜欢
Consider using the --user option or check the permissions.
ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Permissi...
yekong
3年前 (2021-08-20)
喜欢
进入python 项目下
pip freeze > requirements.txt
生成的requirements.txt就记录了当前所有已经安装的依赖
将生成的requirements.txt 拷贝到需要安装同样依赖的机器上
执行命令
pip install -r r...
yekong
4年前 (2021-05-03)
喜欢
def getHash(f):
line = f.readline()
hash = hashlib.md5()
while (line):
hash.update(line)
line = f.readline()
...
yekong
4年前 (2021-04-30)
喜欢
# 生成随机字符串
def generate_random_str(randomlength=16):
"""
生成一个指定长度的随机字符串
"""
random_str = '&...
yekong
4年前 (2021-04-30)
喜欢
downurl = "https://www.wanjunshijie.com/"
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) Ap...
yekong
4年前 (2021-04-24)
喜欢
目录已存在了。
创建目录前做个判断
def makedir(path):
if not os.path.exists(path + '/js'):
os.mkdir(path + '/js')
...
yekong
4年前 (2021-04-23)
喜欢