free blender projects code example
Example 1: How to hyperlink image in blender
def draw(self, context):
layout = self.layout
row = layout.row()
row.operator("wm.url_open", text="Open Link").url = "http://www.google.co.uk"
Example 2: How to hyperlink image in blender
bpy.ops.wm.url_open(url="http://www.google.co.uk")