mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
9 lines
210 B
Python
9 lines
210 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
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>")
|