Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bossenti/vistafetch
Small & simple library to fetch financial data for stocks, ETFs, funds, etc. from Onvista.
https://github.com/bossenti/vistafetch
etf exchange financial-data funds onvista stocks
Last synced: 6 days ago
JSON representation
Small & simple library to fetch financial data for stocks, ETFs, funds, etc. from Onvista.
- Host: GitHub
- URL: https://github.com/bossenti/vistafetch
- Owner: bossenti
- License: apache-2.0
- Created: 2023-08-21T20:20:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-17T23:26:39.000Z (2 months ago)
- Last Synced: 2024-10-18T00:29:41.350Z (2 months ago)
- Topics: etf, exchange, financial-data, funds, onvista, stocks
- Language: Python
- Homepage:
- Size: 661 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
VistaFetch
VistaFetch is a simple and lightweight Python library for financial asset data retrieval (stocks, ETFs, etc.) from onvista.de.
> [!WARNING]
> The API used by this package is not public. Therefore, users should assume that using this package may violate the site's terms of use.
> The author of this package takes no responsibility for how individuals use the code. It is important to use the code respectfully and judiciously, keeping in mind the potential consequences of violating the terms of service and applicable laws.
> Users are encouraged to read the API Terms and Conditions, Acceptable Use Policy, and License Agreements before using any API. These agreements outline the legal, business, and technical considerations that apply to the use of an API.## โก๏ธ Quickstart
Please ensure that `vistafetch` is installed on your machine by running the following command:
```bash
pip install vistafetch
```
The first step is to initiate the client (`VistaFetchClient`):
```python
from vistafetch import VistaFetchClientclient = VistaFetchClient()
```### ๐ Exploratory search
The client now enables you to search for assets and allows you to investigate the results:
```python
result = client.search_asset(
search_term="S&P",
)
result.visualize()
```
This produces the following console output:
```bash
Financial assets discovered
โโโโโโโโโณโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโ
โ Index โ Name โ Asset Type โ ISIN โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ 0 โ S&P 500 โ INDEX โ US78378X1072 โ
โ 1 โ Siemens Energy โ STOCK โ DE000ENER6Y0 โ
โ 2 โ Silberpreis โ PRECIOUS_METAL โ XC0009653103 โ
โ 3 โ SAP โ STOCK โ DE0007164600 โ
โ 4 โ EURO STOXX 50 โ INDEX โ EU0009658145 โ
โโโโโโโโโดโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโ
```
One now can access the asset of choice:
```python
asset = result.get(3) # returns SAP in this case# in case one simply wants the first one, the following shorthand takes you there
asset = result.get()
```
One can now access several parameters of the asset or convert them to a JSON string as show below.
```python
print(asset.isin)
print(asset.as_json())
```
```bash
DE0007164600
{
"display_type":"Aktie",
"entity_type":"STOCK",
"isin":"DE0007164600",
"name":"SAP",
"tiny_name":"SAP",
"wkn":"716460",
}
```As a final step, the asset provides some recent price-related data:
```python
print(asset.get_latest_price_data().as_json())
```
```bash
{
"currency_symbol":"EUR",
"datetime_high":"2023-08-25T14:17:15Z",
"datetime_last":"2023-08-25T15:37:14Z",
"datetime_low":"2023-08-25T15:02:12Z",
"datetime_open":"2023-08-25T07:00:26.999000Z",
"high":127.24,
"last":126.16,
"low":125.66,
"open":126.2,
}
```In addition, you directly access the individual values, e.g., price value `last`:
```python
asset.get_latest_price_data().last
```
```bash
126.16
```
> [!WARNING]
> Price data are currently not supported for indexes.
> Feel free to send me a feature request if you'd like to see this feature
> supported for other asset types as well: https://github.com/bossenti/vistafetch/issues/new.
> As an alternative, contributions are welcome at any time.### ๐ฏ Targeted search
In case you already know the identifier for your asset (both ISIN and WKN are supported),
you can directly query them. This returns then only one result:
```python
result = client.search_asset(
search_term="DE0007164600", # alternatively pass the WKN here
)
sap_stock = result.get()
```## ๐ Facing problems
Feel free to open an [issue](https://github.com/bossenti/vistafetch/issues/new) if you experience strange behavior or bugs when using `vistafetch`.
If you are not sure if your problem should be considered a bug or if you have a question in general, reach out via [discussions](https://github.com/bossenti/vistafetch/discussions).## ๐ป Contributing
We welcome and appreciate contributions of any size.
or smaller or straightforward changes, feel free to create a pull request directly.
If you plan to make significant improvements or extensions, please open an [issue](https://github.com/bossenti/vistafetch/issues/new)
or [disussion](https://github.com/bossenti/vistafetch/discussions) beforehand.### Initial Setup
For your convenience, please ensure that you have Poetry and Just installed. You can read more on them by following the links below:
* [poetry](https://python-poetry.org/)
* [just](https://github.com/casey/just)To get all required dependencies installed, simply start with:
```bash
just poetry-install
```
Additionally, we make use of [pre-commit](https://github.com/pre-commit/pre-commit). To set it up, run the following command:
```bash
pre-commit install
```To verify that everything is set up correctly, execute the test suite:
```bash
just unit-tests
```### Code Conformance
Once you implemented your changes, please run the following commands:
```bash
just pretty # formats the code and applies automatic linting fixes
just check # checks code for conformance
```### Opening PR
Please be aware that this repository follows [conventional commit](https://www.conventionalcommits.org/en/v1.0.0/).
So please choose a PR title corresponding to the following:
```bash
(#): # supported scopes can be found here: https://github.com/commitizen/conventional-commit-types/blob/master/index.json# e.g.
docs(#8): provide extensive project readme# issue id is optional, so the following si valid as well
docs: provide extensive project readme
```