Metadata-Version: 2.1
Name: LilUrl
Version: 0.0.5
Summary: UNKNOWN
Home-page: https://github.com/omprakash1989/LilUrl
Author: Om Prakash
Author-email: oppradhan2011@gmail.com
License: MIT License
Description: Url Shortener
        =============
        [![Build Status](https://travis-ci.org/lil_url.svg?branch=master)](https://travis-ci.org/lil_url)
        
        
        Current status, version 0.0.1, pre-alpha release
        ------------------------------------------------
        
        This project is under constant development and maintenance.
        
        Details
        -------
        
        Project codebase: <https://github.com/omprakash1989/LilUrl>
        
        Project Documentation: <http://url_shortner.readthedocs.io/en/latest>
        
        
        Features
        --------
        
        - One click installation
        
        
        Installation
        ------------
        
        Install lil_url by running:
        
        pip install url_shortener
        
        Contribute
        ----------
        
        - Issue Tracker: https://github.com/omprakash1989/LilUrl/issues
        - Source Code: https://github.com/omprakash1989/LilUrl
        
        License
        -------
        
        The project is licensed under the MIT License.
        
        How to use
        ==========
        ```python
        
        from flask import Flask
        from lil_url import shorten_url, init_app
        
        app = Flask(__name__)
        init_app(app)
        
        
        response = shorten_url("https://google.co.in")
        if response.get("success"):
            print("Url Slug: {} \n Absolute Url: {}".format(response.get('slug'), response.get('absolute_url')))
        
        ```
        
Keywords: Url Shortner.
Platform: any
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: License :: OSI Approved :: Academic Free License (AFL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Provides-Extra: dev
Provides-Extra: test
