ascii-art-python 2.0.0__tar.gz → 2.0.1__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.
- {ascii_art_python-2.0.0/src/ascii_art_python.egg-info → ascii_art_python-2.0.1}/PKG-INFO +3 -3
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/README.md +2 -2
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/pyproject.toml +1 -1
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python/__init__.py +1 -1
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1/src/ascii_art_python.egg-info}/PKG-INFO +3 -3
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/LICENSE +0 -0
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/MANIFEST.in +0 -0
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/setup.cfg +0 -0
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python/ascii_base.py +0 -0
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python/assets/fonts/GoogleSansCode-Regular.ttf +0 -0
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python/assets/fonts/KreativeSquareSM.ttf +0 -0
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python/cli.py +0 -0
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python/full_mode.py +0 -0
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python/new_skool.py +0 -0
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python/old_skool.py +0 -0
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python/tools.py +0 -0
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python.egg-info/SOURCES.txt +0 -0
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python.egg-info/dependency_links.txt +0 -0
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python.egg-info/entry_points.txt +0 -0
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python.egg-info/requires.txt +0 -0
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python.egg-info/top_level.txt +0 -0
- {ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/tests/test_ascii_api.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ascii_art_python
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: A Python library and CLI tool for converting images and videos into ASCII art.
|
|
5
5
|
Author-email: Guillem Prieur <prieurguillem38@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://gitlab.pprriieeuurr.fr/guill_prieur/ascii-art-2
|
|
@@ -108,14 +108,14 @@ aap-echo my_image.jpg -m full_mode
|
|
|
108
108
|
|
|
109
109
|
```bash
|
|
110
110
|
# Export a video to ASCII (.mp4)
|
|
111
|
-
aap-export my_video.mp4 result.mp4 -
|
|
111
|
+
aap-export my_video.mp4 result.mp4 -h 100
|
|
112
112
|
```
|
|
113
113
|
|
|
114
114
|
### 2. Python Usageimport ascii_art_python as aap
|
|
115
115
|
|
|
116
116
|
```python
|
|
117
117
|
# Convert an image (Hybrid Mode)
|
|
118
|
-
img = aap.full_mode.Image.from_path("photo.jpg",
|
|
118
|
+
img = aap.full_mode.Image.from_path("photo.jpg", width=500)
|
|
119
119
|
print(img)
|
|
120
120
|
```
|
|
121
121
|
|
|
@@ -68,14 +68,14 @@ aap-echo my_image.jpg -m full_mode
|
|
|
68
68
|
|
|
69
69
|
```bash
|
|
70
70
|
# Export a video to ASCII (.mp4)
|
|
71
|
-
aap-export my_video.mp4 result.mp4 -
|
|
71
|
+
aap-export my_video.mp4 result.mp4 -h 100
|
|
72
72
|
```
|
|
73
73
|
|
|
74
74
|
### 2. Python Usageimport ascii_art_python as aap
|
|
75
75
|
|
|
76
76
|
```python
|
|
77
77
|
# Convert an image (Hybrid Mode)
|
|
78
|
-
img = aap.full_mode.Image.from_path("photo.jpg",
|
|
78
|
+
img = aap.full_mode.Image.from_path("photo.jpg", width=500)
|
|
79
79
|
print(img)
|
|
80
80
|
```
|
|
81
81
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ascii_art_python
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: A Python library and CLI tool for converting images and videos into ASCII art.
|
|
5
5
|
Author-email: Guillem Prieur <prieurguillem38@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://gitlab.pprriieeuurr.fr/guill_prieur/ascii-art-2
|
|
@@ -108,14 +108,14 @@ aap-echo my_image.jpg -m full_mode
|
|
|
108
108
|
|
|
109
109
|
```bash
|
|
110
110
|
# Export a video to ASCII (.mp4)
|
|
111
|
-
aap-export my_video.mp4 result.mp4 -
|
|
111
|
+
aap-export my_video.mp4 result.mp4 -h 100
|
|
112
112
|
```
|
|
113
113
|
|
|
114
114
|
### 2. Python Usageimport ascii_art_python as aap
|
|
115
115
|
|
|
116
116
|
```python
|
|
117
117
|
# Convert an image (Hybrid Mode)
|
|
118
|
-
img = aap.full_mode.Image.from_path("photo.jpg",
|
|
118
|
+
img = aap.full_mode.Image.from_path("photo.jpg", width=500)
|
|
119
119
|
print(img)
|
|
120
120
|
```
|
|
121
121
|
|
|
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
|
{ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python.egg-info/requires.txt
RENAMED
|
File without changes
|
{ascii_art_python-2.0.0 → ascii_art_python-2.0.1}/src/ascii_art_python.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|