Skip to content

gauraputu/data-wrangling-script-collection

Repository files navigation

data-wrangling-script-collection

collection script for data wrangling.

Table Of Content

HTTP GET or POST

GET Request

import requests
import json

url = 'https://xxxx'
access_token = 'xxxxx.xxx'
header = {'Authorization': "Bearer " + access_token,'Accept':'application/json'}
resp = requests.get(url = url, headers = header) 
response = resp.json()
print(response)

About

collection script for data wrangling.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published