espdev
espdev
Ваш REST API в `/market/candles` требует указывать валидный интервал дат `from/to` для получения свечей. Допустим, если я указываю from date или to date, выходящие из интервала существующих данных, ваш API...
Hello, I'm trying to run the example: ```python from plyse import QueryParser, GrammarFactory parser = QueryParser(GrammarFactory.build_default()) query = parser.parse("hello world") ``` And I'm getting the following exception: ``` TypeError Traceback...
Hello, The package does not work on Python >=3.11 ``` >>> from openlimit import EmbeddingRateLimiter Traceback (most recent call last): File "", line 1, in File "lib/python3.11/site-packages/openlimit/__init__.py", line 1, in...
Hello, In FastAPI 0.115.0 [query parameter models](https://fastapi.tiangolo.com/tutorial/query-param-models/#query-parameter-models) functionality has been added. If we use fastapi-pagination (`add_pagination(app)`) this feature works incorrectly. For example: ```python class QueryFilters(BaseModel): foo: int | None =...
Hello, It seems that for numerals, it is not correct to parse numbers that have "and" between them as single numbers. For example: * "thirty and six" -> 36 *...
### Summary Hello, I try to use [constraint-dependencies](https://docs.astral.sh/uv/reference/settings/#constraint-dependencies) setting to apply constraints for the dependency resolver. I need to apply constraints because I need to install `pyqt5` dependency in a...
Hello! I see that you have support sqlalchemy and tortoise. How hard is it to do support raw SQL query for Postgres/asyncpg prepare statements? I mean, we are using plain...