dccd 2.0.1__tar.gz → 2.0.2__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.
- {dccd-2.0.1 → dccd-2.0.2}/CHANGELOG.md +6 -0
- {dccd-2.0.1 → dccd-2.0.2}/PKG-INFO +13 -1
- {dccd-2.0.1 → dccd-2.0.2}/README.rst +12 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd.egg-info/PKG-INFO +13 -1
- {dccd-2.0.1 → dccd-2.0.2}/pyproject.toml +1 -1
- {dccd-2.0.1 → dccd-2.0.2}/CONTRIBUTING.md +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/LICENSE.txt +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/MANIFEST.in +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/__init__.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/continuous_dl/__init__.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/continuous_dl/bitfinex.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/continuous_dl/bitmex.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/continuous_dl/bybit.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/continuous_dl/exchange.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/histo_dl/__init__.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/histo_dl/binance.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/histo_dl/bybit.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/histo_dl/coinbase.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/histo_dl/exchange.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/histo_dl/kraken.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/histo_dl/okx.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/models.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/process_data.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/tests/__init__.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/tests/conftest.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/tests/test_binance.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/tests/test_bybit.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/tests/test_coinbase.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/tests/test_date_time.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/tests/test_io.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/tests/test_kraken.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/tests/test_models.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/tests/test_okx.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/tests/test_process_data.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/tools/__init__.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/tools/date_time.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/tools/io.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd/tools/websocket.py +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd.egg-info/SOURCES.txt +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd.egg-info/dependency_links.txt +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd.egg-info/requires.txt +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/dccd.egg-info/top_level.txt +0 -0
- {dccd-2.0.1 → dccd-2.0.2}/setup.cfg +0 -0
|
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [2.0.2] - 2026-05-15
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- `README.rst` — added PyPI status, docstring coverage, and downloads badges
|
|
14
|
+
|
|
9
15
|
## [2.0.1] - 2026-05-14
|
|
10
16
|
|
|
11
17
|
### Changed
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dccd
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: Download Crypto Currency Data from different exchanges.
|
|
5
5
|
Author-email: Arthur Bernard <arthur.bernard.92@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -59,6 +59,10 @@ Download Crypto-Currency Data
|
|
|
59
59
|
:target: https://pypi.org/project/dccd/
|
|
60
60
|
:alt: PyPI
|
|
61
61
|
|
|
62
|
+
.. image:: https://img.shields.io/pypi/status/dccd.svg?colorB=blue
|
|
63
|
+
:target: https://pypi.org/project/dccd/
|
|
64
|
+
:alt: PyPI - Status
|
|
65
|
+
|
|
62
66
|
.. image:: https://github.com/ArthurBernard/Download_Crypto_Currencies_Data/actions/workflows/ci.yml/badge.svg
|
|
63
67
|
:target: https://github.com/ArthurBernard/Download_Crypto_Currencies_Data/actions/workflows/ci.yml
|
|
64
68
|
:alt: CI
|
|
@@ -71,6 +75,14 @@ Download Crypto-Currency Data
|
|
|
71
75
|
:target: https://download-crypto-currencies-data.readthedocs.io/en/latest/
|
|
72
76
|
:alt: Documentation Status
|
|
73
77
|
|
|
78
|
+
.. image:: https://raw.githubusercontent.com/ArthurBernard/Download_Crypto_Currencies_Data/master/interrogate_badge_output.svg
|
|
79
|
+
:target: https://github.com/ArthurBernard/Download_Crypto_Currencies_Data
|
|
80
|
+
:alt: Docstring Coverage
|
|
81
|
+
|
|
82
|
+
.. image:: https://pepy.tech/badge/dccd
|
|
83
|
+
:target: https://pepy.tech/project/dccd
|
|
84
|
+
:alt: Downloads
|
|
85
|
+
|
|
74
86
|
Python package to download crypto-currency data (OHLCV, trades, order book) from multiple
|
|
75
87
|
exchanges via REST and WebSocket APIs. Data can be saved to CSV, Excel, SQLite, PostgreSQL,
|
|
76
88
|
or Parquet.
|
|
@@ -9,6 +9,10 @@ Download Crypto-Currency Data
|
|
|
9
9
|
:target: https://pypi.org/project/dccd/
|
|
10
10
|
:alt: PyPI
|
|
11
11
|
|
|
12
|
+
.. image:: https://img.shields.io/pypi/status/dccd.svg?colorB=blue
|
|
13
|
+
:target: https://pypi.org/project/dccd/
|
|
14
|
+
:alt: PyPI - Status
|
|
15
|
+
|
|
12
16
|
.. image:: https://github.com/ArthurBernard/Download_Crypto_Currencies_Data/actions/workflows/ci.yml/badge.svg
|
|
13
17
|
:target: https://github.com/ArthurBernard/Download_Crypto_Currencies_Data/actions/workflows/ci.yml
|
|
14
18
|
:alt: CI
|
|
@@ -21,6 +25,14 @@ Download Crypto-Currency Data
|
|
|
21
25
|
:target: https://download-crypto-currencies-data.readthedocs.io/en/latest/
|
|
22
26
|
:alt: Documentation Status
|
|
23
27
|
|
|
28
|
+
.. image:: https://raw.githubusercontent.com/ArthurBernard/Download_Crypto_Currencies_Data/master/interrogate_badge_output.svg
|
|
29
|
+
:target: https://github.com/ArthurBernard/Download_Crypto_Currencies_Data
|
|
30
|
+
:alt: Docstring Coverage
|
|
31
|
+
|
|
32
|
+
.. image:: https://pepy.tech/badge/dccd
|
|
33
|
+
:target: https://pepy.tech/project/dccd
|
|
34
|
+
:alt: Downloads
|
|
35
|
+
|
|
24
36
|
Python package to download crypto-currency data (OHLCV, trades, order book) from multiple
|
|
25
37
|
exchanges via REST and WebSocket APIs. Data can be saved to CSV, Excel, SQLite, PostgreSQL,
|
|
26
38
|
or Parquet.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dccd
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: Download Crypto Currency Data from different exchanges.
|
|
5
5
|
Author-email: Arthur Bernard <arthur.bernard.92@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -59,6 +59,10 @@ Download Crypto-Currency Data
|
|
|
59
59
|
:target: https://pypi.org/project/dccd/
|
|
60
60
|
:alt: PyPI
|
|
61
61
|
|
|
62
|
+
.. image:: https://img.shields.io/pypi/status/dccd.svg?colorB=blue
|
|
63
|
+
:target: https://pypi.org/project/dccd/
|
|
64
|
+
:alt: PyPI - Status
|
|
65
|
+
|
|
62
66
|
.. image:: https://github.com/ArthurBernard/Download_Crypto_Currencies_Data/actions/workflows/ci.yml/badge.svg
|
|
63
67
|
:target: https://github.com/ArthurBernard/Download_Crypto_Currencies_Data/actions/workflows/ci.yml
|
|
64
68
|
:alt: CI
|
|
@@ -71,6 +75,14 @@ Download Crypto-Currency Data
|
|
|
71
75
|
:target: https://download-crypto-currencies-data.readthedocs.io/en/latest/
|
|
72
76
|
:alt: Documentation Status
|
|
73
77
|
|
|
78
|
+
.. image:: https://raw.githubusercontent.com/ArthurBernard/Download_Crypto_Currencies_Data/master/interrogate_badge_output.svg
|
|
79
|
+
:target: https://github.com/ArthurBernard/Download_Crypto_Currencies_Data
|
|
80
|
+
:alt: Docstring Coverage
|
|
81
|
+
|
|
82
|
+
.. image:: https://pepy.tech/badge/dccd
|
|
83
|
+
:target: https://pepy.tech/project/dccd
|
|
84
|
+
:alt: Downloads
|
|
85
|
+
|
|
74
86
|
Python package to download crypto-currency data (OHLCV, trades, order book) from multiple
|
|
75
87
|
exchanges via REST and WebSocket APIs. Data can be saved to CSV, Excel, SQLite, PostgreSQL,
|
|
76
88
|
or Parquet.
|
|
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
|