From 4d1a2f516c759213ea69cef1c3b1bb3ca75188ec Mon Sep 17 00:00:00 2001 From: aoki-h-jp <113173839+aoki-h-jp@users.noreply.github.com> Date: Sat, 26 Aug 2023 06:31:06 +0900 Subject: [PATCH 1/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 498579b..7d2f14d 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Format code](https://github.com/aoki-h-jp/bybit-bulk-downloader/actions/workflows/Formatter.yml/badge.svg)](https://github.com/aoki-h-jp/bybit-bulk-downloader/actions/workflows/Formatter.yml) [![Run pytest on all branches](https://github.com/aoki-h-jp/bybit-bulk-downloader/actions/workflows/pytest.yaml/badge.svg)](https://github.com/aoki-h-jp/bybit-bulk-downloader/actions/workflows/pytest.yaml) -## ## Python library for bulk downloading bybit historical data +## Python library for bulk downloading bybit historical data A Python library to efficiently and concurrently download historical data files from bybit. Supports all asset types (spot, USDT Perpetual, Inverse Perpetual & Inverse Futures). ## Installation @@ -77,4 +77,4 @@ instruments in this or in any other jurisdiction in which such solicitation or o securities laws of such jurisdiction. Under no circumstances will I be held responsible or liable in any way for any claims, damages, losses, expenses, costs, -or liabilities whatsoever, including, without limitation, any direct or indirect damages for loss of profits. \ No newline at end of file +or liabilities whatsoever, including, without limitation, any direct or indirect damages for loss of profits. From acc69b4c9abe9fff5e3cc3e3d8337d8bb2050650 Mon Sep 17 00:00:00 2001 From: aoki-h-jp <113173839+aoki-h-jp@users.noreply.github.com> Date: Sat, 26 Aug 2023 06:36:31 +0900 Subject: [PATCH 2/3] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8e35bf9..a590eee 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ name="bybit-bulk-downloader", version="1.0.0", description=" Python library to efficiently and concurrently download historical data files from Binance. Supports all asset types (spot, USDT-M, COIN-M, options) and all data frequencies.", - install_requires=["requests", "rich", "pytest", "bs4"], + install_requires=["requests", "rich", "pytest", "beautifulsoup4"], author="aoki-h-jp", author_email="aoki.hirotaka.biz@gmail.com", license="MIT", From 30eee1c214e4ca07e8f96f4d40b248b45bae4bd2 Mon Sep 17 00:00:00 2001 From: aoki-h-jp <113173839+aoki-h-jp@users.noreply.github.com> Date: Sat, 26 Aug 2023 06:36:48 +0900 Subject: [PATCH 3/3] Update requirements.txt --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 27d858b..c1727db 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ requests~=2.28.2 setuptools~=68.1.2 rich~=10.16.2 -pytest~=4.6.11 \ No newline at end of file +pytest~=4.6.11 +beautifulsoup4~=4.12.2