Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to know how to write python code for fetching the likes, comments, etc. on a post of Facebook posts. I am using the pyfacebook interface but when I run some code using this in python it gives me an error:

Traceback (most recent call last):
  File "ts.py", line 2, in <module>
    import facebook
  File "build/bdist.linux-i686/egg/facebook/__init__.py", line 58, in <module>
ImportError: No module named django.conf
share|improve this question

2 Answers

You can try facebook-sdk, follow the example, you can get anything you want in the Facebook Graph API.

share|improve this answer

You need to have a web framework called Django installed on your system to use pyfacebook.

However: it appears that Python is viewed by some to be the wrong tool for the job, noting that;

if you’re not in PHP, you’re already a half-step behind. It looks like the PHP libraries + integration are pretty good, well tested, well documented, etc.

As well as:

[the] pyfacebook tutorial is really a django tutorial.

You may want to look into installing Django, and starting from there. I would recommend not straying from the official Django tutorial, as it is a very good one.

share|improve this answer
i am getting same error after installing django aswell..i just want to fetch the likes,comment made by my friends on my post, its related to my project ...so if u have any python code or php code prefrebly python,plz give – user1543087 Sep 10 '12 at 4:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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