├── .gitignore ├── LICENSE ├── README.md ├── informant.hook ├── informant ├── __init__.py ├── config.py ├── entry.py ├── feed.py ├── file.py ├── informant.py └── ui.py ├── informantrc.json.example ├── man └── informant.1 ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradford-smith94/informant/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradford-smith94/informant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradford-smith94/informant/HEAD/README.md -------------------------------------------------------------------------------- /informant.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradford-smith94/informant/HEAD/informant.hook -------------------------------------------------------------------------------- /informant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /informant/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradford-smith94/informant/HEAD/informant/config.py -------------------------------------------------------------------------------- /informant/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradford-smith94/informant/HEAD/informant/entry.py -------------------------------------------------------------------------------- /informant/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradford-smith94/informant/HEAD/informant/feed.py -------------------------------------------------------------------------------- /informant/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradford-smith94/informant/HEAD/informant/file.py -------------------------------------------------------------------------------- /informant/informant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradford-smith94/informant/HEAD/informant/informant.py -------------------------------------------------------------------------------- /informant/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradford-smith94/informant/HEAD/informant/ui.py -------------------------------------------------------------------------------- /informantrc.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradford-smith94/informant/HEAD/informantrc.json.example -------------------------------------------------------------------------------- /man/informant.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradford-smith94/informant/HEAD/man/informant.1 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradford-smith94/informant/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradford-smith94/informant/HEAD/setup.py --------------------------------------------------------------------------------