made the required change

This commit is contained in:
sameer 2022-08-20 18:59:34 +05:30
parent c5d9651101
commit 13ca61590f
2 changed files with 22 additions and 26 deletions

View File

@ -1,21 +1,20 @@
{
"titles" : [
"ranting about jira",
"siting in a meeting",
"squashing bugs",
"centering divs",
"waiting for staging deployment",
"writing tests",
"pushing directly to prod",
"doing code review",
"deleting jira tickets",
"Creating a pull request",
"forgot to run DB migrations",
"Broke production",
"running on staging ENV",
"merging git branches",
"releasing the MVP", "finding JIRA tickets"
]
"titles": [
"ranting about jira",
"siting in a meeting",
"squashing bugs",
"centering divs",
"waiting for staging deployment",
"writing tests",
"pushing directly to prod",
"doing code review",
"deleting jira tickets",
"Creating a pull request",
"forgot to run DB migrations",
"Broke production",
"running on staging ENV",
"merging git branches",
"releasing the MVP",
"finding JIRA tickets"
]
}

11
main.py
View File

@ -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,