Metadata-Version: 2.4
Name: anaplan-sdk
Version: 0.5.2
Summary: Streamlined Python Interface for the Anaplan API.
Project-URL: Homepage, https://vinzenzklass.github.io/anaplan-sdk/
Project-URL: Repository, https://github.com/VinzenzKlass/anaplan-sdk
Project-URL: Documentation, https://vinzenzklass.github.io/anaplan-sdk/
Author-email: Vinzenz Klass <vinzenz.klass@valantic.com>
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: anaplan,anaplan alm api,anaplan api,anaplan audit api,anaplan bulk api,anaplan cloudworks api,anaplan integration,anaplan integration api,anaplan sdk,anaplan transactional api
Requires-Python: >=3.10.4
Requires-Dist: httpx<1.0.0,>=0.27.0
Requires-Dist: pydantic<3.0.0,>=2.7.2
Provides-Extra: cert
Requires-Dist: cryptography<46.0.0,>=42.0.7; extra == 'cert'
Provides-Extra: keyring
Requires-Dist: keyring<26.0.0,>=25.6.0; extra == 'keyring'
Provides-Extra: oauth
Requires-Dist: oauthlib<4.0.0,>=3.0.0; extra == 'oauth'
Description-Content-Type: text/markdown

<p align="center">
    <img width="160" height="160" src="https://vinzenzklass.github.io/anaplan-sdk/img/anaplan-sdk.webp" alt='Python' style="border-radius: 15px">
</p>

<h3 align="center" style="font-size: 3rem; font-weight: 600;">
    Anaplan SDK
</h3>

<p align="center" style="font-size: 1.2rem; font-weight: 300; margin: 15px 0">
    Streamlined Python Interface for the Anaplan API.
</p>

<div align="center">
    <a href="https://pepy.tech/projects/anaplan-sdk">
        <img src="https://static.pepy.tech/badge/anaplan-sdk" alt="">
    </a>
    <a href="https://pypi.org/project/anaplan-sdk/">
        <img src="https://img.shields.io/pypi/v/anaplan-sdk.svg" alt="PyPi Latest Release"/>
    </a>
    <a href="https://pepy.tech/projects/anaplan-sdk">
        <img src="https://static.pepy.tech/badge/anaplan-sdk/month" alt="PyPI Downloads">
    </a>
</div>

---
Streamlined Python Interface for the Anaplan API. Get up and running with the Anaplan API in minutes.

Anaplan SDK is an independent, unofficial project providing pythonic access to Anaplan. It delivers high-level
abstractions over all parts of the Anaplan API, allowing you to focus on business requirements rather than
implementation details.

## Key Features

- **Pythonic Interface**: Clean, intuitive access to Anaplan functionality
- **Simplified API Interactions**: Automatic handling of authentication, error handling, and data formatting
- **Performance Optimizations**: Built-in chunking and compression techniques
- **Multiple API Support**: Compatible with all major Anaplan API endpoints
- **Flexible Client Options**: Both synchronous and asynchronous implementations
- **Developer-Friendly**: Designed to reduce boilerplate code and accelerate development

## Getting Started

Head over to the [Quick Start](https://vinzenzklass.github.io/anaplan-sdk/quickstart/) for basic usage instructions and
examples.

## Contributing

Pull Requests are welcome. For major changes,
please [open an issue](https://github.com/VinzenzKlass/anaplan-sdk/issues/new) first to discuss what you would like to
change. To submit a pull request, please follow the
standard [Fork & Pull Request workflow](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork).

Before submitting your pull request, please ensure that all the files pass linting and formatting checks. You can do
this by running the following command:

```shell
uv sync --dev

ruff check
ruff format
```

You can also enable [pre-commit](https://pre-commit.com/) hooks to automatically format and lint your code before
committing:

```shell
pre-commit install
```

If your PR goes beyond a simple bug fix or small changes, please add tests to cover your changes.
