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.
- Host: GitHub
- URL: https://github.com/vinzenzklass/anaplan-sdk
- Owner: VinzenzKlass
- License: apache-2.0
- Created: 2024-05-27T07:52:29.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2026-03-18T13:46:15.000Z (4 months ago)
- Last Synced: 2026-03-19T00:26:28.698Z (4 months ago)
- Topics: anaplan, api, python, sdk
- Language: Python
- Homepage: https://vinzenzklass.github.io/anaplan-sdk/
- Size: 3.61 MB
- Stars: 21
- Watchers: 2
- Forks: 3
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Anaplan SDK
Streamlined Python Interface for the Anaplan API.
---
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.