mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
10 lines
212 B
Python
Executable File
10 lines
212 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from mitmproxy import flowfilter
|
|
|
|
|
|
print("<table class=\"table filtertable\"><tbody>")
|
|
for i in flowfilter.help:
|
|
print("<tr><th>%s</th><td>%s</td></tr>" % i)
|
|
print("</tbody></table>")
|