How to deserialize and serialize AMF Packets in Python?
#1
Rainbow 
HI I am writing a Plugin for NBF.ca
I have found some perl code here:
Code:
my $data = Data::AMF::Packet->new->deserialize($packet);
  $data->messages->[0]->{value}->[1] = $data->messages->[1]->{value}->[1] = $mid;
  $data = $data->serialize;

I would like to know its Python counterparts. I am pretty new to PyAMF.

Thanks a lot!
Reply

Logout Mark Read Team Forum Stats Members Help
How to deserialize and serialize AMF Packets in Python?0