DiscogsDataProcessorCLI 1.5.1__tar.gz → 1.5.6__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.6}/DiscogsDataProcessorCLI.egg-info/PKG-INFO +15 -2
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/PKG-INFO +15 -2
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/README.md +14 -1
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/discogs/main.py +6 -12
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/setup.cfg +1 -1
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/DiscogsDataProcessorCLI.egg-info/SOURCES.txt +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/DiscogsDataProcessorCLI.egg-info/dependency_links.txt +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/DiscogsDataProcessorCLI.egg-info/entry_points.txt +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/DiscogsDataProcessorCLI.egg-info/requires.txt +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/DiscogsDataProcessorCLI.egg-info/top_level.txt +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/discogs/__init__.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/discogs/chunker.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/discogs/config.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/discogs/converter.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/discogs/deleter.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/discogs/downloader.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/discogs/extractor.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/discogs/scraper.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/discogs/selector.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/discogs/utils.py +0 -0
- {discogsdataprocessorcli-1.5.1 → discogsdataprocessorcli-1.5.6}/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.6
|
|
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
|
|
@@ -16,7 +16,15 @@ Requires-Dist: pandas
|
|
|
16
16
|
Requires-Dist: typer
|
|
17
17
|
|
|
18
18
|
# 🎧 Discogs CLI — Data Processor Tool 💿
|
|
19
|
-
|
|
19
|
+
<p align="center">
|
|
20
|
+
<img src="img/logo.png" alt="Discogs Logo" width="200"/>
|
|
21
|
+
</p>
|
|
22
|
+
|
|
23
|
+
A modern command-line tool to `download`, `extract`, and `convert` Discogs data dumps into structured CSV files.
|
|
24
|
+
|
|
25
|
+
<p align="center">
|
|
26
|
+
<img src="img/preview.gif" />
|
|
27
|
+
</p>
|
|
20
28
|
|
|
21
29
|
---
|
|
22
30
|
|
|
@@ -35,6 +43,11 @@ A modern command-line tool to **download**, **extract**, and **convert** Discogs
|
|
|
35
43
|
|
|
36
44
|
## 🧩 Installation
|
|
37
45
|
|
|
46
|
+
### 🐍 Install with PyPI
|
|
47
|
+
```bash
|
|
48
|
+
pip install DiscogsDataProcessorCLI
|
|
49
|
+
```
|
|
50
|
+
|
|
38
51
|
### 🍻 Install with Homebrew
|
|
39
52
|
```bash
|
|
40
53
|
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.6
|
|
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
|
|
@@ -16,7 +16,15 @@ Requires-Dist: pandas
|
|
|
16
16
|
Requires-Dist: typer
|
|
17
17
|
|
|
18
18
|
# 🎧 Discogs CLI — Data Processor Tool 💿
|
|
19
|
-
|
|
19
|
+
<p align="center">
|
|
20
|
+
<img src="img/logo.png" alt="Discogs Logo" width="200"/>
|
|
21
|
+
</p>
|
|
22
|
+
|
|
23
|
+
A modern command-line tool to `download`, `extract`, and `convert` Discogs data dumps into structured CSV files.
|
|
24
|
+
|
|
25
|
+
<p align="center">
|
|
26
|
+
<img src="img/preview.gif" />
|
|
27
|
+
</p>
|
|
20
28
|
|
|
21
29
|
---
|
|
22
30
|
|
|
@@ -35,6 +43,11 @@ A modern command-line tool to **download**, **extract**, and **convert** Discogs
|
|
|
35
43
|
|
|
36
44
|
## 🧩 Installation
|
|
37
45
|
|
|
46
|
+
### 🐍 Install with PyPI
|
|
47
|
+
```bash
|
|
48
|
+
pip install DiscogsDataProcessorCLI
|
|
49
|
+
```
|
|
50
|
+
|
|
38
51
|
### 🍻 Install with Homebrew
|
|
39
52
|
```bash
|
|
40
53
|
brew tap ofurkancoban/discogs
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# 🎧 Discogs CLI — Data Processor Tool 💿
|
|
2
|
-
|
|
2
|
+
<p align="center">
|
|
3
|
+
<img src="img/logo.png" alt="Discogs Logo" width="200"/>
|
|
4
|
+
</p>
|
|
5
|
+
|
|
6
|
+
A modern command-line tool to `download`, `extract`, and `convert` Discogs data dumps into structured CSV files.
|
|
7
|
+
|
|
8
|
+
<p align="center">
|
|
9
|
+
<img src="img/preview.gif" />
|
|
10
|
+
</p>
|
|
3
11
|
|
|
4
12
|
---
|
|
5
13
|
|
|
@@ -18,6 +26,11 @@ A modern command-line tool to **download**, **extract**, and **convert** Discogs
|
|
|
18
26
|
|
|
19
27
|
## 🧩 Installation
|
|
20
28
|
|
|
29
|
+
### 🐍 Install with PyPI
|
|
30
|
+
```bash
|
|
31
|
+
pip install DiscogsDataProcessorCLI
|
|
32
|
+
```
|
|
33
|
+
|
|
21
34
|
### 🍻 Install with Homebrew
|
|
22
35
|
```bash
|
|
23
36
|
brew tap ofurkancoban/discogs
|
|
@@ -153,18 +153,12 @@ def config():
|
|
|
153
153
|
from discogs.config import set_download_dir
|
|
154
154
|
set_download_dir()
|
|
155
155
|
|
|
156
|
-
|
|
157
|
-
def main(ctx: typer.Context):
|
|
158
|
-
"""
|
|
159
|
-
If no subcommand is provided, defaults to running the `run` pipeline.
|
|
160
|
-
"""
|
|
161
|
-
if ctx.invoked_subcommand is None:
|
|
162
|
-
run()
|
|
163
|
-
|
|
164
|
-
# Automatically run the `run` pipeline if no arguments are provided
|
|
165
|
-
if __name__ == "__main__":
|
|
156
|
+
def entrypoint():
|
|
166
157
|
import sys
|
|
167
158
|
if len(sys.argv) == 1:
|
|
168
|
-
app(prog_name="discogs", args=["run"])
|
|
159
|
+
app(prog_name="discogs", args=["run"]) # 👈 otomatik run
|
|
169
160
|
else:
|
|
170
|
-
app()
|
|
161
|
+
app()
|
|
162
|
+
|
|
163
|
+
if __name__ == "__main__":
|
|
164
|
+
entrypoint()
|
|
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
|