Skip to content

Commit 59a0181

Browse files
committed
Updating links
1 parent b445027 commit 59a0181

24 files changed

+2551
-2459
lines changed

.gitignore

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
# Build
2+
*.exe
3+
*.ilk
4+
*.pdb
5+
*.exp
6+
*.res
7+
*.out
8+
*.def
9+
*.obj
10+
*.iobj
11+
*.o
12+
13+
# Logs
14+
*.log
15+
*.logs
16+
*.tlog
17+
18+
# IDE
19+
.vscode/
20+
.vs/
21+
22+
# Visual Studio
23+
.idea/
24+
*.recipe
25+
*.idb
26+
27+
# Visual Studio for Mac
28+
.idea/
29+
30+
# Visual Studio cache files
31+
ipch/
32+
*.dbmdl
33+
*.dbproj.schemaview
34+
35+
# Others
36+
.builds
37+
*~*
38+
*.cache
39+
*.swp
40+
*.bak
41+
*.tmp
42+
*.swp
43+
*.userosscache
44+
*.err
45+
*.vspscc
46+
*.vssscc
47+
*.pidb
48+
*.svclog
49+
*.scc
50+
51+
# NuGet
52+
packages/
53+
!packages/repositories.config
54+
*.nupkg
55+
56+
# Microsoft Azure Build Output
57+
csx/
58+
*.build.csdef
59+
60+
# User-specific files
61+
*.suo
62+
*.user
63+
*.userprefs
64+
*.sln.docstates
65+
66+
# Python
67+
__pycache__/
68+
dist/
69+
webui2.egg-info/
70+
71+
# Rust
72+
target/
73+
*.lock
74+
75+
# Broken NTFS
76+
nul
77+
78+
# Zig
79+
zig-cache/
80+
zig-out/
81+
82+
# macOS
83+
.DS_Store
84+
.DS_Store?
85+
._*
86+
.Spotlight-V100
87+
.Trashes
88+
ehthumbs.db
89+
Thumbs.db
90+
91+
# User-specific private settings
92+
*.DotSettings.user

PyPI/Package/LICENSE

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
MIT License
2-
3-
Copyright (c) 2023 Albert Shown
4-
5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
11-
12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
14-
15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
1+
MIT License
2+
3+
Copyright (c) 2023 Albert Shown
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

PyPI/Package/README.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
# WebUI
2-
3-
Use any web browser as GUI, with Python in the backend and HTML5 in the frontend, all in a lightweight portable lib.
4-
5-
* [Online Documentation](https://webui.me/docs/#/python_api)
6-
7-
```sh
8-
pip install webui2
9-
```
10-
11-
```python
12-
from webui import webui
13-
14-
def my_function(e : webui.event)
15-
print("Hi!, You clicked on " + e.element + " element")
16-
17-
MyWindow = webui.window()
18-
MyWindow.bind("MyID", my_function)
19-
MyWindow.show("<html>Hello World</html>")
20-
webui.wait()
21-
```
22-
23-
```sh
24-
python test.py
25-
```
26-
27-
![ScreenShot](https://raw.githubusercontent.com/webui-dev/webui/main/screenshot.png)
1+
# WebUI
2+
3+
Use any web browser as GUI, with Python in the backend and HTML5 in the frontend, all in a lightweight portable lib.
4+
5+
* [Online Documentation](https://webui.me/docs/#/python_api)
6+
7+
```sh
8+
pip install webui2
9+
```
10+
11+
```python
12+
from webui import webui
13+
14+
def my_function(e : webui.event)
15+
print("Hi!, You clicked on " + e.element + " element")
16+
17+
MyWindow = webui.window()
18+
MyWindow.bind("MyID", my_function)
19+
MyWindow.show("<html>Hello World</html>")
20+
webui.wait()
21+
```
22+
23+
```sh
24+
python test.py
25+
```
26+
27+
![ScreenShot](https://raw.githubusercontent.com/webui-dev/python-webui/main/screenshot.png)

PyPI/Package/pyproject.toml

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
[build-system]
2-
requires = ["setuptools>=61.0", "wheel"]
3-
build-backend = "setuptools.build_meta"
4-
5-
[project]
6-
name = "webui2"
7-
version = "2.3.0.0"
8-
authors = [
9-
{ name="Hassan Draga" },
10-
]
11-
description = "Use any web browser as GUI"
12-
readme = "README.md"
13-
requires-python = ">=3.7"
14-
classifiers = [
15-
"Programming Language :: Python :: 3",
16-
"License :: OSI Approved :: MIT License",
17-
"Operating System :: OS Independent",
18-
]
19-
20-
[project.urls]
21-
"Homepage" = "https://github.com/webui-dev/webui"
22-
"Bug Tracker" = "https://github.com/webui-dev/webui/issues"
23-
24-
[tool.setuptools]
25-
include-package-data = true
26-
27-
[tool.setuptools.packages.find]
28-
where = ["src"]
29-
30-
[tool.setuptools.package-data]
31-
webui = ["*.dll", "*.so", "*.dyn"]
1+
[build-system]
2+
requires = ["setuptools>=61.0", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "webui2"
7+
version = "2.3.0.0"
8+
authors = [
9+
{ name="Hassan Draga" },
10+
]
11+
description = "Use any web browser as GUI"
12+
readme = "README.md"
13+
requires-python = ">=3.7"
14+
classifiers = [
15+
"Programming Language :: Python :: 3",
16+
"License :: OSI Approved :: MIT License",
17+
"Operating System :: OS Independent",
18+
]
19+
20+
[project.urls]
21+
"Homepage" = "https://github.com/webui-dev/python-webui"
22+
"Bug Tracker" = "https://github.com/webui-dev/python-webui/issues"
23+
24+
[tool.setuptools]
25+
include-package-data = true
26+
27+
[tool.setuptools.packages.find]
28+
where = ["src"]
29+
30+
[tool.setuptools.package-data]
31+
webui = ["*.dll", "*.so", "*.dyn"]

0 commit comments

Comments
 (0)