mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-04-13 09:42:01 +00:00
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
![]() |
from pprint import pprint
|
||
|
from django.conf import settings
|
||
|
from apps.rss_feeds.models import Feed, Story, MStory, StoryAuthor
|
||
|
import mongoengine
|
||
|
import sys
|
||
|
from utils import json
|
||
|
|
||
|
MONGO_DB = settings.MONGO_DB
|
||
|
db = mongoengine.connect(MONGO_DB['NAME'], host=MONGO_DB['HOST'], port=MONGO_DB['PORT'])
|
||
|
|
||
|
print "Mongo DB stories: %s" % MStory.objects().count()
|
||
|
|
||
|
db.stories.drop()
|
||
|
print "Dropped! Mongo DB stories: %s" % MStory.objects().count()
|
||
|
|
||
|
|
||
|
print "Stories: %s" % Story.objects.all().count()
|
||
|
|
||
|
pprint(db.stories.index_information())
|
||
|
|
||
|
feeds = Feed.objects.all().order_by('-average_stories_per_month')
|
||
|
for feed in feeds:
|
||
|
print "%-5s: %s" % (Story.objects.select_related('story_author', 'tags').filter(story_feed=feed).count(),
|
||
|
feed)
|
||
|
sys.stdout.flush()
|
||
|
|
||
|
stories = Story.objects.filter(story_feed=feed).values()
|
||
|
for story in stories:
|
||
|
# story['story_tags'] = [tag.name for tag in Tag.objects.filter(story=story['id'])]
|
||
|
story['story_tags'] = json.decode(story['story_tags'])
|
||
|
del story['id']
|
||
|
del story['story_author_id']
|
||
|
MStory(**story).save()
|
||
|
|
||
|
print "Mongo DB stories: %s" % MStory.objects().count()
|