hkjc 0.3.12__py3-none-any.whl → 0.3.14__py3-none-any.whl

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/processing.py CHANGED
@@ -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:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hkjc
3
- Version: 0.3.12
3
+ Version: 0.3.14
4
4
  Summary: Library for scrapping HKJC data and perform basic analysis
5
5
  Requires-Python: >=3.11
6
6
  Requires-Dist: beautifulsoup4>=4.14.2
@@ -2,12 +2,12 @@ hkjc/__init__.py,sha256=TI7PVhmoWSvYX-xdTEdaT3jfY99LiYQFRQZaIwBhJd8,785
2
2
  hkjc/harville_model.py,sha256=MZjPLS-1nbEhp1d4Syuq13DtraKnd7TlNqBmOOCwxgc,15976
3
3
  hkjc/historical.py,sha256=HRsy8O2NqJQ5Ljcs1ySppngL7kO0rqC49vkIKIDp1Do,6027
4
4
  hkjc/live_odds.py,sha256=G4ELBBp1d2prxye9kKzu2pwtS4vSfRPOmEuT7-Nd-3A,4741
5
- hkjc/processing.py,sha256=HeJmEyHe0JHO2V68dmm8eD9EIvjUUrFg2dhoYvYaik8,7064
5
+ hkjc/processing.py,sha256=K3mlPiGaE5PlVcbjLpn0QWNpMNOFiaLXFqWGdIBe2xw,7082
6
6
  hkjc/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  hkjc/speedpro.py,sha256=Y2Z3GYGeePc4sM-ZnCHXCI1N7L-_j9nrMqS3CC5BBSo,2031
8
8
  hkjc/utils.py,sha256=4CA_FPf_U3GvzoLkqBX0qDPZgrSvKJKvbP7VWqd5FiA,6323
9
9
  hkjc/strategy/place_only.py,sha256=lHPjTSj8PzghxncNBg8FI4T4HJigekB9a3bV7l7VtPA,2079
10
10
  hkjc/strategy/qpbanker.py,sha256=MQxjwsfhllKZroKS8w8Q3bi3HMjGc1DAyBIjNZAp3yQ,4805
11
- hkjc-0.3.12.dist-info/METADATA,sha256=qCsJwtZ6xxXwGNqdFUw1SRVmWyJCTmICcMxviQughA4,452
12
- hkjc-0.3.12.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
13
- hkjc-0.3.12.dist-info/RECORD,,
11
+ hkjc-0.3.14.dist-info/METADATA,sha256=u-6OgmWRvNgS_RySOBRWzowDULmKE7Q0TNPzAQCIPg8,452
12
+ hkjc-0.3.14.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
13
+ hkjc-0.3.14.dist-info/RECORD,,
File without changes