cinnamon-cli 0.2.19__py3-none-any.whl
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.
- cinnamon/__init__.py +1 -0
- cinnamon/anilist.py +33 -0
- cinnamon/cli.py +1822 -0
- cinnamon/config.py +121 -0
- cinnamon/downloads.py +83 -0
- cinnamon/errors.py +145 -0
- cinnamon/history.py +66 -0
- cinnamon/player.py +550 -0
- cinnamon/scrapers/__init__.py +97 -0
- cinnamon/scrapers/anime.py +196 -0
- cinnamon/scrapers/base.py +34 -0
- cinnamon/scrapers/torrentio.py +123 -0
- cinnamon/scrapers/vidsrc.py +131 -0
- cinnamon/scrapers/webstream.py +282 -0
- cinnamon/tmdb.py +83 -0
- cinnamon/tui.py +543 -0
- cinnamon_cli-0.2.19.dist-info/METADATA +166 -0
- cinnamon_cli-0.2.19.dist-info/RECORD +22 -0
- cinnamon_cli-0.2.19.dist-info/WHEEL +5 -0
- cinnamon_cli-0.2.19.dist-info/entry_points.txt +2 -0
- cinnamon_cli-0.2.19.dist-info/licenses/LICENSE +38 -0
- cinnamon_cli-0.2.19.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
cinnamon/__init__.py,sha256=VZ7jBWhGCupQczZf5QIzaN_QnESJ96jWOGwTAhYaIwY,23
|
|
2
|
+
cinnamon/anilist.py,sha256=ehNXLas9oyCINdxJGSZ9W1ruIXmz3rLpNdcraVHdCmM,756
|
|
3
|
+
cinnamon/cli.py,sha256=_2kVkGQ2y59MiMu6byhz_b_wy0S3W5zfQ7dHVdaxbw0,64864
|
|
4
|
+
cinnamon/config.py,sha256=E9xdyjSHjdICSweEt5tKZ1KlJ0QMVfgCSvepI7Okrzw,2957
|
|
5
|
+
cinnamon/downloads.py,sha256=kEDs6L1xwZLl494lMAM_Brn337K5_aSdhsD8v3GPisU,1840
|
|
6
|
+
cinnamon/errors.py,sha256=rz903pRC__IXG2TlWDCrczgtqCucp9vLsrsoilHYQg8,4100
|
|
7
|
+
cinnamon/history.py,sha256=3VVELs7kanPkm40pw7bQ1LQ0yRsBsMhAjktVsBlq0ho,1437
|
|
8
|
+
cinnamon/player.py,sha256=IQoy5T4kJ6V4YTpQcKYzi__mDPQ4ofXULKUaletpFf8,19337
|
|
9
|
+
cinnamon/tmdb.py,sha256=_XXue3YbMs-q2u0l6al39hwMyGGOUraGz6-FlW52Vuk,2644
|
|
10
|
+
cinnamon/tui.py,sha256=6dfPnPzKWqZ0IJaghKP9IObZTV7RU2SNUcRWpiK2en0,14678
|
|
11
|
+
cinnamon/scrapers/__init__.py,sha256=ShGzWOfin24ND6P7rxHJ02uN-buXdyCiuSWeayBzr38,2697
|
|
12
|
+
cinnamon/scrapers/anime.py,sha256=Gmmae7iIe41gECRxIbYOOkaNjKSFOreFHmNxH8WidIE,7861
|
|
13
|
+
cinnamon/scrapers/base.py,sha256=VLgBaQ5LByStjnqrFYufPshBpdC-S-MJXMbZMWB77h4,981
|
|
14
|
+
cinnamon/scrapers/torrentio.py,sha256=E1Zof7KHKlxFeaeSNSKoXtmmslLE9oclS7ufJEAqD0o,4569
|
|
15
|
+
cinnamon/scrapers/vidsrc.py,sha256=8yiaq0SdYMDotOjkDpyUM0A-y54_didUv8yi4SkBisM,4560
|
|
16
|
+
cinnamon/scrapers/webstream.py,sha256=QsUdDFi6FcFmD360TbiBdH3phFC0LPoCV8Q7OibBNGU,10569
|
|
17
|
+
cinnamon_cli-0.2.19.dist-info/licenses/LICENSE,sha256=sL4XREHIZh3lxUV1oxp-M0-evkz1vpkBaLrF5nxAfsc,1666
|
|
18
|
+
cinnamon_cli-0.2.19.dist-info/METADATA,sha256=uIyyPg6MaVOW7IKiHFfXHrwitciz2scbkNaHWS2Lj4E,5250
|
|
19
|
+
cinnamon_cli-0.2.19.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
|
|
20
|
+
cinnamon_cli-0.2.19.dist-info/entry_points.txt,sha256=WvNnuA4CaJyMCqVoMLn0X-v7o3-0NXwzqof6MiHFBbw,46
|
|
21
|
+
cinnamon_cli-0.2.19.dist-info/top_level.txt,sha256=uyO7e0B3PvV2J7uDHWlJBYYSzKNqXknnyvyg6K1IdQc,9
|
|
22
|
+
cinnamon_cli-0.2.19.dist-info/RECORD,,
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Creative Commons Attribution-NonCommercial 4.0 International
|
|
2
|
+
(CC BY-NC 4.0)
|
|
3
|
+
|
|
4
|
+
https://creativecommons.org/licenses/by-nc/4.0/
|
|
5
|
+
|
|
6
|
+
You are free to:
|
|
7
|
+
|
|
8
|
+
- Share — copy and redistribute the material in any medium or format
|
|
9
|
+
- Adapt — remix, transform, and build upon the material
|
|
10
|
+
|
|
11
|
+
for any purpose, as long as you comply with the license terms below.
|
|
12
|
+
|
|
13
|
+
Under the following terms:
|
|
14
|
+
|
|
15
|
+
- Attribution — You must give appropriate credit, provide a link to the
|
|
16
|
+
license, and indicate if changes were made. You may do so in any reasonable
|
|
17
|
+
manner, but not in any way that suggests the licensor endorses you or your use.
|
|
18
|
+
|
|
19
|
+
- NonCommercial — You may NOT use the material for commercial purposes.
|
|
20
|
+
This software is free and open for everyone to use, modify, and share,
|
|
21
|
+
but it may not be sold, monetized, or used as part of a commercial product
|
|
22
|
+
or service without the express permission of the copyright holder.
|
|
23
|
+
|
|
24
|
+
No additional restrictions — You may not apply legal terms or technological
|
|
25
|
+
measures that legally restrict others from doing anything the license permits.
|
|
26
|
+
|
|
27
|
+
Disclaimer of Warranty
|
|
28
|
+
|
|
29
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
30
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
31
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
32
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
33
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
34
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
35
|
+
SOFTWARE.
|
|
36
|
+
|
|
37
|
+
For the full legal text of CC BY-NC 4.0, see:
|
|
38
|
+
https://creativecommons.org/licenses/by-nc/4.0/legalcode
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
cinnamon
|