├── .gitignore ├── LICENSE ├── README.md ├── c++ ├── CMakeLists.txt ├── example_person ├── example_person.cpp ├── make.sh ├── proto_buf │ ├── General_buf_read.h │ └── General_buf_write.h ├── proto_pb2 │ ├── CMakeLists.txt │ ├── Person.pb.cc │ └── Person.pb.h └── protobuf │ ├── bin │ └── protoc │ ├── include │ └── google │ │ └── protobuf │ │ ├── compiler │ │ ├── code_generator.h │ │ ├── command_line_interface.h │ │ ├── cpp │ │ │ └── cpp_generator.h │ │ ├── importer.h │ │ ├── java │ │ │ └── java_generator.h │ │ ├── parser.h │ │ ├── plugin.h │ │ ├── plugin.pb.h │ │ ├── plugin.proto │ │ └── python │ │ │ └── python_generator.h │ │ ├── descriptor.h │ │ ├── descriptor.pb.h │ │ ├── descriptor.proto │ │ ├── descriptor_database.h │ │ ├── dynamic_message.h │ │ ├── extension_set.h │ │ ├── generated_enum_reflection.h │ │ ├── generated_message_reflection.h │ │ ├── generated_message_util.h │ │ ├── io │ │ ├── coded_stream.h │ │ ├── gzip_stream.h │ │ ├── printer.h │ │ ├── strtod.h │ │ ├── tokenizer.h │ │ ├── zero_copy_stream.h │ │ ├── zero_copy_stream_impl.h │ │ └── zero_copy_stream_impl_lite.h │ │ ├── message.h │ │ ├── message_lite.h │ │ ├── reflection_ops.h │ │ ├── repeated_field.h │ │ ├── service.h │ │ ├── stubs │ │ ├── atomicops.h │ │ ├── atomicops_internals_arm64_gcc.h │ │ ├── atomicops_internals_arm_gcc.h │ │ ├── atomicops_internals_arm_qnx.h │ │ ├── atomicops_internals_atomicword_compat.h │ │ ├── atomicops_internals_generic_gcc.h │ │ ├── atomicops_internals_macosx.h │ │ ├── atomicops_internals_mips_gcc.h │ │ ├── atomicops_internals_pnacl.h │ │ ├── atomicops_internals_tsan.h │ │ ├── atomicops_internals_x86_gcc.h │ │ ├── atomicops_internals_x86_msvc.h │ │ ├── common.h │ │ ├── once.h │ │ ├── platform_macros.h │ │ ├── stl_util.h │ │ ├── template_util.h │ │ └── type_traits.h │ │ ├── text_format.h │ │ ├── unknown_field_set.h │ │ ├── wire_format.h │ │ ├── wire_format_lite.h │ │ └── wire_format_lite_inl.h │ └── lib │ ├── libprotobuf-lite.a │ ├── libprotobuf-lite.la │ ├── libprotobuf.a │ ├── libprotobuf.la │ └── pkgconfig │ ├── protobuf-lite.pc │ └── protobuf.pc ├── prebuild ├── Person.pb.cc ├── Person.pb.h ├── Person.proto ├── Person_pb2.py ├── make.sh └── protoc └── python ├── data └── Person_test.proto ├── example_person.py ├── proto_buf ├── General_buf_read.py ├── General_buf_write.py └── __init__.py └── proto_pb2 ├── Person_pb2.py └── __init__.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/README.md -------------------------------------------------------------------------------- /c++/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/CMakeLists.txt -------------------------------------------------------------------------------- /c++/example_person: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/example_person -------------------------------------------------------------------------------- /c++/example_person.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/example_person.cpp -------------------------------------------------------------------------------- /c++/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/make.sh -------------------------------------------------------------------------------- /c++/proto_buf/General_buf_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/proto_buf/General_buf_read.h -------------------------------------------------------------------------------- /c++/proto_buf/General_buf_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/proto_buf/General_buf_write.h -------------------------------------------------------------------------------- /c++/proto_pb2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/proto_pb2/CMakeLists.txt -------------------------------------------------------------------------------- /c++/proto_pb2/Person.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/proto_pb2/Person.pb.cc -------------------------------------------------------------------------------- /c++/proto_pb2/Person.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/proto_pb2/Person.pb.h -------------------------------------------------------------------------------- /c++/protobuf/bin/protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/bin/protoc -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/compiler/code_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/compiler/code_generator.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/compiler/command_line_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/compiler/command_line_interface.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/compiler/cpp/cpp_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/compiler/cpp/cpp_generator.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/compiler/importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/compiler/importer.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/compiler/java/java_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/compiler/java/java_generator.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/compiler/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/compiler/parser.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/compiler/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/compiler/plugin.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/compiler/plugin.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/compiler/plugin.pb.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/compiler/python/python_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/compiler/python/python_generator.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/descriptor.pb.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/descriptor_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/descriptor_database.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/dynamic_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/dynamic_message.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/extension_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/extension_set.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/generated_enum_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/generated_enum_reflection.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/generated_message_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/generated_message_reflection.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/generated_message_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/generated_message_util.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/io/coded_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/io/coded_stream.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/io/gzip_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/io/gzip_stream.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/io/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/io/strtod.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/io/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/io/tokenizer.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/io/zero_copy_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/io/zero_copy_stream.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/io/zero_copy_stream_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/io/zero_copy_stream_impl.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/io/zero_copy_stream_impl_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/io/zero_copy_stream_impl_lite.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/message.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/message_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/message_lite.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/reflection_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/reflection_ops.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/repeated_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/repeated_field.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/service.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/atomicops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/atomicops.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/atomicops_internals_arm64_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/atomicops_internals_arm64_gcc.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/atomicops_internals_arm_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/atomicops_internals_arm_gcc.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/atomicops_internals_arm_qnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/atomicops_internals_arm_qnx.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/atomicops_internals_atomicword_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/atomicops_internals_atomicword_compat.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/atomicops_internals_generic_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/atomicops_internals_generic_gcc.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/atomicops_internals_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/atomicops_internals_macosx.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/atomicops_internals_mips_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/atomicops_internals_mips_gcc.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/atomicops_internals_pnacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/atomicops_internals_pnacl.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/atomicops_internals_tsan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/atomicops_internals_tsan.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/atomicops_internals_x86_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/atomicops_internals_x86_gcc.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/atomicops_internals_x86_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/atomicops_internals_x86_msvc.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/common.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/platform_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/platform_macros.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/stl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/stl_util.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/template_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/template_util.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/stubs/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/stubs/type_traits.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/text_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/text_format.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/unknown_field_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/unknown_field_set.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/wire_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/wire_format.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/wire_format_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/wire_format_lite.h -------------------------------------------------------------------------------- /c++/protobuf/include/google/protobuf/wire_format_lite_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/include/google/protobuf/wire_format_lite_inl.h -------------------------------------------------------------------------------- /c++/protobuf/lib/libprotobuf-lite.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/lib/libprotobuf-lite.a -------------------------------------------------------------------------------- /c++/protobuf/lib/libprotobuf-lite.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/lib/libprotobuf-lite.la -------------------------------------------------------------------------------- /c++/protobuf/lib/libprotobuf.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/lib/libprotobuf.a -------------------------------------------------------------------------------- /c++/protobuf/lib/libprotobuf.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/lib/libprotobuf.la -------------------------------------------------------------------------------- /c++/protobuf/lib/pkgconfig/protobuf-lite.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/lib/pkgconfig/protobuf-lite.pc -------------------------------------------------------------------------------- /c++/protobuf/lib/pkgconfig/protobuf.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/c++/protobuf/lib/pkgconfig/protobuf.pc -------------------------------------------------------------------------------- /prebuild/Person.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/prebuild/Person.pb.cc -------------------------------------------------------------------------------- /prebuild/Person.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/prebuild/Person.pb.h -------------------------------------------------------------------------------- /prebuild/Person.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/prebuild/Person.proto -------------------------------------------------------------------------------- /prebuild/Person_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/prebuild/Person_pb2.py -------------------------------------------------------------------------------- /prebuild/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/prebuild/make.sh -------------------------------------------------------------------------------- /prebuild/protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/prebuild/protoc -------------------------------------------------------------------------------- /python/data/Person_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/python/data/Person_test.proto -------------------------------------------------------------------------------- /python/example_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/python/example_person.py -------------------------------------------------------------------------------- /python/proto_buf/General_buf_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/python/proto_buf/General_buf_read.py -------------------------------------------------------------------------------- /python/proto_buf/General_buf_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/python/proto_buf/General_buf_write.py -------------------------------------------------------------------------------- /python/proto_buf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/proto_pb2/Person_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yngzMiao/protobuf-parser-tool/HEAD/python/proto_pb2/Person_pb2.py -------------------------------------------------------------------------------- /python/proto_pb2/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------