Hugo-C

Results 6 comments of Hugo-C

Thanks for the quick reply. Using release `3.2.1` worked fine for me, so it's a good work-around. I'll try to come up with a PR, that'll at least contains a...

I had in mind this test: ```python from asyncio import get_running_loop from pyrate_limiter import Duration, Rate, InMemoryBucket, Limiter rates = [Rate(2, Duration.SECOND)] bucket = InMemoryBucket(rates) limiter = Limiter(bucket, max_delay=Duration.SECOND) limiter.try_acquire("some...

Please note that since Python 3.3, `ipaddress` is in the standard library: https://docs.python.org/3/library/ipaddress.html.

For people using docker compose that don't want to modify the code, it's also possible to add an env var: ```yml environment: LOGURU_COLORIZE: YES ```

This seems linked to the wrangler version, adding it like: ```yaml - name: Build & Deploy Worker uses: cloudflare/wrangler-action@v3 with: wranglerVersion: "latest"

adding: ```yaml environment: ``` works for me [here](https://github.com/Hugo-C/threatfox-daily-c2/blob/dfca7d7b217c3cd0e2bc787b1e677829f1fe75f2/.github/workflows/deploy.yml), is it what you are looking for ?