Using the Pachyderm Python client
Python is probably one of the most popular languages within the software engineering and data science community. Pachyderm provides an officially supported Python client through the python-pachyderm
package. You can find the Python Pachyderm source repository on GitHub at https://github.com/pachyderm/python-pachyderm and on the Python Package Index (PyPI) at https://pypi.org/project/python-pachyderm/.
The main files that you can use as a Python client reference are located in the https://github.com/pachyderm/python-pachyderm/tree/master/src/python_pachyderm/mixin directory of the Pachyderm source repository—most notably, the following files:
- https://github.com/pachyderm/python-pachyderm/blob/master/src/python_pachyderm/client.py
- https://github.com/pachyderm/python-pachyderm/blob/master/src/python_pachyderm/mixin/pfs.py
- https://github.com/pachyderm/python-pachyderm/blob/master/src/python_pachyderm/mixin/pps.py
Before...