日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python google buffer_python调用Google Protocol Buffer

發布時間:2023/12/19 python 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python google buffer_python调用Google Protocol Buffer 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

寫proto文件

package lm;

message Person

{

required int32? id = 1;

required string str = 2;

optional int32? opt = 3;

}

保存為 testp.testpb.proto

編譯指令

protoc -I=/home/workspace/testprob --python_out=/home/workspace/testprob /home/workspace/testprob/testp.testpb.proto

google

https://developers.google.com/protocol-buffers/docs/pythontutorial

報錯

package directory 'google/protobuf/compiler' does not exist

解決

https://groups.google.com/forum/?fromgroups=#!topic/protobuf/YeT5RW4qCxY

python ./setup.py build

sudo python ./setup.py install

報錯

File "/home/workspace/testprob/testp/testpb_pb2.py", line 6, in

from google.protobuf import reflection as _reflection

File "build/bdist.linux-i686/egg/google/protobuf/reflection.py", line 68, in

File "build/bdist.linux-i686/egg/google/protobuf/internal/python_message.py"

ImportError: cannot import name enum_type_wrapper

解決

http://code.google.com/p/protobuf/issues/detail?id=438

Log message

Fix? issue 438 : add missing 'enum_type_wrapper' to setup.py

是安裝包的一個改進文件,copy下來, 重新安裝

根據安裝目錄下的demo? 自己改寫了個簡單的, 覺得它那個還是麻煩

write.py

import testpb_pb4

import sys

p = testpb_pb2.Person()

try:

f = open(sys.argv[1], "rb")

p.ParseFromString(f.read())

f.close()

except IOError:

print sys.argv[1] + ": File not found.? Creating a new file."

p.id = 32

p.str = "test"

f = open(sys.argv[1], "wb")

f.write(p.SerializeToString())

f.close()

print "write success"

編譯指令 python write.py "test"

read.py

import sys

import testpb_pb2

if len(sys.argv) != 2:

print "Usage:", sys.argv[0], "ADDRESS_BOOK_FILE"

sys.exit(-1)

p = testpb_pb2.Person()

f = open(sys.argv[1], "rb")

p.ParseFromString(f.read())

f.close()

print "p.str = ",? p.str

print "p.id=", p.id

編譯指令 python read.py "test"

總結

以上是生活随笔為你收集整理的python google buffer_python调用Google Protocol Buffer的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。