mirror of
https://github.com/developersIndia/deviras.git
synced 2024-12-02 03:31:33 +05:30
made the required change
This commit is contained in:
parent
c5d9651101
commit
13ca61590f
@ -1,5 +1,3 @@
|
||||
|
||||
|
||||
{
|
||||
"titles": [
|
||||
"ranting about jira",
|
||||
@ -16,6 +14,7 @@
|
||||
"Broke production",
|
||||
"running on staging ENV",
|
||||
"merging git branches",
|
||||
"releasing the MVP", "finding JIRA tickets"
|
||||
"releasing the MVP",
|
||||
"finding JIRA tickets"
|
||||
]
|
||||
}
|
11
main.py
11
main.py
@ -4,21 +4,18 @@ import random
|
||||
import time
|
||||
import json
|
||||
|
||||
with open('dataset.json', 'r') as f:
|
||||
data = json.load(f)
|
||||
|
||||
titles = data['titles']
|
||||
|
||||
client_id = os.environ["REDDIT_CLIENT_ID"]
|
||||
client_secret = os.environ["REDDIT_CLIENT_SECRET"]
|
||||
reddit_pass = os.environ["REDDIT_PASSWORD"]
|
||||
|
||||
|
||||
def get_titles():
|
||||
with open('dataset.json', 'r') as f:
|
||||
data = json.load(f)
|
||||
|
||||
titles = data['titles']
|
||||
currentlyViewingText, subscribersText = random.sample(titles, 2)
|
||||
return [currentlyViewingText, subscribersText]
|
||||
|
||||
|
||||
def update_titles():
|
||||
reddit = praw.Reddit(
|
||||
client_id=client_id,
|
||||
|
Loading…
Reference in New Issue
Block a user