-
-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from sepandhaghighi/dev
Version 4.2
- Loading branch information
Showing
14 changed files
with
1,540 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers. | |
## Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be | ||
reported by contacting the project team at [email protected]. All | ||
reported by contacting the project team at [email protected]. All | ||
complaints will be reviewed and investigated and will result in a response that | ||
is deemed necessary and appropriate to the circumstances. The project team is | ||
obligated to maintain confidentiality with regard to the reporter of an incident. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"### Version : 4.1" | ||
"### Version : 4.2" | ||
] | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
</a> | ||
<a href="https://badge.fury.io/py/art"><img src="https://badge.fury.io/py/art.svg" alt="PyPI version" height="18"></a> | ||
<a href="https://www.python.org/"><img src="https://img.shields.io/badge/built%20with-Python3-green.svg" alt="built with Python3" /></a> | ||
<a href="https://github.com/sepandhaghighi/art/blob/master/FontList.ipynb"><img src="https://img.shields.io/badge/Font List-481-blue.svg"></a> | ||
<a href="https://github.com/sepandhaghighi/art/blob/master/FontList.ipynb"><img src="https://img.shields.io/badge/Font List-495-blue.svg"></a> | ||
<a href="https://github.com/sepandhaghighi/art/blob/master/ArtList.ipynb"><img src="https://img.shields.io/badge/Art List-370-orange.svg"></a> | ||
<a href="https://t.me/artlib_bot" target="__blank"><img src="https://img.shields.io/badge/Telegram-Bot-red.svg"></a> | ||
<a href="https://anaconda.org/sepandhaghighi/art"><img src="https://anaconda.org/sepandhaghighi/art/badges/version.svg"></a> | ||
|
@@ -65,7 +65,7 @@ ART is a Python lib for text converting to ASCII art fancy. ;-) | |
</tr> | ||
<tr> | ||
<td align="center">Font Counter</td> | ||
<td align="center">481</td> | ||
<td align="center">495</td> | ||
</tr> | ||
<tr> | ||
<td align="center">1-Line-Art Counter</td> | ||
|
@@ -171,7 +171,9 @@ art.art.artError: number should have int type | |
'ዞᏜ℘℘Ꮍ ℬℹℛʈዞᗬᏜᎽ ' | ||
>>> randart() | ||
'✌(◕‿-)✌ ' | ||
``` | ||
``` | ||
|
||
* Note : Use `ART_NAMES` to access all arts name list (new in `Version 4.2`) | ||
|
||
### ASCII text | ||
|
||
|
@@ -335,6 +337,9 @@ Filename: test.txt | |
|
||
``` | ||
|
||
* Note : Use `FONT_NAMES` to access all fonts name list (new in `Version 4.2`) | ||
|
||
|
||
### Font modes | ||
|
||
These modes are available for `text2art`, `tprint` & `tsave`. | ||
|
@@ -722,7 +727,7 @@ ART can be used online in interactive Jupyter Notebooks via the Binder service! | |
## Issues & bug reports | ||
|
||
Just fill an issue and describe it. I'll check it ASAP! | ||
or send an email to [[email protected]](mailto:[email protected] "[email protected]"). | ||
or send an email to [[email protected]](mailto:[email protected] "[email protected]"). | ||
|
||
* Please complete the issue template | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Art modules.""" | ||
from .art import * | ||
from .art import artError | ||
from .art import aprint, art, randart | ||
from .art import tprint, tsave, text2art | ||
from .art import get_font_dic, set_default, help_func, art_list, font_list | ||
from .art_param import ART_VERSION, FONT_NAMES, ART_NAMES, ART_COUNTER, FONT_COUNTER, DEFAULT_FONT | ||
__version__ = ART_VERSION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.