Skip to content

Commit 65a4461

Browse files
committed
Updated findatapy version
1 parent 6c7a83c commit 65a4461

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ individual data providers)
115115

116116
# Release Notes
117117

118+
* 0.1.34 - findatapy (08 Apr 2024)
118119
* 0.1.33 - findatapy (01 Apr 2024)
119120
* 0.1.32 - findatapy (17 Feb 2024)
120121
* 0.1.31 - findatapy (01 Dec 2023)
@@ -140,6 +141,8 @@ individual data providers)
140141

141142
# Coding log
142143

144+
* 08 Apr 2024
145+
* Removed list typecheck (to make code Python 3.8 compatible)
143146
* 01 Apr 2024
144147
* Added support for ArcticDB to store market data with findatapy
145148
* 17 Feb 2024

findatapy/market/marketdatarequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def generate_key(self) -> str:
8383

8484
def __init__(self, data_source: str = None,
8585
start_date="year", finish_date=datetime.datetime.utcnow(),
86-
tickers: str | List[str] =None,
86+
tickers: str =None,
8787
category: str = None, freq_mult: int = 1, freq: str = "daily",
8888
gran_freq: str =None, cut: str ="NYC",
8989
fields: List[str] = ["close"],

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
tickers, using configuration files. There is also functionality which is particularly useful for those downloading FX market data."""
66

77
setup(name='findatapy',
8-
version='0.1.33',
8+
version='0.1.34',
99
description='Market data library',
1010
author='Saeed Amen',
1111
author_email='saeed@cuemacro.com',

0 commit comments

Comments
 (0)