Skip to content

Commit f509405

Browse files
committed
Initial commit
1 parent d3b348d commit f509405

File tree

466 files changed

+57607
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

466 files changed

+57607
-0
lines changed

Kivy/main.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
3+
4+
from kivymd.app import MDApp
5+
from kivymd.uix.label import MDLabel, MDIcon
6+
7+
class Demo(MDApp):
8+
def build(self):
9+
label = MDLabel(text="Hello world", halign="center", theme_text_color="Custom",
10+
text_color=(0, 0, 1, 1))
11+
12+
icon_label = MDIcon(icon="Library-video", halign="center")
13+
return icon_label
14+
Demo().run()
37.8 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2020 Nattōsai Mitō
2+
3+
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:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
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.
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
Metadata-Version: 2.1
2+
Name: asyncgui
3+
Version: 0.6.3
4+
Summary: A thin layer that helps to wrap a callback-style API in an async/await-style API
5+
Home-page: https://github.com/gottadiveintopython/asyncgui
6+
License: MIT
7+
Keywords: async
8+
Author: Nattōsai Mitō
9+
Author-email: [email protected]
10+
Requires-Python: >=3.8.1,<4.0.0
11+
Classifier: Development Status :: 5 - Production/Stable
12+
Classifier: Intended Audience :: Developers
13+
Classifier: License :: OSI Approved :: MIT License
14+
Classifier: Operating System :: OS Independent
15+
Classifier: Programming Language :: Python
16+
Classifier: Programming Language :: Python :: 3
17+
Classifier: Programming Language :: Python :: 3.9
18+
Classifier: Programming Language :: Python :: 3.10
19+
Classifier: Programming Language :: Python :: 3.11
20+
Classifier: Programming Language :: Python :: 3.12
21+
Classifier: Programming Language :: Python :: 3.8
22+
Classifier: Topic :: Software Development :: Libraries
23+
Requires-Dist: exceptiongroup (>=1.0.4,<2.0.0) ; python_version < "3.11"
24+
Project-URL: Repository, https://github.com/gottadiveintopython/asyncgui
25+
Description-Content-Type: text/markdown
26+
27+
# AsyncGui
28+
29+
A thin layer that helps to wrap a callback-style API in an async/await-style API.
30+
31+
An async library that focuses on fast reaction.
32+
33+
[Documentation](https://asyncgui.github.io/asyncgui/)
34+
35+
## Installation
36+
37+
Pin the minor version.
38+
39+
```text
40+
poetry add asyncgui@~0.6
41+
pip install "asyncgui>=0.6,<0.7"
42+
```
43+
44+
## Tested on
45+
46+
- CPython 3.8
47+
- CPython 3.9
48+
- CPython 3.10
49+
- CPython 3.11
50+
- CPython 3.12 (3.12.1 or later)
51+
52+
## Async libraries that rely on this
53+
54+
- [asynckivy](https://github.com/asyncgui/asynckivy)
55+
- [asynctkinter](https://github.com/asyncgui/asynctkinter)
56+
- [asyncpygame](https://github.com/asyncgui/asyncpygame)
57+
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
__pycache__/asyncgui.cpython-312.pyc,,
2+
asyncgui-0.6.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
3+
asyncgui-0.6.3.dist-info/LICENSE,sha256=zdEfMrLu9-uJk1Y-D7fn_gqgODq71StrNs47LvNE5b0,1055
4+
asyncgui-0.6.3.dist-info/METADATA,sha256=OTiDgXiKJm39p7OP5DZQ6ZtiY6UU2tawUD1QfFIvbFs,1729
5+
asyncgui-0.6.3.dist-info/RECORD,,
6+
asyncgui-0.6.3.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
7+
asyncgui.py,sha256=89sbdDMVyRooyYsy7IqG7cLm8DJVY5U67K1kYQngBGE,27963
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Wheel-Version: 1.0
2+
Generator: poetry-core 1.6.1
3+
Root-Is-Purelib: true
4+
Tag: py3-none-any

0 commit comments

Comments
 (0)