apistar
apistar copied to clipboard
The Web API toolkit. 🛠
OpenAPI 3 allows for multiple [Server Objects](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#serverObject) to be defined on a single document; however, it is not currently possible to select which server is wanted with the APIStar client,...
Per the quickstart docs, the schema gets `.yaml` and the config get `.yml`. Seems unnecessarily inconsistent. afaik there's [no consensus on which extension gets used](https://stackoverflow.com/questions/21059124/is-it-yaml-or-yml) but seems like within a...
Trying to install apistar inside a venv created with python -m venv venv, python -m apistar yields "no module named apistar" Not sure what I am doing wrong, I recorded...
There's already a [TODO](https://github.com/encode/apistar/blob/2edeb6946af3562c6310fcd6db393d3960152f32/apistar/schemas/openapi.py#L441) in the code for this, but when parsing the OpenAPI schema, API Star does not seem to cater for media types other than `application/json`. The OpenAPI...
current  proposed 
I tried to validate the schema from README, but got an error: ``` > apistar validate --path schema.yaml Traceback (most recent call last): File "/home/u1/.virtualenvs/videospeed/bin/apistar", line 10, in sys.exit(cli()) File...
Both OpenAPI 2/Swagger and OpenAPI 3 offer a `deprecated` boolean attribute on [operation objects](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#operationObject), [parameter objects](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#parameter-object) and [schema objects](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#fixed-fields-20): APIStar could raise a warning when calling a deprecated endpoint, using...
Following the instructions [here](https://docs.apistar.com/api-documentation/#programmatic-interface) I'm trying to create an endpoint in a Tornado app that shows the API documentation. I'm setting up a static file handler similar to this: ```python...
apistar version: 0.7.1 I followed README and created the file `apistar.yaml`. Then launched `apistar validate`, got an error: ``` apistar validate Usage: apistar validate [OPTIONS] Error: Missing option "--path". ```...