One SDK. All Tools.
EntangleUp SDK is a single Python library that unifies Pandas, Requests, MinIO, Airbyte, Airflow, Dagster, and all your favorite ML packages — with a consistent, credential‑aware interface with an easy descriptive Entanglo DSL (Domain Specific Language).
pip install entangleup-sdk
20+ tools integrated
works with all Cloud Services
AI‑powered Entanglo compiler
Entanglo DSL – AI‑compiled data pipelines
Write high‑level pipeline descriptions; the Claude‑Powered compiler turns them into executable Python.
# entanglo script → compiled to Python from entangleup_sdk import EntCloudClient client = EntCloudClient(auth={"api_key": "YOUR_KEY"}) # ── get any tool with one line ── pandas = client.get("Pandas") minio = client.get("minio") requests = client.get("requests") airflow = client.get("airflow") dagster = client.get("dagster") # ── credentials handled centrally ── creds = client.creds("minio") creds.endpoint = "s3.example.com" creds.apikey = "abc123" mio2 = client.get("minio", creds=creds) # ── chain operations ── pandas.read_csv("sales.csv") .apply(lambda x: x * 1.1, column="revenue") .to_minio(minio, bucket="/processed") # ── AI compiler ── script = """load data.csv; transform price = price * 1.1; upload to minio:/revo;""" exec(client.compile_with_Claude(script))
Supports Pandas, Requests, MinIO, Airbyte, Airflow, Dagster, Scikit‑learn, TensorFlow, PyTorch, and more.