Compare commits

...

6 Commits

2 changed files with 13 additions and 11 deletions

View File

@ -1,23 +1,12 @@
version: '3.4'
version: '3.9'
services:
perseveringbot-int:
interaction:
build: ./interaction
container_name: vision_interaction
volumes:
- ./interaction:/usr/src/app
restart: always
environment:
- BOT_VERSION
- BEARER_TOKEN
- ACCESS_TOKEN
- ACCESS_TOKEN_SECRET
- API_TOKEN
- API_KEY_SECRET
perseveringbot-pos:
build: ./posting
volumes:
- ./posting:/usr/src/app
restart: always
restart: unless-stopped
environment:
- BOT_VERSION
- BEARER_TOKEN
@ -26,3 +15,16 @@ services:
- API_TOKEN
- API_KEY_SECRET
posting:
build: ./posting
container_name: vision_posting
volumes:
- ./posting:/usr/src/app
restart: unless-stopped
environment:
- BOT_VERSION
- BEARER_TOKEN
- ACCESS_TOKEN
- ACCESS_TOKEN_SECRET
- API_TOKEN
- API_KEY_SECRET

View File

@ -32,17 +32,17 @@ def storeLastSeen(filename, lastSeen):
def searchTweets(query):
print('Searching for tweets')
lastSeen = getLastSeen(lastSeenFile)
tweets = api.search(query, since_id=lastSeen)
tweets = api.search_tweets(query, since_id=lastSeen)
return tweets
def interactions():
tweets = searchTweets('persevering')
if not tweets:
print('No new tweets found.')
return
for tweet in reversed(tweets):
if not tweets:
print('No new tweets found.')
return
if re.search('what is.*if not.*persevering',tweet.text.lower()):
if not tweet.text.lower().startswith('rt') and tweet.user != api.me():
if not tweet.text.lower().startswith('rt') and tweet.user != api.verify_credentials():
print(f'Tweet {tweet.text} by @{tweet.author.screen_name}', flush = True)
t = api.get_status(tweet.id)
if not t.favorited: