From cae87b36d32e9b27f5211aacce22d60243c92e20 Mon Sep 17 00:00:00 2001 From: Saturneic Date: Mon, 11 Mar 2019 08:11:44 +0800 Subject: [PATCH] Initial commit --- .DS_Store | Bin 0 -> 6148 bytes .gitattributes | 2 + .gitignore | 114 ++++++++++++++++ .idea/giteasy.iml | 11 ++ .idea/misc.xml | 7 + .idea/modules.xml | 8 ++ .idea/workspace.xml | 318 +++++++++++++++++++++++++++++++++++++++++++ bin/activate | 76 +++++++++++ bin/activate.csh | 37 +++++ bin/activate.fish | 75 ++++++++++ bin/easy_install | 12 ++ bin/easy_install-3.7 | 12 ++ bin/pip | 12 ++ bin/pip3 | 12 ++ bin/pip3.7 | 12 ++ bin/pylupdate5 | 11 ++ bin/pyrcc5 | 11 ++ bin/python | Bin 0 -> 13620 bytes bin/python3 | Bin 0 -> 13620 bytes bin/pyuic5 | 11 ++ pip-selfcheck.json | 1 + pyvenv.cfg | 3 + server.py | 219 +++++++++++++++++++++++++++++ ssh.py | 26 ++++ 24 files changed, 990 insertions(+) create mode 100644 .DS_Store create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .idea/giteasy.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/workspace.xml create mode 100644 bin/activate create mode 100644 bin/activate.csh create mode 100644 bin/activate.fish create mode 100755 bin/easy_install create mode 100755 bin/easy_install-3.7 create mode 100755 bin/pip create mode 100755 bin/pip3 create mode 100755 bin/pip3.7 create mode 100755 bin/pylupdate5 create mode 100755 bin/pyrcc5 create mode 100755 bin/python create mode 100755 bin/python3 create mode 100755 bin/pyuic5 create mode 100644 pip-selfcheck.json create mode 100644 pyvenv.cfg create mode 100644 server.py create mode 100644 ssh.py diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..f0eaf5e71588e3fdb93340624cc0c03bb41a30af GIT binary patch literal 6148 zcmeHKO^ee&7=CA4w@C|9MQ{ZV0S|hpQt4_BUP9d!1VOQjd+;MBO>DDRI&a2mTH9NBBR)vp(}7HtFh7MCOH=XEO7=?{uE|>JSm@P5jG5O(HUoI9BV(jxgTN z)0%Clng)=G7z1)?KqCssS!3%8t$a6$WIZ=^nrHi=A9!xMANu)dFNk-eU>d}?(_3yHr1v>_FG(U0 zWZCuZg~7~ep1PjIxf{koD&ol)5B9^@PiDPj68o9ptKg!1$IVBGW1O>H3j-lC4by3E z&F7uYm6p}n?k-x^yxVQJtnJR##lkdR>Iip$5o%EhO)q5^8!8T<^;rWMc%Xa!ak;OB#d#L-r`lqil4Wa0?`tfE>N%KXm) z_pub(3YQYm0%Ot@C|#L)Vle5BdQ0(ag-eOjotS!jFx4|tFBB$vM|?}riP;i$t`*P< z6cwn*&nCbBcYpu>FFNTjt$N*w$ feid&a2}7I33qV`pQX*<#`j3E+L1$WlzpB6wUhLTt literal 0 HcmV?d00001 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dfe0770 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..510c73d --- /dev/null +++ b/.gitignore @@ -0,0 +1,114 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ diff --git a/.idea/giteasy.iml b/.idea/giteasy.iml new file mode 100644 index 0000000..6711606 --- /dev/null +++ b/.idea/giteasy.iml @@ -0,0 +1,11 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..9e13014 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..fd0648d --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..182caa1 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,318 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + self.remotes + + + + + + + + + true + DEFINITION_ORDER + + + + + + + + + + + + + + + + + +