Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 1.49 KB

File metadata and controls

41 lines (27 loc) · 1.49 KB

Albert Python SDK

PyPI version Python versions Downloads per month

Albert Python is the official Albert Invent Software Development Kit (SDK) for Python that provides a comprehensive and easy-to-use interface for interacting with the Albert Platform. The SDK allows Python developers to write software that interacts with various platform resources, such as inventories, projects, companies, tags, and many more. You can find the latest, most up-to-date documentation on the supported resources and usage patterns here.

Installation

pip install albert

This installs the latest stable release from PyPI.

Contribution

For developers, please see the contributing guide, which includes setup instructions, testing, and linting guidelines.

Quick Start

from albert import Albert

client = Albert.from_client_credentials(
    base_url="https://app.albertinvent.com",
    client_id=YOUR_CLIENT_ID,
    client_secret=YOUR_CLIENT_SECRET
)
projects = client.projects.get_all()

Documentation

Full Documentation can be found here