Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

9 lines
224 B
Python

from __future__ import print_function
import google.protobuf as pb
print('python protobuf contents:')
for attr in dir(pb):
if attr == '__builtins__':
continue
print('{}: {}'.format(attr, getattr(pb, attr)))