Skip to content

Instantly share code, notes, and snippets.

@Anton-V-K
Anton-V-K / OTP.py
Created November 26, 2025 13:33
Python script to parse operations from OTP bank statement
# This script extracts operations from the statement (saved from online.otpbank.ru),
# and prints only the ones with bonuses
# Setup:
# a) install Python3
# b) pip install BeautifulSoup4
# Guide:
# 1. Go to online.otpbank.ru
# 2. Select the card
@Anton-V-K
Anton-V-K / apkcheck.py
Last active September 17, 2025 09:20
Python script to check validity of APK-files in a directory
# pip install apkutils2
import os
import sys
from apkutils2 import APK
def check_apk(apk_path):
apk = APK(apk_path)
manifest = apk.get_manifest()