You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@qpid.apache.org by Carl Trieloff <cc...@redhat.com> on 2009/02/06 02:17:33 UTC

Re: Improved Python API docs

coping user list

Jonathan Robie wrote:
> Rafi and I improved the Python API docs.
>
> See if you like them better now - I think they are less cluttered and 
> more useful:
>
> http://qpid.apache.org/docs/api/python/html/index.html
>
> Jonathan
>
> ---------------------------------------------------------------------
> Apache Qpid - AMQP Messaging Implementation
> Project:      http://qpid.apache.org
> Use/Interact: mailto:dev-subscribe@qpid.apache.org
>


---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:users-subscribe@qpid.apache.org


Re: Improved Python API docs

Posted by Peter Silva <in...@gmail.com>.
great! that's exactly what I had in mind.  I didn't find it hunting around
the web site.
thanks!

On Sun, Feb 8, 2009 at 8:44 PM, Rajith Attapattu <ra...@gmail.com> wrote:

> Hello Peter,
>
> The following link contains the examples for python that describes several
> simple use cases
> https://svn.apache.org/repos/asf/qpid/trunk/qpid/python/examples/
>
> All these examples interoperate with java, c++, .NET
> (We still haven't got to writing the ruby examples - I stand to be
> corrected
> though).
>
> Regards,
>
> Rajith
>
> On Sun, Feb 8, 2009 at 10:23 AM, Peter Silva <in...@gmail.com> wrote:
>
> > looks really nice... are there some 'hello world' type samples somewhere?
> > For the rabbitmq python client binding from barryp, there are simple
> server
> > and client programs, 30 lines or so each, that demonstrate simple api
> > usage,
> > are very friendly.
> >
> > http://barryp.org/software/py-amqplib/
> >
> > On Thu, Feb 5, 2009 at 8:17 PM, Carl Trieloff <cc...@redhat.com>
> > wrote:
> >
> > >
> > > coping user list
> > >
> > > Jonathan Robie wrote:
> > >
> > >> Rafi and I improved the Python API docs.
> > >>
> > >> See if you like them better now - I think they are less cluttered and
> > more
> > >> useful:
> > >>
> > >> http://qpid.apache.org/docs/api/python/html/index.html
> > >>
> > >> Jonathan
> > >>
> > >> ---------------------------------------------------------------------
> > >> Apache Qpid - AMQP Messaging Implementation
> > >> Project:      http://qpid.apache.org
> > >> Use/Interact: mailto:dev-subscribe@qpid.apache.org
> > >>
> > >>
> > >
> > > ---------------------------------------------------------------------
> > > Apache Qpid - AMQP Messaging Implementation
> > > Project:      http://qpid.apache.org
> > > Use/Interact: mailto:users-subscribe@qpid.apache.org
> > >
> > >
> >
>
>
>
> --
> Regards,
>
> Rajith Attapattu
> Red Hat
> http://rajith.2rlabs.com/
>

Re: Improved Python API docs

Posted by Rajith Attapattu <ra...@gmail.com>.
Hello Peter,

The following link contains the examples for python that describes several
simple use cases
https://svn.apache.org/repos/asf/qpid/trunk/qpid/python/examples/

All these examples interoperate with java, c++, .NET
(We still haven't got to writing the ruby examples - I stand to be corrected
though).

Regards,

Rajith

On Sun, Feb 8, 2009 at 10:23 AM, Peter Silva <in...@gmail.com> wrote:

> looks really nice... are there some 'hello world' type samples somewhere?
> For the rabbitmq python client binding from barryp, there are simple server
> and client programs, 30 lines or so each, that demonstrate simple api
> usage,
> are very friendly.
>
> http://barryp.org/software/py-amqplib/
>
> On Thu, Feb 5, 2009 at 8:17 PM, Carl Trieloff <cc...@redhat.com>
> wrote:
>
> >
> > coping user list
> >
> > Jonathan Robie wrote:
> >
> >> Rafi and I improved the Python API docs.
> >>
> >> See if you like them better now - I think they are less cluttered and
> more
> >> useful:
> >>
> >> http://qpid.apache.org/docs/api/python/html/index.html
> >>
> >> Jonathan
> >>
> >> ---------------------------------------------------------------------
> >> Apache Qpid - AMQP Messaging Implementation
> >> Project:      http://qpid.apache.org
> >> Use/Interact: mailto:dev-subscribe@qpid.apache.org
> >>
> >>
> >
> > ---------------------------------------------------------------------
> > Apache Qpid - AMQP Messaging Implementation
> > Project:      http://qpid.apache.org
> > Use/Interact: mailto:users-subscribe@qpid.apache.org
> >
> >
>



-- 
Regards,

Rajith Attapattu
Red Hat
http://rajith.2rlabs.com/

Re: Improved Python API docs

Posted by Jonathan Robie <jo...@redhat.com>.
There are a set of examples that illustrate the most common messaging 
patterrns - these are complete programs, in a different format from the 
ones you point to below (I'm copying this from  the "Getting Started" 
page at  http://qpid.apache.org/getting-started.html). Use SVN to check 
out the examples:

    * Python Examples:
      https://svn.apache.org/repos/asf/qpid/trunk/qpid/python/examples/
      ^ <https://svn.apache.org/repos/asf/qpid/trunk/qpid/python/examples/>
    * C++ Examples:
      https://svn.apache.org/repos/asf/qpid/trunk/qpid/cpp/examples/ ^
      <https://svn.apache.org/repos/asf/qpid/trunk/qpid/cpp/examples/>
    * Java JMS Examples:
      https://svn.apache.org/repos/asf/qpid/trunk/qpid/java/client/example/
      ^
      <https://svn.apache.org/repos/asf/qpid/trunk/qpid/java/client/example/>
    * Ruby Examples:
      https://svn.apache.org/repos/asf/qpid/trunk/qpid/ruby/examples/ ^
      <https://svn.apache.org/repos/asf/qpid/trunk/qpid/ruby/examples/>
    * .NET Examples:
      http://svn.apache.org/viewvc/qpid/trunk/qpid/dotnet/client-010/examples/
      ^
      <http://svn.apache.org/viewvc/qpid/trunk/qpid/dotnet/client-010/examples/>

These programs are also about 30 lines each, they use the same skeleton 
for setup and cleanup, and the main body of each program is typically 
less than 10 lines.

Jonathan


Peter Silva wrote:
> looks really nice... are there some 'hello world' type samples somewhere?
> For the rabbitmq python client binding from barryp, there are simple server
> and client programs, 30 lines or so each, that demonstrate simple api usage,
> are very friendly.
>
> http://barryp.org/software/py-amqplib/
>
> On Thu, Feb 5, 2009 at 8:17 PM, Carl Trieloff <cc...@redhat.com> wrote:
>
>   
>> coping user list
>>
>> Jonathan Robie wrote:
>>
>>     
>>> Rafi and I improved the Python API docs.
>>>
>>> See if you like them better now - I think they are less cluttered and more
>>> useful:
>>>
>>> http://qpid.apache.org/docs/api/python/html/index.html
>>>
>>> Jonathan
>>>
>>> ---------------------------------------------------------------------
>>> Apache Qpid - AMQP Messaging Implementation
>>> Project:      http://qpid.apache.org
>>> Use/Interact: mailto:dev-subscribe@qpid.apache.org
>>>
>>>
>>>       
>> ---------------------------------------------------------------------
>> Apache Qpid - AMQP Messaging Implementation
>> Project:      http://qpid.apache.org
>> Use/Interact: mailto:users-subscribe@qpid.apache.org
>>
>>
>>     
>
>   


---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:users-subscribe@qpid.apache.org


Re: Improved Python API docs

Posted by Peter Silva <in...@gmail.com>.
looks really nice... are there some 'hello world' type samples somewhere?
For the rabbitmq python client binding from barryp, there are simple server
and client programs, 30 lines or so each, that demonstrate simple api usage,
are very friendly.

http://barryp.org/software/py-amqplib/

On Thu, Feb 5, 2009 at 8:17 PM, Carl Trieloff <cc...@redhat.com> wrote:

>
> coping user list
>
> Jonathan Robie wrote:
>
>> Rafi and I improved the Python API docs.
>>
>> See if you like them better now - I think they are less cluttered and more
>> useful:
>>
>> http://qpid.apache.org/docs/api/python/html/index.html
>>
>> Jonathan
>>
>> ---------------------------------------------------------------------
>> Apache Qpid - AMQP Messaging Implementation
>> Project:      http://qpid.apache.org
>> Use/Interact: mailto:dev-subscribe@qpid.apache.org
>>
>>
>
> ---------------------------------------------------------------------
> Apache Qpid - AMQP Messaging Implementation
> Project:      http://qpid.apache.org
> Use/Interact: mailto:users-subscribe@qpid.apache.org
>
>