Skip to main content

Python library to connect with Unolet API

Project description

UnoletAPI

Python library to connect with Unolet API

Project status

This project is in an early stage of development and is not yet fully functional.

Usage

import unolet

# Connect to the Unolet API
unolet.Unolet.connect("[TOKEN]", "http://localhost:8000")

# Get an invoice by its ID
invoice = unolet.Invoice.get(123)

# Modify and save an invoice
invoice.note = "Modified note"
invoice.save()

# Get a warehouse by its ID
warehouse = unolet.Warehouse.get(3)

# Get a document type by its ID
document_type = unolet.DocumentType.get(5)

# Get a person by its ID
person = unolet.Person.get(743)

# Create and save a new invoice
invoice = unolet.Invoice(
    warehouse=warehouse,
    type=document_type,
    person=person
)
invoice.save()

# Get a product by its ID
product = unolet.Product.get(22)

# Create and save a new product movement
movement = unolet.Movement(
    document=invoice,
    product=product,
    quantity=7,
    price=195.99,
)
movement.save()

Now you can easily and efficiently use the Unolet API with this Python library!

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

unolet-0.0.1.tar.gz (46.5 kB view hashes)

Uploaded Source

Built Distribution

unolet-0.0.1-py3-none-any.whl (34.0 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