Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/intendednull/lcu_connectorpy
LoL Client API Interface
https://github.com/intendednull/lcu_connectorpy
api-client league-of-legends
Last synced: 14 days ago
JSON representation
LoL Client API Interface
- Host: GitHub
- URL: https://github.com/intendednull/lcu_connectorpy
- Owner: intendednull
- License: mit
- Created: 2019-04-15T22:44:45.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-04-23T21:07:20.000Z (over 5 years ago)
- Last Synced: 2024-10-08T11:44:53.343Z (about 1 month ago)
- Topics: api-client, league-of-legends
- Language: Python
- Homepage:
- Size: 70.3 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lcu_connectorpy
A Python implementaion of [this](https://github.com/Pupix/lcu-connector) library.## Download
Via pip:
```sh
pip install lcu-connectorpy
```## Usage
```py
from lcu_connectorpy import Connectorconn = Connector()
conn.start()print(conn.url, conn.auth, sep='\n')
>>> https://127.0.0.1:18633
>>> ("riot", "H9y4kOYVkmjWu_5mVIg1qQ")
```See the [docs](https://zer0897.github.io/lcu_connectorpy/lcu_connectorpy/index.html) for more.