mirror of
https://github.com/ericchiang/pup
synced 2024-11-24 00:48:36 +00:00
d0ff822037
Added: * psuedo classes :empty :[first/last/only]-child :[first/last/only]-of-type :contains("text") :nth[-last]-child(n|odd|even|3n+1|n+2) :nth[-last]-of-type(n|odd|even|3n+2|n+2) * json{} attr keys moved up a level * quote enclosed attr selectors * '+' and '>' intermediate selectors
15 lines
396 B
Python
Executable File
15 lines
396 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
from hashlib import sha1
|
|
from subprocess import Popen, PIPE, STDOUT
|
|
|
|
data = open("index.html", "r").read()
|
|
|
|
for line in open("cmds.txt", "r"):
|
|
line = line.strip()
|
|
p = Popen(['pup', line], stdout=PIPE, stdin=PIPE, stderr=PIPE)
|
|
h = sha1()
|
|
h.update(p.communicate(input=data)[0])
|
|
print("%s %s" % (h.hexdigest(), line))
|