eazy-ui


Nameeazy-ui JSON
Version 0.0.4 PyPI version JSON
download
home_pagehttps://github.com/Sysys242/Eazy-UI
SummaryMake beautifull ui easily
upload_time2022-12-28 13:38:09
maintainer
docs_urlNone
authorSysy's
requires_python>=3
license
keywords easy ui simple checker generator
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h2 align="center">Eazy-UI</h2>
<h3 align="center">Make your beautifull ui, simply</h3>
<br>

---
<br>
<p align="center">
  <img alt="Version" src="https://img.shields.io/badge/version-0.1-blue.svg?cacheSeconds=2592000" />
  <a href="https://github.com/Sysys242/Eazy-UI/blob/main/README.md" target="_blank">
    <img alt="Documentation" src="https://img.shields.io/badge/documentation-yes-brightgreen.svg" />
  </a>
  <a href="https://github.com/Sysys242/Eazy-UI" target="_blank">
    <img alt="Maintenance" src="https://img.shields.io/badge/Maintained%3F-yes-green.svg" />
  </a>
</p><br>

---

<h3 align="center">Installation</h3><br>

```
pip install eazy-ui
```

<h3 align="center">Ascii</h3><br>

```
from eazy_ui import *

Ascii.print("EazyUi", AsciiType.ALLIGATOR2) # print ascii
Ascii.get("EazyUi", AsciiType.ALLIGATOR2) # get ascii text
```
<img src="https://media.discordapp.net/attachments/1057393046855110716/1057618666591621130/image.png" width="40%">

<h3 align="center">Colors</h3><br>

_from pystyle_

```
from eazy_ui import *

print(Colors.red + "Hello")
```
<img src="https://media.discordapp.net/attachments/1057393046855110716/1057618959635066920/image.png" width="20%">

<h3 align="center">Center</h3><br>

_from pystyle_

```
from eazy_ui import *

print(Center.XCenter("Hello"))
```
<img src="https://media.discordapp.net/attachments/1057393046855110716/1057619416369594499/image.png" width="60%">

<h3 align="center">Console Output</h3><br>

```
from eazy_ui import *

Console.printSuccess("Hello", PrintType.FIRST)
```
<img src="https://media.discordapp.net/attachments/1057393046855110716/1057620369973968976/image.png" width="30%">

<h3 align="center">Refreshing Screen</h3><br>

```
from eazy_ui import *

refreshingScreen = RefreshingScreen(Ascii.get("EasyUI", AsciiType.ALLIGATOR2), "First", "Second", screenType=RefreshingScreenType.CENTERED)
refreshingScreen.start()

while True:
    time.sleep(1)
    refreshingScreen.updateValue(val2=int(refreshingScreen.val2)+1)
```
<img src="https://media.discordapp.net/attachments/1057393046855110716/1057621151486066698/image.png?width=1440&height=287" width="50%">


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Sysys242/Eazy-UI",
    "name": "eazy-ui",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3",
    "maintainer_email": "",
    "keywords": "easy,ui,simple,checker,generator",
    "author": "Sysy's",
    "author_email": "sysys.owo@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/57/e4/7ec02bd32a626b4a0d77ae8b7fd5183f9678b129cd54aa7a636dfbfbf065/eazy_ui-0.0.4.tar.gz",
    "platform": null,
    "description": "<h2 align=\"center\">Eazy-UI</h2>\n<h3 align=\"center\">Make your beautifull ui, simply</h3>\n<br>\n\n---\n<br>\n<p align=\"center\">\n  <img alt=\"Version\" src=\"https://img.shields.io/badge/version-0.1-blue.svg?cacheSeconds=2592000\" />\n  <a href=\"https://github.com/Sysys242/Eazy-UI/blob/main/README.md\" target=\"_blank\">\n    <img alt=\"Documentation\" src=\"https://img.shields.io/badge/documentation-yes-brightgreen.svg\" />\n  </a>\n  <a href=\"https://github.com/Sysys242/Eazy-UI\" target=\"_blank\">\n    <img alt=\"Maintenance\" src=\"https://img.shields.io/badge/Maintained%3F-yes-green.svg\" />\n  </a>\n</p><br>\n\n---\n\n<h3 align=\"center\">Installation</h3><br>\n\n```\npip install eazy-ui\n```\n\n<h3 align=\"center\">Ascii</h3><br>\n\n```\nfrom eazy_ui import *\n\nAscii.print(\"EazyUi\", AsciiType.ALLIGATOR2) # print ascii\nAscii.get(\"EazyUi\", AsciiType.ALLIGATOR2) # get ascii text\n```\n<img src=\"https://media.discordapp.net/attachments/1057393046855110716/1057618666591621130/image.png\" width=\"40%\">\n\n<h3 align=\"center\">Colors</h3><br>\n\n_from pystyle_\n\n```\nfrom eazy_ui import *\n\nprint(Colors.red + \"Hello\")\n```\n<img src=\"https://media.discordapp.net/attachments/1057393046855110716/1057618959635066920/image.png\" width=\"20%\">\n\n<h3 align=\"center\">Center</h3><br>\n\n_from pystyle_\n\n```\nfrom eazy_ui import *\n\nprint(Center.XCenter(\"Hello\"))\n```\n<img src=\"https://media.discordapp.net/attachments/1057393046855110716/1057619416369594499/image.png\" width=\"60%\">\n\n<h3 align=\"center\">Console Output</h3><br>\n\n```\nfrom eazy_ui import *\n\nConsole.printSuccess(\"Hello\", PrintType.FIRST)\n```\n<img src=\"https://media.discordapp.net/attachments/1057393046855110716/1057620369973968976/image.png\" width=\"30%\">\n\n<h3 align=\"center\">Refreshing Screen</h3><br>\n\n```\nfrom eazy_ui import *\n\nrefreshingScreen = RefreshingScreen(Ascii.get(\"EasyUI\", AsciiType.ALLIGATOR2), \"First\", \"Second\", screenType=RefreshingScreenType.CENTERED)\nrefreshingScreen.start()\n\nwhile True:\n    time.sleep(1)\n    refreshingScreen.updateValue(val2=int(refreshingScreen.val2)+1)\n```\n<img src=\"https://media.discordapp.net/attachments/1057393046855110716/1057621151486066698/image.png?width=1440&height=287\" width=\"50%\">\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Make beautifull ui easily",
    "version": "0.0.4",
    "split_keywords": [
        "easy",
        "ui",
        "simple",
        "checker",
        "generator"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "288ef52265ad0e70c006a6744e74a3dc",
                "sha256": "04b8a22d10655eff50d059f9908cbc0733a27006cd75b5933c5acd1deb40e8fe"
            },
            "downloads": -1,
            "filename": "eazy_ui-0.0.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "288ef52265ad0e70c006a6744e74a3dc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3",
            "size": 1850,
            "upload_time": "2022-12-28T13:38:07",
            "upload_time_iso_8601": "2022-12-28T13:38:07.658060Z",
            "url": "https://files.pythonhosted.org/packages/8f/71/acc7e31c66d36c0cb2d387eab5071ce285d7b86c7b1d73d15d210d7cacb9/eazy_ui-0.0.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "603bb22a47c50748a543a7b929235314",
                "sha256": "f878bebadcb60a074440eb4bbbd02c813ff4e0b36d7a96566296aa1a30501cc2"
            },
            "downloads": -1,
            "filename": "eazy_ui-0.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "603bb22a47c50748a543a7b929235314",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3",
            "size": 2353,
            "upload_time": "2022-12-28T13:38:09",
            "upload_time_iso_8601": "2022-12-28T13:38:09.395845Z",
            "url": "https://files.pythonhosted.org/packages/57/e4/7ec02bd32a626b4a0d77ae8b7fd5183f9678b129cd54aa7a636dfbfbf065/eazy_ui-0.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-28 13:38:09",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "Sysys242",
    "github_project": "Eazy-UI",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "eazy-ui"
}
        
Elapsed time: 0.03769s