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
import os

filer = open('properties.txt', 'r')
ret = ""
for line in filer:
    ret += line.rstrip() + " String,\n"

filew = open('propertiesString.txt','w').write(ret)