Alexander Vasin
Alexander Vasin
[Installing from VCS](https://packaging.python.org/en/latest/tutorials/installing-packages/#installing-from-vcs) example says, that `python3 -m pip install -e SomeProject @ git+https://git.repo/some_pkg.git` command should install package in editable mode from VCS. Tested on Mac Ventura 13.1, on both...
Can i use this project with `~=` operator? ``` gibberish~=0.4.0 ``` Does it follow [Semantic versioning](https://semver.org)?
How is it possible to return 201 status for example?
This make possible registration of nested routes: ```python WebSocketHandler.add_route("uploader.pdf", PdfUploaderRoute) ```
When i specify `key_builder` for `@multi_cached` decorator, it makes two strange things: it modifies input for target function, and also return modified keys: ``` import asyncio from aiocache import multi_cached...