Vistafetch

Latest version: v2.0.2

Safety actively analyzes 723685 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 2

1.2.1

Improvements & Updates

🛠️ Log level is now configurable

You can now easily determine the log level used for `vistafetch` by passing it to the client:

python
import logging

from vistafetch import VistaFetchClient

client = VistaFetchClient(logging_level=logging.DEBUG)


In case no log level is passed (`VistaFetchClient()`), `INFO` is selected as default.

---

**Full Changelog**: https://github.com/bossenti/vistafetch/compare/1.2.0...1.2.1

1.2.0

Improvements & Updates

🚀 Query specific dates

This release adds the ability to query price data for a financial asset on a specific date.
The most recent price data can still be retrieved using the following method:
python
from vistafetch import VistaFetchClient

client = VistaFetchClient()

result = client.search_asset(
search_term="716460", alternatively pass the ISIN here
)
sap_stock = result.get()

latest_price_data = sap_stock.get_latest_price_data()


To query for a specific date, the following snippet will take you there:
python
import datetime

specific_price_data = sap_stock.get_day_price_data(day=datetime.date(2023, 10, 10))



🚀 Derivatives
In addition, derivatives are now supported as financial assets, which means you can query price data for them as well.


What's Changed in Detail
* deps: (deps-dev): bump types-requests from 2.31.0.7 to 2.31.0.8 by dependabot in https://github.com/bossenti/vistafetch/pull/49
* deps: (deps-dev): bump mypy from 1.5.1 to 1.6.0 by dependabot in https://github.com/bossenti/vistafetch/pull/50
* deps: (deps-dev): bump pre-commit from 3.4.0 to 3.5.0 by dependabot in https://github.com/bossenti/vistafetch/pull/51
* deps: (deps-dev): bump types-requests from 2.31.0.8 to 2.31.0.9 by dependabot in https://github.com/bossenti/vistafetch/pull/52
* refactor: restructure unit tests & increase reusability by bossenti in https://github.com/bossenti/vistafetch/pull/53
* deps: (deps-dev): bump ruff from 0.0.292 to 0.1.0 by dependabot in https://github.com/bossenti/vistafetch/pull/54
* deps: (deps-dev): bump black from 23.9.1 to 23.10.0 by dependabot in https://github.com/bossenti/vistafetch/pull/55
* deps: (deps-dev): bump types-requests from 2.31.0.9 to 2.31.0.10 by dependabot in https://github.com/bossenti/vistafetch/pull/56
* deps: (deps-dev): bump mypy from 1.6.0 to 1.6.1 by dependabot in https://github.com/bossenti/vistafetch/pull/57
* feat: add option to query price data for a specific day by bossenti in https://github.com/bossenti/vistafetch/pull/59


**Full Changelog**: https://github.com/bossenti/vistafetch/compare/1.1.0...1.2.0

1.1.0

What's Changed
* ci(4): configure dependabot by bossenti in https://github.com/bossenti/vistafetch/pull/29
* ci: refine commit types for PR validation by bossenti in https://github.com/bossenti/vistafetch/pull/36
* deps: bump actions/checkout from 3 to 4 by dependabot in https://github.com/bossenti/vistafetch/pull/30
* deps: (deps-dev): bump pre-commit from 3.3.3 to 3.4.0 by dependabot in https://github.com/bossenti/vistafetch/pull/31
* deps: (deps): bump rich from 13.5.2 to 13.5.3 by dependabot in https://github.com/bossenti/vistafetch/pull/32
* deps: (deps-dev): bump black from 23.7.0 to 23.9.1 by dependabot in https://github.com/bossenti/vistafetch/pull/33
* deps: (deps-dev): bump pytest from 7.4.0 to 7.4.2 by dependabot in https://github.com/bossenti/vistafetch/pull/34
* deps: (deps-dev): bump autoflake from 2.2.0 to 2.2.1 by dependabot in https://github.com/bossenti/vistafetch/pull/35
* deps: (deps-dev): bump ruff from 0.0.285 to 0.0.290 by dependabot in https://github.com/bossenti/vistafetch/pull/37
* deps: (deps-dev): bump types-requests from 2.31.0.2 to 2.31.0.3 by dependabot in https://github.com/bossenti/vistafetch/pull/38
* deps: (deps-dev): bump ruff from 0.0.290 to 0.0.291 by dependabot in https://github.com/bossenti/vistafetch/pull/39
* deps: (deps-dev): bump types-requests from 2.31.0.3 to 2.31.0.6 by dependabot in https://github.com/bossenti/vistafetch/pull/43
* deps: (deps): bump pydantic from 2.3.0 to 2.4.2 by dependabot in https://github.com/bossenti/vistafetch/pull/44
* deps: (deps-dev): bump types-requests from 2.31.0.6 to 2.31.0.7 by dependabot in https://github.com/bossenti/vistafetch/pull/45
* deps: (deps-dev): bump ruff from 0.0.291 to 0.0.292 by dependabot in https://github.com/bossenti/vistafetch/pull/46
* deps: (deps): bump rich from 13.5.3 to 13.6.0 by dependabot in https://github.com/bossenti/vistafetch/pull/47
* feat: add support for python 3.12 by bossenti in https://github.com/bossenti/vistafetch/pull/48

New Contributors
* dependabot made their first contribution in https://github.com/bossenti/vistafetch/pull/30

**Full Changelog**: https://github.com/bossenti/vistafetch/compare/1.0.0...1.1.0

1.0.0

What's Changed
* docs(7): add missing badges at README by bossenti in https://github.com/bossenti/vistafetch/pull/28


**Full Changelog**: https://github.com/bossenti/vistafetch/compare/0.1.0...1.0.0

0.1.0

Page 2 of 2

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.