pyanime4k 3.1.0__cp38-cp38-macosx_10_15_x86_64.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.
pyanime4k/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ from .info import *
2
+ from .upscale import *
3
+ from .pyac import *
pyanime4k/info.py ADDED
@@ -0,0 +1,13 @@
1
+ from .pyac import pyac
2
+
3
+ def print_model_list():
4
+ for name, description in zip(pyac.specs.ModelNameList, pyac.specs.ModelDescriptionList):
5
+ print(f"{name}\t\t{description}")
6
+
7
+ def print_processor_list():
8
+ for name, description in zip(pyac.specs.ProcessorNameList, pyac.specs.ProcessorDescriptionList):
9
+ print(f"{name}\t\t{description}")
10
+
11
+ def print_device_list():
12
+ for info in pyac.core.Processor.InfoList:
13
+ print(info, end="")
@@ -0,0 +1 @@
1
+ from .pyac.core import *
@@ -0,0 +1,7 @@
1
+ """
2
+ Anime4KCPP: A high performance anime upscaler.
3
+ """
4
+ from __future__ import annotations
5
+ from . import core
6
+ from . import specs
7
+ __all__: list[str] = ['core', 'specs']
@@ -0,0 +1,184 @@
1
+ from __future__ import annotations
2
+ import numpy
3
+ import numpy.typing
4
+ import typing
5
+ __all__: list[str] = ['IMREAD_COLOR', 'IMREAD_GRAYSCALE', 'IMREAD_RGB', 'IMREAD_RGBA', 'IMREAD_UNCHANGED', 'ImreadModes', 'Processor', 'RESIZE_BICUBIC_0_100', 'RESIZE_BICUBIC_0_60', 'RESIZE_BICUBIC_0_75', 'RESIZE_BICUBIC_20_50', 'RESIZE_BILINEAR', 'RESIZE_CATMULL_ROM', 'RESIZE_LANCZOS2', 'RESIZE_LANCZOS3', 'RESIZE_LANCZOS4', 'RESIZE_MITCHELL_NETRAVALI', 'RESIZE_POINT', 'RESIZE_SOFTCUBIC100', 'RESIZE_SOFTCUBIC50', 'RESIZE_SOFTCUBIC75', 'RESIZE_SPLINE16', 'RESIZE_SPLINE36', 'RESIZE_SPLINE64', 'ResizeModes', 'imread', 'imwrite', 'resize']
6
+ class ImreadModes:
7
+ """
8
+ Members:
9
+
10
+ IMREAD_UNCHANGED
11
+
12
+ IMREAD_GRAYSCALE
13
+
14
+ IMREAD_COLOR
15
+
16
+ IMREAD_RGB
17
+
18
+ IMREAD_RGBA
19
+ """
20
+ IMREAD_COLOR: typing.ClassVar[ImreadModes] # value = <ImreadModes.IMREAD_COLOR: 3>
21
+ IMREAD_GRAYSCALE: typing.ClassVar[ImreadModes] # value = <ImreadModes.IMREAD_GRAYSCALE: 1>
22
+ IMREAD_RGB: typing.ClassVar[ImreadModes] # value = <ImreadModes.IMREAD_COLOR: 3>
23
+ IMREAD_RGBA: typing.ClassVar[ImreadModes] # value = <ImreadModes.IMREAD_RGBA: 4>
24
+ IMREAD_UNCHANGED: typing.ClassVar[ImreadModes] # value = <ImreadModes.IMREAD_UNCHANGED: 0>
25
+ __members__: typing.ClassVar[dict[str, ImreadModes]] # value = {'IMREAD_UNCHANGED': <ImreadModes.IMREAD_UNCHANGED: 0>, 'IMREAD_GRAYSCALE': <ImreadModes.IMREAD_GRAYSCALE: 1>, 'IMREAD_COLOR': <ImreadModes.IMREAD_COLOR: 3>, 'IMREAD_RGB': <ImreadModes.IMREAD_COLOR: 3>, 'IMREAD_RGBA': <ImreadModes.IMREAD_RGBA: 4>}
26
+ def __eq__(self, other: typing.Any) -> bool:
27
+ ...
28
+ def __getstate__(self) -> int:
29
+ ...
30
+ def __hash__(self) -> int:
31
+ ...
32
+ def __index__(self) -> int:
33
+ ...
34
+ def __init__(self, value: typing.SupportsInt) -> None:
35
+ ...
36
+ def __int__(self) -> int:
37
+ ...
38
+ def __ne__(self, other: typing.Any) -> bool:
39
+ ...
40
+ def __repr__(self) -> str:
41
+ ...
42
+ def __setstate__(self, state: typing.SupportsInt) -> None:
43
+ ...
44
+ def __str__(self) -> str:
45
+ ...
46
+ @property
47
+ def name(self) -> str:
48
+ ...
49
+ @property
50
+ def value(self) -> int:
51
+ ...
52
+ class Processor:
53
+ CPU: typing.ClassVar[int] = 0
54
+ CUDA: typing.ClassVar[int] = 2
55
+ OpenCL: typing.ClassVar[int] = 1
56
+ InfoList: typing.ClassVar[tuple[str, ...]]
57
+ def __call__(self, src: numpy.ndarray, factor: typing.SupportsFloat = 2.0) -> numpy.ndarray:
58
+ ...
59
+ @typing.overload
60
+ def __init__(self, processor_type: typing.SupportsInt = 0, device: typing.SupportsInt = 0, model: str = 'acnet-gan') -> None:
61
+ ...
62
+ @typing.overload
63
+ def __init__(self, processor_type: str, device: typing.SupportsInt = 0, model: str = 'acnet-gan') -> None:
64
+ ...
65
+ def __str__(self) -> str:
66
+ ...
67
+ def error(self) -> str:
68
+ ...
69
+ def name(self) -> str:
70
+ ...
71
+ def ok(self) -> bool:
72
+ ...
73
+ def process(self, src: numpy.ndarray, factor: typing.SupportsFloat = 2.0) -> numpy.ndarray:
74
+ ...
75
+ class ResizeModes:
76
+ """
77
+ Members:
78
+
79
+ RESIZE_POINT
80
+
81
+ RESIZE_CATMULL_ROM
82
+
83
+ RESIZE_MITCHELL_NETRAVALI
84
+
85
+ RESIZE_BICUBIC_0_60
86
+
87
+ RESIZE_BICUBIC_0_75
88
+
89
+ RESIZE_BICUBIC_0_100
90
+
91
+ RESIZE_BICUBIC_20_50
92
+
93
+ RESIZE_SOFTCUBIC50
94
+
95
+ RESIZE_SOFTCUBIC75
96
+
97
+ RESIZE_SOFTCUBIC100
98
+
99
+ RESIZE_LANCZOS2
100
+
101
+ RESIZE_LANCZOS3
102
+
103
+ RESIZE_LANCZOS4
104
+
105
+ RESIZE_SPLINE16
106
+
107
+ RESIZE_SPLINE36
108
+
109
+ RESIZE_SPLINE64
110
+
111
+ RESIZE_BILINEAR
112
+ """
113
+ RESIZE_BICUBIC_0_100: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_BICUBIC_0_100: 5>
114
+ RESIZE_BICUBIC_0_60: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_BICUBIC_0_60: 3>
115
+ RESIZE_BICUBIC_0_75: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_BICUBIC_0_75: 4>
116
+ RESIZE_BICUBIC_20_50: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_BICUBIC_20_50: 6>
117
+ RESIZE_BILINEAR: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_BILINEAR: 16>
118
+ RESIZE_CATMULL_ROM: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_CATMULL_ROM: 1>
119
+ RESIZE_LANCZOS2: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_LANCZOS2: 10>
120
+ RESIZE_LANCZOS3: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_LANCZOS3: 11>
121
+ RESIZE_LANCZOS4: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_LANCZOS4: 12>
122
+ RESIZE_MITCHELL_NETRAVALI: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_MITCHELL_NETRAVALI: 2>
123
+ RESIZE_POINT: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_POINT: 0>
124
+ RESIZE_SOFTCUBIC100: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_SOFTCUBIC100: 9>
125
+ RESIZE_SOFTCUBIC50: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_SOFTCUBIC50: 7>
126
+ RESIZE_SOFTCUBIC75: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_SOFTCUBIC75: 8>
127
+ RESIZE_SPLINE16: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_SPLINE16: 13>
128
+ RESIZE_SPLINE36: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_SPLINE36: 14>
129
+ RESIZE_SPLINE64: typing.ClassVar[ResizeModes] # value = <ResizeModes.RESIZE_SPLINE64: 15>
130
+ __members__: typing.ClassVar[dict[str, ResizeModes]] # value = {'RESIZE_POINT': <ResizeModes.RESIZE_POINT: 0>, 'RESIZE_CATMULL_ROM': <ResizeModes.RESIZE_CATMULL_ROM: 1>, 'RESIZE_MITCHELL_NETRAVALI': <ResizeModes.RESIZE_MITCHELL_NETRAVALI: 2>, 'RESIZE_BICUBIC_0_60': <ResizeModes.RESIZE_BICUBIC_0_60: 3>, 'RESIZE_BICUBIC_0_75': <ResizeModes.RESIZE_BICUBIC_0_75: 4>, 'RESIZE_BICUBIC_0_100': <ResizeModes.RESIZE_BICUBIC_0_100: 5>, 'RESIZE_BICUBIC_20_50': <ResizeModes.RESIZE_BICUBIC_20_50: 6>, 'RESIZE_SOFTCUBIC50': <ResizeModes.RESIZE_SOFTCUBIC50: 7>, 'RESIZE_SOFTCUBIC75': <ResizeModes.RESIZE_SOFTCUBIC75: 8>, 'RESIZE_SOFTCUBIC100': <ResizeModes.RESIZE_SOFTCUBIC100: 9>, 'RESIZE_LANCZOS2': <ResizeModes.RESIZE_LANCZOS2: 10>, 'RESIZE_LANCZOS3': <ResizeModes.RESIZE_LANCZOS3: 11>, 'RESIZE_LANCZOS4': <ResizeModes.RESIZE_LANCZOS4: 12>, 'RESIZE_SPLINE16': <ResizeModes.RESIZE_SPLINE16: 13>, 'RESIZE_SPLINE36': <ResizeModes.RESIZE_SPLINE36: 14>, 'RESIZE_SPLINE64': <ResizeModes.RESIZE_SPLINE64: 15>, 'RESIZE_BILINEAR': <ResizeModes.RESIZE_BILINEAR: 16>}
131
+ def __eq__(self, other: typing.Any) -> bool:
132
+ ...
133
+ def __getstate__(self) -> int:
134
+ ...
135
+ def __hash__(self) -> int:
136
+ ...
137
+ def __index__(self) -> int:
138
+ ...
139
+ def __init__(self, value: typing.SupportsInt) -> None:
140
+ ...
141
+ def __int__(self) -> int:
142
+ ...
143
+ def __ne__(self, other: typing.Any) -> bool:
144
+ ...
145
+ def __repr__(self) -> str:
146
+ ...
147
+ def __setstate__(self, state: typing.SupportsInt) -> None:
148
+ ...
149
+ def __str__(self) -> str:
150
+ ...
151
+ @property
152
+ def name(self) -> str:
153
+ ...
154
+ @property
155
+ def value(self) -> int:
156
+ ...
157
+ def imread(filename: str, mode: ImreadModes = ...) -> numpy.typing.NDArray[numpy.uint8]:
158
+ ...
159
+ def imwrite(filename: str, image: typing.Annotated[numpy.typing.ArrayLike, numpy.uint8]) -> bool:
160
+ ...
161
+ def resize(src: numpy.ndarray, dsize: tuple, fx: typing.SupportsFloat = 0.0, fy: typing.SupportsFloat = 0.0, mode: ResizeModes = ...) -> numpy.ndarray:
162
+ ...
163
+ IMREAD_COLOR: ImreadModes # value = <ImreadModes.IMREAD_COLOR: 3>
164
+ IMREAD_GRAYSCALE: ImreadModes # value = <ImreadModes.IMREAD_GRAYSCALE: 1>
165
+ IMREAD_RGB: ImreadModes # value = <ImreadModes.IMREAD_COLOR: 3>
166
+ IMREAD_RGBA: ImreadModes # value = <ImreadModes.IMREAD_RGBA: 4>
167
+ IMREAD_UNCHANGED: ImreadModes # value = <ImreadModes.IMREAD_UNCHANGED: 0>
168
+ RESIZE_BICUBIC_0_100: ResizeModes # value = <ResizeModes.RESIZE_BICUBIC_0_100: 5>
169
+ RESIZE_BICUBIC_0_60: ResizeModes # value = <ResizeModes.RESIZE_BICUBIC_0_60: 3>
170
+ RESIZE_BICUBIC_0_75: ResizeModes # value = <ResizeModes.RESIZE_BICUBIC_0_75: 4>
171
+ RESIZE_BICUBIC_20_50: ResizeModes # value = <ResizeModes.RESIZE_BICUBIC_20_50: 6>
172
+ RESIZE_BILINEAR: ResizeModes # value = <ResizeModes.RESIZE_BILINEAR: 16>
173
+ RESIZE_CATMULL_ROM: ResizeModes # value = <ResizeModes.RESIZE_CATMULL_ROM: 1>
174
+ RESIZE_LANCZOS2: ResizeModes # value = <ResizeModes.RESIZE_LANCZOS2: 10>
175
+ RESIZE_LANCZOS3: ResizeModes # value = <ResizeModes.RESIZE_LANCZOS3: 11>
176
+ RESIZE_LANCZOS4: ResizeModes # value = <ResizeModes.RESIZE_LANCZOS4: 12>
177
+ RESIZE_MITCHELL_NETRAVALI: ResizeModes # value = <ResizeModes.RESIZE_MITCHELL_NETRAVALI: 2>
178
+ RESIZE_POINT: ResizeModes # value = <ResizeModes.RESIZE_POINT: 0>
179
+ RESIZE_SOFTCUBIC100: ResizeModes # value = <ResizeModes.RESIZE_SOFTCUBIC100: 9>
180
+ RESIZE_SOFTCUBIC50: ResizeModes # value = <ResizeModes.RESIZE_SOFTCUBIC50: 7>
181
+ RESIZE_SOFTCUBIC75: ResizeModes # value = <ResizeModes.RESIZE_SOFTCUBIC75: 8>
182
+ RESIZE_SPLINE16: ResizeModes # value = <ResizeModes.RESIZE_SPLINE16: 13>
183
+ RESIZE_SPLINE36: ResizeModes # value = <ResizeModes.RESIZE_SPLINE36: 14>
184
+ RESIZE_SPLINE64: ResizeModes # value = <ResizeModes.RESIZE_SPLINE64: 15>
@@ -0,0 +1,6 @@
1
+ from __future__ import annotations
2
+ __all__: list[str] = ['ModelDescriptionList', 'ModelNameList', 'ProcessorDescriptionList', 'ProcessorNameList']
3
+ ModelDescriptionList: tuple = ('Lightweight CNN, detail enhancement.', 'Lightweight CNN, mild denoising.', 'Lightweight CNN, moderate denoising.', 'Lightweight CNN, heavy denoising.', 'Lightweight CNN, extreme denoising.', 'Lightweight ResNet, mild denoising.')
4
+ ModelNameList: tuple = ('acnet-gan', 'acnet-hdn0', 'acnet-hdn1', 'acnet-hdn2', 'acnet-hdn3', 'arnet-hdn')
5
+ ProcessorDescriptionList: tuple = ('General-purpose CPU processing with optional SIMD acceleration.', 'Cross-platform acceleration requiring OpenCL 1.2+ compliant devices.', 'NVIDIA GPU acceleration requiring Compute Capability 5.0+.')
6
+ ProcessorNameList: tuple = ('cpu', 'opencl', 'cuda')
Binary file
pyanime4k/upscale.py ADDED
@@ -0,0 +1,28 @@
1
+ from itertools import zip_longest, islice
2
+ from pathlib import Path
3
+
4
+ from .pyac import pyac
5
+
6
+ def upscale_images(
7
+ inputs: list,
8
+ outputs: list = [],
9
+ output_suffix: str = "_output",
10
+ factor: float = 2.0,
11
+ processor_type: str = "cpu",
12
+ device_id:int = 0,
13
+ model_name: str = "acnet-hdn0"
14
+ ):
15
+ if isinstance(inputs, str):
16
+ inputs = [inputs]
17
+
18
+ processor = pyac.core.Processor(processor_type, device_id, model_name)
19
+
20
+ for input, output in islice(zip_longest(inputs, outputs, fillvalue=None), len(inputs)):
21
+ if output is None:
22
+ input_path = Path(input)
23
+ output = input_path.with_stem(input_path.stem + output_suffix)
24
+
25
+ src = pyac.core.imread(str(input))
26
+ dst = processor(src, factor)
27
+ if not pyac.core.imwrite(str(output), dst):
28
+ raise IOError(f"Failed to save image to {output}")
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 TianZer
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,121 @@
1
+ Metadata-Version: 2.1
2
+ Name: pyanime4k
3
+ Version: 3.1.0
4
+ License: MIT
5
+ Classifier: Programming Language :: Python :: 3
6
+ Classifier: Operating System :: Microsoft :: Windows
7
+ Classifier: Operating System :: MacOS
8
+ Classifier: Operating System :: POSIX
9
+ Classifier: Operating System :: Unix
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: numpy
14
+
15
+ # PyAnime4K
16
+
17
+ PyAnime4K is a high performance anime image upscaler based on [Anime4KCPP](https://github.com/TianZerL/Anime4KCPP).
18
+
19
+ # Install
20
+ PyAnime4K can be installed easily through pip.
21
+ ```shell
22
+ pip install pyanime4k
23
+ ```
24
+
25
+ You can also build the wheel by yourself.
26
+ ```shell
27
+ # sudo apt install ocl-icd-opencl-dev cmake build-essential
28
+ get clone --recurse-submodules https://github.com/TianZerL/pyanime4k.git
29
+ cd pyanime4k
30
+ pip install scikit-build
31
+ python setup.py bdist_wheel
32
+ ```
33
+
34
+ # Usages
35
+ ## Printing Info
36
+ ```python
37
+ import pyanime4k
38
+
39
+ # Print supported model
40
+ pyanime4k.print_model_list()
41
+
42
+ # Print supported processor
43
+ pyanime4k.print_processor_list()
44
+
45
+ # Print supported devices for image processing
46
+ pyanime4k.print_device_list()
47
+ ```
48
+ ## Upscaling Images
49
+ ```python
50
+ import pyanime4k
51
+
52
+ # with OpenCL acceleration, if possible
53
+ processor_type = "opencl"
54
+
55
+ # upscale a single image
56
+ pyanime4k.upscale_images("image1.png", processor_type = processor_type)
57
+
58
+ # upscale a list of images
59
+ pyanime4k.upscale_images(["image1.png", "image2.png"], processor_type = processor_type)
60
+ ```
61
+ ## Manual Upscaling
62
+ ```python
63
+ import pyanime4k
64
+
65
+ # Create a processor
66
+ processor = pyanime4k.Processor(
67
+ processor_type="cpu",
68
+ device=0,
69
+ model="acnet-hdn0"
70
+ )
71
+ # Print processor info
72
+ print(processor)
73
+ # Read an image
74
+ src = pyanime4k.imread("image1.png")
75
+ # Process it
76
+ dst = processor(src=src, factor=2.0)
77
+ # Write to disk
78
+ pyanime4k.imwrite("image1_outout.png", dst)
79
+ ```
80
+ ## OpenCV
81
+ ``` Python
82
+ import cv2, pyanime4k
83
+
84
+ img = cv2.imread("image.png")
85
+
86
+ processor = pyanime4k.Processor(
87
+ processor_type="cpu",
88
+ device=0,
89
+ model="acnet-hdn0"
90
+ )
91
+
92
+ # opencv load image as BGR, but we need an RGB image
93
+ src = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
94
+
95
+ dst = processor(src)
96
+
97
+ img = cv2.cvtColor(dst, cv2.COLOR_RGB2BGR)
98
+
99
+ cv2.imshow("pyanime4k", img)
100
+ cv2.waitKey()
101
+ ```
102
+ ## Pillow
103
+ ```python
104
+ from PIL import Image
105
+ import numpy, pyanime4k
106
+
107
+ img = Image.open("D:/temp/p1.png")
108
+
109
+ processor = pyanime4k.Processor(
110
+ processor_type="cpu",
111
+ device=0,
112
+ model="acnet-hdn0"
113
+ )
114
+
115
+ # We need a numpy array
116
+ src = numpy.asarray(img)
117
+ dst = processor(src)
118
+ img = Image.fromarray(dst)
119
+
120
+ img.show()
121
+ ```
@@ -0,0 +1,13 @@
1
+ pyanime4k-3.1.0.dist-info/RECORD,,
2
+ pyanime4k-3.1.0.dist-info/LICENSE,sha256=wJMZpWm5ojx0KEyVZXTAAyjPdNXviJKnFBsmigFO2fo,1064
3
+ pyanime4k-3.1.0.dist-info/WHEEL,sha256=F4SZVz7brxcYqjwxObTzVdz4jiM5C-QYJCCSEab233c,104
4
+ pyanime4k-3.1.0.dist-info/top_level.txt,sha256=KxVm1dNU5ew2loJ2VSTl_3lkuv8_VWFpd0xSjcTtLqA,21
5
+ pyanime4k-3.1.0.dist-info/METADATA,sha256=WXdYbqe8OwwsoTek8Jt7YS48DZcfRdoHQTU_O3HSbfI,2521
6
+ pyanime4k/upscale.py,sha256=-lIgM_T9f4LnhRh8l-CmpCFFHAsc4C73Nm3uJaj-YHM,871
7
+ pyanime4k/__init__.py,sha256=5Vdb50W97jlexEOjoFAw-PV6TcQJlOSERiQ6XsSPO4s,63
8
+ pyanime4k/info.py,sha256=aQvVDiVUP4AdOiSd3vzQ7JKlLlPp0S5YRONv023vkDQ,455
9
+ pyanime4k/pyac/pyac.cpython-38-darwin.so,sha256=iCNdsZdh62vF_hWTwjv65Zdb_sH8oYldHDqFJKg-l8U,1726856
10
+ pyanime4k/pyac/__init__.py,sha256=ToW6KRji0d2mqDr4qKs9UjjHYD8r58PtI6vmd7B6PKI,25
11
+ pyanime4k/pyac/pyac/__init__.pyi,sha256=DWzGOg8p8iHQ8X82D7pqJzLvcxVahiZzvrMV99tDJm0,168
12
+ pyanime4k/pyac/pyac/core.pyi,sha256=dUrnpsYWfaYBNGmRzwcUYEwRaQXCeZjVILvJVOyHkFA,9003
13
+ pyanime4k/pyac/pyac/specs.pyi,sha256=6u6vN5UxlD32wmmU-13rtQXK25PrR7P7LgJlpOCQfaA,804
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: skbuild 0.18.1
3
+ Root-Is-Purelib: false
4
+ Tag: cp38-cp38-macosx_10_15_x86_64
5
+
@@ -0,0 +1,2 @@
1
+ Anime4KCPP
2
+ pyanime4k