Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Anaplan SDK is an independent, unofficial project providing pythonic access to the Anaplan Integration API v2. This Project aims to provide high-level abstractions over the API, so you can deal with python objects and simple functions rather than implementation details like HTTP Requests, Authentication, JSON Parsing, Compression, Chunking and so on.
This Projects supports the Bulk API, the Transactional API and the ALM API, providing both synchronous and asynchronous Clients.
Visit Anaplan SDK for documentation.
pip install anaplan-sdk
import anaplan_sdk
anaplan = anaplan_sdk.Client(
workspace_id="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
model_id="11111111111111111111111111111111",
user_email="admin@company.com",
password="my_super_secret_password",
)
If you don't know the workspace and model Ids, instantiate client with authentication information only and
call .list_workspaces()
and list .list_models()
anaplan = anaplan_sdk.Client(
user_email="admin@company.com",
password="my_super_secret_password",
)
for workspace in anaplan.list_workspaces():
print(f"{workspace.name}: {workspace.id}")
for model in anaplan.list_models():
print(f"{model.name}: {model.id}")
This SDK also provides an AsyncClient
with full async support
import asyncio
anaplan = anaplan_sdk.AsyncClient(
workspace_id="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
model_id="11111111111111111111111111111111",
user_email="admin@company.com",
password="my_super_secret_password",
)
workspaces, models = await asyncio.gather(
anaplan.list_workspaces(), anaplan.list_models()
)
for workspace in workspaces:
print(f"{workspace.name}: {workspace.id}")
for model in models:
print(f"{model.name}: {model.id}")
For more information, API reference and detailed guides, visit Anaplan SDK.
FAQs
Provides pythonic access to the Anaplan API
We found that anaplan-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.