An open API service indexing awesome lists of open source software.

https://github.com/vinzenzklass/anaplan-sdk

Streamlined Python Interface for the Anaplan API.
https://github.com/vinzenzklass/anaplan-sdk

anaplan api python sdk

Last synced: 3 months ago
JSON representation

Streamlined Python Interface for the Anaplan API.

Awesome Lists containing this project

README

          


Python


Anaplan SDK


Streamlined Python Interface for the Anaplan API.


Workflow status badge
Downloads
PyPi Latest Release
PyPI - Python Version
PyPI Downloads

---
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.