Skip to content

Instantly share code, notes, and snippets.

@kilon
Last active June 6, 2018 23:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kilon/41b5277ab6a7fa06481ba0345249a40c to your computer and use it in GitHub Desktop.
Save kilon/41b5277ab6a7fa06481ba0345249a40c to your computer and use it in GitHub Desktop.
Get version info from repository
f = urllib.request.urlopen("https://raw.githubusercontent.com/kilon/morpheas/master/__init__.py")
r = f.read()
print(r)
bpy.context.user_preferences.version
import platform
platform.system() #returns 'Windows'
platform.release()#returns '10'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment