Lago Python API Client
Project description
Lago Python Client
This is a python wrapper for Lago API
Installation
Install the lago-python-client via pip from PyPI:
$ pip install lago-python-client
Usage
from lago_python_client import Client
client = Client(api_key = 'key')
Events
from lago_python_client.models import Event, BatchEvent
event = Event(
customer_id="5eb02857-a71e-4ea2-bcf9-57d8885990ba",
transaction_id="__UNIQUE_ID__",
code="123",
timestamp=1650893379,
properties={"custom_field": "custom"}
)
client.events().create(event)
event = BatchEvent(
subscription_ids=[
"5eb02857-a71e-4ea2-bcf9-57d8885990ba", "8ztrg2857-a71e-4ea2-bcf9-57d8885990ba"],
transaction_id="__UNIQUE_ID__",
code="123",
timestamp=1650893379,
properties={"custom_field": "custom"}
)
client.events().batch_create(event)
transaction_id = "6afadc2a-f28c-40a4-a868-35636f229765"
event = client.events().find(transaction_id)
Customers
from lago_python_client.models import Customer, BillingConfiguration
customer = Customer(
customer_id="5eb02857-a71e-4ea2-bcf9-57d8885990ba",
address_line1=None,
address_line2=None,
city=None,
country=None,
email="test@example.com",
legal_name=None,
legal_number=None,
logo_url=None,
name="test name",
phone=None,
state=None,
url=None,
vat_rate=None,
zipcode=None,
billing_configuration=BillingConfiguration(
payment_provider=None,
provider_customer_id=None,
sync=None
)
)
client.customers().create(customer)
customer_usage = client.customers().current_usage('customer_id', 'subscription_id')
Invoices
from lago_python_client.models import InvoiceStatusChange
status_change = InvoiceStatusChange(
status="succeeded"
)
client.invoices().update(status_change, '5eb02857-a71e-4ea2-bcf9-57d3a41bc6ba')
client.invoices().find('5eb02857-a71e-4ea2-bcf9-57d3a41bc6ba')
client.invoices().find_all({'per_page': 2, 'page': 1})
Organizations
from lago_python_client.models import Organization
params = Organization(
webhook_url="https://new.url",
vat_rate=14.2
)
client.organizations().update(params)
Invoice Download
invoice = client.invoices().download('5eb02857-a71e-4ea2-bcf9-57d8885990ba')
Subscriptions
from lago_python_client.models import Subscription
subscription = Subscription(
customer_id="5eb02857-a71e-4ea2-bcf9-57d8885990ba",
plan_code="code",
unique_id="12345",
name="display name"
)
client.subscriptions().create(subscription)
update_params = Subscription(
name='new name'
)
client.subscriptions().update(update_params, 'id')
client.subscriptions().destroy('id')
client.subscriptions().find_all({'customer_id': '123'})
Applied coupons
from lago_python_client.models import AppliedCoupon
applied_coupon = AppliedCoupon(
customer_id="5eb02857-a71e-4ea2-bcf9-57d3a41bc6ba",
coupon_code="code",
amount_cents=123,
amount_currency="EUR"
)
client.applied_coupons().create(applied_coupon)
Applied add-ons
from lago_python_client.models import AppliedAddOn
applied_add_on = AppliedAddOn(
customer_id="5eb02857-a71e-4ea2-bcf9-57d3a41bc6ba",
add_on_code="code",
amount_cents=123,
amount_currency="EUR"
)
client.applied_add_ons().create(applied_add_on)
Billable metrics
from lago_python_client.models import BillableMetric
billable_metric = BillableMetric(
name='name',
code='code_first',
description='desc',
aggregation_type='sum_agg',
field_name='amount_sum'
)
client.billable_metrics().create(billable_metric)
update_params = BillableMetric(
name='new name'
)
client.billable_metrics().update(update_params, 'code')
client.billable_metrics().find('code')
client.billable_metrics().destroy('code')
client.billable_metrics().find_all({'per_page': 2, 'page': 1})
Coupons
from lago_python_client.models import Coupon
coupon = Coupon(
name='name',
code='code_first',
amount_cents=1000,
amount_currency='EUR',
expiration='no_expiration',
expiration_duration=10
)
client.coupons().create(coupon)
update_params = Coupon(
name='new name'
)
client.coupons().update(update_params, 'code')
client.coupons().find('code')
client.coupons().destroy('code')
client.coupons().find_all({'per_page': 2, 'page': 1})
Add-ons
from lago_python_client.models import AddOn
add_on = AddOn(
name='name',
code='code_first',
amount_cents=1000,
amount_currency='EUR',
description='desc'
)
client.add_ons().create(add_on)
update_params = AddOn(
name='new name'
)
client.add_ons().update(update_params, 'code')
client.add_ons().find('code')
client.add_ons().destroy('code')
client.add_ons().find_all({'per_page': 2, 'page': 1})
Plans
from lago_python_client.models import Plan, Charges, Charge
charge = Charge(
billable_metric_id='id',
charge_model='standard',
amount_currency='EUR',
properties={
'amount': '0.22'
}
)
charges = Charges(__root__=[charge])
plan = Plan(
name='name',
code='code_first',
amount_cents=1000,
amount_currency='EUR',
description='desc',
interval='weekly',
pay_in_advance=True,
charges=charges
)
client.plans().create(plan)
update_params = Plan(
name='new name'
)
client.plans().update(update_params, 'code')
client.plans().find('code')
client.plans().destroy('code')
client.plans().find_all({'per_page': 2, 'page': 1})
Development
Install the dependencies
pip install .
Run tests
python3 -m unittest tests
Documentation
The Lago documentation is available at doc.getlago.com.
Contributing
The contribution documentation is available here
License
Lago Python client is distributed under AGPL-3.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
lago-python-client-0.4.0.tar.gz
(25.7 kB
view details)
Built Distribution
File details
Details for the file lago-python-client-0.4.0.tar.gz
.
File metadata
- Download URL: lago-python-client-0.4.0.tar.gz
- Upload date:
- Size: 25.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8810488b15fe8cfeb8848b0c018354606bbeb09c36c41ff88334495ff8b90625 |
|
MD5 | 3c8ac2d79b36411fcd7905f9cff37ba1 |
|
BLAKE2b-256 | 582823ab8734a06f6ae4be78fe25db83f5e37a5c456f829fa796aae6ab7386b7 |
File details
Details for the file lago_python_client-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: lago_python_client-0.4.0-py3-none-any.whl
- Upload date:
- Size: 41.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8681d631e53c391eb1aa0963b9274c5393a348a75cf66dc9b5107c51883fb509 |
|
MD5 | 20bcb56392abf7597537c53482c038e0 |
|
BLAKE2b-256 | be6add821eb29cfada5808721d4c0a656444eb23d7d6667efd585900d9fdeda5 |