skillfed

nflx-genie-client

Genie Python Client.

nflx-genie-client v3.6.19 185.6K downloads/30d#10,007 on PyPI
Permissive license Apache 2.0 AGING released

What it is and what it does

The nflx-genie-client is a Python wrapper around Netflix's Genie distributed job execution service API. It provides object models for Genie resources and a client wrapper that handles HTTP communication with retry logic based on configurable policies. The package lets you programmatically register applications and clusters, submit jobs for execution, and monitor job status through a Python interface rather than direct REST calls.

The library wraps API calls with automatic retry behavior, allowing you to specify retry counts, HTTP codes to skip, and whether to return None on 404 responses. It's built on standard dependencies including requests and python-dateutil, and is straightforward to integrate into Python applications that need to orchestrate work on Genie clusters.

Use it for:

  • Submit queries to a Genie cluster and retrieve results programmatically from a Python application.
  • Register and manage applications, clusters, and commands with a Genie service as part of infrastructure setup.
  • Build job submission pipelines that automatically retry on transient failures without manual error handling.
  • Query job status and retrieve execution information from Genie-managed jobs within a Python workflow.
  • Integrate job submission into data processing scripts or ETL frameworks that run on distributed clusters.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

A Python client library for interacting with Netflix Genie, a distributed job execution service, providing resource models, API wrappers, and retry logic for submitting and managing jobs.

Yes, if you are actively using a Genie service and need a Python client. The package is stable, has no known vulnerabilities, and low install friction. However, maintenance is aging (last release 528 days ago), so verify that it remains compatible with your Genie instance version and modern Python environments before committing to a new project.

Install

nflx-genie-client on PyPI

pip

pip install nflx-genie-client

uv

uv add nflx-genie-client

poetry

poetry add nflx-genie-client

Installing nflx-genie-client

Before you install

Low install friction with a pure-Python wheel and stable dependencies. Maintenance is aging—last release was 528 days ago—but the package is marked Production/Stable and carries no known vulnerabilities.

License in practice

Licensed under Apache 2.0 (permissive), allowing free use, modification, and distribution with minimal restrictions.

Quickstart

pip install nflx-genie-client

import genie2.client.wrapper
import genie2.model.Application

genie = genie2.client.wrapper.Genie2(
    "http://localhost:7001/genie",
    genie2.client.wrapper.RetryPolicy(tries=8, none_on_404=True)
)
app = genie2.model.Application.Application()
app.name = "exampleApp"
app.user = "user"
app.version = "0.0.1"
app.status = "ACTIVE"
created_app = genie.createApplication(app)

Requires a running Genie service instance accessible at the configured endpoint.

Verify before relying

  • Current compatibility with Python 3.11+ and modern versions of runtime dependencies
  • Whether the package is actively maintained or if the 528-day gap represents end-of-life for this client version
  • Compatibility with current Genie service API versions

Package facts

License Apache 2.0 (permissive)
Python support not specified
Install friction low — pure-Python wheel
Runtime dependencies 7 — decorator, multipledispatch, pyconfigurator, python-dateutil, requests, six, importlib-metadata
Maintenance aging — 528 days since the last release
First released
Downloads 185,643/month — #10,007 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: nflx_genie_client-3.6.19-py3-none-any.whl

Keywords: genie, hadoop, cloud, netflix, client, bigdata, presto

Development Status :: 5 - Production/StableIntended Audience :: DevelopersIntended Audience :: Science/ResearchIntended Audience :: System AdministratorsLicense :: OSI Approved :: Apache Software LicenseProgramming Language :: PythonProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.9Topic :: Scientific/EngineeringTopic :: Software Development :: LibrariesTopic :: Software Development :: Libraries :: Python ModulesTopic :: System :: Distributed ComputingTopic :: Utilities

Tags

genie job submission clientnetflix genie python apidistributed job executionhadoop cluster managementpresto query submissionjob orchestration clientgenie service wrapper
job-orchestrationnetflix-genie

More Libraries packages