Skip to main content

UNKNOWN

Project description

Another short-URL generator, based on Hashids and a reduced alphabet.

https://travis-ci.org/kezabelle/django-urlbrevity.svg?branch=master

Why a reduced alphabet?

Because if you’re going to bother with a short URL, it needs to be readable and easily audible, without constantly double-checking you’ve not misread or misheard.

Why Hashids

Because assuming your model primary keys are integers, it’s a dirt simple way of encoding a tuple in a reasonably small space. One could also just use django.utils.http.int_to_base36 of course.

Usage

in your settings module:

INSTALLED_APPS = (
    # ...
    'urlbrevity',
    # ...
)

in your root urlconf:

from django.conf.urls import patterns, url, include
import urlbrevity

urlpatterns = patterns("",
    # ...
    url(r'redirect/', include(urlbrevity.redirects)),
    # Or if you don't want to redirect ...
    url(r'no_redirect/', include(urlbrevity.no_redirects)),
    # ...
)

in your templates:

{% load urlbrevity %}
<a href="{% url 'urlbrevity:short' my_model_instance|hashid %}">...</a>
or ...
<a href="{{ my_model_instance|short_url }}">

in your python:

import urlbrevity
obj = MyModel.objects.get(pk='...')
encoded = urlbrevity.encode_model_instance(obj=obj)
value = encoded.hash
url = reverse('urlbrevity:short', kwargs={'encoded_value': value})
# or ...
url2 = urlbrevity.short_url(obj)

# to re-inflate ...
obj_again = urlbrevity.decode_model_instance(value)

Why internal redirects?

Because mobile is an important space, and even on 3G+ connections, redirects are another round-trip that may fail or be slow. Easier to just render the intended output if possible.


License

django-urlbrevity is available under the terms of the Simplified BSD License (alternatively known as the FreeBSD License, or the 2-clause License):

Copyright (c) 2014, Keryn Knight
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
   list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

The views and conclusions contained in the software and documentation are those
of the authors and should not be interpreted as representing official policies,
either expressed or implied, of the FreeBSD Project.

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-urlbrevity-0.1.0.tar.gz (10.9 kB view hashes)

Uploaded Source

Built Distribution

django_urlbrevity-0.1.0-py2-none-any.whl (19.0 kB view hashes)

Uploaded Python 2

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