Several folks have asked how to get started using LiveFX with IronPython.

Here is a quick Getting Started guide:

    1. Download and install the latest IronPython console from [here]
    2. Grab the sample LiveOE.py file from [here]
    3. Edit the LiveOE.py file and change the line
         sdkLibsPath = r"..\LiveFrameworkSDK\Libraries\.Net Library"
      to reflect the path where you’ve installed the LiveFX SDK .NET libraries
    4. Launch the IronPython console from the command line: [ipy.exe -X:TabCompletion]
    5. At the console, you can now type something like:

         import LiveOE
         livefx = LiveOE.Connect("username@live.com", "password")
         for i in livefx.Mesh.MeshObjects.Entries : print i.Resource.Title

That about does it.