Skip to main content

Create Connexion schema composed from several files in a nested directory structure.

Project description

# Connexion Compose

## Purpose

Create Connexion schema composed from several files in a nested directory structure.

Resulting schema automatically includes common defaults, which you can use or override.

Requires Python 3.6+

## Installation

```
pip install connexion-compose
```

## Usage

```python
from connexion_compose import compile_schema

spec_dir = 'some/dir'

schema = compile_schema(spec_dir)
```

The `compile_schema` function traverses the specification directory and all subdirectories,
creating YAML attributes according to the directory structure.
The bottom level files are "headers" and top level features, usually all contained in headers.py.

For example, given the following directory structure:

```
├── 10-header.yml
├── 90-footer.yml
├── definitions
│ └── 50-whatever.yml
├── parameters
│ ├── 10-par1.yml
│ └── 20-par2.yml
└── x
└── y
└── z.yml
```

The resulting object will correspond to the following YAML input:

```
[contents of 10-header.yml]
[contents of 90-footer.yml]
definitions:
[contents of 50-whatever.yml]
parameters:
[contents of 10-par1.yml]
[contents of 20-par2.yml]
x:
y:
[contents of z.yml]
```

# Defaults

```yaml
swagger: '2.0'
info:
contact: {name: Please add a contact name}
description: Please add a description
title: Please add a title
version: 0.0.0
x-visibility: unlisted
basePath: /
schemes: [https]
consumes: [application/json]
produces: [application/json]
securityDefinitions:
Bearer: {in: header, name: Authorization, type: apiKey}
security:
- Bearer: []
definitions:
Currency: {format: iso_4217, type: string}
Decimal: {format: decimal, type: string}
Path: {format: path, type: string}
Timestamp: {format: rfc_3339, type: string}
URL: {format: url, type: string}
UUID: {format: uuid, type: string}
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

connexion-compose-0.1.4.tar.gz (4.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page