Swagger parser giving useful informations about your swagger files
Project description
swagger-parser
Swagger-parser is a python module giving you access to some interesting data about your swagger file. Like getting a dictionary example from a definition name, get the definition of a dictionary, and more.
Example Usage
from swagger_parser import SwaggerParser
parser = SwaggerParser(swagger_path='swagger_path') # Init with file
parser = SwaggerParser(swagger_dict={}) # Init with dictionary
# Get an example of dict for the definition Foo
parser.definitions_example.get('Foo')
# Get the definition of a dictionary
test = {
'foo': 'bar'
}
parser.get_dict_definition(test)
# Validate the definition of a dict
parser.validate_definition('Foo', test)
# Validate that the given data match a path specification
parser.validate_request('/foo', 'post', body=test, query={'foo': 'bar'})
# Get the possible return value of a path
# It will return a dictionary with keys as status_code
# and value as example of return value.
parser.get_request_data('/foo', 'post', body=test)
# Get an example of a correct body for a path
parser.get_send_request_correct_body('/foo', 'post')
Documentation
More documentation is available at https://swagger-parser.readthedocs.org/en/latest/.
Setup
make install or pip install swagger-parser
License
swagger-parser is licensed under http://opensource.org/licenses/MIT.
History
1.0.0 (2017-6-11)
Drop support for python 2.6, add support for python 3.5, python 3.6 and pypy
Fix issue #35
Add file parser tests and fixes for #40, #41, #42, #43, #44, #45, thanks to @mtherieau
Use isinstance for simple type checking, thanks to @pankaj28843
Fixes for #31, #32, #33, thanks to @crudo10 and @beanqueen for the review
Bug fix when dictionary only contains 1 element, thanks to @TenOs
Add tests for “official” petstore json and yaml, thanks to @beanqueen
0.1.11 (2016-9-25)
Support additionalProperties.
0.1.10 (2016-8-25)
Don’t choke if there are no definitions
Generate operations without operationId
Generate example from properties
0.1.9 (2016-7-28)
Support array definitions.
0.1.8 (2016-5-11)
Support type field to be an array.
Use base path to validate request.
0.1.7 (2016-4-1)
Support UTF-8 in swagger.yaml.
0.1.6 (2016-3-16)
Add support for path-level parameters.
0.1.5 (2016-2-17)
Add support for parameters references in path specs.
0.1.4 (2016-2-10)
Handle string as status_code.
0.1.3 (2016-2-3)
Fix a bug in get_response_example with schema only containing a type field.
0.1.2 (2016-2-3)
Support schema with only a type field.
0.1.1 (2016-1-31)
Change license to MIT.
0.1 (2016-1-28)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file swagger_parser-1.0.1.tar.gz
.
File metadata
- Download URL: swagger_parser-1.0.1.tar.gz
- Upload date:
- Size: 30.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0802ea49468fab102ed8cb8a6cc6c41423ad60fd396c14a2f187c7d5165f2e18 |
|
MD5 | 7d551b32b05ef320cbb8a6a99894a9bd |
|
BLAKE2b-256 | 67ad01c74df697661376a9f6e7be9560597a49fe7be4f2db93e65ea9249433de |
Provenance
File details
Details for the file swagger_parser-1.0.1-py2.py3-none-any.whl
.
File metadata
- Download URL: swagger_parser-1.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 14.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c0263e3128d3af9150c6fcd83d768967211f3bcb4da330fbe318fb44e38bdd2 |
|
MD5 | 4d6a041a46d2b09733e116795899e7fb |
|
BLAKE2b-256 | 86597916d2a4793a597ab09be36b028b8bad22687264c9f2377f2cc1afd72763 |