Skip to content

Instantly share code, notes, and snippets.

View NetMan134's full-sized avatar
๐Ÿ“†

Oskar NetMan134

๐Ÿ“†
View GitHub Profile
@NetMan134
NetMan134 / Firefox vertical tabs with Sidebery.md
Last active February 14, 2025 17:40
Firefox vertical tabs with Sidebery
@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: ")