DiscogsDataProcessorCLI 1.5.1__tar.gz → 1.5.5__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.
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/DiscogsDataProcessorCLI.egg-info/PKG-INFO +6 -1
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/PKG-INFO +6 -1
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/README.md +5 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/setup.cfg +1 -1
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/DiscogsDataProcessorCLI.egg-info/SOURCES.txt +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/DiscogsDataProcessorCLI.egg-info/dependency_links.txt +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/DiscogsDataProcessorCLI.egg-info/entry_points.txt +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/DiscogsDataProcessorCLI.egg-info/requires.txt +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/DiscogsDataProcessorCLI.egg-info/top_level.txt +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/discogs/__init__.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/discogs/chunker.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/discogs/config.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/discogs/converter.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/discogs/deleter.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/discogs/downloader.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/discogs/extractor.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/discogs/main.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/discogs/scraper.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/discogs/selector.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/discogs/utils.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.5}/pyproject.toml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: DiscogsDataProcessorCLI
|
|
3
|
-
Version: 1.5.
|
|
3
|
+
Version: 1.5.5
|
|
4
4
|
Summary: A CLI to download, extract and convert Discogs data dumps
|
|
5
5
|
Home-page: https://github.com/ofurkancoban/DiscogsCLI
|
|
6
6
|
Author: Furkan Çoban
|
|
@@ -35,6 +35,11 @@ A modern command-line tool to **download**, **extract**, and **convert** Discogs
|
|
|
35
35
|
|
|
36
36
|
## 🧩 Installation
|
|
37
37
|
|
|
38
|
+
### 🐍 Install with PyPI
|
|
39
|
+
```bash
|
|
40
|
+
pip install DiscogsDataProcessorCLI
|
|
41
|
+
```
|
|
42
|
+
|
|
38
43
|
### 🍻 Install with Homebrew
|
|
39
44
|
```bash
|
|
40
45
|
brew tap ofurkancoban/discogs
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: DiscogsDataProcessorCLI
|
|
3
|
-
Version: 1.5.
|
|
3
|
+
Version: 1.5.5
|
|
4
4
|
Summary: A CLI to download, extract and convert Discogs data dumps
|
|
5
5
|
Home-page: https://github.com/ofurkancoban/DiscogsCLI
|
|
6
6
|
Author: Furkan Çoban
|
|
@@ -35,6 +35,11 @@ A modern command-line tool to **download**, **extract**, and **convert** Discogs
|
|
|
35
35
|
|
|
36
36
|
## 🧩 Installation
|
|
37
37
|
|
|
38
|
+
### 🐍 Install with PyPI
|
|
39
|
+
```bash
|
|
40
|
+
pip install DiscogsDataProcessorCLI
|
|
41
|
+
```
|
|
42
|
+
|
|
38
43
|
### 🍻 Install with Homebrew
|
|
39
44
|
```bash
|
|
40
45
|
brew tap ofurkancoban/discogs
|
|
@@ -18,6 +18,11 @@ A modern command-line tool to **download**, **extract**, and **convert** Discogs
|
|
|
18
18
|
|
|
19
19
|
## 🧩 Installation
|
|
20
20
|
|
|
21
|
+
### 🐍 Install with PyPI
|
|
22
|
+
```bash
|
|
23
|
+
pip install DiscogsDataProcessorCLI
|
|
24
|
+
```
|
|
25
|
+
|
|
21
26
|
### 🍻 Install with Homebrew
|
|
22
27
|
```bash
|
|
23
28
|
brew tap ofurkancoban/discogs
|
|
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
|