Skip to main content

Hostinger API

Project description

Hostinger API Python SDK

PyPI version

About

This is a Python SDK for the Hostinger API.

For more information, please visit https://developers.hostinger.com.

Requirements.

Python 3.9+

Installation & Usage

pip install

Setup new virtual environment (optional but recommended):

python3 -m venv venv
source venv/bin/activate

Install the package via pip:

pip install hostinger_api

Then import the package:

import hostinger_api

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import hostinger_api

Getting Started

Please follow the installation procedure and then run the following:

import hostinger_api
from hostinger_api.rest import ApiException
from pprint import pprint


# Configure Bearer authorization: apiToken
configuration = hostinger_api.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)


# Enter a context with an instance of the API client
with hostinger_api.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = hostinger_api.BillingCatalogApi(api_client)
    category = 'VPS' # str | Filter catalog items by category (optional)
    name = '.COM*' # str | Filter catalog items by name. Use `*` for wildcard search, e.g. `.COM*` to find .com domain (optional)

    try:
        # Get catalog item list
        api_response = api_instance.get_catalog_item_list_v1(category=category, name=name)
        print("The response of BillingCatalogApi->get_catalog_item_list_v1:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling BillingCatalogApi->get_catalog_item_list_v1: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to https://developers.hostinger.com

Class Method HTTP request Description
BillingCatalogApi get_catalog_item_list_v1 GET /api/billing/v1/catalog Get catalog item list
BillingPaymentMethodsApi delete_payment_method_v1 DELETE /api/billing/v1/payment-methods/{paymentMethodId} Delete payment method
BillingPaymentMethodsApi get_payment_method_list_v1 GET /api/billing/v1/payment-methods Get payment method list
BillingPaymentMethodsApi set_default_payment_method_v1 POST /api/billing/v1/payment-methods/{paymentMethodId} Set default payment method
BillingSubscriptionsApi disable_auto_renewal_v1 DELETE /api/billing/v1/subscriptions/{subscriptionId}/auto-renewal/disable Disable auto-renewal
BillingSubscriptionsApi enable_auto_renewal_v1 PATCH /api/billing/v1/subscriptions/{subscriptionId}/auto-renewal/enable Enable auto-renewal
BillingSubscriptionsApi get_subscription_list_v1 GET /api/billing/v1/subscriptions Get subscription list
DNSSnapshotApi get_dns_snapshot_list_v1 GET /api/dns/v1/snapshots/{domain} Get DNS snapshot list
DNSSnapshotApi get_dns_snapshot_v1 GET /api/dns/v1/snapshots/{domain}/{snapshotId} Get DNS snapshot
DNSSnapshotApi restore_dns_snapshot_v1 POST /api/dns/v1/snapshots/{domain}/{snapshotId}/restore Restore DNS snapshot
DNSZoneApi delete_dns_records_v1 DELETE /api/dns/v1/zones/{domain} Delete DNS records
DNSZoneApi get_dns_records_v1 GET /api/dns/v1/zones/{domain} Get DNS records
DNSZoneApi reset_dns_records_v1 POST /api/dns/v1/zones/{domain}/reset Reset DNS records
DNSZoneApi update_dns_records_v1 PUT /api/dns/v1/zones/{domain} Update DNS records
DNSZoneApi validate_dns_records_v1 POST /api/dns/v1/zones/{domain}/validate Validate DNS records
DomainAccessVerifierVerificationsApi get_domain_verifications_direct GET /api/v2/direct/verifications/active Get domain verifications
DomainsAvailabilityApi check_domain_availability_v1 POST /api/domains/v1/availability Check domain availability
DomainsForwardingApi create_domain_forwarding_v1 POST /api/domains/v1/forwarding Create domain forwarding
DomainsForwardingApi delete_domain_forwarding_v1 DELETE /api/domains/v1/forwarding/{domain} Delete domain forwarding
DomainsForwardingApi get_domain_forwarding_v1 GET /api/domains/v1/forwarding/{domain} Get domain forwarding
DomainsPortfolioApi disable_domain_lock_v1 DELETE /api/domains/v1/portfolio/{domain}/domain-lock Disable domain lock
DomainsPortfolioApi disable_privacy_protection_v1 DELETE /api/domains/v1/portfolio/{domain}/privacy-protection Disable privacy protection
DomainsPortfolioApi enable_domain_lock_v1 PUT /api/domains/v1/portfolio/{domain}/domain-lock Enable domain lock
DomainsPortfolioApi enable_privacy_protection_v1 PUT /api/domains/v1/portfolio/{domain}/privacy-protection Enable privacy protection
DomainsPortfolioApi get_domain_details_v1 GET /api/domains/v1/portfolio/{domain} Get domain details
DomainsPortfolioApi get_domain_list_v1 GET /api/domains/v1/portfolio Get domain list
DomainsPortfolioApi purchase_new_domain_v1 POST /api/domains/v1/portfolio Purchase new domain
DomainsPortfolioApi update_domain_nameservers_v1 PUT /api/domains/v1/portfolio/{domain}/nameservers Update domain nameservers
DomainsWHOISApi create_whois_profile_v1 POST /api/domains/v1/whois Create WHOIS profile
DomainsWHOISApi delete_whois_profile_v1 DELETE /api/domains/v1/whois/{whoisId} Delete WHOIS profile
DomainsWHOISApi get_whois_profile_list_v1 GET /api/domains/v1/whois Get WHOIS profile list
DomainsWHOISApi get_whois_profile_usage_v1 GET /api/domains/v1/whois/{whoisId}/usage Get WHOIS profile usage
DomainsWHOISApi get_whois_profile_v1 GET /api/domains/v1/whois/{whoisId} Get WHOIS profile
EcommerceMiscellaneousApi get_custom_storefront_setup_instructions_v1 GET /api/ecommerce/v1/miscellaneous/custom-storefront-instructions Get custom storefront setup instructions
EcommercePaymentsApi enable_manual_payment_method_v1 POST /api/ecommerce/v1/stores/{store_id}/payment-methods/manual Enable manual payment method
EcommerceProductsApi create_digital_product_v1 POST /api/ecommerce/v1/stores/{store_id}/products/digital Create digital product
EcommerceProductsApi create_physical_product_v1 POST /api/ecommerce/v1/stores/{store_id}/products/physical Create physical product
EcommerceSalesChannelsApi create_a_custom_sales_channel_v1 POST /api/ecommerce/v1/stores/{store_id}/sales-channels Create a custom sales channel
EcommerceSalesChannelsApi list_sales_channels_v1 GET /api/ecommerce/v1/stores/{store_id}/sales-channels List sales channels
EcommerceShippingApi set_store_shipping_v1 POST /api/ecommerce/v1/stores/{store_id}/shipping Set store shipping
EcommerceStoresApi create_store_v1 POST /api/ecommerce/v1/stores Create store
EcommerceStoresApi delete_store_v1 DELETE /api/ecommerce/v1/stores/{store_id} Delete store
EcommerceStoresApi get_stores_v1 GET /api/ecommerce/v1/stores Get stores
HorizonsWebsitesApi create_website_v1 POST /api/horizons/v1/websites Create website
HorizonsWebsitesApi get_website_v1 GET /api/horizons/v1/websites/{websiteId} Get website
HostingCronJobsApi create_account_cron_job_v1 POST /api/hosting/v1/accounts/{username}/cron-jobs Create account cron job
HostingCronJobsApi delete_account_cron_job_v1 DELETE /api/hosting/v1/accounts/{username}/cron-jobs/{uid} Delete account cron job
HostingCronJobsApi get_cron_job_output_v1 GET /api/hosting/v1/accounts/{username}/cron-jobs/{uid}/output Get cron job output
HostingCronJobsApi list_account_cron_jobs_v1 GET /api/hosting/v1/accounts/{username}/cron-jobs List account cron jobs
HostingDatabasesApi change_database_password_v1 PATCH /api/hosting/v1/accounts/{username}/databases/{name}/change-password Change database password
HostingDatabasesApi create_account_database_remote_connection_v1 POST /api/hosting/v1/accounts/{username}/databases/{name}/remote-connections Create account database remote connection
HostingDatabasesApi create_account_database_v1 POST /api/hosting/v1/accounts/{username}/databases Create account database
HostingDatabasesApi delete_account_database_remote_connection_v1 DELETE /api/hosting/v1/accounts/{username}/databases/{name}/remote-connections Delete account database remote connection
HostingDatabasesApi delete_account_database_v1 DELETE /api/hosting/v1/accounts/{username}/databases/{name} Delete account database
HostingDatabasesApi get_php_my_admin_link_v1 GET /api/hosting/v1/accounts/{username}/databases/{name}/phpmyadmin-link Get phpMyAdmin link
HostingDatabasesApi list_account_database_remote_connections_v1 GET /api/hosting/v1/accounts/{username}/databases/remote-connections List account database remote connections
HostingDatabasesApi list_account_databases_v1 GET /api/hosting/v1/accounts/{username}/databases List account databases
HostingDatabasesApi repair_database_v1 PATCH /api/hosting/v1/accounts/{username}/databases/{name}/repair Repair database
HostingDatacentersApi list_available_datacenters_v1 GET /api/hosting/v1/datacenters List available datacenters
HostingDomainsApi create_website_parked_domain_v1 POST /api/hosting/v1/accounts/{username}/websites/{domain}/parked-domains Create website parked domain
HostingDomainsApi create_website_subdomain_v1 POST /api/hosting/v1/accounts/{username}/websites/{domain}/subdomains Create website subdomain
HostingDomainsApi delete_website_parked_domain_v1 DELETE /api/hosting/v1/accounts/{username}/websites/{domain}/parked-domains/{parkedDomain} Delete website parked domain
HostingDomainsApi delete_website_subdomain_v1 DELETE /api/hosting/v1/accounts/{username}/websites/{domain}/subdomains/{subdomain} Delete website subdomain
HostingDomainsApi generate_a_free_subdomain_v1 POST /api/hosting/v1/domains/free-subdomains Generate a free subdomain
HostingDomainsApi list_website_parked_domains_v1 GET /api/hosting/v1/accounts/{username}/websites/{domain}/parked-domains List website parked domains
HostingDomainsApi list_website_subdomains_v1 GET /api/hosting/v1/accounts/{username}/websites/{domain}/subdomains List website subdomains
HostingDomainsApi verify_domain_ownership_v1 POST /api/hosting/v1/domains/verify-ownership Verify domain ownership
HostingNodeJSApi create_node_js_build_from_archive_v1 POST /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds/from-archive Create NodeJS build from archive
HostingNodeJSApi get_node_js_build_logs_v1 GET /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds/{uuid}/logs Get NodeJS build logs
HostingNodeJSApi list_node_js_builds_v1 GET /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds List NodeJS builds
HostingOrdersApi list_orders_v1 GET /api/hosting/v1/orders List orders
HostingWebsitesApi create_website_v1 POST /api/hosting/v1/websites Create website
HostingWebsitesApi list_websites_v1 GET /api/hosting/v1/websites List websites
ReachContactsApi create_a_new_contact_v1 POST /api/reach/v1/contacts Create a new contact
ReachContactsApi create_new_contacts_v1 POST /api/reach/v1/profiles/{profileUuid}/contacts Create new contacts
ReachContactsApi delete_a_contact_v1 DELETE /api/reach/v1/contacts/{uuid} Delete a contact
ReachContactsApi list_contact_groups_v1 GET /api/reach/v1/contacts/groups List contact groups
ReachContactsApi list_contacts_v1 GET /api/reach/v1/contacts List contacts
ReachProfilesApi get_profile_domain_dns_status_v1 GET /api/reach/v1/profiles/{profileUuid}/domains/dns-status Get profile domain DNS status
ReachProfilesApi list_profiles_v1 GET /api/reach/v1/profiles List Profiles
ReachSegmentsApi create_a_new_contact_segment_v1 POST /api/reach/v1/segmentation/segments Create a new contact segment
ReachSegmentsApi get_segment_details_v1 GET /api/reach/v1/segmentation/segments/{segmentUuid} Get segment details
ReachSegmentsApi list_profile_segment_contacts_v1 GET /api/reach/v1/profiles/{profileUuid}/segmentation/segments/{segmentUuid}/contacts List profile segment contacts
ReachSegmentsApi list_segment_contacts_v1 GET /api/reach/v1/segmentation/segments/{segmentUuid}/contacts List segment contacts
ReachSegmentsApi list_segments_v1 GET /api/reach/v1/segmentation/segments List segments
VPSActionsApi get_action_details_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/actions/{actionId} Get action details
VPSActionsApi get_actions_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/actions Get actions
VPSBackupsApi get_backups_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/backups Get backups
VPSBackupsApi restore_backup_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/backups/{backupId}/restore Restore backup
VPSDataCentersApi get_data_center_list_v1 GET /api/vps/v1/data-centers Get data center list
VPSDockerManagerApi create_new_project_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/docker Create new project
VPSDockerManagerApi delete_project_v1 DELETE /api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/down Delete project
VPSDockerManagerApi get_project_containers_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/containers Get project containers
VPSDockerManagerApi get_project_contents_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName} Get project contents
VPSDockerManagerApi get_project_list_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/docker Get project list
VPSDockerManagerApi get_project_logs_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/logs Get project logs
VPSDockerManagerApi restart_project_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/restart Restart project
VPSDockerManagerApi start_project_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/start Start project
VPSDockerManagerApi stop_project_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/stop Stop project
VPSDockerManagerApi update_project_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/update Update project
VPSFirewallApi activate_firewall_v1 POST /api/vps/v1/firewall/{firewallId}/activate/{virtualMachineId} Activate firewall
VPSFirewallApi create_firewall_rule_v1 POST /api/vps/v1/firewall/{firewallId}/rules Create firewall rule
VPSFirewallApi create_new_firewall_v1 POST /api/vps/v1/firewall Create new firewall
VPSFirewallApi deactivate_firewall_v1 POST /api/vps/v1/firewall/{firewallId}/deactivate/{virtualMachineId} Deactivate firewall
VPSFirewallApi delete_firewall_rule_v1 DELETE /api/vps/v1/firewall/{firewallId}/rules/{ruleId} Delete firewall rule
VPSFirewallApi delete_firewall_v1 DELETE /api/vps/v1/firewall/{firewallId} Delete firewall
VPSFirewallApi get_firewall_details_v1 GET /api/vps/v1/firewall/{firewallId} Get firewall details
VPSFirewallApi get_firewall_list_v1 GET /api/vps/v1/firewall Get firewall list
VPSFirewallApi sync_firewall_v1 POST /api/vps/v1/firewall/{firewallId}/sync/{virtualMachineId} Sync firewall
VPSFirewallApi update_firewall_rule_v1 PUT /api/vps/v1/firewall/{firewallId}/rules/{ruleId} Update firewall rule
VPSMalwareScannerApi get_scan_metrics_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/monarx Get scan metrics
VPSMalwareScannerApi install_monarx_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/monarx Install Monarx
VPSMalwareScannerApi uninstall_monarx_v1 DELETE /api/vps/v1/virtual-machines/{virtualMachineId}/monarx Uninstall Monarx
VPSOSTemplatesApi get_template_details_v1 GET /api/vps/v1/templates/{templateId} Get template details
VPSOSTemplatesApi get_templates_v1 GET /api/vps/v1/templates Get templates
VPSPTRRecordsApi create_ptr_record_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/ptr/{ipAddressId} Create PTR record
VPSPTRRecordsApi delete_ptr_record_v1 DELETE /api/vps/v1/virtual-machines/{virtualMachineId}/ptr/{ipAddressId} Delete PTR record
VPSPostInstallScriptsApi create_post_install_script_v1 POST /api/vps/v1/post-install-scripts Create post-install script
VPSPostInstallScriptsApi delete_post_install_script_v1 DELETE /api/vps/v1/post-install-scripts/{postInstallScriptId} Delete post-install script
VPSPostInstallScriptsApi get_post_install_script_v1 GET /api/vps/v1/post-install-scripts/{postInstallScriptId} Get post-install script
VPSPostInstallScriptsApi get_post_install_scripts_v1 GET /api/vps/v1/post-install-scripts Get post-install scripts
VPSPostInstallScriptsApi update_post_install_script_v1 PUT /api/vps/v1/post-install-scripts/{postInstallScriptId} Update post-install script
VPSPublicKeysApi attach_public_key_v1 POST /api/vps/v1/public-keys/attach/{virtualMachineId} Attach public key
VPSPublicKeysApi create_public_key_v1 POST /api/vps/v1/public-keys Create public key
VPSPublicKeysApi delete_public_key_v1 DELETE /api/vps/v1/public-keys/{publicKeyId} Delete public key
VPSPublicKeysApi get_public_keys_v1 GET /api/vps/v1/public-keys Get public keys
VPSRecoveryApi start_recovery_mode_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/recovery Start recovery mode
VPSRecoveryApi stop_recovery_mode_v1 DELETE /api/vps/v1/virtual-machines/{virtualMachineId}/recovery Stop recovery mode
VPSSnapshotsApi create_snapshot_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/snapshot Create snapshot
VPSSnapshotsApi delete_snapshot_v1 DELETE /api/vps/v1/virtual-machines/{virtualMachineId}/snapshot Delete snapshot
VPSSnapshotsApi get_snapshot_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/snapshot Get snapshot
VPSSnapshotsApi restore_snapshot_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/snapshot/restore Restore snapshot
VPSVirtualMachineApi get_attached_public_keys_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/public-keys Get attached public keys
VPSVirtualMachineApi get_metrics_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/metrics Get metrics
VPSVirtualMachineApi get_virtual_machine_details_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId} Get virtual machine details
VPSVirtualMachineApi get_virtual_machines_v1 GET /api/vps/v1/virtual-machines Get virtual machines
VPSVirtualMachineApi purchase_new_virtual_machine_v1 POST /api/vps/v1/virtual-machines Purchase new virtual machine
VPSVirtualMachineApi recreate_virtual_machine_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/recreate Recreate virtual machine
VPSVirtualMachineApi reset_hostname_v1 DELETE /api/vps/v1/virtual-machines/{virtualMachineId}/hostname Reset hostname
VPSVirtualMachineApi restart_virtual_machine_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/restart Restart virtual machine
VPSVirtualMachineApi set_hostname_v1 PUT /api/vps/v1/virtual-machines/{virtualMachineId}/hostname Set hostname
VPSVirtualMachineApi set_nameservers_v1 PUT /api/vps/v1/virtual-machines/{virtualMachineId}/nameservers Set nameservers
VPSVirtualMachineApi set_panel_password_v1 PUT /api/vps/v1/virtual-machines/{virtualMachineId}/panel-password Set panel password
VPSVirtualMachineApi set_root_password_v1 PUT /api/vps/v1/virtual-machines/{virtualMachineId}/root-password Set root password
VPSVirtualMachineApi setup_purchased_virtual_machine_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/setup Setup purchased virtual machine
VPSVirtualMachineApi start_virtual_machine_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/start Start virtual machine
VPSVirtualMachineApi stop_virtual_machine_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/stop Stop virtual machine
WordPressInstallationsApi install_word_press_v1 POST /api/hosting/v1/accounts/{username}/wordpress/installations Install WordPress
WordPressInstallationsApi list_word_press_installations_v1 GET /api/hosting/v1/wordpress/installations List WordPress installations
WordPressPluginsApi activate_word_press_plugin_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/activate Activate WordPress plugin
WordPressPluginsApi check_if_woo_commerce_is_installed_v1 GET /api/hosting/v1/wordpress/plugins/is-woocommerce-installed Check if WooCommerce is installed
WordPressPluginsApi deactivate_word_press_plugin_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/deactivate Deactivate WordPress plugin
WordPressPluginsApi install_word_press_plugins_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/install Install WordPress plugins
WordPressPluginsApi list_available_word_press_plugins_v1 GET /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/available List available WordPress plugins
WordPressPluginsApi list_installed_word_press_plugins_v1 GET /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins List installed WordPress plugins
WordPressPluginsApi list_suggested_word_press_plugins_v1 GET /api/hosting/v1/wordpress/plugins/suggested List suggested WordPress plugins
WordPressPluginsApi search_word_press_plugins_v1 GET /api/hosting/v1/wordpress/plugins Search WordPress plugins
WordPressPluginsApi uninstall_word_press_plugins_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/uninstall Uninstall WordPress plugins
WordPressPluginsApi update_hostinger_word_press_plugin_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/hostinger/update Update Hostinger WordPress plugin
WordPressPluginsApi update_word_press_plugins_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/update Update WordPress plugins
WordPressThemesApi activate_word_press_theme_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/themes/activate Activate WordPress theme
WordPressThemesApi install_word_press_theme_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/themes/install Install WordPress theme
WordPressThemesApi list_installed_word_press_themes_v1 GET /api/hosting/v1/accounts/{username}/wordpress/{software}/themes List installed WordPress themes
WordPressThemesApi list_word_press_themes_v1 GET /api/hosting/v1/wordpress/themes List WordPress themes
WordPressThemesApi uninstall_word_press_themes_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/themes/uninstall Uninstall WordPress themes
WordPressThemesApi update_word_press_themes_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/themes/update Update WordPress themes

Documentation For Models

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hostinger_api-3.1.1.tar.gz (200.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hostinger_api-3.1.1-py3-none-any.whl (464.7 kB view details)

Uploaded Python 3

File details

Details for the file hostinger_api-3.1.1.tar.gz.

File metadata

  • Download URL: hostinger_api-3.1.1.tar.gz
  • Upload date:
  • Size: 200.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hostinger_api-3.1.1.tar.gz
Algorithm Hash digest
SHA256 66786ee4bce5d1f499ab582b198589fc7472256cf0e1641fa5a33916c94e43c0
MD5 7609015cf582bdc138abebfea6d8d820
BLAKE2b-256 537205a54706c55f867a24537e3035e05dce4a39fd0b101e7942b0726e6fd3a0

See more details on using hashes here.

File details

Details for the file hostinger_api-3.1.1-py3-none-any.whl.

File metadata

  • Download URL: hostinger_api-3.1.1-py3-none-any.whl
  • Upload date:
  • Size: 464.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hostinger_api-3.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e2ef1cf2760318239d688be18c4e7008327fcbc28788ca3a585a22a11616a58a
MD5 d9ca5d0b1c41c0ad20eab314d1a09516
BLAKE2b-256 22a98e45633a69afa6c007eed2a7f9fadaa6daa50e909c3924a6e76c6e67a0ed

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page