https://github.com/frefrik/arkfunds-python
🐍 Python library for monitoring and analyzing ARK Invest funds data with pandas.
https://github.com/frefrik/arkfunds-python
ark ark-funds ark-invest etf finance funds
Last synced: 5 months ago
JSON representation
🐍 Python library for monitoring and analyzing ARK Invest funds data with pandas.
- Host: GitHub
- URL: https://github.com/frefrik/arkfunds-python
- Owner: frefrik
- License: mit
- Created: 2021-07-24T14:55:12.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-03T21:18:39.000Z (over 1 year ago)
- Last Synced: 2025-04-26T06:53:33.567Z (5 months ago)
- Topics: ark, ark-funds, ark-invest, etf, finance, funds
- Language: Python
- Homepage: https://arkfunds-python.readthedocs.io
- Size: 140 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
arkfunds-python
===============.. image:: https://badge.fury.io/py/arkfunds.svg
:target: https://badge.fury.io/py/arkfunds
:alt: PyPI version
.. image:: https://img.shields.io/github/license/frefrik/arkfunds-python
:target: LICENSE
:alt: Project LicenceA Python library for monitoring `Ark Invest `_ funds data.
Installation
------------Install the latest release from `PyPI `_\ :
.. code-block:: console
pip install arkfunds
Quickstart
----------.. code-block:: python
from arkfunds import ETF, Stock
# ARK ETFs
etf = ETF("ARKK")etf.profile()
etf.holdings()
etf.trades()
etf.news()# Stocks
symbols = ["tsla", "coin", "tdoc"]
stock = Stock(symbols)stock.profile()
stock.fund_ownership()
stock.trades()stock.price()
stock.price_history()Getting Started
---------------
See our `Getting started guide `_ in the documentation.License
-------This project is licensed under the **MIT license**. Feel free to edit and distribute this template as you like.
See `LICENSE `_ for more information.