hyperquant 0.81__tar.gz → 0.82__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.
- {hyperquant-0.81 → hyperquant-0.82}/PKG-INFO +1 -1
- {hyperquant-0.81 → hyperquant-0.82}/pyproject.toml +1 -1
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/broker/auth.py +0 -1
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/broker/lbank.py +0 -1
- {hyperquant-0.81 → hyperquant-0.82}/tests/test_lbank.py +1 -1
- {hyperquant-0.81 → hyperquant-0.82}/uv.lock +1 -1
- {hyperquant-0.81 → hyperquant-0.82}/.gitignore +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/.python-version +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/README.md +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/apis.json +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/data/alpine_smoke.log +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/data/logs/notikit.log +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/data/logs/test_order_sync.log +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/data/records_swap.csv +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/data/records_swapc.csv +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/doc/lbank.md +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/pub.sh +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/requirements-dev.lock +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/requirements.lock +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/__init__.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/broker/bitget.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/broker/edgex.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/broker/hyperliquid.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/broker/lib/edgex_sign.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/broker/lib/hpstore.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/broker/lib/hyper_types.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/broker/lib/util.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/broker/models/bitget.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/broker/models/edgex.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/broker/models/hyperliquid.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/broker/models/lbank.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/broker/models/ourbit.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/broker/ourbit.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/broker/ws.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/core.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/datavison/_util.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/datavison/binance.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/datavison/coinglass.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/datavison/okx.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/db.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/draw.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/logkit.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/src/hyperquant/notikit.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/tests/test_bitget.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/tests/test_draw.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/tests/test_edgex.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/tests/test_ourbit.py +0 -0
- {hyperquant-0.81 → hyperquant-0.82}/tests/tmp.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hyperquant
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.82
|
|
4
4
|
Summary: A minimal yet hyper-efficient backtesting framework for quantitative trading
|
|
5
5
|
Project-URL: Homepage, https://github.com/yourusername/hyperquant
|
|
6
6
|
Project-URL: Issues, https://github.com/yourusername/hyperquant/issues
|
|
@@ -192,7 +192,6 @@ class Auth:
|
|
|
192
192
|
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 Edg/140.0.0.0"
|
|
193
193
|
}
|
|
194
194
|
)
|
|
195
|
-
print(headers)
|
|
196
195
|
|
|
197
196
|
# 更新 kwargs.body,保证发出去的与签名一致
|
|
198
197
|
# kwargs.update({"data": raw_body_for_sign})
|
|
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
|
|
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
|
|
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
|
|
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
|