ZipFile

Results 11 issues of ZipFile

Was trying to use `/tmp/air` as `tmp_dir` but it did not work well. `filepath.Join` simply concatenates both components, resulting in something like `/home/user/myproj/tmp/air`, which is counter-intuitive.

* Makes possible to fake a time without using `freezegun:freeze_time` or `unittest.mock:patch`. Less monkey patching == better code. * Makes possible to reuse current time fetched elsewhere (e.g. from request).

Starlette recently added cool new feature called [lifespan](https://www.starlette.io/lifespan/) in [v0.26.0](https://github.com/encode/starlette/releases/tag/0.26.0) and FastAPI [followed the suit](https://fastapi.tiangolo.com/advanced/events/#lifespan) in [v0.93.0](https://github.com/tiangolo/fastapi/releases/tag/0.93.0). This makes it possible to get rid of good chunk of initialization spaghetti...

One PR to (re)fix em all: #49, #64, #66, #87. API around clamping and upscaling seems confusing for everyone, so here's proposal to fix this issue. Idea is to keep...

Consider following use cases: * Spiders distributed by availability zones. In order to utilize full throughput during broad crawls it makes sense to spread some of your spiders across different...

As title says. Major incompatibility with v0.29 was new mandatory dunder mangling, so solution was simply to rename them. Otherwise migration was pretty much straightforward. Notes: * Cython 3 no...

enhancement

I've been using this library in quite intense applications. With a simple trick you can squeeze out some more performance out of the generator. This PR adds a simple wrapper...

Since [last release](https://github.com/hjpotter92/sonyflake-py/releases/tag/1.3.0) a lot has changed in [python packaging](https://packaging.python.org/) world, `setup.py` is pretty much legacy now. Notes: * Looks like [project on Travis](https://travis-ci.com/hjpotter92/sonyflake-py) is no more. Should we rewrite...

**Is your feature request related to a problem? Please describe.** I want to implement basic schema registry out of generated models, so I need a way to include extra identifying...

Current brush behavior does not line up with default Blender brush behavior. It would be nice to have radius dynamically calculated based on *view* instead of a *scene*.