__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/opt/alt/python27/bin/python
def render(data, kw):
from mako.template import Template
from mako.lookup import TemplateLookup
lookup = TemplateLookup(["."])
return Template(data, lookup=lookup).render(**kw)
def varsplit(var):
if "=" not in var:
return (var, "")
return var.split("=", 1)
def main(argv=None):
from os.path import isfile
from sys import stdin
if argv is None:
import sys
argv = sys.argv
from optparse import OptionParser
parser = OptionParser("usage: %prog [FILENAME]")
parser.add_option("--var", default=[], action="append",
help="variable (can be used multiple times, use name=value)")
opts, args = parser.parse_args(argv[1:])
if len(args) not in (0, 1):
parser.error("wrong number of arguments") # Will exit
if (len(args) == 0) or (args[0] == "-"):
fo = stdin
else:
filename = args[0]
if not isfile(filename):
raise SystemExit("error: can't find %s" % filename)
fo = open(filename)
kw = dict([varsplit(var) for var in opts.var])
data = fo.read()
print render(data, kw)
if __name__ == "__main__":
main()
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| alembic | File | 314 B | 0755 |
|
| chardetect | File | 320 B | 0755 |
|
| easy_install | File | 245 B | 0755 |
|
| easy_install-2.7 | File | 245 B | 0755 |
|
| futurize | File | 316 B | 0755 |
|
| jsonschema | File | 329 B | 0755 |
|
| mako-render | File | 1.18 KB | 0755 |
|
| nosetests | File | 309 B | 0755 |
|
| nosetests-2.7 | File | 317 B | 0755 |
|
| pasteurize | File | 320 B | 0755 |
|
| pydoc | File | 91 B | 0755 |
|
| python | File | 6.98 KB | 0755 |
|
| python2 | File | 6.98 KB | 0755 |
|
| python2.7 | File | 6.98 KB | 0755 |
|
| raven | File | 304 B | 0755 |
|