mirror of
https://github.com/placeAtlas/atlas.git
synced 2024-12-25 19:14:32 +01:00
Edit instructions, move to top
This commit is contained in:
parent
3be58f2a02
commit
0e5df81ea4
1 changed files with 25 additions and 23 deletions
|
@ -1,3 +1,28 @@
|
|||
"""
|
||||
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. Create file "credentials" with the format below
|
||||
┌─────────────────────────────────────────────────────┐
|
||||
│ [ID] <- Under "personal use script" │
|
||||
│ [Secret] │
|
||||
│ [Username] <- Must be a mod, don't do this if you │
|
||||
│ [Password] <- don't know what you are doing. │
|
||||
└─────────────────────────────────────────────────────┘
|
||||
7. Run Script
|
||||
|
||||
Running Script
|
||||
1. Input the next ID to use
|
||||
2. Manually resolve errors in manual_atlas.json
|
||||
3 a. Use merge_out.py, or...
|
||||
b. a. Copy temp_atlas.json entries into web/_js/atlas.js (mind the edits!)
|
||||
b. Copy read-ids-temp.txt IDs into data/read-ids.txt
|
||||
5. Create a pull request
|
||||
"""
|
||||
|
||||
import praw
|
||||
import json
|
||||
import time
|
||||
|
@ -61,29 +86,6 @@ def set_flair(submission, flair):
|
|||
totalcount = 0
|
||||
|
||||
for submission in reddit.subreddit('placeAtlas2').new(limit=2000):
|
||||
"""
|
||||
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. Create file "credentials" with the format below.
|
||||
┌─────────────────────────────────────────────────────┐
|
||||
│ [ID] <- Under "personal use script" │
|
||||
│ [Secret] │
|
||||
│ [Username] <- Must be a mod, don't do this if you │
|
||||
│ [Password] <- don't know what you are doing. │
|
||||
└─────────────────────────────────────────────────────┘
|
||||
7. 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
|
||||
|
||||
"""
|
||||
total_all_flairs += 1
|
||||
|
||||
if (submission.id in existing_ids):
|
||||
|
|
Loading…
Reference in a new issue