├── .envrc ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── PULL_REQUEST_TEMPLATE.md ├── Pipfile ├── README.md ├── artwork ├── Github Social.sketch ├── tangerine.sketch ├── tangerine.svg └── tangerine@2x.png ├── instance └── config.yml.sample ├── samples ├── example_bot.py ├── image_me.py ├── reddit_rando.py └── tangerinebot.conf.sample ├── setup.cfg ├── setup.py └── tangerine ├── __init__.py ├── bot.py └── scheduler.py /.envrc: -------------------------------------------------------------------------------- 1 | layout pipenv 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/Makefile -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/README.md -------------------------------------------------------------------------------- /artwork/Github Social.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/artwork/Github Social.sketch -------------------------------------------------------------------------------- /artwork/tangerine.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/artwork/tangerine.sketch -------------------------------------------------------------------------------- /artwork/tangerine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/artwork/tangerine.svg -------------------------------------------------------------------------------- /artwork/tangerine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/artwork/tangerine@2x.png -------------------------------------------------------------------------------- /instance/config.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/instance/config.yml.sample -------------------------------------------------------------------------------- /samples/example_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/samples/example_bot.py -------------------------------------------------------------------------------- /samples/image_me.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/samples/image_me.py -------------------------------------------------------------------------------- /samples/reddit_rando.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/samples/reddit_rando.py -------------------------------------------------------------------------------- /samples/tangerinebot.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/samples/tangerinebot.conf.sample -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/setup.py -------------------------------------------------------------------------------- /tangerine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/tangerine/__init__.py -------------------------------------------------------------------------------- /tangerine/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/tangerine/bot.py -------------------------------------------------------------------------------- /tangerine/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/tangerine/HEAD/tangerine/scheduler.py --------------------------------------------------------------------------------