Metadata-Version: 2.1
Name: removeurl
Version: 0.2
Summary: Python3 module to remove URLs which start with http or https in strings.
Home-page: https://github.com/carlosplanchon/removeurl
Author: Carlos A. Planchón
Author-email: bubbledoloresuruguay2@gmail.com
License: GPL3
Download-URL: https://github.com/carlosplanchon/removeurl/archive/v0.2.tar.gz
Description: # removeurl
        *Python3 module to remove URLs which start with http or https in strings.*
        
        ## Installation
        ### Install with pip
        ```
        pip3 install -U removeurl
        ```
        
        ## Usage
        ```
        In [1]: import removeurl
        
        In [2]: removeurl.remove_url("Link: https://www.google.com")
        
        Out[2]: 'Link: '
        ```
        
Keywords: remove,url,regex
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
