Metadata-Version: 2.1
Name: ssr-url-parser
Version: 0.1
Summary: A tiny CLI tool for parsing SSR url to plain text.
Home-page: https://github.com/tyong920/ssr_url_parser
Author: tyong920
Author-email: tyong920@gmail.com
License: https://www.gnu.org/licenses/lgpl-3.0.en.html
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
Requires-Dist: Click

# ssr_url_parser
A tiny CLI tool for parsing SSR url to plain text.

1. **Installation**:
   - Use pip
       ```bash
       pip install ssr-url-parser
       ```

2. **Usage**:
    - If you  want to use it in terminal.
        ```bash
        ssr-parse "ssr://a-valid-ssr-url-......"
        ```
    - If you want to parse the ssr url in your own application.
        ```python
        from ssr_url_parser import parse_ssr_url

        parsed = parse_ssr_url("ssr://a-valid-ssr-url-......")
        ```



