Berislav Lopac

Results 12 issues of Berislav Lopac

**Describe the bug** Black unexpectedly changes the indentation of docstrings. **To Reproduce** Steps to reproduce the behavior: 1. Take this file: ```python def something(foo, bar): """ My docstring. Some more...

T: bug
F: strings / docstrings

Add support for `twine upload`.

Explore and if possible implement what is needed to be able to require authorization before using the API. Probably requires changing API Gateway configuration.

PEP 503 states: > The URL SHOULD include a hash in the form of an URL fragment with the following syntax: `#=`, where `` is the lowercase name of the...

The project needs more detailed documentation, with more examples and any edge cases.

The [src/examples/server/pets.py](https://github.com/berislavlopac/pyotr/blob/master/src/examples/server/pets.py) file contains stubs for all the functions corresponding to the the operation IDs as defined in the [petstore.yaml](https://github.com/berislavlopac/pyotr/blob/master/src/examples/petstore.yaml) specification. However, only `find_pets_by_status` has any implementation, while all others...

good first issue

**Is your feature request related to a problem? Please describe.** CORS requires an OPTIONS request to be sent before an actual request to an endpoint. **Describe the solution you'd like**...

enhancement
help wanted

**Is your feature request related to a problem? Please describe.** Currently, an endpoint function is supposed to expect the `starlette` `Request` object, and it is responsible to extract the raw...

enhancement
help wanted
question

**Is your feature request related to a problem? Please describe.** Currently, the operation methods attached to the client expect `*args` for path parameters and `**kwargs` for query parameters, while there...

enhancement

When using `MultiForm` as the form in one of the entries of the `form_list` attribute of the Django's `WizardView`, I'm getting the following error: ``` 'NoneType' object has no attribute...