A cozzy('hygge') way to get json response back asynchronously
Project description
Hygge (‘Cozzy’) Response
“A cozzy(‘hygge’) way to get json response back asynchronously”
Overview
It should be easy to return json response asynchronously. hygge aim to be a fuzzy-less way to do just that. Just pass a url and ‘get’ arguments such as params, headers, and receive back a json response.
website: hygge.
# install hygge
pip install hygge
How to use
from hygge.get import GetResponse
url = 'https://www.trustpilot.com/businessunit/search'
params = {'country': 'dk', 'query': 'mate.bike'}
# passing url and parameters
res = GetResponse(url).get(params=params)
print(res)
# passing only url
info_url = f'https://www.trustpilot.com/businessunit/{res["businessUnits"][0]["id"]}/companyinfobox'
print(GetResponse(info_url).get())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
hygge-0.1.3.tar.gz
(2.0 kB
view hashes)
Built Distribution
hygge-0.1.3-py3-none-any.whl
(2.8 kB
view hashes)