Skip to content

Instantly share code, notes, and snippets.

View arm64v9a's full-sized avatar
:octocat:
¯\_(ツ)_/¯

Dead Angel arm64v9a

:octocat:
¯\_(ツ)_/¯
View GitHub Profile
@arm64v9a
arm64v9a / rustore.md
Created October 30, 2025 14:49 — forked from oldnomad/rustore.md
RuStore API

RuStore API for application installation

  • URL for human-readable application info page has format https://www.rustore.ru/catalog/app/{packageName}.
  • Application info as a JSON object is available at URL https://backapi.rustore.ru/applicationData/overallInfo/{packageName}.
  • APK reference URL is https://backapi.rustore.ru/applicationData/download-link. It accepts only POST requests (see below).

Application info

Application info JSON object has following fields:

  • code: contains string OK (on success).
@arm64v9a
arm64v9a / status.py
Last active May 15, 2024 21:09
Minecraft server 1.4.X - 1.5.X status python script
# https://wiki.vg/Server_List_Ping#1.4_to_1.5
import socket
def parse_motd(inp):
"""Delete the § symbol"""
motd = ''
n = False
for char in inp:
if char == '§' or n: