example1.py now demonstrating basic capabilities.

This commit is contained in:
2024-01-17 22:33:15 +01:00
parent 9dff170bb7
commit 1d731eec10
2 changed files with 9 additions and 15 deletions

View File

@@ -138,14 +138,3 @@ class SimpleStockData:
return result
def test():
ssd = SimpleStockData(["RHM.DE", "BAS.DE", "AZN.L"], "2024-01-02", "2024-01-18", "EUR")
print(ssd.get_info(0))
print(ssd.get_info(1))
print(ssd.get_info(2))
print(ssd.get_history(0))
print(ssd.get_history(1))
print(ssd.get_history(2))