Skip to main content

django-shortlink

A simple Django App to hold short links mapped to long urls used in your projects.

Requirements

To use this package following needed. if not provided will be installed automatically.

Django>=2.0

Installation

Note: This package is well tested on django>=2.0. But if you are using older versions can be used with minor changes in structure.

install using pip:

$ pip install django-shortlink

Usage

Register app in settings.py

INSTALLED_APPS = [
    "django_shortlink",
]

update urls.py like below:

urlpatterns += [
    ...
    re_path(r'', include('shortlink.urls')),
    ...

Now set Setting variables, If not will use default values as below:

SHORTEN_PATH_LENGTH = 8
SHORTLINK_URL_BASE = 's/'
HOST_ADDRESS = 'http://localhost:8000'

Now to create shortlink, pass your full_url like this:

from shortlink.models import ShortLink
s = ShortLink.objects.create(full_url="https://test.com")
print(s.short_url)

short_url is the shorten url that you should give users. If they click on it, methods in views.py will be triggered and if short_url is valid, will redirect to full_url.

Download files

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

Source Distribution

django-shortlink-0.0.8.tar.gz (18.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_shortlink-0.0.8-py3-none-any.whl (22.5 kB view details)

Uploaded Python 3

Release history Release notifications | RSS feed

This release

0.0.8 This release

2 files

0.0.7

2 files

0.0.6

2 files

0.0.5

2 files

0.0.4

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page