├── .gitignore ├── LICENSE ├── README.md ├── all_categories.json ├── all_categories_formatted.json ├── check_stock.py ├── config.py └── main.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozhn/ddmc.monitor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozhn/ddmc.monitor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozhn/ddmc.monitor/HEAD/README.md -------------------------------------------------------------------------------- /all_categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozhn/ddmc.monitor/HEAD/all_categories.json -------------------------------------------------------------------------------- /all_categories_formatted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozhn/ddmc.monitor/HEAD/all_categories_formatted.json -------------------------------------------------------------------------------- /check_stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozhn/ddmc.monitor/HEAD/check_stock.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozhn/ddmc.monitor/HEAD/config.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozhn/ddmc.monitor/HEAD/main.py --------------------------------------------------------------------------------