├── .gitignore ├── AdminPanel ├── AdminPanel.py ├── forms │ ├── CategoryForm.py │ ├── ProductsForm.py │ └── __pycache__ │ │ ├── CategoryForm.cpython-39.pyc │ │ └── ProductsForm.cpython-39.pyc ├── static │ └── images │ │ ├── categories │ │ ├── 21.jpg │ │ └── 22.jpg │ │ └── products │ │ ├── 11.jpg │ │ ├── 12.webp │ │ ├── 13.jpg │ │ └── 14.jpg └── templates │ ├── base.html │ ├── category.html │ ├── index.html │ └── products.html ├── Bot ├── ShopBotLogging.log ├── __pycache__ │ ├── config.cpython-310.pyc │ ├── functions.cpython-310.pyc │ └── functions.cpython-39.pyc ├── config.py ├── functions.py └── main.py ├── LICENSE ├── README.md ├── db ├── ShopDB.db ├── __pycache__ │ ├── dbActions.cpython-310.pyc │ └── dbActions.cpython-39.pyc └── dbActions.py ├── requirements.txt └── static ├── beef.png ├── candies.png ├── caramel.png ├── chicken.png ├── noodles.jpg └── sugar.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/.gitignore -------------------------------------------------------------------------------- /AdminPanel/AdminPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/AdminPanel/AdminPanel.py -------------------------------------------------------------------------------- /AdminPanel/forms/CategoryForm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/AdminPanel/forms/CategoryForm.py -------------------------------------------------------------------------------- /AdminPanel/forms/ProductsForm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/AdminPanel/forms/ProductsForm.py -------------------------------------------------------------------------------- /AdminPanel/forms/__pycache__/CategoryForm.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/AdminPanel/forms/__pycache__/CategoryForm.cpython-39.pyc -------------------------------------------------------------------------------- /AdminPanel/forms/__pycache__/ProductsForm.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/AdminPanel/forms/__pycache__/ProductsForm.cpython-39.pyc -------------------------------------------------------------------------------- /AdminPanel/static/images/categories/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/AdminPanel/static/images/categories/21.jpg -------------------------------------------------------------------------------- /AdminPanel/static/images/categories/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/AdminPanel/static/images/categories/22.jpg -------------------------------------------------------------------------------- /AdminPanel/static/images/products/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/AdminPanel/static/images/products/11.jpg -------------------------------------------------------------------------------- /AdminPanel/static/images/products/12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/AdminPanel/static/images/products/12.webp -------------------------------------------------------------------------------- /AdminPanel/static/images/products/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/AdminPanel/static/images/products/13.jpg -------------------------------------------------------------------------------- /AdminPanel/static/images/products/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/AdminPanel/static/images/products/14.jpg -------------------------------------------------------------------------------- /AdminPanel/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/AdminPanel/templates/base.html -------------------------------------------------------------------------------- /AdminPanel/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/AdminPanel/templates/category.html -------------------------------------------------------------------------------- /AdminPanel/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/AdminPanel/templates/index.html -------------------------------------------------------------------------------- /AdminPanel/templates/products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/AdminPanel/templates/products.html -------------------------------------------------------------------------------- /Bot/ShopBotLogging.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/Bot/ShopBotLogging.log -------------------------------------------------------------------------------- /Bot/__pycache__/config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/Bot/__pycache__/config.cpython-310.pyc -------------------------------------------------------------------------------- /Bot/__pycache__/functions.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/Bot/__pycache__/functions.cpython-310.pyc -------------------------------------------------------------------------------- /Bot/__pycache__/functions.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/Bot/__pycache__/functions.cpython-39.pyc -------------------------------------------------------------------------------- /Bot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/Bot/config.py -------------------------------------------------------------------------------- /Bot/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/Bot/functions.py -------------------------------------------------------------------------------- /Bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/Bot/main.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/README.md -------------------------------------------------------------------------------- /db/ShopDB.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/db/ShopDB.db -------------------------------------------------------------------------------- /db/__pycache__/dbActions.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/db/__pycache__/dbActions.cpython-310.pyc -------------------------------------------------------------------------------- /db/__pycache__/dbActions.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/db/__pycache__/dbActions.cpython-39.pyc -------------------------------------------------------------------------------- /db/dbActions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/db/dbActions.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/beef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/static/beef.png -------------------------------------------------------------------------------- /static/candies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/static/candies.png -------------------------------------------------------------------------------- /static/caramel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/static/caramel.png -------------------------------------------------------------------------------- /static/chicken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/static/chicken.png -------------------------------------------------------------------------------- /static/noodles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/static/noodles.jpg -------------------------------------------------------------------------------- /static/sugar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andiazdi/ShopBot/HEAD/static/sugar.png --------------------------------------------------------------------------------