0

我正在用 Python重写以下 Perl代码:

  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 上搜索的示例无济于事。

非常感谢!

4

1 回答 1

1

类似于以下内容:

from pyamf import remoting

packet = remoting.decode(bytes)
packet['/1'][1] = packet['/2'][1]

stream = remoting.encode(packet)

bytes = stream.getvalue()
于 2011-08-03T08:02:38.540 回答