views:

56

answers:

1

Hey all

i develop one project on python and upload on google app

can i use swf file to import in python web application???

if u have any link or idea give me some suggestions please.

A: 

You cannot import a Flash file into Python (they're different languages!), but probably all you need is to serve that file to your user's browser through an appropriate URL, and for that purpose no importing is needed. Rather, just study the static files section of App Engine's docs, and serve that file as a static one at the appropriate URL.

Alex Martelli