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 February 23, 2026 22:58
Python script to check validity of APK-files in a directory
# V4 (c) https://chatgpt.com/share/6991a15b-fb88-8001-bf63-7fb85a816328
# Patch 1: less androguard diagnostics messages
# Patch 2: better splits detection
# pip install androguard
import os
import argparse
from androguard.core.apk import APK
from androguard.util import set_log