Skip to content

Commit

Permalink
Renomeia para quedapi
Browse files Browse the repository at this point in the history
  • Loading branch information
trevineju committed Feb 4, 2024
1 parent 3e87058 commit d67844f
Show file tree
Hide file tree
Showing 87 changed files with 301 additions and 304 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# ref: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: openapi_client Python package
name: quedapi Python package

on: [push, pull_request]

Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ stages:
script:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
- pytest --cov=openapi_client
- pytest --cov=quedapi

pytest-3.7:
extends: .pytest
Expand Down
64 changes: 32 additions & 32 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -28,38 +28,38 @@ 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
quedapi/__init__.py
quedapi/api/__init__.py
quedapi/api/default_api.py
quedapi/api_client.py
quedapi/api_response.py
quedapi/configuration.py
quedapi/exceptions.py
quedapi/models/__init__.py
quedapi/models/cities_search_response.py
quedapi/models/city.py
quedapi/models/city_level.py
quedapi/models/city_search_response.py
quedapi/models/company.py
quedapi/models/company_search_response.py
quedapi/models/create_suggestion_body.py
quedapi/models/created_suggestion_response.py
quedapi/models/entities_search_response.py
quedapi/models/entity.py
quedapi/models/gazette_item.py
quedapi/models/gazette_search_response.py
quedapi/models/http_exception_message.py
quedapi/models/http_validation_error.py
quedapi/models/partner.py
quedapi/models/partners_search_response.py
quedapi/models/sort_by.py
quedapi/models/subthemes_search_response.py
quedapi/models/themed_excerpt_item.py
quedapi/models/themed_excerpt_search_response.py
quedapi/models/themes_search_response.py
quedapi/models/validation_error.py
quedapi/py.typed
quedapi/rest.py
pyproject.toml
requirements.txt
setup.cfg
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ install:
- "pip install -r requirements.txt"
- "pip install -r test-requirements.txt"
# command to run tests
script: pytest --cov=openapi_client
script: pytest --cov=quedapi
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git

Then import the package:
```python
import openapi_client
import quedapi
```

### Setuptools
Expand All @@ -37,7 +37,7 @@ python setup.py install --user

Then import the package:
```python
import openapi_client
import quedapi
```

### Tests
Expand All @@ -51,22 +51,22 @@ Please follow the [installation procedure](#installation--usage) and then run th
```python

import time
import openapi_client
from openapi_client.rest import ApiException
import quedapi
from quedapi.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://queridodiario.ok.org.br/api
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
configuration = quedapi.Configuration(
host = "https://queridodiario.ok.org.br/api"
)



# Enter a context with an instance of the API client
with openapi_client.ApiClient(configuration) as api_client:
with quedapi.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = openapi_client.DefaultApi(api_client)
api_instance = quedapi.DefaultApi(api_client)
theme = 'theme_example' # str | Theme that can be used to search in gazettes by theme.

try:
Expand Down
2 changes: 1 addition & 1 deletion docs/CitiesSearchResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Name | Type | Description | Notes
## Example

```python
from openapi_client.models.cities_search_response import CitiesSearchResponse
from quedapi.models.cities_search_response import CitiesSearchResponse

# TODO update the JSON string below
json = "{}"
Expand Down
2 changes: 1 addition & 1 deletion docs/City.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Name | Type | Description | Notes
## Example

```python
from openapi_client.models.city import City
from quedapi.models.city import City

# TODO update the JSON string below
json = "{}"
Expand Down
2 changes: 1 addition & 1 deletion docs/CitySearchResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Name | Type | Description | Notes
## Example

```python
from openapi_client.models.city_search_response import CitySearchResponse
from quedapi.models.city_search_response import CitySearchResponse

# TODO update the JSON string below
json = "{}"
Expand Down
2 changes: 1 addition & 1 deletion docs/Company.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Name | Type | Description | Notes
## Example

```python
from openapi_client.models.company import Company
from quedapi.models.company import Company

# TODO update the JSON string below
json = "{}"
Expand Down
2 changes: 1 addition & 1 deletion docs/CompanySearchResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Name | Type | Description | Notes
## Example

```python
from openapi_client.models.company_search_response import CompanySearchResponse
from quedapi.models.company_search_response import CompanySearchResponse

# TODO update the JSON string below
json = "{}"
Expand Down
2 changes: 1 addition & 1 deletion docs/CreateSuggestionBody.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Name | Type | Description | Notes
## Example

```python
from openapi_client.models.create_suggestion_body import CreateSuggestionBody
from quedapi.models.create_suggestion_body import CreateSuggestionBody

# TODO update the JSON string below
json = "{}"
Expand Down
2 changes: 1 addition & 1 deletion docs/CreatedSuggestionResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Name | Type | Description | Notes
## Example

```python
from openapi_client.models.created_suggestion_response import CreatedSuggestionResponse
from quedapi.models.created_suggestion_response import CreatedSuggestionResponse

# TODO update the JSON string below
json = "{}"
Expand Down
Loading

0 comments on commit d67844f

Please sign in to comment.