├── .gitignore ├── LICENSE.txt ├── README.md ├── bot_functions.py ├── classes ├── cart.py ├── catalog.py └── order.py ├── config └── config_template.ini ├── configloader.py ├── core.py ├── database.py ├── inscriptions.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1mpossible-code/avarice/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1mpossible-code/avarice/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1mpossible-code/avarice/HEAD/README.md -------------------------------------------------------------------------------- /bot_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1mpossible-code/avarice/HEAD/bot_functions.py -------------------------------------------------------------------------------- /classes/cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1mpossible-code/avarice/HEAD/classes/cart.py -------------------------------------------------------------------------------- /classes/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1mpossible-code/avarice/HEAD/classes/catalog.py -------------------------------------------------------------------------------- /classes/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1mpossible-code/avarice/HEAD/classes/order.py -------------------------------------------------------------------------------- /config/config_template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1mpossible-code/avarice/HEAD/config/config_template.ini -------------------------------------------------------------------------------- /configloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1mpossible-code/avarice/HEAD/configloader.py -------------------------------------------------------------------------------- /core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1mpossible-code/avarice/HEAD/core.py -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1mpossible-code/avarice/HEAD/database.py -------------------------------------------------------------------------------- /inscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1mpossible-code/avarice/HEAD/inscriptions.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyTelegramBotApi ~= 3.7.1 2 | --------------------------------------------------------------------------------