from functorflow import ff
data = {'zero': 0, 'one': 1}
r = ff('dns-txt').encode(data)
print(r)
# {'type': 'Buffer', 'data': [6, 122,..]}
r = ff('dns-txt').decode(r)
print(r) # {'zero': '0', 'one': '1'}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)