-
-
Save dolzenko/3858808 to your computer and use it in GitHub Desktop.
Parse Google BidRequest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import realtime_bidding_proto_pb2 | |
| msg = realtime_bidding_proto_pb2.BidRequest() | |
| f = open('bid_request.bin', "rb") | |
| msg.ParseFromString(f.read()) | |
| f.close() | |
| print msg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment