Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #96771 > unrolled thread
| Started by | "Joseph L. Casale" <jcasale@activenetwerx.com> |
|---|---|
| First post | 2015-09-17 14:44 +0000 |
| Last post | 2015-09-17 15:26 +0000 |
| Articles | 4 — 2 participants |
Back to article view | Back to comp.lang.python
Writing a module to abstract a REST api "Joseph L. Casale" <jcasale@activenetwerx.com> - 2015-09-17 14:44 +0000
Re: Writing a module to abstract a REST api Jon Ribbens <jon+usenet@unequivocal.co.uk> - 2015-09-17 15:06 +0000
Re: Writing a module to abstract a REST api "Joseph L. Casale" <jcasale@activenetwerx.com> - 2015-09-17 15:19 +0000
Re: Writing a module to abstract a REST api Jon Ribbens <jon+usenet@unequivocal.co.uk> - 2015-09-17 15:26 +0000
| From | "Joseph L. Casale" <jcasale@activenetwerx.com> |
|---|---|
| Date | 2015-09-17 14:44 +0000 |
| Subject | Writing a module to abstract a REST api |
| Message-ID | <mailman.701.1442501555.8327.python-list@python.org> |
I need to write a module to abstract the RabbitMQ HTTP REST api. Before I do this, I would like to see how other projects have done similar in the hopes I make something consistent and generic etc. Does anyone regularly work with a library that abstracts a REST API and can recommend it for review? Thanks, jlc
[toc] | [next] | [standalone]
| From | Jon Ribbens <jon+usenet@unequivocal.co.uk> |
|---|---|
| Date | 2015-09-17 15:06 +0000 |
| Message-ID | <slrnmvlls5.48q.jon+usenet@frosty.unequivocal.co.uk> |
| In reply to | #96771 |
On 2015-09-17, Joseph L. Casale <jcasale@activenetwerx.com> wrote: > I need to write a module to abstract the RabbitMQ HTTP REST api. > Before I do this, I would like to see how other projects have done > similar in the hopes I make something consistent and generic etc. > > Does anyone regularly work with a library that abstracts a REST API > and can recommend it for review? There is https://pypi.python.org/pypi/librabbitmq ?
[toc] | [prev] | [next] | [standalone]
| From | "Joseph L. Casale" <jcasale@activenetwerx.com> |
|---|---|
| Date | 2015-09-17 15:19 +0000 |
| Message-ID | <mailman.702.1442503318.8327.python-list@python.org> |
| In reply to | #96772 |
> There is https://pypi.python.org/pypi/librabbitmq ? Hi Jon, That is the AMQP client that utilizes the c extensions, I am writing a module to interact with a plugin that exposes a REST API. So I am not really after anything AMQP specific, just a pointer to a project that abstracts anything with a REST API so I can see how they work with requests in an async nature. Thanks, jlc
[toc] | [prev] | [next] | [standalone]
| From | Jon Ribbens <jon+usenet@unequivocal.co.uk> |
|---|---|
| Date | 2015-09-17 15:26 +0000 |
| Message-ID | <slrnmvln0h.48q.jon+usenet@frosty.unequivocal.co.uk> |
| In reply to | #96773 |
On 2015-09-17, Joseph L. Casale <jcasale@activenetwerx.com> wrote: >> There is https://pypi.python.org/pypi/librabbitmq ? > > Hi Jon, > That is the AMQP client that utilizes the c extensions, I am writing a > module to interact with a plugin that exposes a REST API. > > So I am not really after anything AMQP specific, just a pointer to > a project that abstracts anything with a REST API so I can see how > they work with requests in an async nature. There's a bunch of Python Twitter libraries listed at the link below, they're all using a REST API? https://dev.twitter.com/overview/api/twitter-libraries
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web