Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #40209 > unrolled thread
| Started by | timothy crosley <timothy.crosley@gmail.com> |
|---|---|
| First post | 2013-02-28 17:48 -0800 |
| Last post | 2013-03-20 23:21 -0700 |
| Articles | 8 — 3 participants |
Back to article view | Back to comp.lang.python
QT Inspired web development framework for python timothy crosley <timothy.crosley@gmail.com> - 2013-02-28 17:48 -0800
Re: QT Inspired web development framework for python Michael Torrie <torriem@gmail.com> - 2013-02-28 21:43 -0700
Re: QT Inspired web development framework for python timothy crosley <timothy.crosley@gmail.com> - 2013-03-01 12:02 -0800
Re: QT Inspired web development framework for python Ian Kelly <ian.g.kelly@gmail.com> - 2013-03-01 13:30 -0700
Re: QT Inspired web development framework for python timothy crosley <timothy.crosley@gmail.com> - 2013-03-01 12:41 -0800
Re: QT Inspired web development framework for python timothy crosley <timothy.crosley@gmail.com> - 2013-03-01 12:02 -0800
Re: QT Inspired web development framework for python timothy crosley <timothy.crosley@gmail.com> - 2013-03-13 19:04 -0700
Re: QT Inspired web development framework for python timothy crosley <timothy.crosley@gmail.com> - 2013-03-20 23:21 -0700
| From | timothy crosley <timothy.crosley@gmail.com> |
|---|---|
| Date | 2013-02-28 17:48 -0800 |
| Subject | QT Inspired web development framework for python |
| Message-ID | <42b84618-14a2-4504-9a64-b6aca2260ecd@googlegroups.com> |
Hi Everyone, I've been working on a web development framework that integrates several popular QT features (such as a graphical template builder, signal / slots, ui's built by objects) for the last few years, and I was hoping that some people here might find it useful. If you are interested the main link for the widgets is http://www.webelements.in and the link for the framework overall is http://www.webbot.ws Thanks! Timothy
[toc] | [next] | [standalone]
| From | Michael Torrie <torriem@gmail.com> |
|---|---|
| Date | 2013-02-28 21:43 -0700 |
| Message-ID | <mailman.2702.1362112994.2939.python-list@python.org> |
| In reply to | #40209 |
On 02/28/2013 06:48 PM, timothy crosley wrote: > I've been working on a web development framework that integrates several popular QT features (such as a graphical template builder, signal / slots, ui's built by objects) for the last few years, and I was hoping that some people here might find it useful. > > If you are interested the main link for the widgets is http://www.webelements.in > and the link for the framework overall is http://www.webbot.ws Very professional-looking pages, I must say! How would your framework fit into a framework such as Django? In other words, could it be used as the "view" part of django? Or is it meant to completely replace a traditional web framework?
[toc] | [prev] | [next] | [standalone]
| From | timothy crosley <timothy.crosley@gmail.com> |
|---|---|
| Date | 2013-03-01 12:02 -0800 |
| Message-ID | <30ce9c5b-f601-4bb2-a6b5-5e908e091d44@googlegroups.com> |
| In reply to | #40224 |
Hi Michael, Thanks! Since it simply produces html it can integrate very cleanly with django, or Any other framework that allows returning raw html. To be more specific, in django withing a view function you can return a response object that contains the HTML produced by WebElements. In the future I plan on adding even more django integration For things such as ajax abstraction. The long term vision is to be able to create apps and widgets that will run on any python framework unmodified except for calls to the database etc. Timothy Thursday, February 28, 2013 11:43:04 PM UTC-5, Michael Torrie wrote: > On 02/28/2013 06:48 PM, timothy crosley wrote: > > > I've been working on a web development framework that integrates several popular QT features (such as a graphical template builder, signal / slots, ui's built by objects) for the last few years, and I was hoping that some people here might find it useful. > > > > > > If you are interested the main link for the widgets is http://www.webelements.in > > > and the link for the framework overall is http://www.webbot.ws > > > > Very professional-looking pages, I must say! > > > > How would your framework fit into a framework such as Django? In other > > words, could it be used as the "view" part of django? Or is it meant to > > completely replace a traditional web framework?
[toc] | [prev] | [next] | [standalone]
| From | Ian Kelly <ian.g.kelly@gmail.com> |
|---|---|
| Date | 2013-03-01 13:30 -0700 |
| Message-ID | <mailman.2754.1362169851.2939.python-list@python.org> |
| In reply to | #40288 |
On Fri, Mar 1, 2013 at 1:02 PM, timothy crosley <timothy.crosley@gmail.com> wrote: > Thanks! Since it simply produces html it can integrate very cleanly with django, or > Any other framework that allows returning raw html. To be more specific, in django withing a view function you can return a response object that contains the HTML produced by WebElements. In the future I plan on adding even more django integration Is the intention here that the Django view would invoke WebElements at run-time to generate the HTML, or might one use WebElements to pre-compile HTML and JS, which could then be processed through Django's template engine?
[toc] | [prev] | [next] | [standalone]
| From | timothy crosley <timothy.crosley@gmail.com> |
|---|---|
| Date | 2013-03-01 12:41 -0800 |
| Message-ID | <41eb5329-204a-45a2-ad50-804eb8904591@googlegroups.com> |
| In reply to | #40291 |
Hi Ian, The intention would be to invoke WebElements at view run time, this way the developer can write code to interact with the elements and effect the produced HTML dynamically on every request Timothy
[toc] | [prev] | [next] | [standalone]
| From | timothy crosley <timothy.crosley@gmail.com> |
|---|---|
| Date | 2013-03-01 12:02 -0800 |
| Message-ID | <mailman.2753.1362168895.2939.python-list@python.org> |
| In reply to | #40224 |
Hi Michael, Thanks! Since it simply produces html it can integrate very cleanly with django, or Any other framework that allows returning raw html. To be more specific, in django withing a view function you can return a response object that contains the HTML produced by WebElements. In the future I plan on adding even more django integration For things such as ajax abstraction. The long term vision is to be able to create apps and widgets that will run on any python framework unmodified except for calls to the database etc. Timothy Thursday, February 28, 2013 11:43:04 PM UTC-5, Michael Torrie wrote: > On 02/28/2013 06:48 PM, timothy crosley wrote: > > > I've been working on a web development framework that integrates several popular QT features (such as a graphical template builder, signal / slots, ui's built by objects) for the last few years, and I was hoping that some people here might find it useful. > > > > > > If you are interested the main link for the widgets is http://www.webelements.in > > > and the link for the framework overall is http://www.webbot.ws > > > > Very professional-looking pages, I must say! > > > > How would your framework fit into a framework such as Django? In other > > words, could it be used as the "view" part of django? Or is it meant to > > completely replace a traditional web framework?
[toc] | [prev] | [next] | [standalone]
| From | timothy crosley <timothy.crosley@gmail.com> |
|---|---|
| Date | 2013-03-13 19:04 -0700 |
| Message-ID | <08ce2e3f-b67b-4afd-b9c7-6dd644958387@googlegroups.com> |
| In reply to | #40209 |
I've added special hooks into the framework to make integration with Django projects fairly seemless, these are detailed under the django quick start guide: http://www.webbot.ws/QuickStartGuide I hope this addresses some of the questions that have come up here, Thanks! Timothy
[toc] | [prev] | [next] | [standalone]
| From | timothy crosley <timothy.crosley@gmail.com> |
|---|---|
| Date | 2013-03-20 23:21 -0700 |
| Message-ID | <5ca21856-246e-4ea1-a199-d87361b83958@googlegroups.com> |
| In reply to | #40209 |
I really hope I'm not beating a dead horse, but I'm still really hoping for some feedback (good or bad) for this toolset/framework - as I really think it could help other Pyhton developers out. To that end I've added some demos on the main website showing how it works in action, that will hopefully make it more obvious what the framework is about and it's advantages. These are available here: http://www.webbot.ws/Demos Thanks Again, Timothy
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web