forked from sherlock-project/sherlock
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update script to use with-as structure for files. Add number of suppo…
…rted sites to title. Add status message.
- Loading branch information
Showing
2 changed files
with
109 additions
and
91 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
"""Sherlock: Supported Site Listing | ||
This module generates the listing of supported sites. | ||
""" | ||
import json | ||
|
||
raw = open("data.json", "r", encoding="utf-8") | ||
data = json.load(raw) | ||
with open("data.json", "r", encoding="utf-8") as data_file: | ||
data = json.load(data_file) | ||
|
||
site_file = open('sites.md', 'w') | ||
site_file.write('## List of supported sites\n') | ||
with open("sites.md", "w") as site_file: | ||
site_file.write(f'## List Of Supported Sites ({len(data)} Sites In Total!)\n') | ||
|
||
index = 1 | ||
for social_network in data: | ||
url_main = data.get(social_network).get("urlMain") | ||
site_file.write(f'{index}. [{social_network}]({url_main})\n') | ||
index = index + 1 | ||
index = 1 | ||
for social_network in data: | ||
url_main = data.get(social_network).get("urlMain") | ||
site_file.write(f'{index}. [{social_network}]({url_main})\n') | ||
index = index + 1 | ||
|
||
site_file.close() | ||
print("Finished updating supported site listing!") |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,81 +1,95 @@ | ||
## List of supported sites | ||
1. [Instagram](https://www.instagram.com/) | ||
2. [Twitter](https://www.twitter.com/) | ||
3. [Facebook](https://www.facebook.com/) | ||
4. [YouTube](https://www.youtube.com/) | ||
5. [Blogger](https://www.blogger.com/) | ||
6. [Google Plus](https://plus.google.com/) | ||
7. [Reddit](https://www.reddit.com/) | ||
8. [Pinterest](https://www.pinterest.com/) | ||
9. [GitHub](https://www.github.com/) | ||
10. [Steam](https://steamcommunity.com/) | ||
11. [Vimeo](https://vimeo.com/) | ||
12. [SoundCloud](https://soundcloud.com/) | ||
13. [Disqus](https://disqus.com/) | ||
14. [Medium](https://medium.com/) | ||
15. [DeviantART](https://deviantart.com) | ||
16. [VK](https://vk.com/) | ||
17. [About.me](https://about.me/) | ||
18. [Imgur](https://imgur.com/) | ||
19. [Flipboard](https://flipboard.com/) | ||
20. [SlideShare](https://slideshare.net/) | ||
21. [Fotolog](https://fotolog.com/) | ||
22. [Spotify](https://open.spotify.com/) | ||
23. [MixCloud](https://www.mixcloud.com/) | ||
24. [Scribd](https://www.scribd.com/) | ||
25. [Patreon](https://www.patreon.com/) | ||
26. [BitBucket](https://bitbucket.org/) | ||
27. [Roblox](https://www.roblox.com/) | ||
28. [Gravatar](http://en.gravatar.com/) | ||
29. [iMGSRC.RU](https://imgsrc.ru/) | ||
30. [DailyMotion](https://www.dailymotion.com/) | ||
31. [Etsy](https://www.etsy.com/) | ||
32. [CashMe](https://cash.me/) | ||
33. [Behance](https://www.behance.net/) | ||
34. [GoodReads](https://www.goodreads.com/) | ||
35. [Instructables](https://www.instructables.com/) | ||
36. [Keybase](https://keybase.io/) | ||
37. [Kongregate](https://www.kongregate.com/) | ||
38. [LiveJournal](https://www.livejournal.com/) | ||
39. [VSCO](https://vsco.co/) | ||
40. [AngelList](https://angel.co/) | ||
41. [last.fm](https://last.fm/) | ||
42. [Dribbble](https://dribbble.com/) | ||
43. [Codecademy](https://www.codecademy.com/) | ||
44. [Pastebin](https://pastebin.com/) | ||
45. [Foursquare](https://foursquare.com/) | ||
46. [Gumroad](https://www.gumroad.com/) | ||
47. [Newgrounds](https://newgrounds.com) | ||
48. [Wattpad](https://www.wattpad.com/) | ||
49. [Canva](https://www.canva.com/) | ||
50. [Trakt](https://www.trakt.tv/) | ||
51. [500px](https://500px.com/) | ||
52. [BuzzFeed](https://buzzfeed.com/) | ||
53. [TripAdvisor](https://tripadvisor.com/) | ||
54. [Contently](https://contently.com/) | ||
55. [Houzz](https://houzz.com/) | ||
56. [BLIP.fm](https://blip.fm/) | ||
57. [HackerNews](https://news.ycombinator.com/) | ||
58. [Codementor](https://www.codementor.io/) | ||
59. [ReverbNation](https://www.reverbnation.com/) | ||
60. [Designspiration](https://www.designspiration.net/) | ||
61. [Bandcamp](https://www.bandcamp.com/) | ||
62. [ColourLovers](https://www.colourlovers.com/) | ||
63. [IFTTT](https://www.ifttt.com/) | ||
64. [Ebay](https://www.ebay.com/) | ||
65. [Slack](https://slack.com) | ||
66. [Trip](https://www.trip.skyscanner.com/) | ||
67. [Ello](https://ello.co/) | ||
68. [HackerOne](https://hackerone.com/) | ||
69. [Tinder](https://tinder.com/) | ||
70. [We Heart It](https://weheartit.com/) | ||
71. [Flickr](https://www.flickr.com/) | ||
72. [WordPress](https://wordpress.com) | ||
73. [Unsplash](https://unsplash.com/) | ||
74. [Pexels](https://www.pexels.com/) | ||
75. [devRant](https://devrant.com/) | ||
76. [MyAnimeList](https://myanimelist.net/) | ||
77. [ImageShack](https://imageshack.us/) | ||
78. [Badoo](https://badoo.com/) | ||
79. [MeetMe](https://www.meetme.com/) | ||
80. [Quora](https://www.quora.com/) | ||
## List Of Supported Sites (94 Sites In Total!) | ||
1. [Instagram](https://www.instagram.com/) | ||
2. [Twitter](https://www.twitter.com/) | ||
3. [Facebook](https://www.facebook.com/) | ||
4. [YouTube](https://www.youtube.com/) | ||
5. [Blogger](https://www.blogger.com/) | ||
6. [Google Plus](https://plus.google.com/) | ||
7. [Reddit](https://www.reddit.com/) | ||
8. [Pinterest](https://www.pinterest.com/) | ||
9. [GitHub](https://www.github.com/) | ||
10. [Steam](https://steamcommunity.com/) | ||
11. [Vimeo](https://vimeo.com/) | ||
12. [SoundCloud](https://soundcloud.com/) | ||
13. [Disqus](https://disqus.com/) | ||
14. [Medium](https://medium.com/) | ||
15. [DeviantART](https://deviantart.com) | ||
16. [VK](https://vk.com/) | ||
17. [About.me](https://about.me/) | ||
18. [Imgur](https://imgur.com/) | ||
19. [Flipboard](https://flipboard.com/) | ||
20. [SlideShare](https://slideshare.net/) | ||
21. [Fotolog](https://fotolog.com/) | ||
22. [Spotify](https://open.spotify.com/) | ||
23. [MixCloud](https://www.mixcloud.com/) | ||
24. [Scribd](https://www.scribd.com/) | ||
25. [Patreon](https://www.patreon.com/) | ||
26. [BitBucket](https://bitbucket.org/) | ||
27. [Roblox](https://www.roblox.com/) | ||
28. [Gravatar](http://en.gravatar.com/) | ||
29. [iMGSRC.RU](https://imgsrc.ru/) | ||
30. [DailyMotion](https://www.dailymotion.com/) | ||
31. [Etsy](https://www.etsy.com/) | ||
32. [CashMe](https://cash.me/) | ||
33. [Behance](https://www.behance.net/) | ||
34. [GoodReads](https://www.goodreads.com/) | ||
35. [Instructables](https://www.instructables.com/) | ||
36. [Keybase](https://keybase.io/) | ||
37. [Kongregate](https://www.kongregate.com/) | ||
38. [LiveJournal](https://www.livejournal.com/) | ||
39. [VSCO](https://vsco.co/) | ||
40. [AngelList](https://angel.co/) | ||
41. [last.fm](https://last.fm/) | ||
42. [Dribbble](https://dribbble.com/) | ||
43. [Codecademy](https://www.codecademy.com/) | ||
44. [Pastebin](https://pastebin.com/) | ||
45. [Foursquare](https://foursquare.com/) | ||
46. [Gumroad](https://www.gumroad.com/) | ||
47. [Newgrounds](https://newgrounds.com) | ||
48. [Wattpad](https://www.wattpad.com/) | ||
49. [Canva](https://www.canva.com/) | ||
50. [Trakt](https://www.trakt.tv/) | ||
51. [500px](https://500px.com/) | ||
52. [BuzzFeed](https://buzzfeed.com/) | ||
53. [TripAdvisor](https://tripadvisor.com/) | ||
54. [Contently](https://contently.com/) | ||
55. [Houzz](https://houzz.com/) | ||
56. [BLIP.fm](https://blip.fm/) | ||
57. [HackerNews](https://news.ycombinator.com/) | ||
58. [Codementor](https://www.codementor.io/) | ||
59. [ReverbNation](https://www.reverbnation.com/) | ||
60. [Designspiration](https://www.designspiration.net/) | ||
61. [Bandcamp](https://www.bandcamp.com/) | ||
62. [ColourLovers](https://www.colourlovers.com/) | ||
63. [IFTTT](https://www.ifttt.com/) | ||
64. [Ebay](https://www.ebay.com/) | ||
65. [Slack](https://slack.com) | ||
66. [Trip](https://www.trip.skyscanner.com/) | ||
67. [Ello](https://ello.co/) | ||
68. [HackerOne](https://hackerone.com/) | ||
69. [Tinder](https://tinder.com/) | ||
70. [We Heart It](https://weheartit.com/) | ||
71. [Flickr](https://www.flickr.com/) | ||
72. [WordPress](https://wordpress.com) | ||
73. [Unsplash](https://unsplash.com/) | ||
74. [Pexels](https://www.pexels.com/) | ||
75. [devRant](https://devrant.com/) | ||
76. [MyAnimeList](https://myanimelist.net/) | ||
77. [ImageShack](https://imageshack.us/) | ||
78. [Badoo](https://badoo.com/) | ||
79. [MeetMe](https://www.meetme.com/) | ||
80. [Quora](https://www.quora.com/) | ||
81. [Pixabay](https://pixabay.com/) | ||
82. [Giphy](https://giphy.com/) | ||
83. [Taringa](https://taringa.net/) | ||
84. [SourceForge](https://sourceforge.net/) | ||
85. [Codepen](https://codepen.io/) | ||
86. [Launchpad](https://launchpad.net/) | ||
87. [Photobucket](https://photobucket.com/) | ||
88. [Wix](https://wix.com/) | ||
89. [Crevado](https://crevado.com/) | ||
90. [Carbonmade](https://carbonmade.com/) | ||
91. [Coroflot](https://coroflot.com/) | ||
92. [Jimdo](https://jimdosite.com/) | ||
93. [Repl.it](https://repl.it/) | ||
94. [Issuu](https://issuu.com/) |