├── .python-version ├── Pipfile ├── Pipfile.lock ├── README.md └── src ├── lcu.py └── main.py /.python-version: -------------------------------------------------------------------------------- 1 | 3.10.0 2 | -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiompf/lol-authenticator/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiompf/lol-authenticator/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiompf/lol-authenticator/HEAD/README.md -------------------------------------------------------------------------------- /src/lcu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiompf/lol-authenticator/HEAD/src/lcu.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiompf/lol-authenticator/HEAD/src/main.py --------------------------------------------------------------------------------