django-orm-standalone
Posted 派森部落格
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django-orm-standalone相关的知识,希望对你有一定的参考价值。
django-orm-standalone script
via:https://github.com/masnun/django-orm-standalone/
# Django specific settings import os os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings") # Ensure settings are read from django.core.wsgi import get_wsgi_application application = get_wsgi_application() # Your application specific imports from data.models import * #Add user user = User(name="masnun", email="[email protected]") user.save() # Application logic first_user = User.objects.all()[0] print(first_user.name) print(first_user.email)
以上是关于django-orm-standalone的主要内容,如果未能解决你的问题,请参考以下文章