yahoo_tick_grabber 1.0.0

A wrapper API around reqwest library that as of currently returns a string containing the information about a ticker off Yahoo Finance
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import os
import json
str1 = open('json.json','r').read()
str2 = open('json1.json','r').read()

data = json.loads(str1)["quoteResponse"]["result"][0]
data2 = json.loads(str2)["quoteResponse"]["result"][0]

print("for exclusive in data")
for property in data:
    if property not in data2:
        print(property)

print("for exclusive in data2")
for property in data2:
    if property not in data:
        print(property)