Skip to content

Instantly share code, notes, and snippets.

@NetMan134
NetMan134 / Floorp Sidebery vertical tabs.md
Last active October 18, 2025 19:37
Floorp Sidebery vertical tabs
@NetMan134
NetMan134 / get_latest_app_version_appstore.py
Last active January 27, 2025 20:01
Retrieve latest iOS app version from Apple iTunes (AppStore) website.py
def get_app_version(app_id):
url = f'https://itunes.apple.com/lookup?id={app_id}'
response = requests.get(url)
if response.status_code == 200:
data = response.json()
if data['resultCount'] > 0:
version = data['results'][0]['version']
return version
app_id = input("App id: ")