Metadata-Version: 2.1
Name: django-urlshortner
Version: 0.0.1
Summary: A Django app that provides utils to build a custom URL shortener.
Home-page: https://github.com/jim-junior/django-urlshortner
Author: Beingana Jim Junior
Author-email: jimjunior854@gmail.com
License: MIT
Keywords: django,urlshortener,web
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Django URL Shortner

A set of utils to build custom fully-functional Django URL Shortner.

## Quick start

1. Add `"urlshortner"` to your INSTALLED_APPS setting like this:

```py
INSTALLED_APPS = [
    ...
    'urlshortner',
]
```

Include the polls URLconf in your project urls.py like this:

```py
    path('r/', include('urlshortner.urls')),
```

1. Run `python manage.py migrate` to create the Url models.

