Skip to main content

Django application to create, manage, and redirect permanent links

Project description

Django Permalinker

django_permalinker is a Django application that provides an easy way to create, manage, and redirect permanent links (or permalinks). With customizable permalink ID generation, this app ensures that you have unique and efficient IDs to serve your redirecting needs.

Features

  • Customizable Permalink ID Generation: Adjust ID length, character set (uppercase, lowercase, digits), and more through Django settings.
  • Admin Interface: Manage links via Django's admin panel.
  • 404 Handling: Automatically raise 404 errors for invalid or missing links.
  • Automatic Redirection: Automatically redirect users to the destination URL based on the unique ID.

Requirements

  • Python: 3.10+
  • Django: 4+

Installation

  1. Install the package:
pip install django-permalinker
  1. Add django_permalinker to your INSTALLED_APPS in settings.py:
INSTALLED_APPS = [
    # Other apps
    'django_permalinker',
]
  1. Include the django_permalinker URLs in your project’s urls.py:
from django.urls import path, include

urlpatterns = [
    # Other paths
    path("link/", include("django_permalinker.urls")),
]
  1. Run migrations to create the necessary database tables:
python manage.py migrate
  1. Start the Django development server:
python manage.py runserver

Configuration

Customize the behavior of permalink ID generation in your Django project’s settings.py file:

  • PERMALINKER_ID_LENGTH: Defines the length of the generated ID (default: 5).
  • PERMALINKER_ID_INCLUDE_UPPERCASE: If set to True, uppercase letters will be included in the ID (default: True).
  • PERMALINKER_ID_INCLUDE_DIGITS: If set to True, digits will be included in the ID (default: True).

Example:

# settings.py

PERMALINKER_ID_LENGTH = 8  # Custom ID length
PERMALINKER_ID_INCLUDE_UPPERCASE = False  # Only lowercase letters
PERMALINKER_ID_INCLUDE_DIGITS = True  # Include digits

Usage

Creating and Managing Links

  1. Access the Django Admin interface at http://localhost:8000/admin/.
  2. Navigate to the Permalinker section and manage your links:
    • Add New Link: Create a new link with a destination URL, name, and description.
    • List Links: View all the existing links.
    • Edit Existing Links: Update or delete existing links.

Redirecting

Once a link is created, you can access the link's permanent URL by visiting:

http://localhost:8000/link/<link_id>/

Django will handle the redirection to the destination URL automatically.

Example

  1. Create a new link in the admin panel:

    • Name: Example link
    • Destination URL: https://example.com
  2. Access the permanent link:

http://localhost:8000/link/abc123/

You will be redirected to https://example.com.

Screenshots

1. Admin: List Links View

View all the existing links in the Django admin.

2. Admin: Add New Link View

Create a new link by providing a name, destination URL, and description.

3. Admin: Edit Existing Link View

Edit an existing link’s details or delete it.

License

This project is licensed under the MIT License - see the LICENSE file for details.

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-permalinker-0.1.1.tar.gz (1.6 MB view details)

Uploaded Source

Built Distribution

django_permalinker-0.1.1-py3-none-any.whl (11.4 kB view details)

Uploaded Python 3

File details

Details for the file django-permalinker-0.1.1.tar.gz.

File metadata

  • Download URL: django-permalinker-0.1.1.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.1

File hashes

Hashes for django-permalinker-0.1.1.tar.gz
Algorithm Hash digest
SHA256 bf16e16db09f1e76eb129e20dd20b11ef31755f69b1b392f3ba16e39fa618a18
MD5 c5626775e6c1c0bb385023cd8778fa1c
BLAKE2b-256 11c953f912736acd3cd0d9d1b363a66d55e555c64b293282be6e0d1e6441688f

See more details on using hashes here.

File details

Details for the file django_permalinker-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_permalinker-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1321409f1ab60f7c1212585cae5b8a5a3be3cd3436a255ea04343a835d273f99
MD5 a4548c69035aef32d2c8a94cbb5ccaa5
BLAKE2b-256 d2e1c8185245db0388d32c3ad27093cb059964d8cdd0b53e5eaa03894020a4c7

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