Skip to main content

Unofficial library for programmatic access to your Hebe account and your orders

Project description

Hebe API

Test Unofficial library for programmatic access to your Hebe account and your orders.

pip3 install hebe-api

Usage:

Obtaining Hebe security token

from hebe_api import Hebe

hebe = Hebe("HEBE_USERNAME", "HEBE_PASSWORD")
hebe.authenticate()
print(hebe.token)
# T2a...................

or

from hebe_api import Hebe

hebe = Hebe()
hebe.authenticate("HEBE_USERNAME", "HEBE_PASSWORD")
print(hebe.token)
# E9U...................

Obtaining user orders

# Default values are as follows:
orders = hebe.get_orders(start=0, max_orders=100)

# order attributes
order = orders[0]
order.id # str
order.position # int (index in the array, used for retrieving the order products)
order.date # str
order.price # float
order.price_str # str
order.packs # int

Obtaining products of particular order

# Default values are as follows:
products = hebe.get_order_products(order)

# product attributes
product = products[0]
product.title # str
product.subtitle # str
product.total_price_str # str
product.package_price_str # str
product.total_price # float
product.package_price # float
product.quantity # int

Obtaining all products

# Default values are as follows:
all_products = hebe.get_all_products(max_orders=100)

Roadmap

  • polish API supporting:
    • auth
    • get orders
    • get products
  • .com hebe API support
    • auth
    • get orders
    • get products

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

hebe-api-1.0.2.tar.gz (7.0 kB view hashes)

Uploaded Source

Built Distribution

hebe_api-1.0.2-py3-none-any.whl (5.4 kB view hashes)

Uploaded Python 3

Supported by

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