New comment by imrn on void-packages repository https://github.com/void-linux/void-packages/issues/21994#issuecomment-629641912 Comment: This is a regular text file and runs on terminal. Nothing fancy. ```python #!/bin/python3 import http.client conn = http.client.HTTPSConnection("www.python.org") conn.request("GET", "/") r1 = conn.getresponse() print(r1.status, r1.reason) ```