├── .gitignore ├── CONTRIBUTORS.md ├── Procfile ├── README.md ├── ebooks.py ├── local_settings.py ├── markov.py ├── requirements.txt ├── runtime.txt ├── testcorpus.txt └── twittereater.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .git 3 | /.idea 4 | __pycache__ 5 | *.csv 6 | .env/ -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommeagher/heroku_ebooks/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python ebooks.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommeagher/heroku_ebooks/HEAD/README.md -------------------------------------------------------------------------------- /ebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommeagher/heroku_ebooks/HEAD/ebooks.py -------------------------------------------------------------------------------- /local_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommeagher/heroku_ebooks/HEAD/local_settings.py -------------------------------------------------------------------------------- /markov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommeagher/heroku_ebooks/HEAD/markov.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-twitter 2 | Mastodon.py 3 | beautifulsoup4 4 | tweepy -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.5 -------------------------------------------------------------------------------- /testcorpus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommeagher/heroku_ebooks/HEAD/testcorpus.txt -------------------------------------------------------------------------------- /twittereater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommeagher/heroku_ebooks/HEAD/twittereater.py --------------------------------------------------------------------------------