Compare commits

...

6 Commits

2 changed files with 13 additions and 11 deletions

View File

@ -1,11 +1,12 @@
version: '3.4' version: '3.9'
services: services:
perseveringbot-int: interaction:
build: ./interaction build: ./interaction
container_name: vision_interaction
volumes: volumes:
- ./interaction:/usr/src/app - ./interaction:/usr/src/app
restart: always restart: unless-stopped
environment: environment:
- BOT_VERSION - BOT_VERSION
- BEARER_TOKEN - BEARER_TOKEN
@ -13,11 +14,13 @@ services:
- ACCESS_TOKEN_SECRET - ACCESS_TOKEN_SECRET
- API_TOKEN - API_TOKEN
- API_KEY_SECRET - API_KEY_SECRET
perseveringbot-pos:
posting:
build: ./posting build: ./posting
container_name: vision_posting
volumes: volumes:
- ./posting:/usr/src/app - ./posting:/usr/src/app
restart: always restart: unless-stopped
environment: environment:
- BOT_VERSION - BOT_VERSION
- BEARER_TOKEN - BEARER_TOKEN
@ -25,4 +28,3 @@ services:
- ACCESS_TOKEN_SECRET - ACCESS_TOKEN_SECRET
- API_TOKEN - API_TOKEN
- API_KEY_SECRET - API_KEY_SECRET

View File

@ -32,17 +32,17 @@ def storeLastSeen(filename, lastSeen):
def searchTweets(query): def searchTweets(query):
print('Searching for tweets') print('Searching for tweets')
lastSeen = getLastSeen(lastSeenFile) lastSeen = getLastSeen(lastSeenFile)
tweets = api.search(query, since_id=lastSeen) tweets = api.search_tweets(query, since_id=lastSeen)
return tweets return tweets
def interactions(): def interactions():
tweets = searchTweets('persevering') tweets = searchTweets('persevering')
if not tweets:
print('No new tweets found.')
return
for tweet in reversed(tweets): 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 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) print(f'Tweet {tweet.text} by @{tweet.author.screen_name}', flush = True)
t = api.get_status(tweet.id) t = api.get_status(tweet.id)
if not t.favorited: if not t.favorited: