This repo demonstrates how to create a server bot for the Poe platform using a WSGI Python web application. A functioning instance of this bot is available on Poe as Server-Bot-WSGI (by @robhewitt).
📁 Project Structure madani-moktob-3/ ├── 🚀 app.py # Main startup file ├── 📁 backend/ │ ├── app_server.py # Flask web server │ ├── mysql_database.py # MySQL database management │ └── ...
Python web applications have long adhered to the Web Server Gateway Interface (WSGI) standard, which describes how they talk to web servers. WSGI, originally introduced in 2003 and updated in 2010, ...