A Django app for handling github users and repos.
Project description
A Django app for handling github users and repos.
Installation
To get the latest stable release from PyPi
pip install django-octocat
To get the latest commit from GitHub
pip install -e git+git://github.com/Celc/django-octocat.git#egg=github
Add github to your INSTALLED_APPS
INSTALLED_APPS = (
...,
'github',
)
Add the github URLs to your urls.py
urlpatterns = patterns('',
...
url(r'^github/', include('github.urls', namespace='github')),
)
Add github.middlewares.GithubAuthorizationMiddleware to your MIDDLEWARE_CLASSES
MIDDLEWARE_CLASSES = (
...
'github.middlewares.GithubAuthorizationMiddleware',
)
Add github.backends.GithubBackend to your AUTHENTICATION_BACKENDS
AUTHENTICATION_BACKENDS = (
...
'github.backends.GithubBackend',
)
Don’t forget to migrate your database
./manage.py migrate github
If you are planning on cloning the repos set the target directory in settings.py
import tempfile
GITHUB_ROOT = tempfile.gettempdir()
Finally add the Github settings under /admin.
Usage
To authenticate users send them to {% url 'github:authorize' pk=1 %} where pk is the id of the Github app.
Contribute
mkvirtualenv django-octocat
make develop
Add code, write test, send pull request.
Octocat
Octocat is a trademark owned by GitHub Inc and is used with permission. The library is in no way affiliated, maintained or sponsored by GitHub Inc.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-octocat-0.2.1.tar.gz
.
File metadata
- Download URL: django-octocat-0.2.1.tar.gz
- Upload date:
- Size: 12.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 267cf16ed97412d23d0042d0759ed9611ef32dd017d7de31138f417e1f1a29ab |
|
MD5 | f470c55c1dfc4ed5235fe6a937a97d92 |
|
BLAKE2b-256 | e8c59c64c4dd29fe18a80e0efa18a9dfd38b843ff0369e320249cf483a5f69e0 |