Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #55060 > unrolled thread
| Started by | AdamKal <adamkalinski@gmail.com> |
|---|---|
| First post | 2013-09-30 03:14 -0700 |
| Last post | 2013-09-30 12:33 -0700 |
| Articles | 3 — 3 participants |
Back to article view | Back to comp.lang.python
CRUD library AdamKal <adamkalinski@gmail.com> - 2013-09-30 03:14 -0700
Re: CRUD library memilanuk <memilanuk@gmail.com> - 2013-09-30 05:06 -0700
Re: CRUD library waynejwerner@gmail.com - 2013-09-30 12:33 -0700
| From | AdamKal <adamkalinski@gmail.com> |
|---|---|
| Date | 2013-09-30 03:14 -0700 |
| Subject | CRUD library |
| Message-ID | <e42e2fa7-6a25-4338-b86f-b5148ceb6537@googlegroups.com> |
Hi, Do you know any library or framework that unifies CRUD somehow. Maybe I'll describe my problem: I have a application that uses many external services and processes them together. This are things like web services and DB and so on. In the REST era we usually operate on object and collections of objects (like in django's ORM) but have different source behind them. My idea was that there might be somewhere a unified abstraction layer that would require from programmers to write the CRUD methods and handle object creation and management (maybe even relations?) by itself. I've started to work on my own library for that but I wouldn't like to do something that someone has done already. Do you know any such library/framework? Do you think that it makes any sense at all? regards, Adam
[toc] | [next] | [standalone]
| From | memilanuk <memilanuk@gmail.com> |
|---|---|
| Date | 2013-09-30 05:06 -0700 |
| Message-ID | <mailman.480.1380543007.18130.python-list@python.org> |
| In reply to | #55060 |
On 09/30/2013 03:14 AM, AdamKal wrote: > Hi, > > Do you know any library or framework that unifies CRUD somehow. > Sounds kind of like the DAL (Data Abstaction Layer/Language) from web2py, perhaps? I think I've heard of it being able to be used outside a regular web2py install... not sure, haven't tried it myself. HTH, Monte
[toc] | [prev] | [next] | [standalone]
| From | waynejwerner@gmail.com |
|---|---|
| Date | 2013-09-30 12:33 -0700 |
| Message-ID | <1ef8a7ed-04a2-49ac-968e-2d3966f536b5@googlegroups.com> |
| In reply to | #55060 |
On Monday, September 30, 2013 5:14:28 AM UTC-5, AdamKal wrote: > Hi, > > > > Do you know any library or framework that unifies CRUD somehow. > > Maybe I'll describe my problem: > > > > I have a application that uses many external services and processes them together. This are things like web services and DB and so on. In the REST era we usually operate on object and collections of objects (like in django's ORM) but have different source behind them. My idea was that there might be somewhere a unified abstraction layer that would require from programmers to write the CRUD methods and handle object creation and management (maybe even relations?) by itself. > > I've started to work on my own library for that but I wouldn't like to do something that someone has done already. > > Do you know any such library/framework? > > Do you think that it makes any sense at all? Does http://python-eve.org/ look anything like what you mean? Or perhaps http://www.sqlalchemy.org/ ? HTH, W
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web