hkjc 0.3.12__tar.gz → 0.3.14__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hkjc-0.3.12 → hkjc-0.3.14}/PKG-INFO +1 -1
- {hkjc-0.3.12 → hkjc-0.3.14}/pyproject.toml +1 -1
- {hkjc-0.3.12 → hkjc-0.3.14}/src/hkjc/processing.py +1 -1
- {hkjc-0.3.12 → hkjc-0.3.14}/uv.lock +1 -1
- {hkjc-0.3.12 → hkjc-0.3.14}/.python-version +0 -0
- {hkjc-0.3.12 → hkjc-0.3.14}/README.md +0 -0
- {hkjc-0.3.12 → hkjc-0.3.14}/src/hkjc/__init__.py +0 -0
- {hkjc-0.3.12 → hkjc-0.3.14}/src/hkjc/harville_model.py +0 -0
- {hkjc-0.3.12 → hkjc-0.3.14}/src/hkjc/historical.py +0 -0
- {hkjc-0.3.12 → hkjc-0.3.14}/src/hkjc/live_odds.py +0 -0
- {hkjc-0.3.12 → hkjc-0.3.14}/src/hkjc/py.typed +0 -0
- {hkjc-0.3.12 → hkjc-0.3.14}/src/hkjc/speedpro.py +0 -0
- {hkjc-0.3.12 → hkjc-0.3.14}/src/hkjc/strategy/place_only.py +0 -0
- {hkjc-0.3.12 → hkjc-0.3.14}/src/hkjc/strategy/qpbanker.py +0 -0
- {hkjc-0.3.12 → hkjc-0.3.14}/src/hkjc/utils.py +0 -0
@@ -45,7 +45,7 @@ def generate_historical_data(start_date: str, end_date: str) -> pl.DataFrame:
|
|
45
45
|
|
46
46
|
dfs = []
|
47
47
|
|
48
|
-
for date in pl.date_range(start_dt, end_dt, interval='1d'):
|
48
|
+
for date in tqdm(pl.date_range(start_dt, end_dt, interval='1d', eager=True)):
|
49
49
|
for venue_code in ['ST', 'HV']:
|
50
50
|
df = _historical_process_single_date_venue(date, venue_code)
|
51
51
|
if df is None:
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|