Skip to content

Important Modules To Learn About

  1. Flask
    • micro web framework in python
  2. Django
    • web framework running on a web server
  3. FastAPI
    • fast
    • HTTP-based service APIs in python3.8+
    • automatically generates documentation for the API
  4. requests
    • HTTP client library that maps HTTP protocol onto Python's object-oriented semantics
  5. pydantic
    • use in python3.8+
    • data validation library
    • fast and extensible
    • type hints
    • Dataclasses, TypedDicts
    • custom validators
    • custom Models for creating APIs
  6. selenium
    • automate web browser interaction
    • python3.9+