awips2/cotsSource/org.apache.qpid/python
root 2b462d8665 Initial revision of AWIPS2 11.9.0-7p5
Former-commit-id: 06a8b51d6d [formerly a02aeb236c [formerly 9f19e3f712] [formerly 06a8b51d6d [formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]]
Former-commit-id: a02aeb236c [formerly 9f19e3f712]
Former-commit-id: a02aeb236c
Former-commit-id: 133dc97f67
2012-01-06 08:55:05 -06:00
..
commands Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
doc Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
examples Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
mllib Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
models/fedsim Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
qmf Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
qpid Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
tests Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
tests_0-8 Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
tests_0-9 Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
tests_0-10 Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
hello-world Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
LICENSE.txt Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
Makefile Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
NOTICE.txt Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
preppy Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
qpid-python-test Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
qpid_config.py Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
README.txt Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
RELEASE_NOTES Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
server Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
server010 Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
setup.py Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00
todo.txt Initial revision of AWIPS2 11.9.0-7p5 2012-01-06 08:55:05 -06:00

= INSTALLATION =

Extract the release archive into a directory of your choice and set
your PYTHONPATH accordingly:

  tar -xzf qpid-python-<version>.tar.gz -C <install-prefix>
  export PYTHONPATH=<install-prefix>/qpid-<version>/python

= GETTING STARTED =

The python client includes a simple hello-world example that publishes
and consumes a message:

  cp <install-prefix>/qpid-<version>/python/hello-world .
  ./hello-world

= EXAMPLES =

More comprehensive examples can be found here:

  cd <install-prefix>/qpid-<version>/python/examples

= RUNNING THE TESTS =

The "tests" directory contains a collection of unit tests for the
python client. The "tests_0-10", "tests_0-9", and "tests_0-8"
directories contain protocol level conformance tests for AMQP brokers
of the specified version.

The qpid-python-test script may be used to run these tests. It will by
default run the python unit tests and the 0-10 conformance tests:

  1. Run a broker on the default port

  2. ./qpid-python-test

If you wish to run the 0-8 or 0-9 conformence tests, they may be
selected as follows:

  1. Run a broker on the default port

  2. ./qpid-python-test tests_0-8.*

        -- or --

     ./qpid-python-test tests_0-9.*

See the qpid-python-test usage for for additional options:

  ./qpid-python-test -h