almaslov
almaslov
## Issue Description Hello! I'm trying to parse date from file path and facing an issue: ``` arrow.get("/absolute/path/2020-12-16/16-55-22/file.txt", "YYYY-MM-DD/hh-mm-ss") ``` Gives ``` Traceback (most recent call last): File ".../scratches/scratch_64.py", line...
Hello! I have an issue with describing an optional property with oneOf keyword. Given a code: ``` from aiohttp import web from aiohttp_swagger3 import SwaggerDocs, SwaggerUiSettings async def handler(request: web.Request)...
Hello! I have got an API with multiple models. I'd like to to implement filters in my handler which would look like this: `GET /api/pets?name.eq=buddy&age.lt=5`. Here I'm trying to get...
Added C extension base class for every message. These base classes define native fields and corresponding slots(aka `struct PyMemberDef`). During deserialization they allow to call `__new__`(which is C function) instead...
## Feature request Hello! As already mentioned in other discussions python implementation has issues in serialization and deserialization performance(e.g. [here](https://discourse.ros.org/t/high-cpu-load-for-simple-python-nodes/28324/27)). I focus on deserialization here. I've tried some fixes on...