• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

bin/H02-Apr-2019-63

pecan/H02-Apr-2019-14,73711,097

pecan.egg-info/H03-May-2022-3130

LICENSEH A D02-Apr-20191.5 KiB2522

MANIFEST.inH A D02-Apr-2019265 87

PKG-INFOH A D02-Apr-20191.3 KiB3130

README.rstH A D02-Apr-20191.3 KiB6039

setup.cfgH A D02-Apr-2019204 1511

setup.pyH A D03-May-20223.1 KiB10781

README.rst

1Pecan
2=====
3
4A WSGI object-dispatching web framework, designed to be lean and fast with few
5dependencies.
6
7.. image:: https://badge.fury.io/py/pecan.png
8    :target: https://pypi.python.org/pypi/pecan/
9    :alt: Latest PyPI version
10
11Installing
12----------
13
14::
15
16    $ pip install pecan
17
18...or, for the latest (unstable) tip::
19
20    $ git clone https://github.com/pecan/pecan.git
21    $ cd pecan && python setup.py install
22
23Running Tests
24-------------
25
26::
27
28    $ python setup.py test
29
30...or, to run all tests across all supported environments::
31
32    $ pip install tox && tox
33
34Viewing Documentation
35---------------------
36`Available online <https://pecan.readthedocs.io>`_, or to build manually::
37
38    $ cd docs && make html
39    $ open docs/build/html/index.html
40
41...or::
42
43    $ cd docs && make man
44    $ man docs/build/man/pecan.1
45
46Contributing
47------------
48For information on contributing to Pecan, please read our `Contributing
49Guidelines <https://github.com/pecan/pecan/blob/master/CONTRIBUTING.rst>`_.
50
51Bugs should be reported at:
52
53https://github.com/pecan/pecan/issues/new
54
55Additional Help/Support
56-----------------------
57Most Pecan interaction is done via the `pecan-dev Mailing List
58<https://groups.google.com/forum/#!forum/pecan-dev>`_ and the #pecanpy channel
59on `FreeNode <http://freenode.net/>`_ IRC.
60