Metadata-Version: 2.1
Name: YahooRequests
Version: 0.1.3
Summary: A simple Python library for getting stock prices and company names from Yahoo Finance.
Home-page: https://github.com/TheodorGajhede/YahooRequests
Download-URL: https://github.com/TheodorGajhede/YahooRequests/archive/refs/tags/BETA.tar.gz
Author: Theodor Gajhede
Author-email: theodorgajhede@gmail.com
License: MIT
Keywords: Stocks,Ticker,Yahoo
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: LICENSE.txt

# Yahoo Requests

## By Theodor Gajhede from the northeren part of Denmark

### This is a small library for getting prices and fullnames of companies using Yahoo

### How to use

    from YahooRequests import YahooRequests as yr    
    # Now you can just print this value or assign it as a variable
    yr.price("googl")
    # The same goes for name
    yr.name("googl")

### YahooRequests.price(ticker)

    It is very simple you are only required to input a ticker  and it will return the live price
    the ticker will be unpacked using * so it can be a str, or a single byte list like ["googl"]

### YahooRequests.convert(ticker)

    The same goes for convert, the returned value will be the full company name
