elliejs / Willump

A Python3 Helper Library for The League of Legends LCU API
MIT License
69 stars 4 forks source link

Please support Http2. #4

Closed LianhaoXue closed 1 year ago

LianhaoXue commented 2 years ago

Now some LCU API force to use http2. Requests Unable to communicate properly For example, ‘/lol-matchmaking/v1/ready-check/accept’

elliejs commented 2 years ago

thank you. will do.

elliejs commented 1 year ago

Works fine today. Is this still an issue? Closing otherwise. Sample code:

import willump
import asyncio
import logging
import json
logging.getLogger().setLevel(level=logging.DEBUG)
wllp = await willump.start()
logging.getLogger().setLevel(level=logging.NOTSET)
await wllp.request('post', '/lol-matchmaking/v1/ready-check/accept')