RXSM update server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

10 lines
375B

  1. import requests
  2. raw_token = input('token password: ')
  3. url = input('update server: ')+'/release'
  4. version = input('version: ')
  5. platform = input('platform: ')
  6. download_url = input('download link: ')
  7. release_resp = requests.post(url, json={'token':raw_token, 'version':version, 'platform':platform, 'url':download_url})
  8. print(release_resp.status_code)
  9. print(release_resp.json())