vladimirmyshkovski / django-url-shorter

Simple django app for shorting urls

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django URL shorter

https://travis-ci.org/narnikgamarnikus/django-url-shorter.svg?branch=master

Django app for shortening urls

Documentation

The full documentation is at https://django-url-shorter.readthedocs.io.

Quickstart

Install Django URL shorter:

pip install django-url-shorter

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'url_shorter.apps.UrlShorterConfig',
    ...
)

Add Django URL shorter's URL patterns:

from url_shorter import urls as url_shorter_urls


urlpatterns = [
    ...
    url(r'^', include(url_shorter_urls)),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package:

About

Simple django app for shorting urls

License:MIT License


Languages

Language:Python 86.1%Language:HTML 10.9%Language:Makefile 3.0%