Skeleton for a basic OAuth example, using Django. (Currently not functioning, just wanted it in the repo)

This commit is contained in:
Ryan McGrath 2009-09-24 04:04:10 -04:00
parent 9007722c23
commit df38e3312a
9 changed files with 1461 additions and 0 deletions

View 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)),
)