Skip to content

stefan6419846/swagger-parser

 
 

Repository files navigation

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.

You may find related libraries to this one:

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

pip install swagger-parser (only for the original version)

About this fork

This repository contains my own fork of the package with some basic changes:

  • Fix compatibility with recent Python versions and drop Python 2 compatibility code.
  • Avoid pinning pyyaml on some old beta version.
  • Add CI based upon GitHub Actions to run the tests and linting automatically.

For now, I do not have any direct plans to send a corresponding PR due to the upstream repository not appearing really maintained.

License

swagger-parser is licensed under http://opensource.org/licenses/MIT.

About

Give useful information about your swagger files.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 96.8%
  • Makefile 3.2%