Skeleton for a basic OAuth example, using Django. (Currently not functioning, just wanted it in the repo)
This commit is contained in:
parent
9007722c23
commit
df38e3312a
9 changed files with 1461 additions and 0 deletions
17
twython_oauth_example/urls.py
Normal file
17
twython_oauth_example/urls.py
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
from django.conf.urls.defaults import *
|
||||
|
||||
# Uncomment the next two lines to enable the admin:
|
||||
# from django.contrib import admin
|
||||
# admin.autodiscover()
|
||||
|
||||
urlpatterns = patterns('',
|
||||
# Example:
|
||||
# (r'^twython_oauth_example/', include('twython_oauth_example.foo.urls')),
|
||||
|
||||
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
|
||||
# to INSTALLED_APPS to enable admin documentation:
|
||||
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
|
||||
|
||||
# Uncomment the next line to enable the admin:
|
||||
# (r'^admin/', include(admin.site.urls)),
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue