This release has been yanked by its maintainers, and will be ignored by installers, except when explicitly specified.
Consider using release 2.1.1 instead.
Reason given by maintainers: Regression: plain DataFrame * FinlabDataFrame uses intersection alignment; use 2.0.21 or >=2.0.24
FinLab
瞬間的閃念之中,揭示過去十年2000支股票的歷史數據,這就是finlab package!不僅如此,它與pandas無縫整合,讓你在策略創建的旅程中,如同進行一場華麗的交響樂演奏。其語法之簡潔,讓你撰寫策略時有如神助。
你只需要撰寫人類懂得邏輯,而程式會自動融合各種頻率的歷史數據來選股,這不僅是程式設計上的巧思,更是對簡潔的極致追求。當你以為這已經是頂峰,它的詳細回測結果,又將你帶入更深一層的分析維度,每一筆數據都讓你的決策更加精準。 在幾秒鐘之內,2000支股票的回測,這速度,這效率,它不僅是一個 package,這是一個交易者的夢想加速器!這是finlab,一個為熱血操盤手量身打造的回測神器!
功能
- 📊 快速存取龐大資料集:單一指令即可取得2000支股票過去十年的歷史數據。
- 🐼 Pandas整合:利用熟悉且功能強大的pandas函式庫,輕鬆設計交易策略。
- 🔍 用戶友好的語法✍️:採用簡潔直觀編碼語法。
- 🕒 多頻率數據處理:自動整合管理不同時間頻率的歷史數據。
- 🔬 全面的回測分析:透過詳細的回測報告,獲得深入的洞察。
- 🚀 高速計算:得益於 Cython 優化的性能,幾秒鐘內即可執行2000支股票的回測。
- 🤖 機器學習:結合 qlib 研發機器學習策略。
相關連結
- 量化交易完整教學:什麼是量化交易、台股策略回測器與平台比較
- 程式文檔
- Jupyter Notebook 範例
- 回測儀表板
簡易教學
下載資料
輸入以下程式碼,即可下載資料。可以查詢有哪些歷史資料可以下載。
from finlab import data
data.get('price:收盤價')
| date | 0015 | 0050 | 0051 | 0052 | 0053 |
|---|---|---|---|---|---|
| 2007-04-23 | 9.54 | 57.85 | 32.83 | 38.4 | nan |
| 2007-04-24 | 9.54 | 58.1 | 32.99 | 38.65 | nan |
| 2007-04-25 | 9.52 | 57.6 | 32.8 | 38.59 | nan |
| 2007-04-26 | 9.59 | 57.7 | 32.8 | 38.6 | nan |
| 2007-04-27 | 9.55 | 57.5 | 32.72 | 38.4 | nan |
撰寫策略
可以用非常簡單的 Pandas 語法來撰寫策略邏輯,以創新高的策略來說,可以用以下的寫法:
from finlab import data
close = data.get('price:收盤價')
# 創三百個交易日新高
position = close >= close.rolling(300).max()
position
| date | 0015 | 0050 | 0051 | 0052 | 0053 |
|---|---|---|---|---|---|
| 2007-04-23 00:00:00 | False | False | False | False | False |
| 2007-04-24 00:00:00 | False | False | False | False | False |
| 2007-04-25 00:00:00 | False | False | False | False | False |
| 2007-04-26 00:00:00 | False | False | False | True | False |
| 2007-04-27 00:00:00 | False | False | False | False | False |
這邊的 position 是一個 False/True 的查詢表,當數值為 True ,代表該股票在當天有創新高,而數字 False 則代表沒有創新高。由於創新高的股票很少,上面的範例中,只有少數股票的數值會是 True。
假設我們希望每個月底,搜尋上表中數值為 True 的股票並且買入持有一個月,可以用以下的語法:
回測績效
from finlab import backtest
report = backtest.sim(position, resample='M')
report.display()
Release files for finlab 2.0.23
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Built distributions (wheels)
| File | Reset | |||
|---|---|---|---|---|
| finlab-2.0.23-cp314-cp314-win_amd64.whl | CPython 3.14 | CPython 3.14 | Windows x86-64 | Details |
| finlab-2.0.23-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl | CPython 3.14 | CPython 3.14 | Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 | Details |
| finlab-2.0.23-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl | CPython 3.14 | CPython 3.14 | Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 | Details |
| finlab-2.0.23-cp314-cp314-macosx_10_15_universal2.whl | CPython 3.14 | CPython 3.14 | macOS 10.15+ universal2 (ARM64, x86-64) | Details |
| finlab-2.0.23-cp313-cp313-win_amd64.whl | CPython 3.13 | CPython 3.13 | Windows x86-64 | Details |
| finlab-2.0.23-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl | CPython 3.13 | CPython 3.13 | Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 | Details |
| finlab-2.0.23-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl | CPython 3.13 | CPython 3.13 | Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 | Details |
| finlab-2.0.23-cp313-cp313-macosx_10_15_universal2.whl | CPython 3.13 | CPython 3.13 | macOS 10.15+ universal2 (ARM64, x86-64) | Details |
| finlab-2.0.23-cp312-cp312-win_amd64.whl | CPython 3.12 | CPython 3.12 | Windows x86-64 | Details |
| finlab-2.0.23-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl | CPython 3.12 | CPython 3.12 | Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 | Details |
| finlab-2.0.23-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl | CPython 3.12 | CPython 3.12 | Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 | Details |
| finlab-2.0.23-cp312-cp312-macosx_10_15_universal2.whl | CPython 3.12 | CPython 3.12 | macOS 10.15+ universal2 (ARM64, x86-64) | Details |
| finlab-2.0.23-cp311-cp311-win_amd64.whl | CPython 3.11 | CPython 3.11 | Windows x86-64 | Details |
| finlab-2.0.23-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl | CPython 3.11 | CPython 3.11 | Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 | Details |
| finlab-2.0.23-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl | CPython 3.11 | CPython 3.11 | Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 | Details |
| finlab-2.0.23-cp311-cp311-macosx_10_15_universal2.whl | CPython 3.11 | CPython 3.11 | macOS 10.15+ universal2 (ARM64, x86-64) | Details |
| finlab-2.0.23-cp310-cp310-win_amd64.whl | CPython 3.10 | CPython 3.10 | Windows x86-64 | Details |
| finlab-2.0.23-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl | CPython 3.10 | CPython 3.10 | Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 | Details |
| finlab-2.0.23-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl | CPython 3.10 | CPython 3.10 | Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 | Details |
| finlab-2.0.23-cp310-cp310-macosx_10_15_universal2.whl | CPython 3.10 | CPython 3.10 | macOS 10.15+ universal2 (ARM64, x86-64) | Details |
| finlab-2.0.23-cp39-cp39-win_amd64.whl | CPython 3.9 | CPython 3.9 | Windows x86-64 | Details |
| finlab-2.0.23-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl | CPython 3.9 | CPython 3.9 | Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 | Details |
| finlab-2.0.23-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl | CPython 3.9 | CPython 3.9 | Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 | Details |
| finlab-2.0.23-cp39-cp39-macosx_10_15_universal2.whl | CPython 3.9 | CPython 3.9 | macOS 10.15+ universal2 (ARM64, x86-64) | Details |
Total release size: 110.2 MB
Release files / finlab-2.0.23-cp314-cp314-win_amd64.whl
| Download URL | finlab-2.0.23-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f62a2b189ebb8ba20b9345c98e4e5a6db1e9cf853f6db590520161b0b9e2a4d5
|
|
BLAKE2b-256 checksum How to use checksums |
26fd43a29d84683c1a7a9fdc7af85a13fda5f588868369650cc915dd3c21405c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
| Download URL | finlab-2.0.23-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 7.0 MB |
| Tags | CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
0a7eff788a8f90ea18d60bb472f99c6aa278f43e36dbd0277b06777e8510aa04
|
|
BLAKE2b-256 checksum How to use checksums |
ed9df059a2e6c1c020de6051089fee77b587993ee1a68309f836e2de17da6fa6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
| Download URL | finlab-2.0.23-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 6.8 MB |
| Tags | CPython 3.14 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
e1be0a5d455205971a2b5132f311837f974e43a51a061d5c959f4d3d2b310557
|
|
BLAKE2b-256 checksum How to use checksums |
b7e72a6d33d465e2f612b08d50a5d7dabed220375374b75015eddc2c429a5e4b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp314-cp314-macosx_10_15_universal2.whl
| Download URL | finlab-2.0.23-cp314-cp314-macosx_10_15_universal2.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
418c140644cec924289b4bdcff70dc2bcf2cd5858cf2fa47a0da24dfd357defe
|
|
BLAKE2b-256 checksum How to use checksums |
6d99342f8011ebe74085f812921aefce77004ae5022bf11a6437d2cb54bb9610
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp313-cp313-win_amd64.whl
| Download URL | finlab-2.0.23-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f30f2d9d2f5873fc8e15bd9715ecb03626ecdb8064aa0756f12eb1094fde882d
|
|
BLAKE2b-256 checksum How to use checksums |
248d827599a70c2afab83d62b179cdec9045686df7c1ad58183b4d6f93591ef3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
| Download URL | finlab-2.0.23-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 7.0 MB |
| Tags | CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
3a936183954ef7c09371b3543e86964c8e6d27a45beaff3a92cfb50ce7c3f735
|
|
BLAKE2b-256 checksum How to use checksums |
9bec9802e3286262b33c3f3094d4d3a6cdf5c502c1fbaf4bddd7ad97b07c9672
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
| Download URL | finlab-2.0.23-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 6.8 MB |
| Tags | CPython 3.13 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
b393e2d45e9c4fe21f6681914ea8c8bb9bf1352c4a3448a5358737eec756585f
|
|
BLAKE2b-256 checksum How to use checksums |
a3b8ab62c6aa59fe2a9b02a598619df8f395a9713a37ec83686a845fcc8435a9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp313-cp313-macosx_10_15_universal2.whl
| Download URL | finlab-2.0.23-cp313-cp313-macosx_10_15_universal2.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.13 macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
bb1dbf5e99b086c8e7e6a0011798706c741811797ae114e3087a57287892937c
|
|
BLAKE2b-256 checksum How to use checksums |
1a4e77c1c8e12a919669e54efb7ca0eb43c4aa6445094971941180bdc4b052fd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp312-cp312-win_amd64.whl
| Download URL | finlab-2.0.23-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
7471530466f6f4caaa803020bf6b4a3690f0e9e1ba31e7d88c86eacb067c72b2
|
|
BLAKE2b-256 checksum How to use checksums |
80aadd6a41e9c47aa6f5582c4b3fbed865f12749b9aaf89a49c55d9a5f358e7e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
| Download URL | finlab-2.0.23-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 7.0 MB |
| Tags | CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
e65a5f94243780a84ecac0990ad058fde578681739a592a698c4ac77ab1791bd
|
|
BLAKE2b-256 checksum How to use checksums |
2bbafb549ebb0d414207ff2386ab592c9796a594b6cb8b5ad610e562c4ab86b2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
| Download URL | finlab-2.0.23-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 6.8 MB |
| Tags | CPython 3.12 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
5c6745b45d3624a6d50e219110812b7b5a04097ef475479651e1b821b90174ff
|
|
BLAKE2b-256 checksum How to use checksums |
4dc1ebe37f0b1d0472029ede5c97954bbb58597548e9cb233803b0cd054aeeef
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp312-cp312-macosx_10_15_universal2.whl
| Download URL | finlab-2.0.23-cp312-cp312-macosx_10_15_universal2.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.12 macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
338ec295911da84aaf42b252a39406617c1dc78f4324cf98650f85adddf2601a
|
|
BLAKE2b-256 checksum How to use checksums |
fe791153f34c2138efd3a5bfa2301bc518a2f466d1f0d892de9de91eb3457e22
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp311-cp311-win_amd64.whl
| Download URL | finlab-2.0.23-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
344243ddff5ad558235bfabc0a2238d42ca5150361a79cb23384a0192015d08f
|
|
BLAKE2b-256 checksum How to use checksums |
47f41a1d18b25a6fe9724a9fa2b89380998acd06931adcc3f4772926c06392fc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
| Download URL | finlab-2.0.23-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 7.1 MB |
| Tags | CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
0dbdc331d0781def52924dab7d6025356c9bc5f48941f8b8fc386009e3c119de
|
|
BLAKE2b-256 checksum How to use checksums |
a49fe022b549e8fb7aa0b9141afa73866191cbced66c8fd7e54b153e36d15113
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
| Download URL | finlab-2.0.23-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 6.8 MB |
| Tags | CPython 3.11 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
8d0ffde2283e001aa2b0220ca83a9347206555f205a238a062d2bf1c836317db
|
|
BLAKE2b-256 checksum How to use checksums |
723db6ad823619bbdd0d9cadf82371bfc2e00718354d05315138002d3fcfb009
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp311-cp311-macosx_10_15_universal2.whl
| Download URL | finlab-2.0.23-cp311-cp311-macosx_10_15_universal2.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.11 macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
17e3de5af55d41597f4f9b3db5afb49633a75ec31edf68a7d2f404176474c160
|
|
BLAKE2b-256 checksum How to use checksums |
be55fb588cb3be92e6e957945b2c85ca6869c11b2d5587084da07b2b89ca301d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp310-cp310-win_amd64.whl
| Download URL | finlab-2.0.23-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
de6f758e8372487b0a474c1f92cd8873e5a2eab19d2bcffbf890135034e112bf
|
|
BLAKE2b-256 checksum How to use checksums |
3b4ba4ce62f03bdd4099d5467b2174352882e15c83efb3573de56b5ef682a23d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
| Download URL | finlab-2.0.23-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 6.6 MB |
| Tags | CPython 3.10 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
d9c0851412dee5991cda52fe8872534bd18851d42d2f853a813041bd0f56594b
|
|
BLAKE2b-256 checksum How to use checksums |
34fb7e8c5b9745134363d6fef7357f4ef9f5b89d4a09df7061279fa31cb6159b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
| Download URL | finlab-2.0.23-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 6.4 MB |
| Tags | CPython 3.10 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
227ddf18d9c8e7a6f572eca3af48c7e9ffba24cde0c6220ffce6dd19bd7a5132
|
|
BLAKE2b-256 checksum How to use checksums |
16fc8ed7cef882519d0950e3d1852b9b83f8ba7ff987aa884513da2f7fef5feb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp310-cp310-macosx_10_15_universal2.whl
| Download URL | finlab-2.0.23-cp310-cp310-macosx_10_15_universal2.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.10 macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
8e1243a25eef1fb92dae9752fb8170912fa2147a48cb2ad9d79c784d651937db
|
|
BLAKE2b-256 checksum How to use checksums |
6776a14384b0eb92767cbc1e2c98f93f61bc8872b0c8bcbfd17f024968689d05
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp39-cp39-win_amd64.whl
| Download URL | finlab-2.0.23-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
4ddf578c0893c636f1c8b728504a4a9c95f1c7d6dba12c6daf766aac352579b0
|
|
BLAKE2b-256 checksum How to use checksums |
329b991cded94062954818c45e40f37c53a70c507c7d590791bd353210b054a0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
| Download URL | finlab-2.0.23-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 6.6 MB |
| Tags | CPython 3.9 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
f7c3f8268e52e92148dbd1f58d7b33e1568ba882b0b1cbef38fd2ca86753ff27
|
|
BLAKE2b-256 checksum How to use checksums |
c6d7ac7ce553b77b938b31e56ef204360fe4316da4d520708f2c2c5dd34841e8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
| Download URL | finlab-2.0.23-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 6.4 MB |
| Tags | CPython 3.9 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
e83f9507051ed6442d4191e14c0264cc49aa14570beaf27f3f11295fbffbb923
|
|
BLAKE2b-256 checksum How to use checksums |
f28ab847adc9ddbd55dd9e5044759da4a84e6fb6ccdbc4279802ca499cac2de7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|
Release files / finlab-2.0.23-cp39-cp39-macosx_10_15_universal2.whl
| Download URL | finlab-2.0.23-cp39-cp39-macosx_10_15_universal2.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.9 macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
3538447fdea3c0c87f8e89def5600b4e269e3de8f74a35a5fe2c4d52bd96fce8
|
|
BLAKE2b-256 checksum How to use checksums |
cb2355c53db439cf74785bb295f49c5566dd8eb8161f54d56c42a375fde70fcb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.3
|