fastily
fastily
The following snippet cannot be killed with a SIGINT (ctrl+c): ```python import asyncio from starlette.applications import Starlette from uvicorn import Config, Server async def web_ui(): await Server(Config(Starlette())).serve() async def task():...
The following program ```python import asyncio import httpx async def main(): async with httpx.AsyncClient() as client: r = await client.get("https://httpbin.org/get?foobar", params={'hello': "world"}) print(r.url) asyncio.run(main()) ``` should print `https://httpbin.org/get?hello=world&foobar` However, the...
Initially raised as discussion #1533 I've been using `httpx`'s `AsyncClient` as a web spider, however I have noticed that cookies are automatically persisted and there's no easy way to disable...
### URL to the Wiki page https://github.com/qdm12/gluetun-wiki/blob/29e3dee5024d82218e3f170b32f027102ff84aab/setup/advanced/control-server.md ### What's missing? Basically the title. I discovered that the `/v1/openvpn/*` endpoints also work for Wireguard. This should probably be documented (assuming it...