-
Notifications
You must be signed in to change notification settings - Fork 0
/
createprofilejson.py
86 lines (83 loc) · 3.25 KB
/
createprofilejson.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
84
85
86
#!/usr/bin/python
# -*- coding: utf-8 -*-
import json
def main():
jsondict = [
{
"screenname": "idlecool",
"avatar":["avatars/idlecool/1.jpg",
"avatars/idlecool/2.jpg",
"avatars/idlecool/3.jpg",
"avatars/idlecool/4.jpg"],
"desc": ["Pythonista",
"Anti-Social",
"▓▓ ▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓ ▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓ ▓▓▓",
"Thinks he is a Web Scraper",
"poda. that and all i wont do.",
"Shit! I think i have a personality disorder."],
"profileurl": "http://blog.idlecool.net/",
},
{
"screenname": "gsathya",
"avatar":["avatars/gsathya/1.jpg",
],
"desc": ["Macfag, Droid Fanboi, Paranoid, Privacy, Emacs, Git.",
"Tor Contributor.",
"Pwned.",
"<3 Feroze",
"I'M OP BITCHES!"],
"profileurl": "http://gsathya.in/",
},
{
"screenname": "anirudh24seven",
"avatar":["avatars/anirudh24seven/1.jpg",
],
"desc":["Android dev, Open Source evangelist, vim, python. Loves anything tech.",
"Carnatic vocalist, Mridangist. Coder rest of the time.",
"Customization trumps everything else!",
"\"Developers! Developers! Developers! Developers!\""],
"profileurl": "http://twitter.com/anirudh24seven",
},
{
"screenname": "Genghiz",
"avatar":["avatars/Genghiz/1.jpg",
],
"desc":["Megalomaniac, paranoid, friendly, , frugal, wannabe, python, finance, PJs, chick magnet hip hop, etc.",
],
"profileurl": "http://feroze.in",
},
{
"screenname": "beachbrake",
"avatar":[
],
"desc":["NSFW, Ardiuno, Python, anime, taekwondo and a few more nuts and bolts.",
],
"profileurl": "http://priyakuber.in",
},
{
"screenname": "yeskarthik",
"avatar":["avatars/yeskarthik/1.jpg",
],
"desc":[""],
"profileurl": "http://yeskarthik.in/",
},
{
"screenname": "polkabot",
"avatar":[],
"desc": ["I am a bot with polka dots",
"I am girly",
],
"profileurl": "#",
},
{
"screenname": "pranavrc",
"avatar":["avatars/pranavrc/1.jpg",
],
"desc": ["Description: music theory, guitar&keys, electronics, finance, math, py, vim, ai, droid, food, laziness, chatter etc.,.",
],
"profileurl": "http://pranavrc.wordpress.com",
},
]
print json.dumps(jsondict)
if __name__ == "__main__":
main()