aboutsummaryrefslogtreecommitdiffstats
path: root/docs/scripts/filters.py
blob: 05cc7a0fbc82a5a5543cb8bdac149eff16ab99c6 (plain)
1
2
3
4
5
6
7
8
9
#!/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>")