摘要:
git下载地址:https://github.com/daneden/animate.css 参数: 完整示例: 阅读全文
摘要:
TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates')] , 'APP_DIRS': True, 'OPTIO 阅读全文
摘要:
执行migrate命令会报错的原因是,数据库的django_migrations表中迁移版本记录和代码中的迁移脚本不一致 解决办法: 使用--fake参数: 首先对比数据库中的迁移脚本和代码中的迁移脚本,然后找到哪个不同之后再使用--fake将代码中的迁移脚本添加到migrations表中但不会执行 阅读全文
摘要:
import fake_useragentimport randomua = fake_useragent.UserAgent()print(getattr(ua,random.choice(list(fake_useragent.settings.SHORTCUTS.keys())))) 阅读全文
摘要:
windows上运行celery4.x就会出现问题: ValueError: not enough values to unpack (expected 3, got 0) 解决办法: pip install eventlet 启动worker的时候加一个参数,如下: celery -A <mymo 阅读全文
摘要:
pip install python-social-auth https://python-social-auth.readthedocs.io/en/latest/ 文档 阅读全文
摘要:
model.py views.py 阅读全文
摘要:
一,简单的数据导出与导入(简单的迁移) 1. django 项目提供了一个导出的方法 python manage.py dumpdata, 不指定 appname 时默认为导出所有的app 1 python manage.py dumpdata [appname] > appname_data.js 阅读全文