Last active
October 14, 2015 01:51
-
-
Save sakti/cc950abc6c8b2715deb7 to your computer and use it in GitHub Desktop.
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
entries = Entry.objects.all() | |
for entry in entries: | |
print '%s %s %s' % (entry.blog.name, ','.join([item.name for item in entry.authors.all()]), entry.pub_date) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment