Name | inui JSON |
Version |
1.0.0.7
JSON |
| download |
home_page | https://github.com/MohammadrezaAmani/INUI/ |
Summary | Powerful and Highly Customizable Python Library for UI |
upload_time | 2024-11-24 19:07:28 |
maintainer | None |
docs_url | None |
author | Mohammadreza Amani |
requires_python | >=3.5 |
license | MIT License Copyright (c) 2023 Mohammadreza Amani Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
ui
python
html
framework
frontend
css
bootstrap
tailwind
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# INUI
<a href='https://inui.readthedocs.io/en/latest/?badge=latest'>
<img src='https://readthedocs.org/projects/inui/badge/?version=latest' alt='Documentation Status' />
</a>
<p align="center">
<a>
<img src="https://raw.githubusercontent.com/MohammadrezaAmani/INUI/main/assets/images/inui.png" alt="UniLand" width="256">
</a>
<br>
<b>Powerful and Highly Customizable Python Library for UI</b>
<br>
<a href="https://github.com/MohammadrezaAmani/INUI">
GitHub
</a>
•
<a href="#">
Documentation
</a>
•
<a href="https://t.me/PyINUI">
Channel
</a>
•
<a href="mailto:More.amani@yahoo.com">
Support
</a>
</p>
<br>
## Py INUI
**INUI** is a powerful and highly customizable Python language library for **UI**, which supports all the components and elements of the html markup language in [Python](https://python.org/), as well as the ability to use libraries such as [Bootstrap](https://getbootstrap.com/), etc. And it brings a new experience of easier work with frontend in Python.
### Contents
<!-- vscode-markdown-toc -->
- [INUI](#inui)
- [Py INUI](#py-inui)
- [Contents](#contents)
- [Requirements](#requirements)
- [**Python Compatibility**](#python-compatibility)
- [**Dependencies**](#dependencies)
- [How to Use?](#how-to-use)
- [Installation](#installation)
- [Syntax](#syntax)
- [Supported Elements](#supported-elements)
- [Supported Attributes for each Element](#supported-attributes-for-each-element)
- [LICENSE](#license)
<!-- vscode-markdown-toc-config
numbering=false
autoSave=true
/vscode-markdown-toc-config -->
<!-- /vscode-markdown-toc -->
### Requirements
#### **Python Compatibility**
This Library is written entirely in python. tested versions are `python 3.11, 3.10, 3.9, 3.8, 3.7` while older versions
should not cause any problem, we recommend using the latest version of `python3`.
#### **Dependencies**
This package requires the following packages:
- [BeautifulSoup](https://pypi.org/project/beautifulsoup4/ "BeautifulSoup4") - for Prettifing Code
### How to Use?
> read the [documentation](https://inui.readthedocs.io/en/latest/) for more information
#### Installation
Just run following command in the Terminal or CMD
```bash
pip install inui --upgrade
```
#### Syntax
The syntax of `INUI` package is very easy, you have some building blocks like HTML tags and you have to
order them to create a new bigger block and in the last, you have your full project.
Supppose that the you want to create `Hello World!` project. your buildin block is:
```python
H1("Hello World!")
```
Now you want to create application that contains `N` times `Hello World!`, in here we just put it in the
Body tag and use our python code to create our goal. See here:
```python
n = 10
list_of_h1 = [H1("Hello World!"+str(i)) for i in range(1,n+1) ]
Body(list_of_h1)
```
In the big picture we have some classes that take some values, first one is data that couldbe peice of text, or HTML code or another Elements
(if the lentgh of giving data is bigger than one, we have to put them in the list,tuple or set and after use them) and second one is attribues,
like this:
```python
output = Html(data=(
Comment("this is black door =`) "),
Head(
(
Title("Wiki Clone"),
Meta(charset="utf-8"),
Meta(
name="viewport",
content="width=device-width, initial-scale=1.0",
),
Link(rel="stylesheet", href="./style.css"),
)
),
Body(
(
Div(
(
Div(
(
H1("search wiki"),
Span("light", id="theme-toggler"),
),
classs="header-container",
)
),
classs="container",
),
Form(
(
Input(
typee="text", placeholder="search wiki", id="search-input"
),
Button(typee="submit", text="search",
id="search-button"),
),
id="search-form",
),
Div(id="search-results"),
Script(src="./script.js"),
),
),
),)
print(output)
```
### Supported Elements
| id | HTML | INUI | id | HTML | INUI | id | HTML | INUI |
| --- | ------------- | --------------- | --- | -------- | -------- | --- | -------- | -------- |
| 1 | '<> </> ' | BaseElement | 45 | figure | Figure | 89 | em | Em |
| 2 | </> | BaseVoidElement | 46 | font | Font | 90 | pre | Pre |
| 3 | !DOCTYPE html | Doctype | 47 | footer | Footer | 91 | progress | Progress |
| 4 | abbr | Abbr | 48 | form | Form | 92 | q | Q |
| 5 | acronym | Acronym | 49 | frame | Frame | 93 | rp | Rp |
| 6 | address | Address | 50 | frameset | Frameset | 94 | rt | Rt |
| 7 | a | A | 51 | head | Head | 95 | ruby | Ruby |
| 8 | applet | Applet | 52 | header | Header | 96 | s | S |
| 9 | area | Area | 53 | h1 | H1 | 97 | samp | Samp |
| 10 | article | Article | 54 | h2 | H2 | 98 | script | Script |
| 11 | aside | Aside | 55 | h3 | H3 | 99 | section | Section |
| 12 | audio | Audio | 56 | h4 | H4 | 100 | small | Small |
| 13 | base | Base | 57 | h5 | H5 | 101 | source | Source |
| 14 | basefont | Basefont | 58 | h6 | H6 | 102 | spacer | Spacer |
| 15 | bdi | Bdi | 59 | hgroup | Hgroup | 103 | span | Span |
| 16 | bdo | Bdo | 60 | hr | Hr | 104 | strike | Strike |
| 17 | bgsound | Bgsound | 61 | html | Html | 105 | strong | Strong |
| 18 | big | Big | 62 | iframe | Iframe | 106 | style | Style |
| 19 | blockquote | Blockquote | 63 | img | Img | 107 | sub | Sub |
| 20 | body | Body | 64 | input | Input | 108 | sup | Sup |
| 21 | b | B | 65 | ins | Ins | 109 | summary | Summary |
| 22 | br | Br | 66 | isindex | Isindex | 110 | svg | Svg |
| 23 | button | Button | 67 | i | I | 111 | table | Table |
| 24 | caption | Caption | 68 | kbd | Kbd | 112 | tbody | Tbody |
| 25 | canvas | Canvas | 69 | keygen | Keygen | 113 | td | Td |
| 26 | center | Center | 70 | label | Label | 114 | template | Template |
| 27 | cite | Cite | 71 | legend | Legend | 115 | tfoot | Tfoot |
| 28 | code | Code | 72 | li | Li | 116 | th | Th |
| 29 | colgroup | Colgroup | 73 | main | Main | 117 | thead | Thead |
| 30 | col | Col | 74 | mark | Mark | 118 | time | Time |
| 31 | comment | Comment | 75 | marquee | Marquee | 119 | title | Title |
| 32 | data | Data | 76 | menuitem | Menuitem | 120 | tr | Tr |
| 33 | datalist | Datalist | 77 | meta | Meta | 121 | track | Track |
| 34 | dd | Dd | 78 | meter | Meter | 122 | tt | Tt |
| 35 | dfn | Dfn | 79 | nav | Nav | 123 | u | U |
| 36 | del | Del | 80 | nobr | Nobr | 124 | var | Var |
| 37 | details | Details | 81 | noembed | Noembed | 125 | video | Video |
| 38 | dialog | Dialog | 82 | noscript | Noscript | 126 | wbr | Wbr |
| 39 | dir | Dir | 83 | object | Object | 127 | xmp | Xmp |
| 40 | div | Div | 84 | ol | Ol |
| 41 | dl | Dl | 85 | optgroup | Optgroup |
| 42 | embed | Embed | 86 | option | Option |
| 43 | fieldset | Fieldset | 87 | output | Output |
| 44 | figcaption | Figcaption | 88 | p | P |
### Supported Attributes for each Element
| id | HTML | INUI | id | HTML | INUI | id | HTML | INUI |
| --- | --------------- | --------------- | --- | --------------------- | --------------------- | --- | ---------------- | ---------------- |
| 1 | class | classs | 22 | itemid | itemid | 89 | elementtiming | elementtiming |
| 2 | id | id | 23 | itemprop | itemprop | 90 | for | forr |
| 3 | src | src | 24 | itemref | itemref | 91 | max | max |
| 4 | name | name | 25 | itemscope | itemscope | 92 | maxlength | maxlength |
| 5 | content | content | 26 | itemtype | itemtype | 93 | min | min |
| 6 | charset | charset | 27 | lang | lang | 94 | minlength | minlength |
| 7 | style | style | 28 | nonce | nonce | 95 | multiple | multiple |
| 8 | href | href | 29 | part | part | 96 | pattern | pattern |
| 9 | autocapitalize | autocapitalize | 30 | popover | popover | 97 | readonly | readonly |
| 10 | accesskey | accesskey | 31 | slot | slot | 98 | rel | rel |
| 11 | accessskey | accessskey | 32 | spellcheck | spellcheck | 99 | required | required |
| 12 | autofocus | autofocus | 33 | tabindex | tabindex | 100 | size | size |
| 13 | contenteditable | contenteditable | 34 | title | title | 101 | step | step |
| 14 | dir | dir | 35 | translate | translate | 102 | typee | typee |
| 15 | draggable | draggable | 36 | virtualkeyboardpolicy | virtualkeyboardpolicy | 103 | placeholder | placeholder |
| 16 | enterkeyhint | enterkeyhint | 37 | accept | accept | 104 | text | text |
| 17 | exportparts | exportparts | 38 | autocomplete | autocomplete | 105 | scope | scope |
| 18 | hidden | hidden | 39 | capture | capture | 106 | colspan | colspan |
| 19 | inert | inert | 40 | crossorigin | crossorigin | 107 | aria-describedby | aria_describedby |
| 20 | inputmode | inputmode | 41 | dirname | dirname | 108 | aria-label | aria_label |
| 21 | is | iss | 42 | disabled | disabled | 109 | selected | selected |
### LICENSE
Distributed under the MIT License. See `LICENSE` for more information.
Raw data
{
"_id": null,
"home_page": "https://github.com/MohammadrezaAmani/INUI/",
"name": "inui",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.5",
"maintainer_email": null,
"keywords": "ui, python, html, framework, frontend, css, bootstrap, tailwind",
"author": "Mohammadreza Amani",
"author_email": "Mohammadreza Amani <more.amani@yahoo.com>",
"download_url": "https://files.pythonhosted.org/packages/7c/f2/25d14b4ceeb72f8c140b2e67e734c65e2c7d1d70db3bbbeee878fdc24958/inui-1.0.0.7.tar.gz",
"platform": null,
"description": "# INUI\n\n<a href='https://inui.readthedocs.io/en/latest/?badge=latest'>\n <img src='https://readthedocs.org/projects/inui/badge/?version=latest' alt='Documentation Status' />\n</a>\n\n<p align=\"center\">\n <a>\n <img src=\"https://raw.githubusercontent.com/MohammadrezaAmani/INUI/main/assets/images/inui.png\" alt=\"UniLand\" width=\"256\">\n </a>\n <br>\n <b>Powerful and Highly Customizable Python Library for UI</b>\n <br>\n <a href=\"https://github.com/MohammadrezaAmani/INUI\">\n GitHub\n </a>\n \u2022\n <a href=\"#\">\n Documentation\n </a>\n \u2022\n <a href=\"https://t.me/PyINUI\">\n Channel\n </a>\n \u2022\n <a href=\"mailto:More.amani@yahoo.com\">\n Support\n </a>\n</p>\n\n<br>\n\n## Py INUI\n\n**INUI** is a powerful and highly customizable Python language library for **UI**, which supports all the components and elements of the html markup language in [Python](https://python.org/), as well as the ability to use libraries such as [Bootstrap](https://getbootstrap.com/), etc. And it brings a new experience of easier work with frontend in Python.\n\n### Contents\n\n<!-- vscode-markdown-toc -->\n\n- [INUI](#inui)\n - [Py INUI](#py-inui)\n - [Contents](#contents)\n - [Requirements](#requirements)\n - [**Python Compatibility**](#python-compatibility)\n - [**Dependencies**](#dependencies)\n - [How to Use?](#how-to-use)\n - [Installation](#installation)\n - [Syntax](#syntax)\n - [Supported Elements](#supported-elements)\n - [Supported Attributes for each Element](#supported-attributes-for-each-element)\n - [LICENSE](#license)\n\n<!-- vscode-markdown-toc-config\n\tnumbering=false\n\tautoSave=true\n\t/vscode-markdown-toc-config -->\n\n<!-- /vscode-markdown-toc -->\n\n### Requirements\n\n#### **Python Compatibility**\n\nThis Library is written entirely in python. tested versions are `python 3.11, 3.10, 3.9, 3.8, 3.7` while older versions\nshould not cause any problem, we recommend using the latest version of `python3`.\n\n#### **Dependencies**\n\nThis package requires the following packages:\n\n- [BeautifulSoup](https://pypi.org/project/beautifulsoup4/ \"BeautifulSoup4\") - for Prettifing Code\n\n### How to Use?\n\n> read the [documentation](https://inui.readthedocs.io/en/latest/) for more information\n\n#### Installation\n\nJust run following command in the Terminal or CMD\n\n```bash\npip install inui --upgrade\n```\n\n#### Syntax\n\nThe syntax of `INUI` package is very easy, you have some building blocks like HTML tags and you have to\norder them to create a new bigger block and in the last, you have your full project.\n\nSupppose that the you want to create `Hello World!` project. your buildin block is:\n\n```python\nH1(\"Hello World!\")\n```\n\nNow you want to create application that contains `N` times `Hello World!`, in here we just put it in the\nBody tag and use our python code to create our goal. See here:\n\n```python\nn = 10\nlist_of_h1 = [H1(\"Hello World!\"+str(i)) for i in range(1,n+1) ]\nBody(list_of_h1)\n\n```\n\nIn the big picture we have some classes that take some values, first one is data that couldbe peice of text, or HTML code or another Elements\n(if the lentgh of giving data is bigger than one, we have to put them in the list,tuple or set and after use them) and second one is attribues,\nlike this:\n\n```python\noutput = Html(data=(\n Comment(\"this is black door =`) \"),\n Head(\n (\n Title(\"Wiki Clone\"),\n Meta(charset=\"utf-8\"),\n Meta(\n name=\"viewport\",\n content=\"width=device-width, initial-scale=1.0\",\n ),\n Link(rel=\"stylesheet\", href=\"./style.css\"),\n )\n ),\n Body(\n (\n\n Div(\n (\n Div(\n (\n H1(\"search wiki\"),\n Span(\"light\", id=\"theme-toggler\"),\n ),\n classs=\"header-container\",\n )\n ),\n classs=\"container\",\n ),\n Form(\n (\n Input(\n typee=\"text\", placeholder=\"search wiki\", id=\"search-input\"\n ),\n Button(typee=\"submit\", text=\"search\",\n id=\"search-button\"),\n ),\n id=\"search-form\",\n ),\n Div(id=\"search-results\"),\n Script(src=\"./script.js\"),\n ),\n ),\n),)\n\nprint(output)\n```\n\n### Supported Elements\n\n| id | HTML | INUI | id | HTML | INUI | id | HTML | INUI |\n| --- | ------------- | --------------- | --- | -------- | -------- | --- | -------- | -------- |\n| 1 | '<> </> ' | BaseElement | 45 | figure | Figure | 89 | em | Em |\n| 2 | </> | BaseVoidElement | 46 | font | Font | 90 | pre | Pre |\n| 3 | !DOCTYPE html | Doctype | 47 | footer | Footer | 91 | progress | Progress |\n| 4 | abbr | Abbr | 48 | form | Form | 92 | q | Q |\n| 5 | acronym | Acronym | 49 | frame | Frame | 93 | rp | Rp |\n| 6 | address | Address | 50 | frameset | Frameset | 94 | rt | Rt |\n| 7 | a | A | 51 | head | Head | 95 | ruby | Ruby |\n| 8 | applet | Applet | 52 | header | Header | 96 | s | S |\n| 9 | area | Area | 53 | h1 | H1 | 97 | samp | Samp |\n| 10 | article | Article | 54 | h2 | H2 | 98 | script | Script |\n| 11 | aside | Aside | 55 | h3 | H3 | 99 | section | Section |\n| 12 | audio | Audio | 56 | h4 | H4 | 100 | small | Small |\n| 13 | base | Base | 57 | h5 | H5 | 101 | source | Source |\n| 14 | basefont | Basefont | 58 | h6 | H6 | 102 | spacer | Spacer |\n| 15 | bdi | Bdi | 59 | hgroup | Hgroup | 103 | span | Span |\n| 16 | bdo | Bdo | 60 | hr | Hr | 104 | strike | Strike |\n| 17 | bgsound | Bgsound | 61 | html | Html | 105 | strong | Strong |\n| 18 | big | Big | 62 | iframe | Iframe | 106 | style | Style |\n| 19 | blockquote | Blockquote | 63 | img | Img | 107 | sub | Sub |\n| 20 | body | Body | 64 | input | Input | 108 | sup | Sup |\n| 21 | b | B | 65 | ins | Ins | 109 | summary | Summary |\n| 22 | br | Br | 66 | isindex | Isindex | 110 | svg | Svg |\n| 23 | button | Button | 67 | i | I | 111 | table | Table |\n| 24 | caption | Caption | 68 | kbd | Kbd | 112 | tbody | Tbody |\n| 25 | canvas | Canvas | 69 | keygen | Keygen | 113 | td | Td |\n| 26 | center | Center | 70 | label | Label | 114 | template | Template |\n| 27 | cite | Cite | 71 | legend | Legend | 115 | tfoot | Tfoot |\n| 28 | code | Code | 72 | li | Li | 116 | th | Th |\n| 29 | colgroup | Colgroup | 73 | main | Main | 117 | thead | Thead |\n| 30 | col | Col | 74 | mark | Mark | 118 | time | Time |\n| 31 | comment | Comment | 75 | marquee | Marquee | 119 | title | Title |\n| 32 | data | Data | 76 | menuitem | Menuitem | 120 | tr | Tr |\n| 33 | datalist | Datalist | 77 | meta | Meta | 121 | track | Track |\n| 34 | dd | Dd | 78 | meter | Meter | 122 | tt | Tt |\n| 35 | dfn | Dfn | 79 | nav | Nav | 123 | u | U |\n| 36 | del | Del | 80 | nobr | Nobr | 124 | var | Var |\n| 37 | details | Details | 81 | noembed | Noembed | 125 | video | Video |\n| 38 | dialog | Dialog | 82 | noscript | Noscript | 126 | wbr | Wbr |\n| 39 | dir | Dir | 83 | object | Object | 127 | xmp | Xmp |\n| 40 | div | Div | 84 | ol | Ol |\n| 41 | dl | Dl | 85 | optgroup | Optgroup |\n| 42 | embed | Embed | 86 | option | Option |\n| 43 | fieldset | Fieldset | 87 | output | Output |\n| 44 | figcaption | Figcaption | 88 | p | P |\n\n### Supported Attributes for each Element\n\n| id | HTML | INUI | id | HTML | INUI | id | HTML | INUI |\n| --- | --------------- | --------------- | --- | --------------------- | --------------------- | --- | ---------------- | ---------------- |\n| 1 | class | classs | 22 | itemid | itemid | 89 | elementtiming | elementtiming |\n| 2 | id | id | 23 | itemprop | itemprop | 90 | for | forr |\n| 3 | src | src | 24 | itemref | itemref | 91 | max | max |\n| 4 | name | name | 25 | itemscope | itemscope | 92 | maxlength | maxlength |\n| 5 | content | content | 26 | itemtype | itemtype | 93 | min | min |\n| 6 | charset | charset | 27 | lang | lang | 94 | minlength | minlength |\n| 7 | style | style | 28 | nonce | nonce | 95 | multiple | multiple |\n| 8 | href | href | 29 | part | part | 96 | pattern | pattern |\n| 9 | autocapitalize | autocapitalize | 30 | popover | popover | 97 | readonly | readonly |\n| 10 | accesskey | accesskey | 31 | slot | slot | 98 | rel | rel |\n| 11 | accessskey | accessskey | 32 | spellcheck | spellcheck | 99 | required | required |\n| 12 | autofocus | autofocus | 33 | tabindex | tabindex | 100 | size | size |\n| 13 | contenteditable | contenteditable | 34 | title | title | 101 | step | step |\n| 14 | dir | dir | 35 | translate | translate | 102 | typee | typee |\n| 15 | draggable | draggable | 36 | virtualkeyboardpolicy | virtualkeyboardpolicy | 103 | placeholder | placeholder |\n| 16 | enterkeyhint | enterkeyhint | 37 | accept | accept | 104 | text | text |\n| 17 | exportparts | exportparts | 38 | autocomplete | autocomplete | 105 | scope | scope |\n| 18 | hidden | hidden | 39 | capture | capture | 106 | colspan | colspan |\n| 19 | inert | inert | 40 | crossorigin | crossorigin | 107 | aria-describedby | aria_describedby |\n| 20 | inputmode | inputmode | 41 | dirname | dirname | 108 | aria-label | aria_label |\n| 21 | is | iss | 42 | disabled | disabled | 109 | selected | selected |\n\n### LICENSE\n\nDistributed under the MIT License. See `LICENSE` for more information.\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2023 Mohammadreza Amani Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
"summary": "Powerful and Highly Customizable Python Library for UI",
"version": "1.0.0.7",
"project_urls": {
"Homepage": "https://github.com/MohammadrezaAmani/"
},
"split_keywords": [
"ui",
" python",
" html",
" framework",
" frontend",
" css",
" bootstrap",
" tailwind"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "e0e0de114abeb5dfa9a52382470e75c9ca74411004c273f6fd5b46e6ac52019c",
"md5": "d9b061f98f4fe7bf1396adbef06964dc",
"sha256": "118b131526c162936bb821df473c1ad62df752739c94bb5a25c947b816265ff6"
},
"downloads": -1,
"filename": "inui-1.0.0.7-py3-none-any.whl",
"has_sig": false,
"md5_digest": "d9b061f98f4fe7bf1396adbef06964dc",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.5",
"size": 49942,
"upload_time": "2024-11-24T19:07:26",
"upload_time_iso_8601": "2024-11-24T19:07:26.967760Z",
"url": "https://files.pythonhosted.org/packages/e0/e0/de114abeb5dfa9a52382470e75c9ca74411004c273f6fd5b46e6ac52019c/inui-1.0.0.7-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7cf225d14b4ceeb72f8c140b2e67e734c65e2c7d1d70db3bbbeee878fdc24958",
"md5": "8b48ff6a2dc27db503fe02687fb5daf0",
"sha256": "df29167abcdffa59e9577d98ed5ed7243dfecfad845a06b62f8e9f376aad8aa7"
},
"downloads": -1,
"filename": "inui-1.0.0.7.tar.gz",
"has_sig": false,
"md5_digest": "8b48ff6a2dc27db503fe02687fb5daf0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.5",
"size": 49466,
"upload_time": "2024-11-24T19:07:28",
"upload_time_iso_8601": "2024-11-24T19:07:28.771329Z",
"url": "https://files.pythonhosted.org/packages/7c/f2/25d14b4ceeb72f8c140b2e67e734c65e2c7d1d70db3bbbeee878fdc24958/inui-1.0.0.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-24 19:07:28",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "MohammadrezaAmani",
"github_project": "INUI",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [],
"lcname": "inui"
}