摘要:

python中一切都可以看作类。那么如何查看每个类的API。使用ipython

python  protobuf 的函数在message中定义

此处所有的api说明:https://developers.google.com/protocol-buffers/docs/reference/python/google.protobuf.message.Message-class

编译

protoc -I=./ --python_out=./ people.proto

1  GidChannelInfo.proto

package bfd.gidchannelinfo;

//定义 gid的来源,是dsp还是电商或者媒体等

message Channel

{

required string name = 1; //来源,例如dsp_Cbehe

required int64 timestamp = 2; //时间戳

}





//key为 G:Channel:gid

message GidChannelInfo

{

required Channel init_channel = 1; //gid初次产生的channel来源

repeated Channel channel = 2; //包含的所有channel渠道

}

2  例子

gidchannelinfo_tmp = GidChannelInfo_pb2.GidChannelInfo()

channel_tmp = GidChannelInfo_pb2.Channel()





DB_SERVER = 'app-2'

db = "DMP_GDMP_Cbehe"

conn = mdb.Connect(DB_SERVER,'bfdroot','qianfendian',db)

cur = conn.cursor()

#cur.execute("select gid,update_time from Mapping_gid where id >0 and id<20000000")

cur.execute("select gid,update_time from Mapping_gid limit 1")

results = cur.fetchall()

for result in results:

    print "result :",str(result)

    gid = result[0]

date_tmp = result[1]

    key = "G:GidChannelInfo:"+gid

    #d = datetime.datetime.strptime(date_tmp,"%Y-%m-%d %H:%M:%S")

    timestamp_tmp = int(time.mktime(date_tmp.timetuple()))

    channel_tmp.name = "dsp_baifendian"

    channel_tmp.timestamp = timestamp_tmp

    print "timestamp_tmp :",timestamp_tmp

    gidchannelinfo_tmp.init_channel.CopyFrom(channel_tmp)

    channel_tmp = gidchannelinfo_tmp.channel.add()

    channel_tmp.name = "dsp_baifendian"

    channel_tmp.timestamp = timestamp_tmp

    channel_tmp = gidchannelinfo_tmp.channel.add()

    channel_tmp.name = "dsp_behe"

    channel_tmp.timestamp = timestamp_tmp

    print "gidchannelinfo_tmp: ",gidchannelinfo_tmp

    mystr = gidchannelinfo_tmp.SerializeToString()

3 注意 :

对于 Singular fields  可以使用 gci.init_channel.MergeFrom赋值

或者对于每个属性赋值。gci.init_channel.name=name

对于repeated fileds可以使用

CopyFrom    MergeFrom

4 api 说明

MergeFrom(self, other_msg)

source code 
Merges the contents of the specified message into current message.

This method merges the contents of the specified message into the current
message. Singular fields that are set in the specified message overwrite
the corresponding fields in the current message. Repeated fields are
appended. Singular sub-messages and groups are recursively merged. Args:
other_msg: Message to merge into the current message.

CopyFrom(self, other_msg)

source code 
Copies the content of the specified message into the current message.

The method clears the current message and then merges the specified
message using MergeFrom. Args:
other_msg: Message to copy into the current one.

此处所有的api说明:https://developers.google.com/protocol-buffers/docs/reference/python/google.protobuf.message.Message-class

 

protobuf python api的更多相关文章

  1. Appium python API 总结

    Appium python api 根据testerhome的文章,再补充一些文章里面没有提及的API [TOC] [1]find element driver 的方法 注意:这几个方法只能通过sel ...

  2. The novaclient Python API

    The novaclient Python API Usage First create a client instance with your credentials: >>> f ...

  3. Openstack python api 学习文档 api创建虚拟机

    Openstack python api 学习文档 转载请注明http://www.cnblogs.com/juandx/p/4953191.html 因为需要学习使用api接口调用openstack ...

  4. BotVS开发基础—Python API

    代码 import json def main(): # python API列表 https://www.botvs.com/bbs-topic/443 #状态信息 LogStatus(" ...

  5. 《Spark Python API 官方文档中文版》 之 pyspark.sql (一)

    摘要:在Spark开发中,由于需要用Python实现,发现API与Scala的略有不同,而Python API的中文资料相对很少.每次去查英文版API的说明相对比较慢,还是中文版比较容易get到所需, ...

  6. 《Spark Python API 官方文档中文版》 之 pyspark.sql (二)

    摘要:在Spark开发中,由于需要用Python实现,发现API与Scala的略有不同,而Python API的中文资料相对很少.每次去查英文版API的说明相对比较慢,还是中文版比较容易get到所需, ...

  7. HBase Python API

    HBase Python API HBase通过thrift机制可以实现多语言编程,信息通过端口传递,因此Python是个不错的选择 吐槽 博主在Mac上配置HBase,奈何Zoomkeeper一直报 ...

  8. 二、Blender/Python API总览

    原文:https://docs.blender.org/api/blender_python_api_current/info_overview.html Python in Blender  Ble ...

  9. Appium+python自动化8-Appium Python API

    Appium+python自动化8-AppiumPython API   前言: Appium Python API全集,不知道哪个大神整理的,这里贴出来分享给大家. 1.contexts conte ...

随机推荐

  1. NavigationBar的显隐和颜色设置

    [self.navigationController setNavigationBarHidden:NO animated:NO]; self.navigationController.navigat ...

  2. docker installation on ubuntu

    Ubuntu Docker is supported on these Ubuntu operating systems: Ubuntu Xenial 16.04 (LTS) Ubuntu Trust ...

  3. Linq序列间的操作

    一.Union并集操作相同的数据只显示一次 二.Concact连接 相同的数据也会重复显示 三.except差集 我有的你没有的显示 四.intersect交集相同的显示 五.zip序列的合并 六.d ...

  4. 获取Excel部分数据并很据项目要求计算适宜性等级综合指数判断该地区的土壤适宜性

    代码运行前请先导入jxl架包,以下代码仅供学习参考: 下图为项目中的Excel: ExcelTest02类代码如下: // 读取Excel的类 import java.io.BufferedWrite ...

  5. Hibernate 系列教程4-单向多对一

    项目图片 hibernate.cfg.xml <mapping resource="com/jege/hibernate/one/way/manytoone/User.hbm.xml& ...

  6. asp网站中使用百度ueditor教程

    1.根据网站类型及编码选择相应的ueditor版本,如我的网站编码为gb2312,则选择ueditor 1.43 asp gbk版.2.本机IE浏览器应为8.0或以上,8.0以下的ueditor 1. ...

  7. hdu1950 Bridging signals 最长递增子序列

    用一个数组记下递增子序列长度为i时最小的len[i],不断更新len数组,最大的i即为最长递增子序列的长度 #include<cstdio> #include<algorithm&g ...

  8. MyBaits 错误分析

    错误原因:在DAO的映射文件中,在映射标签中的type类型写成DAO类了,应该写成javaBean

  9. linux 下载安装tomcat

    1.下载tomcat 2.tar -zxvf apache-tomcat-7.0.67.tar.gz 3.cd bin目录  启动  ./startup.sh [root@fuyuanming bin ...

  10. nagios安装全过程

    Nagios是一个用来监控主机.服务和网络的开放源码软件,可以在发生故障时发送报警短信和邮件,只要Nagios监控的对象发生故障,系统就会自动发送短信到手机上.所以应用十分广泛. Nagios is  ...