├── .gitignore ├── LICENSE ├── README.md ├── converse ├── converse.py ├── creds.cfg.sample ├── requirements.txt └── topics.json ├── example-api-calls.md └── simple-post ├── creds.cfg.sample ├── post.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectfox/PyBot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectfox/PyBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectfox/PyBot/HEAD/README.md -------------------------------------------------------------------------------- /converse/converse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectfox/PyBot/HEAD/converse/converse.py -------------------------------------------------------------------------------- /converse/creds.cfg.sample: -------------------------------------------------------------------------------- 1 | [Slack] 2 | 3 | token = 12345 4 | -------------------------------------------------------------------------------- /converse/requirements.txt: -------------------------------------------------------------------------------- 1 | slackclient -------------------------------------------------------------------------------- /converse/topics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectfox/PyBot/HEAD/converse/topics.json -------------------------------------------------------------------------------- /example-api-calls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectfox/PyBot/HEAD/example-api-calls.md -------------------------------------------------------------------------------- /simple-post/creds.cfg.sample: -------------------------------------------------------------------------------- 1 | [Slack] 2 | 3 | token = 12345 4 | -------------------------------------------------------------------------------- /simple-post/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectfox/PyBot/HEAD/simple-post/post.py -------------------------------------------------------------------------------- /simple-post/requirements.txt: -------------------------------------------------------------------------------- 1 | slackclient --------------------------------------------------------------------------------