-
Notifications
You must be signed in to change notification settings - Fork 0
/
populate_rango.py
83 lines (65 loc) · 2.35 KB
/
populate_rango.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import os
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'tango_with_django_project.settings')
import django
django.setup()
from rango.models import Page, Category
def populate():
"""
Creating sample data for Page and Category and add this date to database
"""
python_pages = [
{"title": "Official Python Tutorial",
"url": "http://docs.python.org/2/tutorial",
"views": 30},
{"title": "How to Think like a Conputer Scientist",
"url": "http://www.greenteapress.com/thinkpython/",
"views": 20},
{"title": "Learn Python in 10 Minutes",
"url": "http://www.korokithakis.net/tutorials/python/",
"views": 10}
]
django_pages = [
{"title": "Official Django Tutorial",
"url": "https://docs.djangoproject.com/en/1.9/intro/tutorial01/",
"views": 100},
{"title": "Django Rocks",
"url": "http://www.djangorocks.com/",
"views": 90},
{"title": "How to Tango with Django",
"url": "http://www.tangowithdjango.com/",
"views": 80}
]
other_pages = [
{"title": "Bottle",
"url": "http://bottlepy.org/docs/dev/",
"views": 150},
{"title": "Flask",
"url": "http://flask.pocoo.org",
"views": 140}
]
cats = {"Python": {"pages": python_pages, "likes": 64, "views": 128},
"Django": {"pages": django_pages, "likes": 32, "views": 64},
"Other Frameworks": {"pages": other_pages, "likes": 16, "views": 32}}
for cat, cat_data in cats.items():
c = add_cat(cat, cat_data["likes"], cat_data["views"])
for p in cat_data["pages"]:
add_page(c, url=p["url"], title=p["title"],views=p['views'])
# Print out the categories we have added
for c in Category.objects.all():
for p in Page.objects.filter(category=c):
print("- {0} {2} {3}- {1} {4}".format(str(c), str(p), c.views, c.likes,p.views))
def add_page(cat, title, url, views=0):
p = Page.objects.get_or_create(category=cat, title=title)[0]
p.url = url
p.views = views
p.save()
return p
def add_cat(name, likes, views):
c = Category.objects.get_or_create(name=name)[0]
c.likes = likes
c.views = views
c.save()
return c
if __name__ == "__main__":
print("Starting Rango population script...")
populate()