Post to Facebook/Twitter using Django? - django

Maybe I've already found the answer on Google but I don't recognize it so I resort to you guys.
What packages do I need? A tutorial would be awesome. Thanks in advance!

A package such as django-socialregistration would allow you to authenticate with both.
Alternatively, you could roll your own using one of these:
Facebook python-sdk
python-twitter

You want Twython:
https://github.com/ryanmcgrath/twython-django/blob/master/twython_django_oauth/views.py
Believe me, I have been down this road, and the example Django views in the link above are the most straightforward of twitter oauth2 examples.
See also https://github.com/ryanmcgrath/twython

Related

How can I add a voice recorder in webpage from user and save it in filefield at django model?

I am studying for a long on a voice recorder from the webpage and I need that to send this data to the backend.
I don't know how to do that.
If someone can guide me that would be a great help.
Thanks in advance.
Well. Finally, I found a successful solution to this question.
So, I am keeping it here for my future use and anyone's help.
I found a blog where John Idogun solved the exact problem of mine here is the link
So, if anyone needs a solution can follow this.
Thanks

How to stop comment spam on Django Zinnia?

I can't seem to find an easy way to add a captcha to Zinnia's blog comments. Surely other people have had this problem and already solved it?
Not a captcha, but Zinnia will allow you to plug in a spam protection backend.
The documentation suggests Akismet, TypePad or Mollom

Creating a User Registration Page using MongoEngine

I am currently working an a webapp, using mongoengine and django, which will require users to create an account from a registration page. I know MongoEngine has an authentication backend, but does it also include a registration form, etc..., like django itself does? If not, are there any example projects which show how to implement this? The only open-source mongoengine project I've found is django-mumblr, but I can't find the examples I want in it.
I'm not interested in alternative options, such as MongoKit or mango for handling authentication.
I am just getting started with django and mongoDB, so please excuse my lack of knowledge. Thanks in advance for the help!
Not tried it out yet, but https://github.com/lig/django-registration-me by http://twitter.com/#!/lig1 looks like it could be a good bet.

Django - email app

Could you please suggest any available app for sending & managing emails in django?
You can find a detailed comparison here: http://www.djangopackages.com/grids/g/email/
You can try implement this youself using http://docs.python.org/library/poplib.html and http://docs.python.org/library/smtplib.html#smtp-example but, if you describe what concrete functionality you need, may be i can suggest some ready Django app for you needs.

Ready-made forum, chat, and PM solutions for Django

On my Django site I would like users to communicate with each other in several ways:
Forum
Private messages
Chat with rooms and saved history
Could you suggest me ready solutions for this? Especially for chat.
Also, is it possible to integrate Google Wave in Django?
Sounds like Pinax would be a great fit for you. It has most of what you've listed already bundled.
here's a django based Ajax Chat:
http://pythonhaven.wordpress.com/2009/04/26/django-powered-ajax-chat-part-1/