Name: ProtoRPC | |
Short Name: protorpc | |
URL: https://github.com/google/protorpc | |
Version: 0.12.0 | |
License: Apache 2.0 | |
License File: LICENSE | |
Security Critical: no | |
Description: | |
Local Modifications: | |
1. Retain only the protorpc/remote.py file. | |
2. Rename my_service.async to my_service.async_ | |
We don't use the async feature, and it's a reserved keyword in Python 3. | |
3. array.array.tostring() and array.array.fromstring() are renamed in Python 3. | |
Use array.array.tobytes() and array.array.frombytes(), respectively. |