摘要:
pip install pymysql pip install sqlalchemy pip install alembic 1.connect db_config.py 2.建立模型 3.alembic的使用 参考资料:https://segmentfault.com/a/119000001464 阅读全文
摘要:
pip install pymysql pip install sqlalchemy pip install alembic 1.connect db_config.py 2.建立模型 3.alembic的使用 参考资料:https://segmentfault.com/a/119000001464 阅读全文
摘要:
server.py python server.py执行 阅读全文
摘要:
1.pip install pycket pip install redis 2.config 3.构建BaseHandler 4.需要设置一个条件去验证,比如要求用户登录。就在用户登录的handler中设置一个cookie信息 5.其他handler需要继承basehandler才能够使用装饰起@ 阅读全文
摘要:
with open(file_save_path, 'wb') as f: for chunk in file_content.chunks(): f.write(chunk) 阅读全文
|