Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #26413 > unrolled thread
| Started by | Csanyi Pal <csanyipal@gmail.com> |
|---|---|
| First post | 2012-08-02 20:24 +0200 |
| Last post | 2012-08-06 21:03 -0700 |
| Articles | 8 — 5 participants |
Back to article view | Back to comp.lang.python
The way to develope a graphical application to manage a Postgres database Csanyi Pal <csanyipal@gmail.com> - 2012-08-02 20:24 +0200
Re: The way to develope a graphical application to manage a Postgres database Wolfgang Keller <feliphil@gmx.net> - 2012-08-05 13:44 +0200
Re: The way to develope a graphical application to manage a Postgres database Walter Hurry <walterhurry@lavabit.com> - 2012-08-05 15:47 +0000
Re: The way to develope a graphical application to manage a Postgres database Csanyi Pal <csanyipal@gmail.com> - 2012-08-05 17:58 +0200
Re: The way to develope a graphical application to manage a Postgres database Walter Hurry <walterhurry@lavabit.com> - 2012-08-05 16:25 +0000
Re: The way to develope a graphical application to manage a Postgres database Mark Lawrence <breamoreboy@yahoo.co.uk> - 2012-08-05 19:21 +0100
Re: The way to develope a graphical application to manage a Postgres database Csanyi Pal <csanyipal@gmail.com> - 2012-08-05 20:26 +0200
Re: The way to develope a graphical application to manage a Postgres database rusi <rustompmody@gmail.com> - 2012-08-06 21:03 -0700
| From | Csanyi Pal <csanyipal@gmail.com> |
|---|---|
| Date | 2012-08-02 20:24 +0200 |
| Subject | The way to develope a graphical application to manage a Postgres database |
| Message-ID | <mailman.2882.1343934314.4697.python-list@python.org> |
Hi, I'm new to python. I'm searching for a way to develope a Python graphical application for a Postgresql database. I have installed on my Debian GNU/Linux testing/sid system many python packages, among others: eric, geany, idle, ninja-ide, pida (it doesn't work here), python2.7, python-easygui, python-forgetsql, python-gasp, python-glade2, python-gobject-2, python-gtk2, python-pip, python-pygresql, python-pyside.qtsql, python-subversion, python-tk, python-wxglade, spyder, python3-psycopg2, python-psycopg2, XRCed. I did search in the Google but can't find any good tutorial except for wxpython tutorial: http://wiki.wxpython.org/FrontPage, wxGlade tutorial: http://wiki.wxpython.org/WxGladeTutorial There is a tutorial for using python-psycopg2 here: http://wiki.postgresql.org/wiki/Psycopg2_Tutorial Still I don't know how to put these all together? XRCed is the most interesting way for me. Can one advices me where to go? -- Regards from Pal
[toc] | [next] | [standalone]
| From | Wolfgang Keller <feliphil@gmx.net> |
|---|---|
| Date | 2012-08-05 13:44 +0200 |
| Message-ID | <20120805134448.08d5a9172912430da2a3a0b4@gmx.net> |
| In reply to | #26413 |
> Can one advices me where to go? There are a number of Python frameworks for GUI database applications: - Dabo (wxPython) - Sqlkit (PyGTK & SQLalchemy) - Pypapi (PyQt & SQLalchemy) - Camelot (PyQt & SQLalchemy) - Qtalchemy (PyQt & SQLalchemy) - Openobject (PyGTK) - Defis (wxPython & SQLalchemy), Russian only - Kiwi (PyGTK) Not sure whether these are still active: - Gnuenterprise (wxPython) - Pythoncard (wxPython) Sincerely, Wolfgang Keller
[toc] | [prev] | [next] | [standalone]
| From | Walter Hurry <walterhurry@lavabit.com> |
|---|---|
| Date | 2012-08-05 15:47 +0000 |
| Message-ID | <jvm4ij$njg$1@news.albasani.net> |
| In reply to | #26413 |
On Thu, 02 Aug 2012 20:24:36 +0200, Csanyi Pal wrote: > I'm searching for a way to develope a Python graphical application for a > Postgresql database. I use wxGlade/wxPython to build the GUI, and then hand code the database access using psycopg2 into the generated application. Works very well for me, but I do know SQL and Postgres.
[toc] | [prev] | [next] | [standalone]
| From | Csanyi Pal <csanyipal@gmail.com> |
|---|---|
| Date | 2012-08-05 17:58 +0200 |
| Message-ID | <mailman.2963.1344182352.4697.python-list@python.org> |
| In reply to | #26536 |
Walter Hurry <walterhurry@lavabit.com> writes: > On Thu, 02 Aug 2012 20:24:36 +0200, Csanyi Pal wrote: > >> I'm searching for a way to develope a Python graphical application for a >> Postgresql database. > > I use wxGlade/wxPython to build the GUI, and then hand code the database > access using psycopg2 into the generated application. Works very well for > me, but I do know SQL and Postgres. Well, I tried out many adviced ways but none of them works on my Debian GNU/Linux testing/sid system. Always get some error in one of the part of the software. Can you give a short tutorial for newbies how to start to develope with tools you used successfully? -- Regards from Pal
[toc] | [prev] | [next] | [standalone]
| From | Walter Hurry <walterhurry@lavabit.com> |
|---|---|
| Date | 2012-08-05 16:25 +0000 |
| Message-ID | <jvm6pt$sil$1@news.albasani.net> |
| In reply to | #26537 |
On Sun, 05 Aug 2012 17:58:46 +0200, Csanyi Pal wrote: > Well, I tried out many adviced ways but none of them works on my Debian > GNU/Linux testing/sid system. Always get some error in one of the part > of the software. > > Can you give a short tutorial for newbies how to start to develope with > tools you used successfully? I'm afraid I'm not about to write a tutorial - there are better ones out there than I could produce; easily found. I just DuckDuckGo'ed, followed the tutorials and read the documentation.
[toc] | [prev] | [next] | [standalone]
| From | Mark Lawrence <breamoreboy@yahoo.co.uk> |
|---|---|
| Date | 2012-08-05 19:21 +0100 |
| Message-ID | <mailman.2965.1344190806.4697.python-list@python.org> |
| In reply to | #26536 |
On 05/08/2012 16:58, Csanyi Pal wrote: > Walter Hurry <walterhurry@lavabit.com> writes: > >> On Thu, 02 Aug 2012 20:24:36 +0200, Csanyi Pal wrote: >> >>> I'm searching for a way to develope a Python graphical application for a >>> Postgresql database. >> >> I use wxGlade/wxPython to build the GUI, and then hand code the database >> access using psycopg2 into the generated application. Works very well for >> me, but I do know SQL and Postgres. > > Well, I tried out many adviced ways but none of them works on my Debian > GNU/Linux testing/sid system. Always get some error in one of the part > of the software. If you give precise details by cutting and pasting the error people will be able to help. > > Can you give a short tutorial for newbies how to start to develope with > tools you used successfully? > Seek and ye shall find!!! -- Cheers. Mark Lawrence.
[toc] | [prev] | [next] | [standalone]
| From | Csanyi Pal <csanyipal@gmail.com> |
|---|---|
| Date | 2012-08-05 20:26 +0200 |
| Message-ID | <mailman.2967.1344191409.4697.python-list@python.org> |
| In reply to | #26536 |
Mark Lawrence <breamoreboy@yahoo.co.uk> writes: > On 05/08/2012 16:58, Csanyi Pal wrote: >> Walter Hurry <walterhurry@lavabit.com> writes: >> >>> On Thu, 02 Aug 2012 20:24:36 +0200, Csanyi Pal wrote: >>> >>>> I'm searching for a way to develope a Python graphical application for a >>>> Postgresql database. >>> >>> I use wxGlade/wxPython to build the GUI, and then hand code the database >>> access using psycopg2 into the generated application. Works very well for >>> me, but I do know SQL and Postgres. >> >> Well, I tried out many adviced ways but none of them works on my Debian >> GNU/Linux testing/sid system. Always get some error in one of the part >> of the software. > > If you give precise details by cutting and pasting the error people > will be able to help. I shall do that later. >> Can you give a short tutorial for newbies how to start to develope with >> tools you used successfully? >> > Seek and ye shall find!!! Ye, if I find spare time I shall do that certainly. -- Regards from Pal
[toc] | [prev] | [next] | [standalone]
| From | rusi <rustompmody@gmail.com> |
|---|---|
| Date | 2012-08-06 21:03 -0700 |
| Message-ID | <542cc24b-c2df-4aba-b01b-b9b2e2e95546@iw9g2000pbc.googlegroups.com> |
| In reply to | #26543 |
On Aug 5, 11:26 pm, Csanyi Pal <csanyi...@gmail.com> wrote: > Mark Lawrence <breamore...@yahoo.co.uk> writes: > > On 05/08/2012 16:58, Csanyi Pal wrote: > >> Walter Hurry <walterhu...@lavabit.com> writes: > > >>> On Thu, 02 Aug 2012 20:24:36 +0200, Csanyi Pal wrote: > > >>>> I'm searching for a way to develope a Python graphical application for a > >>>> Postgresql database. > > >>> I use wxGlade/wxPython to build the GUI, and then hand code the database > >>> access using psycopg2 into the generated application. Works very well for > >>> me, but I do know SQL and Postgres. > > >> Well, I tried out many adviced ways but none of them works on my Debian > >> GNU/Linux testing/sid system. Always get some error in one of the part > >> of the software. > > > If you give precise details by cutting and pasting the error people > > will be able to help. > > I shall do that later. Chris already suggested that you try GUI without DBMS and DBMS without GUI first before trying the two together. One way of subverting the DBMS-stage (its called mocking nowadays!) is to use sqlite instead of a full-scale DBMS like postgres. After that works you can switch to postgres.
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web