-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ben Joyner
committed
Jan 28, 2020
0 parents
commit eaba311
Showing
3 changed files
with
19 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
![surviv.io](https://crazynite-io.com/img/surviv-io.jpg) | ||
|
||
# Surviv.io Desktop | ||
|
||
A stand-alone desktop app for [surviv.io](https://surviv.io) written in python. | ||
|
||
# Requirements | ||
|
||
* Python 3 | ||
|
||
* `pip install --user -r requirements.txt` |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
PyQt5==5.14.1 | ||
PyQt5-sip==12.7.0 | ||
PyQtWebEngine==5.14.0 | ||
pywebview==3.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/python3 | ||
import webview | ||
webview.create_window('Surviv.io', 'https://surviv.io', fullscreen=True) | ||
webview.start(gui='qt') |