apistar icon indicating copy to clipboard operation
apistar copied to clipboard

The Web API toolkit. 🛠

Results 34 apistar issues
Sort by recently updated
recently updated
newest added

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 ![this](https://user-images.githubusercontent.com/11388735/70322898-5f37a800-17f9-11ea-9a27-5621fc60d76d.png) proposed ![that](https://user-images.githubusercontent.com/11388735/70322907-652d8900-17f9-11ea-99a0-9bd209550bed.png)

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". ```...