Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/silent1mezzo/django-shortnr
Django URL Shortener
https://github.com/silent1mezzo/django-shortnr
Last synced: 26 days ago
JSON representation
Django URL Shortener
- Host: GitHub
- URL: https://github.com/silent1mezzo/django-shortnr
- Owner: silent1mezzo
- Created: 2010-10-23T03:54:11.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2010-10-24T21:10:08.000Z (over 14 years ago)
- Last Synced: 2024-11-09T09:49:20.056Z (3 months ago)
- Language: Python
- Homepage:
- Size: 93.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
====================
Django Shortnr
====================
The Django Shortnr app came about because I had a free night while my finance was making a Halloween costume. I realize there are many apps like this available but it was more to see how quickly I could do it.Here's a list of features
#. Shortens any url
#. Keeps tracks of the shortened url usage
#. Ability to store URLs and view them afterwards
#. URLs are reused if user is authenticated and has already shortened the url, or if the user isn't authenticated
Again, this has been done, and probably been done better elsewhere. I was just bored...
Installation
============#. Add the following to your `INSTALLED_APPS`
``'shortnr'``#. Create the variable `SHORTEN_LINK_URL`
``SHORTEN_LINK_URL = 'http://localhost:8000/view/'``