Aggregate several swagger APIs in one
Project description
swagger-aggregator
Swagger-aggregator allow you to create a swagger REST API from several other swagger REST APIs.
This can be really useful if you want to make an API Gateway accessing some of your internal APIs. You can also filter which path you want to deliver, and which properties of your definitions you don’t want to show.
Example Usage
Here is an example of an aggregate configuration.
args: pet_url
info:
version: "0.1"
title: "API Gateway"
basePath: /v2
apis:
pet: http://pet_url/v2
exclude_paths:
- DELETE /pets/{petId}
exclude_fields:
petPet:
- id
This is not the most useful aggregation, as it only aggregate one API. The first part, args, define that the first parameter we will send to the aggregate will be pet_url. Then pet_url will be replaced by the given value everywhere in the config. The two next part, info and basePath, are the same as the ones you can find in every swagger API. apis, define the different APIs you want to aggregate. A name is associated with it URL. Then exclude_paths allow you to not deliver some path. In this case we don’t want the user to delete a pet.
Finally, exclude_fields define the attributes of the definitions we do not want to show. The value of the keys is the name of the API followed by the name of the definition. The value of each key will be a list of all properties to exclude.
Then use this command to generate the aggregated swagger file:
from traxit_aggregator import SwaggerAggregator
SwaggerAggregator('config.yaml', 'pet.com')
Documentation
More documentation is available at https://swagger-aggregator.readthedocs.org/en/latest/.
Setup
make install or pip install swagger-aggregator
License
swagger-aggregator is licensed under http://opensource.org/licenses/MIT.
History
0.1.1 (2016-1-31)
Change license to MIT.
0.1 (2016-1-29)
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_aggregator-0.1.1.tar.gz
.
File metadata
- Download URL: swagger_aggregator-0.1.1.tar.gz
- Upload date:
- Size: 17.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0476f6be8e73654326affb7876f1e8a22de5058b2cc0145088edf021453105a6 |
|
MD5 | 34e06ccd6261cc291e46a800ff7b04c2 |
|
BLAKE2b-256 | db89bae159e9f5b2dee0ae72fa630f33b2425eacac27e83375f5ad45f5c7db2a |
File details
Details for the file swagger_aggregator-0.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: swagger_aggregator-0.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f26c1fe417a3edd2c4cfae82af8e71c9b6e8c00fda441d179d75c9fdb7365e39 |
|
MD5 | 9f1ef2893f6a6e2bb5941357af54051f |
|
BLAKE2b-256 | f17e4f2d1ab5222397e07daa0587b9c4d65383cc602a87ccb1f8947126a0ed5a |