atlas/tools/redditcrawl.py

75 lines
2.1 KiB
Python
Raw Normal View History

2017-04-04 20:12:45 +02:00
import praw
2022-04-04 18:49:57 +02:00
import json
2017-04-04 20:12:45 +02:00
2022-04-04 18:49:57 +02:00
outfile = open('temp_atlas.json', 'w')
failfile = open('manual_atlas.json', 'w')
2017-04-04 20:12:45 +02:00
credentials = open('credentials', 'r')
client_id = credentials.readline().strip(' \t\n\r')
client_secret = credentials.readline().strip(' \t\n\r')
reddit = praw.Reddit(client_id=client_id, client_secret=client_secret, user_agent='atlas_bot')
2022-04-04 18:49:57 +02:00
failcount = 0
successcount = 0
jsonfile = open("../web/atlas.json", "r")
existing = json.load(jsonfile)
existing_ids = []
for item in existing:
existing_ids.append(item['id'])
for submission in reddit.subreddit('placeAtlas2').new(limit=1500):
2022-04-04 20:02:15 +02:00
"""
Auth setup
1. Head to https://www.reddit.com/prefs/apps
2. Click "create another app"
3. Give it a name and description
4. Select "script"
5. Redirect to http://localhost:8080
6. Copy ID (under Personal Use Script)
7. Append to file called "credentials"
8. Copy Secret
9. Append on newline to "credentials" file
10. Run Script
Running Script
1. Input the next ID to use
2. Manually resolve errors in manual_atlas.json
3. Copy temp_atlas.json entries into web/_js/atlas.js
4. Pull Request
"""
#print(dir(submission))
if(submission.link_flair_text == "New Entry" and submission.id not in existing_ids):
print(submission.id)
2017-04-04 20:12:45 +02:00
text = submission.selftext
2022-04-04 18:49:57 +02:00
text = text.replace("\\", "")
try:
text = text.replace("\"id\": 0,", "\"id\": 0,\n\t\t\"submitted_by\": \""+submission.author.name+"\",")
except AttributeError:
text = text.replace("\"id\": 0,", "\"id\": 0,\n\t\t\"submitted_by\": \""+"unknown"+"\",")
lines = text.split("\n")
2022-04-04 19:03:25 +02:00
for i, line in enumerate(lines):
if("\"id\": 0" in line):
lines[i] = line.replace("\"id\": 0", "\"id\": "+"\""+str(submission.id)+"\"")
text = "\n".join(lines)
2022-04-04 18:49:57 +02:00
try:
outfile.write(json.dumps(json.loads(text))+",\n")
except json.JSONDecodeError:
print("Errored "+submission.title)
failfile.write(text+",\n")
failcount += 1
2017-04-04 20:12:45 +02:00
print("written "+submission.title)
2022-04-04 18:49:57 +02:00
successcount += 1
2017-04-04 20:12:45 +02:00
else:
print("skipped "+submission.title)
2022-04-04 18:49:57 +02:00
print(f"\n\nSuccess: {successcount}\nFail: {failcount}\nPlease check manual_atlas.txt for failed entries to manually resolve.")