aw-cli 2.1.2__tar.gz → 2.1.3__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.
- {aw_cli-2.1.2 → aw_cli-2.1.3}/PKG-INFO +33 -25
- {aw_cli-2.1.2 → aw_cli-2.1.3}/README.md +31 -24
- {aw_cli-2.1.2 → aw_cli-2.1.3}/aw_cli.egg-info/PKG-INFO +33 -25
- {aw_cli-2.1.2 → aw_cli-2.1.3}/aw_cli.egg-info/requires.txt +1 -0
- {aw_cli-2.1.2 → aw_cli-2.1.3}/awcli/run.py +2 -1
- aw_cli-2.1.3/awcli/version.py +1 -0
- {aw_cli-2.1.2 → aw_cli-2.1.3}/setup.py +3 -2
- aw_cli-2.1.2/awcli/version.py +0 -1
- {aw_cli-2.1.2 → aw_cli-2.1.3}/LICENSE +0 -0
- {aw_cli-2.1.2 → aw_cli-2.1.3}/aw_cli.egg-info/SOURCES.txt +0 -0
- {aw_cli-2.1.2 → aw_cli-2.1.3}/aw_cli.egg-info/dependency_links.txt +0 -0
- {aw_cli-2.1.2 → aw_cli-2.1.3}/aw_cli.egg-info/entry_points.txt +0 -0
- {aw_cli-2.1.2 → aw_cli-2.1.3}/aw_cli.egg-info/top_level.txt +0 -0
- {aw_cli-2.1.2 → aw_cli-2.1.3}/awcli/__init__.py +0 -0
- {aw_cli-2.1.2 → aw_cli-2.1.3}/awcli/anilist.py +0 -0
- {aw_cli-2.1.2 → aw_cli-2.1.3}/awcli/anime.py +0 -0
- {aw_cli-2.1.2 → aw_cli-2.1.3}/awcli/arg_parser.py +0 -0
- {aw_cli-2.1.2 → aw_cli-2.1.3}/awcli/utilities.py +0 -0
- {aw_cli-2.1.2 → aw_cli-2.1.3}/setup.cfg +0 -0
- {aw_cli-2.1.2 → aw_cli-2.1.3}/tests/test_anime.py +0 -0
- {aw_cli-2.1.2 → aw_cli-2.1.3}/tests/test_utilities.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aw-cli
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.3
|
|
4
4
|
Summary: guarda anime dal terminale e molto altro!
|
|
5
5
|
Home-page: https://github.com/fexh10/aw-cli
|
|
6
6
|
Author: fexh10
|
|
@@ -13,6 +13,7 @@ Requires-Dist: pySmartDL
|
|
|
13
13
|
Requires-Dist: wheel
|
|
14
14
|
Requires-Dist: regex
|
|
15
15
|
Requires-Dist: toml
|
|
16
|
+
Requires-Dist: pip-system-certs
|
|
16
17
|
Dynamic: author
|
|
17
18
|
Dynamic: description
|
|
18
19
|
Dynamic: description-content-type
|
|
@@ -112,37 +113,44 @@ Nota che la velocità di download e caricamento molto bassa è un problema di iS
|
|
|
112
113
|
</details>
|
|
113
114
|
|
|
114
115
|
## Problemi noti
|
|
115
|
-
Se è impossibile avviare `aw-cli`, è possibile che non si abbia la cartella degli script Python aggiunta al path. <br />
|
|
116
116
|
|
|
117
|
-
|
|
118
|
-
Aggiungere la seguente linea al file di profilo (.bashrc, .zshrc, o altro):
|
|
117
|
+
- Se è impossibile avviare `aw-cli`, è possibile che non si abbia la cartella degli script Python aggiunta al path. <br />
|
|
119
118
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
```
|
|
123
|
-
Riavviare il terminale o eseguire `source ~/.bashrc`.
|
|
119
|
+
<details> <summary><b>Linux/Windows WSL</b></summary>
|
|
120
|
+
Aggiungere la seguente linea al file di profilo (.bashrc, .zshrc, o altro):
|
|
124
121
|
|
|
125
|
-
|
|
122
|
+
```
|
|
123
|
+
export PATH=$PATH:$HOME/.local/bin
|
|
124
|
+
```
|
|
125
|
+
Riavviare il terminale o eseguire `source ~/.bashrc`.
|
|
126
126
|
|
|
127
|
-
|
|
128
|
-
Aggiungere la seguente linea al file di profilo (.bashrc, .zshrc, o altro):
|
|
127
|
+
</details>
|
|
129
128
|
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
```
|
|
133
|
-
Sostituire `3.x` con la propria versione di Python. <br>
|
|
134
|
-
Riavviare il terminale o eseguire `source ~/.bashrc`.
|
|
135
|
-
</details>
|
|
129
|
+
<details> <summary><b>MacOS</b></summary>
|
|
130
|
+
Aggiungere la seguente linea al file di profilo (.bashrc, .zshrc, o altro):
|
|
136
131
|
|
|
137
|
-
|
|
138
|
-
|
|
132
|
+
```
|
|
133
|
+
export PATH=$PATH:$HOME/Library/Python/3.x/bin
|
|
134
|
+
```
|
|
135
|
+
Sostituire `3.x` con la propria versione di Python. <br>
|
|
136
|
+
Riavviare il terminale o eseguire `source ~/.bashrc`.
|
|
137
|
+
</details>
|
|
139
138
|
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
139
|
+
<details> <summary><b>Windows Legacy</b></summary>
|
|
140
|
+
Inserire da linea di comando:
|
|
141
|
+
|
|
142
|
+
```
|
|
143
|
+
setx PATH "%PATH%;%APPDATA%\Local\Programs\Python\Python3x\Scripts
|
|
144
|
+
```
|
|
145
|
+
Sostituire `3.x` con la propria versione di Python. <br/>
|
|
146
|
+
Se necessario, riavviare il sistema.
|
|
147
|
+
</details>
|
|
148
|
+
|
|
149
|
+
- Se il programma si avvia ma appare "Errore di connessione", potrebbe essere un problema relativo ai certificati SSL. Scaricare il certificato `SSL.com TLS Transit ECC CA R2` al seguente [link](https://ssl.com/repo/certs/SSL.com-TLS-T-ECC-R2.pem) ed eseguire il comando:
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
trust anchor SSL.com-TLS-T-ECC-R2.pem
|
|
153
|
+
```
|
|
146
154
|
|
|
147
155
|
## Disinstallazione
|
|
148
156
|
|
|
@@ -87,37 +87,44 @@ Nota che la velocità di download e caricamento molto bassa è un problema di iS
|
|
|
87
87
|
</details>
|
|
88
88
|
|
|
89
89
|
## Problemi noti
|
|
90
|
-
Se è impossibile avviare `aw-cli`, è possibile che non si abbia la cartella degli script Python aggiunta al path. <br />
|
|
91
90
|
|
|
92
|
-
|
|
93
|
-
Aggiungere la seguente linea al file di profilo (.bashrc, .zshrc, o altro):
|
|
91
|
+
- Se è impossibile avviare `aw-cli`, è possibile che non si abbia la cartella degli script Python aggiunta al path. <br />
|
|
94
92
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
```
|
|
98
|
-
Riavviare il terminale o eseguire `source ~/.bashrc`.
|
|
93
|
+
<details> <summary><b>Linux/Windows WSL</b></summary>
|
|
94
|
+
Aggiungere la seguente linea al file di profilo (.bashrc, .zshrc, o altro):
|
|
99
95
|
|
|
100
|
-
|
|
96
|
+
```
|
|
97
|
+
export PATH=$PATH:$HOME/.local/bin
|
|
98
|
+
```
|
|
99
|
+
Riavviare il terminale o eseguire `source ~/.bashrc`.
|
|
101
100
|
|
|
102
|
-
|
|
103
|
-
Aggiungere la seguente linea al file di profilo (.bashrc, .zshrc, o altro):
|
|
101
|
+
</details>
|
|
104
102
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
```
|
|
108
|
-
Sostituire `3.x` con la propria versione di Python. <br>
|
|
109
|
-
Riavviare il terminale o eseguire `source ~/.bashrc`.
|
|
110
|
-
</details>
|
|
103
|
+
<details> <summary><b>MacOS</b></summary>
|
|
104
|
+
Aggiungere la seguente linea al file di profilo (.bashrc, .zshrc, o altro):
|
|
111
105
|
|
|
112
|
-
|
|
113
|
-
|
|
106
|
+
```
|
|
107
|
+
export PATH=$PATH:$HOME/Library/Python/3.x/bin
|
|
108
|
+
```
|
|
109
|
+
Sostituire `3.x` con la propria versione di Python. <br>
|
|
110
|
+
Riavviare il terminale o eseguire `source ~/.bashrc`.
|
|
111
|
+
</details>
|
|
114
112
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
113
|
+
<details> <summary><b>Windows Legacy</b></summary>
|
|
114
|
+
Inserire da linea di comando:
|
|
115
|
+
|
|
116
|
+
```
|
|
117
|
+
setx PATH "%PATH%;%APPDATA%\Local\Programs\Python\Python3x\Scripts
|
|
118
|
+
```
|
|
119
|
+
Sostituire `3.x` con la propria versione di Python. <br/>
|
|
120
|
+
Se necessario, riavviare il sistema.
|
|
121
|
+
</details>
|
|
122
|
+
|
|
123
|
+
- Se il programma si avvia ma appare "Errore di connessione", potrebbe essere un problema relativo ai certificati SSL. Scaricare il certificato `SSL.com TLS Transit ECC CA R2` al seguente [link](https://ssl.com/repo/certs/SSL.com-TLS-T-ECC-R2.pem) ed eseguire il comando:
|
|
124
|
+
|
|
125
|
+
```bash
|
|
126
|
+
trust anchor SSL.com-TLS-T-ECC-R2.pem
|
|
127
|
+
```
|
|
121
128
|
|
|
122
129
|
## Disinstallazione
|
|
123
130
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aw-cli
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.3
|
|
4
4
|
Summary: guarda anime dal terminale e molto altro!
|
|
5
5
|
Home-page: https://github.com/fexh10/aw-cli
|
|
6
6
|
Author: fexh10
|
|
@@ -13,6 +13,7 @@ Requires-Dist: pySmartDL
|
|
|
13
13
|
Requires-Dist: wheel
|
|
14
14
|
Requires-Dist: regex
|
|
15
15
|
Requires-Dist: toml
|
|
16
|
+
Requires-Dist: pip-system-certs
|
|
16
17
|
Dynamic: author
|
|
17
18
|
Dynamic: description
|
|
18
19
|
Dynamic: description-content-type
|
|
@@ -112,37 +113,44 @@ Nota che la velocità di download e caricamento molto bassa è un problema di iS
|
|
|
112
113
|
</details>
|
|
113
114
|
|
|
114
115
|
## Problemi noti
|
|
115
|
-
Se è impossibile avviare `aw-cli`, è possibile che non si abbia la cartella degli script Python aggiunta al path. <br />
|
|
116
116
|
|
|
117
|
-
|
|
118
|
-
Aggiungere la seguente linea al file di profilo (.bashrc, .zshrc, o altro):
|
|
117
|
+
- Se è impossibile avviare `aw-cli`, è possibile che non si abbia la cartella degli script Python aggiunta al path. <br />
|
|
119
118
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
```
|
|
123
|
-
Riavviare il terminale o eseguire `source ~/.bashrc`.
|
|
119
|
+
<details> <summary><b>Linux/Windows WSL</b></summary>
|
|
120
|
+
Aggiungere la seguente linea al file di profilo (.bashrc, .zshrc, o altro):
|
|
124
121
|
|
|
125
|
-
|
|
122
|
+
```
|
|
123
|
+
export PATH=$PATH:$HOME/.local/bin
|
|
124
|
+
```
|
|
125
|
+
Riavviare il terminale o eseguire `source ~/.bashrc`.
|
|
126
126
|
|
|
127
|
-
|
|
128
|
-
Aggiungere la seguente linea al file di profilo (.bashrc, .zshrc, o altro):
|
|
127
|
+
</details>
|
|
129
128
|
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
```
|
|
133
|
-
Sostituire `3.x` con la propria versione di Python. <br>
|
|
134
|
-
Riavviare il terminale o eseguire `source ~/.bashrc`.
|
|
135
|
-
</details>
|
|
129
|
+
<details> <summary><b>MacOS</b></summary>
|
|
130
|
+
Aggiungere la seguente linea al file di profilo (.bashrc, .zshrc, o altro):
|
|
136
131
|
|
|
137
|
-
|
|
138
|
-
|
|
132
|
+
```
|
|
133
|
+
export PATH=$PATH:$HOME/Library/Python/3.x/bin
|
|
134
|
+
```
|
|
135
|
+
Sostituire `3.x` con la propria versione di Python. <br>
|
|
136
|
+
Riavviare il terminale o eseguire `source ~/.bashrc`.
|
|
137
|
+
</details>
|
|
139
138
|
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
139
|
+
<details> <summary><b>Windows Legacy</b></summary>
|
|
140
|
+
Inserire da linea di comando:
|
|
141
|
+
|
|
142
|
+
```
|
|
143
|
+
setx PATH "%PATH%;%APPDATA%\Local\Programs\Python\Python3x\Scripts
|
|
144
|
+
```
|
|
145
|
+
Sostituire `3.x` con la propria versione di Python. <br/>
|
|
146
|
+
Se necessario, riavviare il sistema.
|
|
147
|
+
</details>
|
|
148
|
+
|
|
149
|
+
- Se il programma si avvia ma appare "Errore di connessione", potrebbe essere un problema relativo ai certificati SSL. Scaricare il certificato `SSL.com TLS Transit ECC CA R2` al seguente [link](https://ssl.com/repo/certs/SSL.com-TLS-T-ECC-R2.pem) ed eseguire il comando:
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
trust anchor SSL.com-TLS-T-ECC-R2.pem
|
|
153
|
+
```
|
|
146
154
|
|
|
147
155
|
## Disinstallazione
|
|
148
156
|
|
|
@@ -589,7 +589,8 @@ def removeFromCrono(number: int):
|
|
|
589
589
|
ut.my_print("Impossibile droppare su AniList: id anime non trovato!", color="rosso")
|
|
590
590
|
ut.sleep(1)
|
|
591
591
|
else:
|
|
592
|
-
|
|
592
|
+
rating = anilist.getAnimePrivateRating(ut.configData["anilist"]["token"], ut.configData["anilist"]["user_id"], anime.id_anilist)
|
|
593
|
+
updateAnilist(anime.ep_corrente, rating, drop=True)
|
|
593
594
|
|
|
594
595
|
log.pop(number)
|
|
595
596
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
versione = "2.1.3"
|
|
@@ -8,12 +8,13 @@ installRequires = [
|
|
|
8
8
|
"pySmartDL",
|
|
9
9
|
"wheel",
|
|
10
10
|
"regex",
|
|
11
|
-
"toml",
|
|
11
|
+
"toml",
|
|
12
|
+
"pip-system-certs",]
|
|
12
13
|
|
|
13
14
|
setup(
|
|
14
15
|
name="aw-cli",
|
|
15
16
|
packages=find_packages(include=["awcli"]),
|
|
16
|
-
version="2.1.
|
|
17
|
+
version="2.1.3",
|
|
17
18
|
python_requires=">3.10",
|
|
18
19
|
description="guarda anime dal terminale e molto altro!",
|
|
19
20
|
long_description=long_description,
|
aw_cli-2.1.2/awcli/version.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
versione = "2.1.2"
|
|
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
|