अभी तक किसी भी व्यक्ति ने चेक इन नहीं किया है प्रोटोकॉल मैसेज प्रोसेसिंग के लिए एक मॉड्यूल.
सदस्य
encode_text
string proto.encode_text(x)
किसी निर्देश को मैसेज में बदल दिया जाता है. फ़ील्ड को नाम के क्रम में डाला जाता है. हर उस संरचना फ़ील्ड को अनदेखा किया जाता है जिसकी वैल्यू 'कोई नहीं' होती है.
सूची या टपल जैसे क्रम को दोहराए गए फ़ील्ड में बदल दिया जाता है. इसके एलिमेंट, सीक्वेंस या डिक्शनरी वाले नहीं होने चाहिए.
लिखवाने वाले फ़ील्ड को, मैसेज के दोहराए गए फ़ील्ड में बदल दिया जाता है. इस फ़ील्ड में 'key' फ़ील्ड होता है और 'वैल्यू'.
एंट्री, इटरेशन (शामिल करने) के क्रम में दी जाती हैं.
डिक्शनरी की कुंजियां, स्ट्रिंग या पूर्णांक में होनी चाहिए. साथ ही, इनकी वैल्यू, क्रम या डिक्ट वाले नहीं होनी चाहिए.
उदाहरण:
proto.encode_text(struct(field=123)) # field: 123 proto.encode_text(struct(field=True)) # field: true proto.encode_text(struct(field=[1, 2, 3])) # field: 1 # field: 2 # field: 3 proto.encode_text(struct(field='text', ignored_field=None)) # field: "text" proto.encode_text(struct(field=struct(inner_field='text', ignored_field=None))) # field { # inner_field: "text" # } proto.encode_text(struct(field=[struct(inner_field=1), struct(inner_field=2)])) # field { # inner_field: 1 # } # field { # inner_field: 2 # } proto.encode_text(struct(field=struct(inner_field=struct(inner_inner_field='text')))) # field { # inner_field { # inner_inner_field: "text" # } # } proto.encode_text(struct(foo={4: 3, 2: 1})) # foo: { # key: 4 # value: 3 # } # foo: { # key: 2 # value: 1 # }
पैरामीटर
पैरामीटर | ब्यौरा |
---|---|
x
|
स्ट्रक्चर;
ज़रूरी है |