From eaba311f2d6a024094b902711e50446058f8dfef Mon Sep 17 00:00:00 2001 From: Ben Joyner Date: Mon, 27 Jan 2020 19:56:17 -0500 Subject: [PATCH] Initial Commit --- README.md | 11 +++++++++++ requirements.txt | 4 ++++ surviv.io.py | 4 ++++ 3 files changed, 19 insertions(+) create mode 100644 README.md create mode 100644 requirements.txt create mode 100644 surviv.io.py diff --git a/README.md b/README.md new file mode 100644 index 0000000..be5b501 --- /dev/null +++ b/README.md @@ -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` diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..a48fe57 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +PyQt5==5.14.1 +PyQt5-sip==12.7.0 +PyQtWebEngine==5.14.0 +pywebview==3.2 diff --git a/surviv.io.py b/surviv.io.py new file mode 100644 index 0000000..5bf9ae0 --- /dev/null +++ b/surviv.io.py @@ -0,0 +1,4 @@ +#!/usr/bin/python3 +import webview +webview.create_window('Surviv.io', 'https://surviv.io', fullscreen=True) +webview.start(gui='qt')