Skip to main content

A Django app for handling github users and repos.

Project description

https://api.travis-ci.org/Celc/django-octocat.png?branch=master https://coveralls.io/repos/Celc/django-octocat/badge.png?branch=master https://pypip.in/v/django-octocat/badge.png https://pypip.in/d/django-octocat/badge.png

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-octocat-0.2.1.tar.gz (12.6 kB view details)

Uploaded Source

File details

Details for the file django-octocat-0.2.1.tar.gz.

File metadata

File hashes

Hashes for django-octocat-0.2.1.tar.gz
Algorithm Hash digest
SHA256 267cf16ed97412d23d0042d0759ed9611ef32dd017d7de31138f417e1f1a29ab
MD5 f470c55c1dfc4ed5235fe6a937a97d92
BLAKE2b-256 e8c59c64c4dd29fe18a80e0efa18a9dfd38b843ff0369e320249cf483a5f69e0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page