├── .gitignore ├── LICENSE.MD ├── README.md ├── clients.py ├── db_main.py ├── imgur_main.py ├── local_logging.py ├── main.py ├── ocr.py ├── praw.ini ├── reddit_main.py ├── text_parsing.py ├── text_variations.py ├── time_difference.py ├── twitter_main.py └── ximilar_main.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachHappel/Twitter-Link-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachHappel/Twitter-Link-Bot/HEAD/LICENSE.MD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachHappel/Twitter-Link-Bot/HEAD/README.md -------------------------------------------------------------------------------- /clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachHappel/Twitter-Link-Bot/HEAD/clients.py -------------------------------------------------------------------------------- /db_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachHappel/Twitter-Link-Bot/HEAD/db_main.py -------------------------------------------------------------------------------- /imgur_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachHappel/Twitter-Link-Bot/HEAD/imgur_main.py -------------------------------------------------------------------------------- /local_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachHappel/Twitter-Link-Bot/HEAD/local_logging.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachHappel/Twitter-Link-Bot/HEAD/main.py -------------------------------------------------------------------------------- /ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachHappel/Twitter-Link-Bot/HEAD/ocr.py -------------------------------------------------------------------------------- /praw.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachHappel/Twitter-Link-Bot/HEAD/praw.ini -------------------------------------------------------------------------------- /reddit_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachHappel/Twitter-Link-Bot/HEAD/reddit_main.py -------------------------------------------------------------------------------- /text_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachHappel/Twitter-Link-Bot/HEAD/text_parsing.py -------------------------------------------------------------------------------- /text_variations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachHappel/Twitter-Link-Bot/HEAD/text_variations.py -------------------------------------------------------------------------------- /time_difference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachHappel/Twitter-Link-Bot/HEAD/time_difference.py -------------------------------------------------------------------------------- /twitter_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachHappel/Twitter-Link-Bot/HEAD/twitter_main.py -------------------------------------------------------------------------------- /ximilar_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachHappel/Twitter-Link-Bot/HEAD/ximilar_main.py --------------------------------------------------------------------------------