vote up 1 vote down star
2

I'm trying to build my first facebook app, and it seems that the python facebook (pyfacebook) wrapper is really out of date, and the most relevant functions, like stream functions, are not implemented.

Are there any mature python frontends for facebook? If not, what's the best language for facebook development?

flag

2  
What are you talking about, pyfacebook being out of date? The page very clearly states that the project has moved to github, and the last commit date on github was on June 7th. (github.com/sciyoshi/pyfacebook/tree/master) – Daniel Lew Jun 22 at 16:04
I'm looked at github too - No signs of stream functionality there. I've linked to the google code page because the current documentation is still there. Thanks! – Adam Matan Jun 22 at 16:17

3 Answers

vote up 6 vote down check

The updated location of pyfacebook is on github. Plus, as arstechnica well explains:

PyFacebook is also very easy to extend when new Facebook API methods are introduced. Each Facebook API method is described in the PyFacebook library using a simple data structure that specifies the method's name and parameter types.

so, even should you be using a pyfacebook version that doesn't yet implement some brand-new thing you need, it's easy to add said thing, as Ryan Paul shows here regarding some of the stream functions (back in April right after they were launched).

link|flag
vote up 2 vote down

If you're a facebook newbie, I'd suggest doing your first couple of apps in PHP. Facebook is written in PHP, the APIs are really designed around PHP (although they are language-neutral, theoretically.) The latest API support and most of the sample code is always in PHP.

Once you get the hang of it, you can definitely write FB apps in other languages, including Python, Actionscript, etc. But my experience with other platforms is that they never work "out of the box" with Facebook the way PHP does.

This is nothing against python! I like the language alot.

link|flag
vote up 1 vote down

Try this site instead.

It's pyfacebooks site on GitHub. The one you have is outdated.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.