Skip to content

Instantly share code, notes, and snippets.

@ackbyte
Created August 17, 2020 11:03
Show Gist options
  • Save ackbyte/604a7817f9d142e908335e041ece0718 to your computer and use it in GitHub Desktop.
Save ackbyte/604a7817f9d142e908335e041ece0718 to your computer and use it in GitHub Desktop.
import requests
url = 'https://github.com/roundcube/roundcubemail/releases/latest'
r = requests.get(url)
version = r.url.split('/')[-1]
print(version)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment