view bin/wiki @ 11334:6f89145cd692

<fizzie> fetch bin/wiki https://hackego.esolangs.org/get/bin/wiki
author HackBot
date Sat, 20 Jan 2018 12:42:29 +0000
parents 355a1c8028dc
children 2c8c313864e7
line wrap: on
line source

#!/usr/bin/env python
import sys, os.path, urllib
if len(sys.argv) <= 1:
    print "https://esolangs.org/"
else:
    f = os.path.abspath(sys.argv[1])
    if f.startswith('/hackenv/'): f = f[9:]
    print ("https://esolangs.org/wiki/" +
        urllib.quote(f))