Abhishek Kumar 183c9f77a7 Merge pull request #2767 from ctiller/no-poop-on-pizza 10 лет назад
..
grpcio c5ae3eb8d6 Rename grpc_server_add_http2_port to grpc_server_add_insecure_http2_port 10 лет назад
grpcio_test 298f39a626 Merge pull request #2686 from nathanielmanistaatgoogle/2570 10 лет назад
README.md 05aafbc9d9 Update README.md 10 лет назад

README.md

gRPC Python

The Python facility of gRPC.

Status

Alpha : Ready for early adopters

PREREQUISITES

  • Python 2.7, virtualenv, pip
  • homebrew on Mac OS X, linuxbrew on Linux. These simplify the installation of the gRPC C core.

INSTALLATION

On Mac OS X, install homebrew. On Linux, install linuxbrew. Run the following command to install gRPC Python.

$ curl -fsSL https://goo.gl/getgrpc | bash -s python

This will download and run the gRPC install script, then install the latest version of the gRPC Python package. It also installs the Protocol Buffers compiler (protoc) and the gRPC protoc plugin for python.

EXAMPLES

Please read our online documentation for a Quick Start and a detailed example

BUILDING FROM SOURCE

  • Clone this repository
  • Build the gRPC core from the root of the gRPC Git repository

    $ make shared_c static_c
    
  • Use build_python.sh to build the Python code and install it into a virtual environment

    $ tools/run_tests/build_python.sh
    

TESTING

  • Use run_python.sh to run gRPC as it was installed into the virtual environment

    $ tools/run_tests/run_python.sh
    

PACKAGING

  • Install packaging dependencies

    $ pip install setuptools twine
    
  • Push to PyPI

    $ ../../tools/distrib/python/submit.py