summaryrefslogtreecommitdiff
path: root/README.org
blob: 90b3d55a07f3129da1618f4c9a5e9863453b3996 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
* Pypaste
Pypaste is a paste server and client, written in python.

** Pypaste Server
Pypaste server is a service that listens on a unix socket (normally reverse proxied to by a web server), that stores pastes in s3 or locally in a sqlite database, that uses pygments to perform syntax highlighting and numbering lines.

#+BEGIN_SRC
  python -m pypaste.server --help
#+END_SRC

** Pypaste Client
Pypaste client is a simple plugin based paste upload client. It currently supports "zen" and "pgz" services, but plugins can be easily written to support more services.

#+BEGIN_SRC
  python -m pypaste.client zen --file=foo.txt
#+END_SRC