Skip to content

Commit

Permalink
Inicializa biblioteca com OpenAPI client generator
Browse files Browse the repository at this point in the history
  • Loading branch information
trevineju committed Feb 4, 2024
1 parent 83c1f74 commit 3e87058
Show file tree
Hide file tree
Showing 95 changed files with 8,857 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# NOTE: This file is auto generated by OpenAPI Generator.
# URL: https://openapi-generator.tech
#
# ref: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: openapi_client Python package

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest
66 changes: 66 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/
venv/
.venv/
.python-version
.pytest_cache

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

#Ipython Notebook
.ipynb_checkpoints
31 changes: 31 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# NOTE: This file is auto generated by OpenAPI Generator.
# URL: https://openapi-generator.tech
#
# ref: https://docs.gitlab.com/ee/ci/README.html
# ref: https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Python.gitlab-ci.yml

stages:
- test

.pytest:
stage: test
script:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
- pytest --cov=openapi_client

pytest-3.7:
extends: .pytest
image: python:3.7-alpine
pytest-3.8:
extends: .pytest
image: python:3.8-alpine
pytest-3.9:
extends: .pytest
image: python:3.9-alpine
pytest-3.10:
extends: .pytest
image: python:3.10-alpine
pytest-3.11:
extends: .pytest
image: python:3.11-alpine
23 changes: 23 additions & 0 deletions .openapi-generator-ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# OpenAPI Generator Ignore
# Generated by openapi-generator https://github.com/openapitools/openapi-generator

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md
92 changes: 92 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
.github/workflows/python.yml
.gitignore
.gitlab-ci.yml
.openapi-generator-ignore
.travis.yml
README.md
docs/CitiesSearchResponse.md
docs/City.md
docs/CityLevel.md
docs/CitySearchResponse.md
docs/Company.md
docs/CompanySearchResponse.md
docs/CreateSuggestionBody.md
docs/CreatedSuggestionResponse.md
docs/DefaultApi.md
docs/EntitiesSearchResponse.md
docs/Entity.md
docs/GazetteItem.md
docs/GazetteSearchResponse.md
docs/HTTPExceptionMessage.md
docs/HTTPValidationError.md
docs/Partner.md
docs/PartnersSearchResponse.md
docs/SortBy.md
docs/SubthemesSearchResponse.md
docs/ThemedExcerptItem.md
docs/ThemedExcerptSearchResponse.md
docs/ThemesSearchResponse.md
docs/ValidationError.md
git_push.sh
openapi_client/__init__.py
openapi_client/api/__init__.py
openapi_client/api/default_api.py
openapi_client/api_client.py
openapi_client/api_response.py
openapi_client/configuration.py
openapi_client/exceptions.py
openapi_client/models/__init__.py
openapi_client/models/cities_search_response.py
openapi_client/models/city.py
openapi_client/models/city_level.py
openapi_client/models/city_search_response.py
openapi_client/models/company.py
openapi_client/models/company_search_response.py
openapi_client/models/create_suggestion_body.py
openapi_client/models/created_suggestion_response.py
openapi_client/models/entities_search_response.py
openapi_client/models/entity.py
openapi_client/models/gazette_item.py
openapi_client/models/gazette_search_response.py
openapi_client/models/http_exception_message.py
openapi_client/models/http_validation_error.py
openapi_client/models/partner.py
openapi_client/models/partners_search_response.py
openapi_client/models/sort_by.py
openapi_client/models/subthemes_search_response.py
openapi_client/models/themed_excerpt_item.py
openapi_client/models/themed_excerpt_search_response.py
openapi_client/models/themes_search_response.py
openapi_client/models/validation_error.py
openapi_client/py.typed
openapi_client/rest.py
pyproject.toml
requirements.txt
setup.cfg
setup.py
test-requirements.txt
test/__init__.py
test/test_cities_search_response.py
test/test_city.py
test/test_city_level.py
test/test_city_search_response.py
test/test_company.py
test/test_company_search_response.py
test/test_create_suggestion_body.py
test/test_created_suggestion_response.py
test/test_default_api.py
test/test_entities_search_response.py
test/test_entity.py
test/test_gazette_item.py
test/test_gazette_search_response.py
test/test_http_exception_message.py
test/test_http_validation_error.py
test/test_partner.py
test/test_partners_search_response.py
test/test_sort_by.py
test/test_subthemes_search_response.py
test/test_themed_excerpt_item.py
test/test_themed_excerpt_search_response.py
test/test_themes_search_response.py
test/test_validation_error.py
tox.ini
1 change: 1 addition & 0 deletions .openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7.2.0
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# ref: https://docs.travis-ci.com/user/languages/python
language: python
python:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
# uncomment the following if needed
#- "3.11-dev" # 3.11 development branch
#- "nightly" # nightly build
# command to install dependencies
install:
- "pip install -r requirements.txt"
- "pip install -r test-requirements.txt"
# command to run tests
script: pytest --cov=openapi_client
Loading

0 comments on commit 3e87058

Please sign in to comment.