Django-facebook is the only one I know of that will support the Graph API right now: <a href="https://github.com/tschellenbach/Django-facebook" rel="nofollow">https://github.com/tschellenbach/Django-facebook</a><p>For just the fundaments:<p>Facebook's own SDK: <a href="https://github.com/facebook/python-sdk/blob/master/examples/oauth/facebookoauth.py" rel="nofollow">https://github.com/facebook/python-sdk/blob/master/examples/...</a><p>or<p>Requests: <a href="http://docs.python-requests.org/en/latest/index.html" rel="nofollow">http://docs.python-requests.org/en/latest/index.html</a><p>If you need more providers, there's also Django SocialAuth, but I'm not sure if it's updated for Facebook's OAuth 2 stuff yet.
I started using django-social-auth, but ended up rolling my own Facebook backend using the Facebook Python SDK. It's really simple if all you want to do is fetch some information and create a new user.<p>That said, django-social-auth should be more than enough if all you need is a way for a user to login using Facebook Connect.
I like django-allauth a lot for all the social authentication integration: <a href="https://github.com/pennersr/django-allauth" rel="nofollow">https://github.com/pennersr/django-allauth</a>
django-social-auth is the best for doing Facebook authentication/account-creation.<p>I don't deal with the Graph API much so I can't comment on that aspect.