Twython 1.3, OAuth support is now finally included and working. Ships with an example Django application to get people started with OAuth, entire library is refactored to not be a royal clusterfsck. Enjoy.
This commit is contained in:
parent
7ccf8a2baf
commit
eb5541e433
22 changed files with 2400 additions and 4492 deletions
7
oauth_django_example/twitter/models.py
Normal file
7
oauth_django_example/twitter/models.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
from django.db import models
|
||||
from django.contrib.auth.models import User
|
||||
|
||||
class Profile(models.Model):
|
||||
user = models.ForeignKey(User)
|
||||
oauth_token = models.CharField(max_length = 200)
|
||||
oauth_secret = models.CharField(max_length = 200)
|
||||
Loading…
Add table
Add a link
Reference in a new issue