An open API service indexing awesome lists of open source software.

https://github.com/aseyed/protobuff-todo


https://github.com/aseyed/protobuff-todo

grpc grpc-python protobuff python3 todoapp

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# protobuff-todo
#### This is a todo app with python language based on protobuff protocol and twisted framework

## pre-requirements
* make a virtual env
* `virtualenv venv`
* install requirements from requirements file
* `pip install -r requirements.txt`
* make sure `protoc` is installed

## run the program
* make proto file in python
* if you changed the todo.proto file do these; else jump to next level
* `cd todo`
* `protoc -I . todo.proto --python_out=.`
* run server
* `cd server`
* `python app.py`
* run client
* `cd client`
* `python client.py`s