Originally posted on: https://old.reddit.com/r/WutheringWaves/comments/1esf3g8/wuthering_waves_manual_update_pc/
Important: You must have Python
: https://www.python.org/downloads/ installed to run py file.
- Download WuWa_Manual_Download_URLs.py.
Originally posted on: https://old.reddit.com/r/WutheringWaves/comments/1esf3g8/wuthering_waves_manual_update_pc/
Important: You must have Python
: https://www.python.org/downloads/ installed to run py file.
#!/usr/bin/env python3 | |
# Author: Sean Pesce | |
# References: | |
# https://stackoverflow.com/questions/19705785/python-3-simple-https-server | |
# https://docs.python.org/3/library/ssl.html | |
# https://docs.python.org/3/library/http.server.html | |
# Shell command to create a self-signed TLS certificate and private key: | |
# openssl req -new -newkey rsa:4096 -x509 -sha256 -days 365 -nodes -out cert.crt -keyout private.key |
#!/bin/bash | |
# Heith Seewald 2012 | |
# Garoe Dorta 2015 | |
# Luca Weiss 2015 | |
# Also based on https://gist.github.com/MichaelLawton/ee27bf4a0f591bed19ac | |
# Feel free to extend/modify to meet your needs. | |
#### Lets run a few checks to make sure things work as expected. | |
#Make sure we’re running with root permissions. | |
if [ `whoami` != root ]; then |
#!/usr/bin/env python3 | |
"""Simple HTTP Server With Upload. | |
This module builds on BaseHTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straightforward manner. | |
see: https://gist.github.com/UniIsland/3346170 | |
""" | |