blob: 05046a082321596a57137be8411cf8a75b45232c [file] [log] [blame]
#!/usr/bin/env python3
import base64
import os
import sys
credentials = base64.b64decode(os.environ.get('HTTP_AUTHORIZATION', ' Og==').split(' ')[1]).decode().split(':')
username = credentials[0]
password = ':'.join(credentials[1:])
sys.stdout.write(
'Content-Type: text/html\r\n\r\n'
'Resource loaded with HTTP authentication username \'{}\' and password \'{}\'\n'.format(username, password)
)