Metadata-Version: 2.1
Name: yfrake
Version: 0.1.7
Summary: A flexible and agile stock market data scraper and server.
License: MIT
Keywords: yahoo,finance,api,server,scraper
Author: Mattias Aabmets
Author-email: mattias.aabmets@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Requires-Dist: aiohttp (>=3.8,<4.0)
Requires-Dist: aiohttp-swagger3 (>=0.7,<0.8)
Requires-Dist: psutil (>=5.9,<6.0)
Requires-Dist: pyyaml (>=6.0,<7.0)
Requires-Dist: tomli (>=2.0,<3.0)
Project-URL: Homepage, https://github.com/aspenforest/yfrake
Description-Content-Type: text/markdown

# YFrake
<!-- <a target="new" href="https://pypi.python.org/pypi/yfrake"><img border=0 src="https://img.shields.io/pypi/dm/yfrake?label=installs" alt="Installs per month"></a> -->
<a target="new" href="https://pypi.python.org/pypi/yfrake"><img border=0 src="https://img.shields.io/badge/python-3.7+-blue.svg?label=python" alt="Supported Python versions"></a>
<a target="new" href="https://pypi.python.org/pypi/yfrake"><img border=0 src="https://img.shields.io/pypi/v/yfrake?label=version" alt="Package version on PyPI"></a>
<a target="new" href="https://www.codefactor.io/repository/github/aspenforest/yfrake"><img border=0 src="https://img.shields.io/codefactor/grade/github/aspenforest/yfrake?label=code quality" alt="CodeFactor code quality"></a>
<a target="new" href="https://scrutinizer-ci.com/g/aspenforest/yfrake/"><img border=0 src="https://img.shields.io/scrutinizer/build/g/aspenforest/yfrake" alt="Scrutinizer build inspection"></a>
<a target="new" href="https://github.com/aspenforest/yfrake/issues"><img border=0 src="https://img.shields.io/github/issues/aspenforest/yfrake" alt="Issues on Github"></a>
<a target="new" href="https://github.com/aspenforest/yfrake/blob/main/LICENSE"><img border=0 src="https://img.shields.io/github/license/aspenforest/yfrake" alt="License on GitHub"></a>
<a target="new" href="https://twitter.com/aabmets"><img border=0 src="https://img.shields.io/github/stars/aspenforest/yfrake?style=social" alt="Stars on GitHub"></a>

### Description
YFrake is a ***flexible*** and ***agile*** stock market data scraper and server [&#91;note&#93;](#footnote).
It enables developers to build powerful apps without having to worry about maximizing network request throughput.
YFrake can be used as a client to directly return data or as a ***programmatically controllable server*** to forward data to web clients.
In addition, all requests in ***sync and async modes are non-blocking***, which means that your program can continue running your code while network requests are in progress.
The best part about YFrake is its ***built-in swagger API documentation*** from which you can perform test queries and examine the returned responses.


### Getting Started
#### Installation
~~~
pip install yfrake
~~~

<br />
<a id="footnote"><sup>&#91;note&#93;:</sup></a> Stock market data is sourced from Yahoo Finance.

