Skip to main content

Python Pachyderm Client

Project description

Python Pachyderm

PyPI Package latest release Supported versions Slack Status

Official Python Pachyderm client.

This library provides the autogenerated gRPC/protobuf code for Pachyderm, along with a higher-level and more pythonic Client class. See the API docs.

Installation

pip install python-pachyderm

A Small Taste

Here's an example that creates a repo and adds a file:

import python_pachyderm

# Connects to a pachyderm cluster on localhost:30650.
# For other options, see the API docs.
client = python_pachyderm.Client()

# Create a pachyderm repo called `test`
client.create_repo("test")

# Create a file in `(repo="test", branch="master")` at `/dir_a/data.txt`
# Similar to `pachctl put file test@master:/dir_a/data.txt`
with client.commit("test", "master") as commit:
    client.put_file_bytes(commit, "/dir_a/data.txt", b"DATA")

# Get back the file
f = client.get_file(("test", "master"), "/dir_a/data.txt")
print(f.read())  # >>> b"DATA"

How to load a CSV file into a Pandas dataframe

import pandas as pd

f = client.get_file(("my_repo", "my_branch"), "/path_to/my_data.csv")
df = pd.read_csv(f)

For more sophisticated examples, see the examples directory.

Versioning

Prior to python-pachyderm 2.0, this library's versioning synced with pachyderm's core versioning; e.g. version 1.8.5 of this library synced with 1.8.5 of pachyderm core. python-pachyderm 2.0 onwards uses semver instead, so versions are not tied to pachyderm core. This was done for two reasons:

  1. Sometimes this library makes breaking or backwards-incompatible changes, which aren't properly conveyed by revision changes.
  2. Pachyderm core is stable enough that most features of this library will work for disparate versions of pachyderm clusters. To help ensure this, this library's CI tests against several versions of pachyderm core.

However, if for whatever reason you need to know which version of pachyderm core a version of python-pachyderm was built with, consult CHANGELOG.md. As a broad rule of thumb, we recommend working with the latest version of both pachyderm core and python-pachyderm where possible.

Contributing

This driver is co-maintained by Pachyderm and the community. If you're looking to contribute to the project, this is a fantastic place to get involved. Take a look at the contributing guide for more info (including testing instructions).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python_pachyderm-7.6.0.tar.gz (135.5 kB view details)

Uploaded Source

Built Distribution

python_pachyderm-7.6.0-py3-none-any.whl (156.5 kB view details)

Uploaded Python 3

File details

Details for the file python_pachyderm-7.6.0.tar.gz.

File metadata

  • Download URL: python_pachyderm-7.6.0.tar.gz
  • Upload date:
  • Size: 135.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.0 CPython/3.10.10 Darwin/22.3.0

File hashes

Hashes for python_pachyderm-7.6.0.tar.gz
Algorithm Hash digest
SHA256 5398ae558e5603acba4629822b307251c226c4a64551e8d3d7a4bde5555eb87d
MD5 df9aa064b396f8d892c3c049dce8c092
BLAKE2b-256 18147b72dce47bac12674a81658b33e25d6f1183bab11d857e3fffd6f42d996e

See more details on using hashes here.

File details

Details for the file python_pachyderm-7.6.0-py3-none-any.whl.

File metadata

  • Download URL: python_pachyderm-7.6.0-py3-none-any.whl
  • Upload date:
  • Size: 156.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.0 CPython/3.10.10 Darwin/22.3.0

File hashes

Hashes for python_pachyderm-7.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b4e5919159e2dd357998325e997a23b5ac37d3c569d97bf926ede5902efaa224
MD5 7d9f08dd28711c2fe8ffb9c68f8a1e7b
BLAKE2b-256 b1fc36ff22051880a564c81a02ac90e2715f4ae2471d2213dd147155e1723825

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page