Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

Django, Flask, FastAPI and aiogram

<List>

  • Initial Practice for Telegram bot using aiogram library

    • Features include periodic time reports, /time command, /pick command, and echo handler.

    telegram_bot_20260402_masking.png

  • Development Environment

    • Python 3.8.17 / aiogram 3.5.0 / python-dotenv 1.0.0 in local environment.
  • How to Run

    • Installation : pip install -r requirements.txt
    • Set environment variables in .env file: BOT_TOKEN and USER_ID
    • Run : python ./main.py
  • Initial Practice of Flask and FastAPI

    • Flask is simple but FastAPI supports asynchronous programming.
    • The results are absolutely the same.

    Sum Calculator

  • Development Environment

    • Python 3.8.17 / Flask 3.0.3 / fastapi 0.111.0 / Jinja2 3.1.4 in Replit
  • How to Run

    • Flask
      • Installation : pip install Flask
      • Run : flask run or python app.py
    • FastAPI
      • Installation : pip install fastapi uvicorn jinja2
      • Run : fastapi run or python main.py