Metadata-Version: 2.1
Name: query-string
Version: 2020.7.1
Summary: get url query string dict
Home-page: https://github.com/andrewp-as-is/query-string.py
License: Unlicense
Description: <!--
        https://readme42.com
        -->
        
        
        [![](https://img.shields.io/pypi/v/query-string.svg?maxAge=3600)](https://pypi.org/project/query-string/)
        [![](https://img.shields.io/badge/License-Unlicense-blue.svg?longCache=True)](https://unlicense.org/)
        
        ### Installation
        ```bash
        $ [sudo] pip install query-string
        ```
        
        #### Features
        +   Python 2/3 compatible
        
        #### Examples
        ```python
        >>> import query_string
        
        >>> query_string.parse('https://site.org/index.php?k=v&k2=v2&k3=v3#anchor')
        {'k': 'v','k2': 'v2', 'k3': 'v3'}
        
        >>> query_string.parse('k=v&k2=v2&k3=v3')
        {'k': 'v','k2': 'v2', 'k3': 'v3'}
        ```
        
        #### Links
        +   [Query string - Wikipedia](https://en.wikipedia.org/wiki/Query_string)
        
        <p align="center">
            <a href="https://readme42.com/">readme42.com</a>
        </p>
Keywords: query,url
Platform: UNKNOWN
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
