Metadata-Version: 1.1
Name: django-furl
Version: 0.0.2
Summary: A simple Django extension for url manipulation
Home-page: https://github.com/poxip/django-furl
Author: Michal Proszek
Author-email: michal.proszek@gmail.com
License: MIT
Description: ===========
        django-furl
        ===========
        |Version| |License| |Downloads|
        
        .. |Version| image:: https://img.shields.io/pypi/v/django-furl.svg?style=flat
            :target: https://pypi.python.org/pypi/django-furl
            :alt: Version
        .. |License| image:: https://img.shields.io/pypi/l/django-furl.svg?style=flat
            :target: https://github.com/poxip/django-furl/blob/master/LICENSE
            :alt: License
        .. |Downloads| image:: https://img.shields.io/pypi/dm/django-furl.svg
            :target: https://pypi.python.org/pypi/django-furl
            :alt: Downloads
        
        **django-furl** is a simple Django wrapper of `Furl
        <https://github.com/gruns/furl>`_'s API. It provides essential template tags
        for url manipulation.
        
        .. code-block::
        
            {% furl_add 'http://somestuff.tv/search/?q=The+Office' character='Michael Scott' year=2005 %}
        
        ``http://somestuff.tv/search/?q=The+Office&character=Michael+Scott&year=2005``
        
        Installation
        ------------
        ::
        
            $ pip install django-furl
        
        
        Quick Start
        -----------
        
        1. Add "djangofurl" to your INSTALLED_APPS::
        
            INSTALLED_APPS = [
                ...
                'django_furl',
            ]
        
        2. Load "djangofurl" in your template::
        
            {% load furl_tags %}
        
        
        Basic Usage
        -----------
        
        .. code-block::
        
            {% furl_add 'http://somestuff.tv/search/?q=The+Office' character='Michael Scott' year=2005 %}
        
        ``http://somestuff.tv/search/?q=The+Office&character=Michael+Scott&year=2005``
        
        .. code-block::
        
            {% furl_update 'http://somestuff.tv/search/?page=3' q='The Big Bang Theory' character='Sheldon Cooper' page=1 %}
        
        ``http://somestuff.tv/search/?page=1&q=The+Big+Bang+Theory&character=Sheldon+Cooper``
        
        .. code-block::
        
            {% furl_add 'http://somestuff.tv/search/?facets=Type.Other' facets='Category.Drama' q='True Detective' %}
        
        ``http://somestuff.tv/search/?facets=Type.Other&facets=Category.Drama&q=True+Detective``
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
