forked from julsdelatierra/conekta-python
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adjust-v2-version * fix readme changes
- Loading branch information
Showing
260 changed files
with
3,952 additions
and
3,376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
// README at: https://github.com/devcontainers/templates/tree/main/src/python | ||
{ | ||
"name": "Python 3", | ||
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile | ||
"image": "mcr.microsoft.com/devcontainers/python:0-3.7" | ||
|
||
// Features to add to the dev container. More info: https://containers.dev/features. | ||
// "features": {}, | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
// "forwardPorts": [], | ||
|
||
// Use 'postCreateCommand' to run commands after the container is created. | ||
,"containerEnv": { | ||
"BASE_PATH" : "http://host.docker.internal:3000" | ||
}, | ||
"postCreateCommand": "pip3 install --user -r requirements.txt && pip install twine && pip install build", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-vscode.makefile-tools", | ||
"donjayamanne.python-extension-pack", | ||
"GitHub.copilot", | ||
"ms-python.python", | ||
"Cameron.vscode-pytest" | ||
] | ||
} | ||
} | ||
|
||
// Configure tool-specific properties. | ||
// "customizations": {}, | ||
|
||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. | ||
// "remoteUser": "root" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.4.0 | ||
6.6.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"python.testing.unittestEnabled": false, | ||
"python.testing.pytestEnabled": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
python-test: | ||
pytest | ||
|
||
clean: | ||
rm -rf ./dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# conekta-python | ||
# conekta | ||
Conekta sdk | ||
|
||
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: | ||
|
@@ -46,11 +46,9 @@ import conekta | |
Please follow the [installation procedure](#installation--usage) and then run the following: | ||
|
||
```python | ||
from __future__ import print_function | ||
|
||
import time | ||
import conekta | ||
import os | ||
from conekta.rest import ApiException | ||
from pprint import pprint | ||
|
||
|
@@ -387,7 +385,7 @@ Class | Method | HTTP request | Description | |
- [WebhookUpdateRequest](docs/WebhookUpdateRequest.md) | ||
- [WhitelistlistRuleResponse](docs/WhitelistlistRuleResponse.md) | ||
|
||
|
||
<a id="documentation-for-authorization"></a> | ||
## Documentation For Authorization | ||
|
||
|
||
|
@@ -400,4 +398,3 @@ Class | Method | HTTP request | Description | |
|
||
[email protected] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
6.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,11 +9,11 @@ | |
The version of the OpenAPI document: 2.1.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
Generated by OpenAPI Generator (https://openapi-generator.tech) | ||
Do not edit the class manually. | ||
""" | ||
|
||
from __future__ import absolute_import | ||
|
||
__version__ = "6.0.0" | ||
|
||
|
@@ -42,6 +42,7 @@ | |
from conekta.api.webhooks_api import WebhooksApi | ||
|
||
# import ApiClient | ||
from conekta.api_response import ApiResponse | ||
from conekta.api_client import ApiClient | ||
from conekta.configuration import Configuration | ||
from conekta.exceptions import OpenApiException | ||
|
@@ -50,6 +51,7 @@ | |
from conekta.exceptions import ApiKeyError | ||
from conekta.exceptions import ApiAttributeError | ||
from conekta.exceptions import ApiException | ||
|
||
# import models into sdk package | ||
from conekta.models.api_key_create_response import ApiKeyCreateResponse | ||
from conekta.models.api_key_create_response_all_of import ApiKeyCreateResponseAllOf | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.