├── .env.example ├── .github └── workflows │ └── update.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── api.py ├── formatters.py ├── howitlooks.png ├── models.py ├── render ├── .gitkeep ├── icon.png ├── style.css └── style.js ├── requirements.txt ├── run.py ├── scorers.py ├── templates ├── digest.html.jinja └── posts.html.jinja └── thresholds.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/api.py -------------------------------------------------------------------------------- /formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/formatters.py -------------------------------------------------------------------------------- /howitlooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/howitlooks.png -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/models.py -------------------------------------------------------------------------------- /render/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/render/icon.png -------------------------------------------------------------------------------- /render/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/render/style.css -------------------------------------------------------------------------------- /render/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/render/style.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/run.py -------------------------------------------------------------------------------- /scorers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/scorers.py -------------------------------------------------------------------------------- /templates/digest.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/templates/digest.html.jinja -------------------------------------------------------------------------------- /templates/posts.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/templates/posts.html.jinja -------------------------------------------------------------------------------- /thresholds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauforonda/mastodon_digest/HEAD/thresholds.py --------------------------------------------------------------------------------