本文介绍了如何反序列化,并在Python序列化AMF包?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我重写下面的Perl的:
I am rewriting the following Perl code in Python:
my $data = Data::AMF::Packet->new->deserialize($packet);
$data->messages->[0]->{value}->[1] = $data->messages->[1]->{value}->[1] = $mid;
$data = $data->serialize;
我想知道如何在Python写的吗?我是新来PyAMF的,我用Google搜索不会帮助的例子。
I would like to know how to write this in Python? I am new to PyAMF and the examples I googled wont help.
非常感谢!
推荐答案
线沿线的东西:
from pyamf import remoting
packet = remoting.decode(bytes)
packet['/1'][1] = packet['/2'][1]
stream = remoting.encode(packet)
bytes = stream.getvalue()
这篇关于如何反序列化,并在Python序列化AMF包?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!