# graphpipe-py **Repository Path**: mirrors_oracle/graphpipe-py ## Basic Information - **Project Name**: graphpipe-py - **Description**: GraphPipe for python - **Primary Language**: Unknown - **License**: UPL-1.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2025-11-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # GraphPipe for python GraphPipe for python consists of the flatbuffer implementation (generated from the [graphpipe project](https://github.com/graphpipe)), utilities for converting between flatbuffers and python types, a client for making calls to graphpipe services, and some simple examples. To learn more about GraphPipe, see our [documentation](https://oracle.github.io/graphpipe/) ## Build You can install from pypi like so: ``` pip install graphpipe ``` You an also install directly from github with pip like so: ``` pip install git+https://github.com/oracle/graphpipe-py ``` This is a pure python package, your setup.py knowledge should do the trick if you are have checked out the code from github. ## Develop The tox tests can be run via `make test` if you have docker installed. To update the graphpipe flatbuffer files, you will need to `make python` in the graphpipe project and copy the generated files into this repository's `graphpipe/graphpipefb/` directory To build installation packages: ``` python setup.py sdist bdist_wheel ```