KI-labs / python-pachyderm

Python client for Pachyderm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python Pachyderm

PyPI Package latest releasee Supported versions Slack Status

Official Python Pachyderm client. Created by kalugny (formerly kalugny/pypachy), and now maintained by Pachyderm Inc.

Installation

pip install python-pachyderm

Usage

PFS

For PFS-related functionality, you can use PfsClient, which wraps around protobuf/gRPC autogenerated code to make for a more idiomatic Python experience.

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

import python_pachyderm
client = python_pachyderm.PfsClient()
client.create_repo('test')
with client.commit('test', 'master') as c:
    client.put_file_bytes(c, '/dir_a/data.txt', b'DATA')

PPS

Similarly, we offer a higher-level PpsClient for PPS-related functionality. An example:

import python_pachyderm
client = python_pachyderm.PpsClient()
client.list_pipeline()

Everything else

For all other gRPC APIs, we expose the protobuf/gRPC autogenerated code. See the API docs.

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.

Getting started

To run tests, clone the repo, then run:

make init
tox

About

Python client for Pachyderm

License:Apache License 2.0


Languages

Language:Python 98.3%Language:Makefile 1.0%Language:Shell 0.6%Language:Dockerfile 0.1%