Metadata-Version: 2.1
Name: yflive
Version: 0.1.2
Summary: live Yahoo! Finance data streamer
Home-page: https://github.com/maxBeinlich/yflive.git
Author: Max Beinlich
Author-email: maxbeinlich@gmail.com
License: Apache
Download-URL: https://github.com/maxBeinlich/yflive/releases
Project-URL: Source, https://github.com/maxBeinlich/yflive
Project-URL: Bug Tracker, https://github.com/maxBeinlich/yflive/issues
Description: # yflive v0.1.2
        
        [![Build Status](https://github.com/maxBeinlich/yflive/actions/workflows/build.yml/badge.svg)](https://github.com/maxBeinlich/yflive/actions/workflows/build.yml)
        [![CodeFactor](https://www.codefactor.io/repository/github/maxbeinlich/yflive/badge/master)](https://www.codefactor.io/repository/github/maxbeinlich/yflive/overview/master)
        
        yflive is a [Yahoo! Finance](https://finance.yahoo.com) live data streamer. Originally created as an alternative to scraping prices of Yahoo! Finance, this implements a websocket client for receiving live quotes from Yahoo! Finance directly.
        
        For historic prices or other financial information, [yfinance](https://github.com/ranaroussi/yfinance) is recommended.
        
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install yflive.
        
        ```bash
        pip install yflive
        ```
        
        ## Usage
        
        ```python
        from yflive import QuoteStreamer
        
        qs = QuoteStreamer()
        qs.subscribe(["AAPL", "TSLA"]) 
        
        qs.on_quote = lambda q: print(q)
        
        qs.start()
        ```
        
        ## Collaboration
        
        **This is very early stage**
        
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        Please make sure to update tests as appropriate.
        
        ## License
        
        **yflive** is distributed under the [Apache-2.0 License](http://www.apache.org/licenses/). Review [LICENSE.txt](https://github.com/maxBeinlich/yflive/blob/master/LICENSE.txt) for further information.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Office/Business :: Financial :: Investment
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
