A query extract python package

Made with Python3
(C) @FayasNoushad
Copyright permission under MIT License
License -> https://github.com/FayasNoushad/Query-Extract/blob/main/LICENSE

Installation

pip install Query-Extract

Usage

import query_extract


link = "https://github-readme-stats.vercel.app/api?username=FayasNoushad&theme=tokyonight"
print(query_extract.extract(link))
# returns :-
"""
{
    "username": "FayasNoushad",
    "theme": "tokyonight"
}
"""

data = {
    "username": "FayasNoushad",
    "theme": "tokyonight"
}
print(query_extract.stringify(data))
# => username=FayasNoushad&theme=tokyonight

GitHub – FayasNoushad/Query-Extract at pythonawesome.com

A query extract python package. Contribute to FayasNoushad/Query-Extract development by creating an account on GitHub.

 

 

 

To finish reading, please visit source site