Skip to content

Commit a472ba8

Browse files
committed
change package name to helloasso_python
1 parent d8b4591 commit a472ba8

217 files changed

Lines changed: 1052 additions & 1052 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# ref: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
55

6-
name: openapi_client Python package
6+
name: helloasso_python Python package
77

88
on: [push, pull_request]
99

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ stages:
1212
script:
1313
- pip install -r requirements.txt
1414
- pip install -r test-requirements.txt
15-
- pytest --cov=openapi_client
15+
- pytest --cov=helloasso_python
1616

1717
pytest-3.8:
1818
extends: .pytest

.openapi-generator/FILES

Lines changed: 118 additions & 118 deletions
Large diffs are not rendered by default.

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ install:
1414
- "pip install -r requirements.txt"
1515
- "pip install -r test-requirements.txt"
1616
# command to run tests
17-
script: pytest --cov=openapi_client
17+
script: pytest --cov=helloasso_python

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pip install helloasso-python
1818

1919
Then import the package:
2020
```python
21-
import openapi_client
21+
import helloasso_python
2222
```
2323

2424
### Setuptools
@@ -32,7 +32,7 @@ python setup.py install --user
3232

3333
Then import the package:
3434
```python
35-
import openapi_client
35+
import helloasso_python
3636
```
3737

3838
### Tests
@@ -45,13 +45,13 @@ Please follow the [installation procedure](#installation--usage) and then run th
4545

4646
```python
4747

48-
import openapi_client
49-
from openapi_client.rest import ApiException
48+
import helloasso_python
49+
from helloasso_python.rest import ApiException
5050
from pprint import pprint
5151

5252
# Defining the host is optional and defaults to https://api.helloasso.com/v5
5353
# See configuration.py for a list of all supported configuration parameters.
54-
configuration = openapi_client.Configuration(
54+
configuration = helloasso_python.Configuration(
5555
host = "https://api.helloasso.com/v5"
5656
)
5757

@@ -64,12 +64,12 @@ configuration.access_token = os.environ["ACCESS_TOKEN"]
6464

6565

6666
# Enter a context with an instance of the API client
67-
with openapi_client.ApiClient(configuration) as api_client:
67+
with helloasso_python.ApiClient(configuration) as api_client:
6868
# Create an instance of the API class
69-
api_instance = openapi_client.AnnuaireApi(api_client)
69+
api_instance = helloasso_python.AnnuaireApi(api_client)
7070
page_size = 20 # int | The number of items per page (optional) (default to 20)
7171
continuation_token = 'continuation_token_example' # str | Continuation Token from which we wish to retrieve results (optional)
72-
hello_asso_api_v5_models_directory_list_forms_request = openapi_client.HelloAssoApiV5ModelsDirectoryListFormsRequest() # HelloAssoApiV5ModelsDirectoryListFormsRequest | Body which contains the filters to apply (optional)
72+
hello_asso_api_v5_models_directory_list_forms_request = helloasso_python.HelloAssoApiV5ModelsDirectoryListFormsRequest() # HelloAssoApiV5ModelsDirectoryListFormsRequest | Body which contains the filters to apply (optional)
7373

7474
try:
7575
# Récupérer les formulaires

docs/AnnuaireApi.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# openapi_client.AnnuaireApi
1+
# helloasso_python.AnnuaireApi
22

33
All URIs are relative to *https://api.helloasso.com/v5*
44

@@ -20,15 +20,15 @@ Permet de récupérer une liste de tous les formulaires visibles correspondant
2020
* OAuth Authentication (OAuth2):
2121

2222
```python
23-
import openapi_client
24-
from openapi_client.models.hello_asso_api_v5_models_directory_list_forms_request import HelloAssoApiV5ModelsDirectoryListFormsRequest
25-
from openapi_client.models.results_with_pagination_model_synchronizable_form_model import ResultsWithPaginationModelSynchronizableFormModel
26-
from openapi_client.rest import ApiException
23+
import helloasso_python
24+
from helloasso_python.models.hello_asso_api_v5_models_directory_list_forms_request import HelloAssoApiV5ModelsDirectoryListFormsRequest
25+
from helloasso_python.models.results_with_pagination_model_synchronizable_form_model import ResultsWithPaginationModelSynchronizableFormModel
26+
from helloasso_python.rest import ApiException
2727
from pprint import pprint
2828

2929
# Defining the host is optional and defaults to https://api.helloasso.com/v5
3030
# See configuration.py for a list of all supported configuration parameters.
31-
configuration = openapi_client.Configuration(
31+
configuration = helloasso_python.Configuration(
3232
host = "https://api.helloasso.com/v5"
3333
)
3434

@@ -40,12 +40,12 @@ configuration = openapi_client.Configuration(
4040
configuration.access_token = os.environ["ACCESS_TOKEN"]
4141

4242
# Enter a context with an instance of the API client
43-
with openapi_client.ApiClient(configuration) as api_client:
43+
with helloasso_python.ApiClient(configuration) as api_client:
4444
# Create an instance of the API class
45-
api_instance = openapi_client.AnnuaireApi(api_client)
45+
api_instance = helloasso_python.AnnuaireApi(api_client)
4646
page_size = 20 # int | The number of items per page (optional) (default to 20)
4747
continuation_token = 'continuation_token_example' # str | Continuation Token from which we wish to retrieve results (optional)
48-
hello_asso_api_v5_models_directory_list_forms_request = openapi_client.HelloAssoApiV5ModelsDirectoryListFormsRequest() # HelloAssoApiV5ModelsDirectoryListFormsRequest | Body which contains the filters to apply (optional)
48+
hello_asso_api_v5_models_directory_list_forms_request = helloasso_python.HelloAssoApiV5ModelsDirectoryListFormsRequest() # HelloAssoApiV5ModelsDirectoryListFormsRequest | Body which contains the filters to apply (optional)
4949

5050
try:
5151
# Récupérer les formulaires
@@ -102,15 +102,15 @@ Permet de récupérer une liste de toutes les organisations visibles corresponda
102102
* OAuth Authentication (OAuth2):
103103

104104
```python
105-
import openapi_client
106-
from openapi_client.models.hello_asso_api_v5_models_directory_list_organizations_request import HelloAssoApiV5ModelsDirectoryListOrganizationsRequest
107-
from openapi_client.models.results_with_pagination_model_synchronizable_organization_model import ResultsWithPaginationModelSynchronizableOrganizationModel
108-
from openapi_client.rest import ApiException
105+
import helloasso_python
106+
from helloasso_python.models.hello_asso_api_v5_models_directory_list_organizations_request import HelloAssoApiV5ModelsDirectoryListOrganizationsRequest
107+
from helloasso_python.models.results_with_pagination_model_synchronizable_organization_model import ResultsWithPaginationModelSynchronizableOrganizationModel
108+
from helloasso_python.rest import ApiException
109109
from pprint import pprint
110110

111111
# Defining the host is optional and defaults to https://api.helloasso.com/v5
112112
# See configuration.py for a list of all supported configuration parameters.
113-
configuration = openapi_client.Configuration(
113+
configuration = helloasso_python.Configuration(
114114
host = "https://api.helloasso.com/v5"
115115
)
116116

@@ -122,12 +122,12 @@ configuration = openapi_client.Configuration(
122122
configuration.access_token = os.environ["ACCESS_TOKEN"]
123123

124124
# Enter a context with an instance of the API client
125-
with openapi_client.ApiClient(configuration) as api_client:
125+
with helloasso_python.ApiClient(configuration) as api_client:
126126
# Create an instance of the API class
127-
api_instance = openapi_client.AnnuaireApi(api_client)
127+
api_instance = helloasso_python.AnnuaireApi(api_client)
128128
page_size = 20 # int | The number of items per page (optional) (default to 20)
129129
continuation_token = 'continuation_token_example' # str | Continuation Token from which we wish to retrieve results (optional)
130-
hello_asso_api_v5_models_directory_list_organizations_request = openapi_client.HelloAssoApiV5ModelsDirectoryListOrganizationsRequest() # HelloAssoApiV5ModelsDirectoryListOrganizationsRequest | Body which contains the filters to apply (optional)
130+
hello_asso_api_v5_models_directory_list_organizations_request = helloasso_python.HelloAssoApiV5ModelsDirectoryListOrganizationsRequest() # HelloAssoApiV5ModelsDirectoryListOrganizationsRequest | Body which contains the filters to apply (optional)
131131

132132
try:
133133
# Récupérer les organisations

docs/CheckoutApi.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# openapi_client.CheckoutApi
1+
# helloasso_python.CheckoutApi
22

33
All URIs are relative to *https://api.helloasso.com/v5*
44

@@ -20,14 +20,14 @@ Retourne aussi la commande associée. Uniquement dans le cas ou le paiement est
2020
* OAuth Authentication (OAuth2):
2121

2222
```python
23-
import openapi_client
24-
from openapi_client.models.hello_asso_api_v5_models_carts_checkout_intent_response import HelloAssoApiV5ModelsCartsCheckoutIntentResponse
25-
from openapi_client.rest import ApiException
23+
import helloasso_python
24+
from helloasso_python.models.hello_asso_api_v5_models_carts_checkout_intent_response import HelloAssoApiV5ModelsCartsCheckoutIntentResponse
25+
from helloasso_python.rest import ApiException
2626
from pprint import pprint
2727

2828
# Defining the host is optional and defaults to https://api.helloasso.com/v5
2929
# See configuration.py for a list of all supported configuration parameters.
30-
configuration = openapi_client.Configuration(
30+
configuration = helloasso_python.Configuration(
3131
host = "https://api.helloasso.com/v5"
3232
)
3333

@@ -39,9 +39,9 @@ configuration = openapi_client.Configuration(
3939
configuration.access_token = os.environ["ACCESS_TOKEN"]
4040

4141
# Enter a context with an instance of the API client
42-
with openapi_client.ApiClient(configuration) as api_client:
42+
with helloasso_python.ApiClient(configuration) as api_client:
4343
# Create an instance of the API class
44-
api_instance = openapi_client.CheckoutApi(api_client)
44+
api_instance = helloasso_python.CheckoutApi(api_client)
4545
organization_slug = 'organization_slug_example' # str |
4646
checkout_intent_id = 56 # int |
4747
with_failed_refund_operation = False # bool | (optional) (default to False)
@@ -101,15 +101,15 @@ Pour tout savoir sur Checkout consultez d'abord notre <a href=\"https://dev.hell
101101
* OAuth Authentication (OAuth2):
102102

103103
```python
104-
import openapi_client
105-
from openapi_client.models.hello_asso_api_v5_models_carts_init_checkout_body import HelloAssoApiV5ModelsCartsInitCheckoutBody
106-
from openapi_client.models.hello_asso_api_v5_models_carts_init_checkout_response import HelloAssoApiV5ModelsCartsInitCheckoutResponse
107-
from openapi_client.rest import ApiException
104+
import helloasso_python
105+
from helloasso_python.models.hello_asso_api_v5_models_carts_init_checkout_body import HelloAssoApiV5ModelsCartsInitCheckoutBody
106+
from helloasso_python.models.hello_asso_api_v5_models_carts_init_checkout_response import HelloAssoApiV5ModelsCartsInitCheckoutResponse
107+
from helloasso_python.rest import ApiException
108108
from pprint import pprint
109109

110110
# Defining the host is optional and defaults to https://api.helloasso.com/v5
111111
# See configuration.py for a list of all supported configuration parameters.
112-
configuration = openapi_client.Configuration(
112+
configuration = helloasso_python.Configuration(
113113
host = "https://api.helloasso.com/v5"
114114
)
115115

@@ -121,11 +121,11 @@ configuration = openapi_client.Configuration(
121121
configuration.access_token = os.environ["ACCESS_TOKEN"]
122122

123123
# Enter a context with an instance of the API client
124-
with openapi_client.ApiClient(configuration) as api_client:
124+
with helloasso_python.ApiClient(configuration) as api_client:
125125
# Create an instance of the API class
126-
api_instance = openapi_client.CheckoutApi(api_client)
126+
api_instance = helloasso_python.CheckoutApi(api_client)
127127
organization_slug = 'organization_slug_example' # str |
128-
hello_asso_api_v5_models_carts_init_checkout_body = openapi_client.HelloAssoApiV5ModelsCartsInitCheckoutBody() # HelloAssoApiV5ModelsCartsInitCheckoutBody | (optional)
128+
hello_asso_api_v5_models_carts_init_checkout_body = helloasso_python.HelloAssoApiV5ModelsCartsInitCheckoutBody() # HelloAssoApiV5ModelsCartsInitCheckoutBody | (optional)
129129

130130
try:
131131
# Initialisation d'un Checkout

0 commit comments

Comments
 (0)