🔷
Pyot Documentation
  • Pyot Documentation
  • Cores
    • Installation
    • Configuration
    • Objects
    • Concurrency
    • Resources
    • Exceptions
    • Warnings
  • Examples
    • Single File
    • Multi Root
    • Module Based
  • Pipeline
    • Expirations
    • Handler
    • Object
    • Token
  • Stores
    • CDragon
    • DDragon
    • DiskCache
    • DjangoCache
    • MerakiCDN
    • MongoDB
    • Omnistone
    • RedisCache
    • RiotAPI
  • Limiters
    • MemoryLimiter
    • RedisLimiter
  • Models
    • League of Legends
      • Champion
      • Championmastery
      • Championrotation
      • Clash
      • Item
      • League
      • Match
      • Merakichampion
      • Merakiitem
      • Profileicon
      • Rune
      • Spectator
      • Spell
      • Status
      • Summoner
      • Thirdpartycode
      • Tournament
    • Legends of Runeterra
      • Card
      • Match
      • Ranked
      • Status
    • Riot Services
      • Account
    • Teamfight Tactics
      • Champion
      • Item
      • League
      • Match
      • Profileicon
      • Summoner
      • Thirdpartycode
      • Trait
    • Valorant
      • Content
      • Match
      • Ranked
      • Status
  • Utils
    • LoL
      • Cdragon
      • Champion
      • Routing
    • LoR
      • Cards
    • Tft
      • Cdragon
      • Routing
    • Aiohttp
    • Copy
    • Functools
    • Importlib
    • Itertools
    • Logging
    • Nullsafe
    • Safejson
    • Sync
    • Text
    • Threading
  • Integrations
    • Django
    • FastAPI
    • Celery
  • Changelog
    • 5.x.x
    • 6.x.x
Powered by GitBook
On this page
  • Pip
  • Github
  • Extras
  1. Cores

Installation

PreviousCoresNextConfiguration

Last updated 1 year ago

Pyot requires Python 3.7 or newer.

Get the latest version of Python at or with your operating system’s package manager.

Pip

Installing an official release with pip:

pip install pyot -U

Github

Installing from source code master, it may include hotfixes and unstable code:

pip install git+https://github.com/iann838/Pyot.git

Extras

Depending on the need, installation of extras may be needed:

pip install pyot[diskcache]     # installs: ["diskcache>=5.1", "asgiref>=3.2"]
pip install pyot[redis]         # installs: ["redis[hiredis]>=4.5.0"]
pip install pyot[mongodb]       # installs: ["motor>=2.3"]
pip install pyot[test]          # installs: ["typeguard>=2.13"] + all above
https://www.python.org/downloads/