Skip to content

Commit 22cc38c

Browse files
committed
chore: python sdk release flow
1 parent 3e2a8a4 commit 22cc38c

File tree

159 files changed

+169
-169
lines changed

Some content is hidden

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

159 files changed

+169
-169
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
> Currently, this API is in beta stage, meaning that breaking changes, while unlikely, might be introduced.
44
> If you encounter any issues or have any feedback, please create an issue on the [Github Repository](https://github.com/hostinger/api/issues).
55
# Overview
6-
The Hostinger API provides a comprehensive set of endpoints that allow developers to interact with Hostinger's services programmatically.
6+
The Hostinger API provides a comprehensive set of endpoints that allow developers to interact with Hostinger's services programmatically.
77
This API enables you to manage various aspects of your Hostinger account.
88

99
The Hostinger API is a (mostly) RESTful API that uses standard HTTP methods and status codes.
@@ -15,24 +15,24 @@ Authorization: Bearer YOUR_API_TOKEN
1515
API tokens for individual users can be created and managed from the [VPS page](https://hpanel.hostinger.com/vps) of the Hostinger Panel.
1616
Tokens will have same permissions as the owning user. Optionally, tokens can be set to expire after a certain period of time.
1717
# Rate Limiting
18-
To ensure fair usage and prevent abuse, the API enforces rate limits on the number of requests that can be made within a certain time period.
18+
To ensure fair usage and prevent abuse, the API enforces rate limits on the number of requests that can be made within a certain time period.
1919
If you exceed the rate limit, you will receive a 429 Too Many Requests response. Rate limit headers are included in the response to help you manage your requests.
2020
Your IP address might get temporarily blocked if you exceed the rate limit multiple times.
2121
# Parameters
2222
All requests sent to API must have the content type `application/json`. `POST`, `PUT`, `PATCH` methods may include a JSON object in the request body. Documentation provides required structure and examples of the object.
2323
Some endpoints require path parameters. These parameters are included in the URL path and are marked with curly braces.
2424
# Pagination
2525
Some endpoints return a large number of items. To make these responses more manageable, the API uses pagination.
26-
By default, the API returns 50 items per page.
27-
26+
By default, the API returns50 items per page.
27+
2828
The page number can be specified using the `page` query parameter, for example: `/api/vps/v1/public-keys?page=2`
2929
# Errors
3030
The Hostinger API uses standard HTTP status codes to indicate the success or failure of a request.
3131
In case of an error, the API will return a JSON response with an `error` field, containing a human-readable error message.
3232
Error responses also contain a `correlation_id` field which can be used to identify the request in case you need to contact support.
3333
# Change log
3434
For information on the latest changes to the API, please refer to the [change log](https://github.com/hostinger/api/blob/main/CHANGELOG.md).
35-
# Support
35+
# Support
3636
If you have any questions, feedback or feature requests, please create an [issue](https://github.com/hostinger/api/issues) or [discussion](https://github.com/hostinger/api/discussions) on the repository.
3737

3838
For any support take a look at our [Github Repository](https://github.com/hostinger/api/), dedicated to the Hostinger API.

hostinger_api/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"""
66
Hostinger API Python SDK
77
8-
API Version: 0.0.1-beta
8+
API Version: 0.0.2
99
1010
NOTE: This file is auto-generated, DO NOT EDIT THIS FILE MANUALLY!
1111
If you want to contribute or request a new feature, please create an issue or pull request on https://github.com/hostinger/api
1212
""" # noqa: E501
1313

1414

15-
__version__ = "1.0.0"
15+
__version__ = "1.0.1"
1616

1717
# import apis into sdk package
1818
from hostinger_api.api.billing_catalog_api import BillingCatalogApi

hostinger_api/api/billing_catalog_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
Hostinger API Python SDK
55
6-
API Version: 0.0.1-beta
6+
API Version: 0.0.2
77
88
NOTE: This file is auto-generated, DO NOT EDIT THIS FILE MANUALLY!
99
If you want to contribute or request a new feature, please create an issue or pull request on https://github.com/hostinger/api

hostinger_api/api/billing_orders_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
Hostinger API Python SDK
55
6-
API Version: 0.0.1-beta
6+
API Version: 0.0.2
77
88
NOTE: This file is auto-generated, DO NOT EDIT THIS FILE MANUALLY!
99
If you want to contribute or request a new feature, please create an issue or pull request on https://github.com/hostinger/api

hostinger_api/api/billing_payment_methods_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
Hostinger API Python SDK
55
6-
API Version: 0.0.1-beta
6+
API Version: 0.0.2
77
88
NOTE: This file is auto-generated, DO NOT EDIT THIS FILE MANUALLY!
99
If you want to contribute or request a new feature, please create an issue or pull request on https://github.com/hostinger/api

hostinger_api/api/billing_subscriptions_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
Hostinger API Python SDK
55
6-
API Version: 0.0.1-beta
6+
API Version: 0.0.2
77
88
NOTE: This file is auto-generated, DO NOT EDIT THIS FILE MANUALLY!
99
If you want to contribute or request a new feature, please create an issue or pull request on https://github.com/hostinger/api

hostinger_api/api/domains_portfolio_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
Hostinger API Python SDK
55
6-
API Version: 0.0.1-beta
6+
API Version: 0.0.2
77
88
NOTE: This file is auto-generated, DO NOT EDIT THIS FILE MANUALLY!
99
If you want to contribute or request a new feature, please create an issue or pull request on https://github.com/hostinger/api

hostinger_api/api/vps_actions_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
Hostinger API Python SDK
55
6-
API Version: 0.0.1-beta
6+
API Version: 0.0.2
77
88
NOTE: This file is auto-generated, DO NOT EDIT THIS FILE MANUALLY!
99
If you want to contribute or request a new feature, please create an issue or pull request on https://github.com/hostinger/api

hostinger_api/api/vps_backups_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
Hostinger API Python SDK
55
6-
API Version: 0.0.1-beta
6+
API Version: 0.0.2
77
88
NOTE: This file is auto-generated, DO NOT EDIT THIS FILE MANUALLY!
99
If you want to contribute or request a new feature, please create an issue or pull request on https://github.com/hostinger/api

hostinger_api/api/vps_data_centers_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
Hostinger API Python SDK
55
6-
API Version: 0.0.1-beta
6+
API Version: 0.0.2
77
88
NOTE: This file is auto-generated, DO NOT EDIT THIS FILE MANUALLY!
99
If you want to contribute or request a new feature, please create an issue or pull request on https://github.com/hostinger/api

0 commit comments

Comments
 (0)