Created
July 31, 2013 00:09
-
-
Save fabiotatsuo/6118208 to your computer and use it in GitHub Desktop.
Site_ID
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> from django.contrib.sites.models import Site | |
>>> site = Site() | |
>>> site.domain = 'example.com' | |
>>> site.name = 'My website' | |
>>> site.save() | |
>>> site.id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment