aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/templates/about.html
blob: 3c05ad2d867600ede3de83f33648c0807f33a263 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{% extends "frame.html" %}
{% block body %}  

<section>
    <div class="page-header">
        <h1>
            how
            <small>to get it.</small>
        </h1>
    </div>

    <p>The easiest way to install pathod is to use pip:</p>

    <pre>pip install pathod</pre>

    <p> You can find the project source on GitHub: </p>

    <div style="margin-top: 20px; margin-bottom: 20px">
    <a class="btn btn-primary btn-large" href="https://github.com/cortesi/pathod">github.com/cortesi/pathod</a>
    </div>

    <p>Please also use the <a
    href="https://github.com/cortesi/pathod/issues">github issue tracker</a> to
    report bugs. </p>

</section>

<section>
    <div class="page-header">
        <h1>
            why
            <small>this it written.</small>
        </h1>
    </div>

    <p>I started pathod to improve testing for for the <a
    href="http://mitmproxy.org">mitmproxy</a> project. From there, it soon grew
    into quite a versatile HTTP Swiss army knife.</p>
</section>


<section>
    <div class="page-header">
        <h1>
            who
            <small>is to blame.</small>
        </h1>
    </div>

    <p>pathod is developed by me, <a href="http://corte.si">Aldo Cortesi</a>.
    Email me at aldo@corte.si with feedback or suggestions. If you like pathod, you
    should follow me on <a href="http://twitter.com/cortesi">twitter</a> and <a
    href="http://corte.si">subscribe to my blog</a>.</p>
</section>


{% endblock %}