
Dave Thompson created a new address book example that uses the new SQLAlchemy adapter that was added in the latest release of PyAMF. PyAMF provides Action Message Format (AMF) support for Python, mainly used in the Adobe Flash Player for RPC communication.
You can browse or download the source from the Subversion repository. You can find instructions on how to run the example yourself on the documentation page.
Archive for the ‘AMF’ Category
SQLAlchemy and Flash: Addressbook example
Monday, March 16th, 2009Introducing cPyAMF
Sunday, May 4th, 2008
There are two parts to PyAMF: the core AMF encoder and decoder, and the gateway/remoting for transporting data between a server and a client.
Currently both parts are written in pure Python but the idea is to create a C version of the AMF encoder/decoder that can be used as a dropin which will increase performance significantly.
For more information check the ticket or browse the source in the repository.
Twisted Guestbook Example
Saturday, April 12th, 2008Authentication
Sunday, January 13th, 2008In this tutorial, I’ll run through how to get a remoting server setup that deals with authentication. I’ll assume that you already have the latest version of PyAMF installed (at the time of writing, 0.1b is the most recent version).
I am going to build a WSGI remoting gateway, but you can use the principles applied here to any of the other supported gateway implementations (Django or Twisted). Check out the examples for more info.
Socket example
Sunday, January 13th, 2008The Socket class enables Actionscript to make socket connections and to read and write raw binary data. This example shows how to:
ByteArray example
Thursday, January 10th, 2008We have created a simple PyAMF example for the ByteArray class in ActionScript which provides methods and properties to optimize reading, writing, and working with binary data. The PyAMF equivalent of this class is also called ByteArray that provides the same basic functionality. (more…)