Created
September 30, 2015 21:08
-
-
Save juanriaza/717880fc1fea1a728ac1 to your computer and use it in GitHub Desktop.
Diccionario tweets
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.utils import timezone | |
tweets = [ | |
{'user_name': 'jorgebastida', 'message': 'Hello world!', 'timestamp': timezone.now()}, | |
{'user_name': 'jaimeirurzun', 'message': 'I like ponies! http://djangopony.com', 'timestamp': timezone.now()}, | |
{'user_name': 'jorgebastida', 'message': 'Django RULEZZZZZZ', 'timestamp': timezone.now()} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment