From r.r.nederhoed at gmail.com Mon Jun 4 16:35:11 2007 From: r.r.nederhoed at gmail.com (Robert-Reinder Nederhoed) Date: Mon, 4 Jun 2007 16:35:11 +0200 Subject: [python-nl] Implementing Networks meetup in Den Haag Message-ID: Dames en Heren, volgende week maandag organiseer ik een zeer bescheiden software development meetup. Het gekozen onderwerp is het implementeren van netwerken (gelinkte informatie): http://softwaredev.meetup.com/76/calendar/5792583/ Mocht je geinteresseerd zijn, dan kun je via bovenstaande link je opgeven. Vriendelijke groet, Robert-Reinder -- From eiwot23 at gmail.com Fri Jun 15 04:38:42 2007 From: eiwot23 at gmail.com (eiwot23 eiwot23) Date: Fri, 15 Jun 2007 09:38:42 +0700 Subject: [python-nl] Calling Windows API with Python Message-ID: <2d8f06a0706141938k683aa0aap48b314370a94e8fc@mail.gmail.com> Hi all, I posted an article about how to call windows API with Python in my blog at pyarticles Any comments are welcome :) Cheers http://pyarticles.blogspot.com/ http://pythonforge.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/python-nl/attachments/20070615/a8136d4c/attachment.html From ep at epoz.org Fri Jun 15 09:43:55 2007 From: ep at epoz.org (Etienne Posthumus) Date: Fri, 15 Jun 2007 09:43:55 +0200 Subject: [python-nl] Calling Windows API with Python In-Reply-To: <2d8f06a0706141938k683aa0aap48b314370a94e8fc@mail.gmail.com> References: <2d8f06a0706141938k683aa0aap48b314370a94e8fc@mail.gmail.com> Message-ID: <747a4aea0706150043y41e5f1d4v911d43972c93e75f@mail.gmail.com> On 6/15/07, eiwot23 eiwot23 wrote: > I posted an article about how to call windows API with Python in my blog > at pyarticles > > Any comments are welcome :) Have a look at http://venster.sourceforge.net/ for some more goodness on this topic. "Venster is a highly native Windows GUI toolkit for Python based on the ctypes ffi library. The aim of Venster is to be a very lightweight wrapper around the standard Win32 API, making it easy to write slick windows applications in pure Python." It has been alpha-code for ever, I am not sure if the developers are still working on it much, but it is a very nifty module if you have to bother with legacy Windows stuff. From guyon.moree at gmail.com Fri Jun 15 11:22:48 2007 From: guyon.moree at gmail.com (=?ISO-8859-1?Q?Guyon_Mor=E9e?=) Date: Fri, 15 Jun 2007 11:22:48 +0200 Subject: [python-nl] Calling Windows API with Python In-Reply-To: <747a4aea0706150043y41e5f1d4v911d43972c93e75f@mail.gmail.com> References: <2d8f06a0706141938k683aa0aap48b314370a94e8fc@mail.gmail.com> <747a4aea0706150043y41e5f1d4v911d43972c93e75f@mail.gmail.com> Message-ID: <78f5441d0706150222ie159d72rcd692e5ae9ca6061@mail.gmail.com> I'd recommend IronPython! On 6/15/07, Etienne Posthumus wrote: > On 6/15/07, eiwot23 eiwot23 wrote: > > I posted an article about how to call windows API with Python in my blog > > at pyarticles > > > > Any comments are welcome :) > > Have a look at http://venster.sourceforge.net/ for some more goodness > on this topic. > "Venster is a highly native Windows GUI toolkit for Python based on > the ctypes ffi library. > > The aim of Venster is to be a very lightweight wrapper around the > standard Win32 API, making it easy to write slick windows applications > in pure Python." > > It has been alpha-code for ever, I am not sure if the developers are > still working on it much, but it is a very nifty module if you have to > bother with legacy Windows stuff. > _______________________________________________ > Python-nl mailing list > Python-nl op python.org > http://mail.python.org/mailman/listinfo/python-nl > -- Guyon Mor?e guyon.moree op gmail.com http://gumuz.looze.net From ep at epoz.org Fri Jun 15 12:33:54 2007 From: ep at epoz.org (Etienne Posthumus) Date: Fri, 15 Jun 2007 12:33:54 +0200 Subject: [python-nl] Calling Windows API with Python In-Reply-To: <78f5441d0706150222ie159d72rcd692e5ae9ca6061@mail.gmail.com> References: <2d8f06a0706141938k683aa0aap48b314370a94e8fc@mail.gmail.com> <747a4aea0706150043y41e5f1d4v911d43972c93e75f@mail.gmail.com> <78f5441d0706150222ie159d72rcd692e5ae9ca6061@mail.gmail.com> Message-ID: <747a4aea0706150333m6174337dva6c2ae6172d36708@mail.gmail.com> On 6/15/07, Guyon Mor?e wrote: > I'd recommend IronPython! Yes, as long as you want the overhead of the .NET framework. If you want to make a stand-alone Python executable that does Win32 stuff, that is not an option. From andre at vandervlies.xs4all.nl Fri Jun 15 15:00:38 2007 From: andre at vandervlies.xs4all.nl (Andre van der Vlies) Date: Fri, 15 Jun 2007 15:00:38 +0200 (CEST) Subject: [python-nl] Calling Windows API with Python In-Reply-To: <78f5441d0706150222ie159d72rcd692e5ae9ca6061@mail.gmail.com> References: <2d8f06a0706141938k683aa0aap48b314370a94e8fc@mail.gmail.com> <747a4aea0706150043y41e5f1d4v911d43972c93e75f@mail.gmail.com> <78f5441d0706150222ie159d72rcd692e5ae9ca6061@mail.gmail.com> Message-ID: <23282.212.136.56.20.1181912438.squirrel@vandervlies.xs4all.nl> Jeez! I've been using wxPython for ages... Guess I need to upgrade.... Guyon Mor?e wrote: > I'd recommend IronPython! > > On 6/15/07, Etienne Posthumus wrote: >> On 6/15/07, eiwot23 eiwot23 wrote: >> > I posted an article about how to call windows API with Python in my blog >> > at pyarticles >> > >> > Any comments are welcome :) >> >> Have a look at http://venster.sourceforge.net/ for some more goodness >> on this topic. >> "Venster is a highly native Windows GUI toolkit for Python based on >> the ctypes ffi library. >> >> The aim of Venster is to be a very lightweight wrapper around the >> standard Win32 API, making it easy to write slick windows applications >> in pure Python." >> >> It has been alpha-code for ever, I am not sure if the developers are >> still working on it much, but it is a very nifty module if you have to >> bother with legacy Windows stuff. >> _______________________________________________ >> Python-nl mailing list >> Python-nl at python.org >> http://mail.python.org/mailman/listinfo/python-nl >> > > > -- > Guyon Mor?e > guyon.moree at gmail.com > http://gumuz.looze.net > _______________________________________________ > Python-nl mailing list > Python-nl at python.org > http://mail.python.org/mailman/listinfo/python-nl > -- Andre van der Vlies Certifiable UNIX engineer Homepage: http://vandervlies.xs4all.nl/~andre Key fingerprint = 397C 7479 67DB 9306 23DC B423 7B58 CD5A 6EFF 5CF8 -- "Programming isn't a craft, it's an art." () ascii ribbon campaign - against html e-mail /\ - against microsoft attachments ^[^#] -- From eiwot23 at gmail.com Mon Jun 18 03:29:50 2007 From: eiwot23 at gmail.com (eiwot23 eiwot23) Date: Mon, 18 Jun 2007 08:29:50 +0700 Subject: [python-nl] Calling Windows API with Python In-Reply-To: <23282.212.136.56.20.1181912438.squirrel@vandervlies.xs4all.nl> References: <2d8f06a0706141938k683aa0aap48b314370a94e8fc@mail.gmail.com> <747a4aea0706150043y41e5f1d4v911d43972c93e75f@mail.gmail.com> <78f5441d0706150222ie159d72rcd692e5ae9ca6061@mail.gmail.com> <23282.212.136.56.20.1181912438.squirrel@vandervlies.xs4all.nl> Message-ID: <2d8f06a0706171829x78456678u9733a9b4161295e9@mail.gmail.com> Umm , Yes , I think this code formatting in Blogspot is an important problem for us. Does anyone know how to solve this problem ? Thank you Eiwot http://pyarticles.blogspot.com/ On 6/15/07, Andre van der Vlies wrote: > > > Jeez! I've been using wxPython for ages... Guess I need to upgrade.... > > Guyon Mor?e wrote: > > I'd recommend IronPython! > > > > On 6/15/07, Etienne Posthumus wrote: > >> On 6/15/07, eiwot23 eiwot23 wrote: > >> > I posted an article about how to call windows API with Python in > my blog > >> > at pyarticles > >> > > >> > Any comments are welcome :) > >> > >> Have a look at http://venster.sourceforge.net/ for some more goodness > >> on this topic. > >> "Venster is a highly native Windows GUI toolkit for Python based on > >> the ctypes ffi library. > >> > >> The aim of Venster is to be a very lightweight wrapper around the > >> standard Win32 API, making it easy to write slick windows applications > >> in pure Python." > >> > >> It has been alpha-code for ever, I am not sure if the developers are > >> still working on it much, but it is a very nifty module if you have to > >> bother with legacy Windows stuff. > >> _______________________________________________ > >> Python-nl mailing list > >> Python-nl at python.org > >> http://mail.python.org/mailman/listinfo/python-nl > >> > > > > > > -- > > Guyon Mor?e > > guyon.moree at gmail.com > > http://gumuz.looze.net > > _______________________________________________ > > Python-nl mailing list > > Python-nl at python.org > > http://mail.python.org/mailman/listinfo/python-nl > > > > > -- > Andre van der Vlies > Certifiable UNIX engineer > Homepage: http://vandervlies.xs4all.nl/~andre > Key fingerprint = 397C 7479 67DB 9306 23DC B423 7B58 CD5A 6EFF 5CF8 > -- > "Programming isn't a craft, it's an art." > () ascii ribbon campaign - against html e-mail > /\ - against microsoft attachments > ^[^#] > -- > > _______________________________________________ > Python-nl mailing list > Python-nl at python.org > http://mail.python.org/mailman/listinfo/python-nl > -- http://pyarticles.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/python-nl/attachments/20070618/296204a5/attachment.htm From jkolman at thehealthagency.com Mon Jun 18 11:38:56 2007 From: jkolman at thehealthagency.com (Jan-Wijbrand Kolman) Date: Mon, 18 Jun 2007 11:38:56 +0200 Subject: [python-nl] The Health Agency zoekt een softwareontwikkelaar Message-ID: <467652B0.7060609@thehealthagency.com> THE HEALTH AGENCY zoekt een SOFTWAREONTWIKKELAAR Als elektronische uitgeverij is The Health Agency ruim 4 jaar actief in de gezondheidszorg. Kern van haar dienstverlening is "Voorlichting Op Maat". Op basis van persoonlijke profielen en behoeftes wordt gepersonaliseerde consumenten-en pati?nteninformatie aangeboden over verschillende kanalen; web, pdf, digitale televise. Tot de klanten behoren ziekenhuizen, huisartsen, thuiszorg- en voorlichtingsorganisaties, zorgverzekeraars en pati?nten-belangenverenigingen. The Health Agency maakt gebruik van het InfoDoc? platform, een zelf ontwikkeld, intelligent content management systeem. Met InfoDoc? zijn reeds 4 prestigieuze prijzen gewonnen, onder andere voor innovatie, effici?ntie en toegankelijkheid. Op dit moment wordt de derde generatie van dit platform ontwikkeld. Om het technisch team te versterken is The Health Agency op zoek naar een ervaren en enthousiaste softwareontwikkelaar met een relevante opleiding op HBO- of universitair niveau en ervaring met Python, Zope- 3, XSLT, AJAX en aanverwante technologie?n. Affiniteit met en een actieve rol in "Open Source Software" zijn een pr?. Delen van InfoDoc? worden onder een opensource licentie vrijgegeven. De softwareontwikkelaar gaat deel uit maken van een technisch team dat nauw samenwerkt met het interne redactieteam en met klanten bij de ontwikkeling en "deployment" van InfoDoc?. The Health Agency biedt een maatschappelijk relevant werkveld, een prettige sfeer en werkomgeving in het centrum van Rotterdam, met nadrukkelijk ruimte voor initiatief en persoonlijke ontwikkeling. De functie betreft een fulltime dienstverband. Voor meer informatie kun je contact opnemen met Jan-Jaap Driessen jdriessen at thehealthagency.com, 0624776510. http://www.thehealthagency.com 's-Gravendijkwal 49b 3021 ED Rotterdam tel: +31 10 4132585 (tijdens kantooruren) Tot zover, jw -- i: www.thehealthagency.com n: Jan-Wijbrand Kolman e: jkolman at thehealthagency.com t: 010 476 88 98 From gijs at looze.net Tue Jun 19 14:59:59 2007 From: gijs at looze.net (Gijs Molenaar) Date: Tue, 19 Jun 2007 14:59:59 +0200 Subject: [python-nl] python list naar C array (of iets wat zoiets doet) Message-ID: <4677D34F.8040107@looze.net> Hallo, Ik ben bezig met de python wrapper van OpenCV, een handige library of Computer Vision dingen. De Python wrapper is eigenlijk een 1 op 1 mapping van alle C functies. Er lukt mij echter 1 ding niet: CvMat* cvGetPerspectiveTransform( const CvPoint2D32f* src, const CvPoint2D32f* dst, CvMat* map_matrix ); src en dst moeten een c array zijn met daarin 4x cv.cvPoint2D32f. Ik krijg het maar niet voor elkaar Ik heb een mooie python array met daarin 4x de nodige waardes, maar ik kan er geen python array in stoppen en het lukt me niet om het zelf in elkaar te frutsen met ctypes. Heeft iemand een idee wat ik moet doen? Zit ik in de goede hoek, of heb ik het compleet mis? Zelf C code schrijven is helaas geen optie. Bedankt, - een radeloze gijs From Jack.Jansen at cwi.nl Wed Jun 20 09:48:48 2007 From: Jack.Jansen at cwi.nl (Jack Jansen) Date: Wed, 20 Jun 2007 09:48:48 +0200 Subject: [python-nl] python list naar C array (of iets wat zoiets doet) In-Reply-To: <4677D34F.8040107@looze.net> References: <4677D34F.8040107@looze.net> Message-ID: On 19-jun-2007, at 14:59, Gijs Molenaar wrote: > Hallo, > > Ik ben bezig met de python wrapper van OpenCV, een handige library of > Computer Vision dingen. De Python wrapper is eigenlijk een 1 op 1 > mapping van alle C functies. > > Er lukt mij echter 1 ding niet: > > CvMat* cvGetPerspectiveTransform( const CvPoint2D32f* src, const > CvPoint2D32f* dst, CvMat* map_matrix ); > > > src en dst moeten een c array zijn met daarin 4x cv.cvPoint2D32f. Ik > krijg het maar niet voor elkaar Ik heb een mooie python array met > daarin > 4x de nodige waardes, maar ik kan er geen python array in stoppen > en het > lukt me niet om het zelf in elkaar te frutsen met ctypes. Heeft iemand > een idee wat ik moet doen? Zit ik in de goede hoek, of heb ik het > compleet mis? Zelf C code schrijven is helaas geen optie. Je zult iets meer context moeten geven: waar is die wrapper in geschreven? Kennelijk niet in C? Misschien een tip die helpt: als het altijd een array met 4 elementen is kun je 'm ook behandelen als struct. In C zou ik dat als volgt doen (aangenomen dat Point2D32f twee floats is): CvPoint2D32f arg[4]; if (PyArg_ParseTuple(args, "((ff)(ff)(ff)(ff))", &arg[0].x, &arg [0].y, arg[1].x, arg[1].y, etc etc etc) ) ... Aan de Python kant geef je dan ((0, 0), (1, 1), (2, 2), (3, 3)) door. -- Jack Jansen, , http://www.cwi.nl/~jack If I can't dance I don't want to be part of your revolution -- Emma Goldman From Jack.Jansen at cwi.nl Mon Jun 25 12:09:51 2007 From: Jack.Jansen at cwi.nl (Jack Jansen) Date: Mon, 25 Jun 2007 12:09:51 +0200 Subject: [python-nl] Fwd: Lecture by Guido van Rossum at July 5 References: <467F687E.2050406@cwi.nl> Message-ID: <2E8875D7-9FD9-4043-A410-0F24B94A10E2@cwi.nl> For your information (this talk is open to the general public): Begin forwarded message: > Speaker: Guido van Rossum (Google) > Title: Python 3000 > Date: Thursday, July 5, 2007 > Time: 15:00 > Venue: Centrum voor Wiskunde en Informatica > Diterections: See http://www.cwi.nl/about/ for directions and maps. > Lecture room: Turing > Abstract: > Since the renewed Python 3000 effort was announced in 2006, a lot has > happened. We've implemented about half of the promised changes in a > branch, we've solidified the schedule, there's a refactoring tool that > can do source-to-source translations, and we've produced several > gigabytes of discussion about language change proposals (most of which > were deemed to radical in the end :-) . In this talk I'll discuss the > Python 3000 road map, status, and what this means for the average > Python user. -- Jack Jansen, , http://www.cwi.nl/~jack If I can't dance I don't want to be part of your revolution -- Emma Goldman From Jack.Jansen at cwi.nl Mon Jun 25 13:19:37 2007 From: Jack.Jansen at cwi.nl (Jack Jansen) Date: Mon, 25 Jun 2007 13:19:37 +0200 Subject: [python-nl] Fwd: Lecture by Guido van Rossum at July 5 In-Reply-To: <726FCBA2-272D-4765-AE35-A317C8A5B70E@webtic.nl> References: <467F687E.2050406@cwi.nl> <2E8875D7-9FD9-4043-A410-0F24B94A10E2@cwi.nl> <726FCBA2-272D-4765-AE35-A317C8A5B70E@webtic.nl> Message-ID: <85E20383-E513-4292-A88D-B122E99C2EB6@cwi.nl> On 25-jun-2007, at 13:00, Paul Jongsma wrote: > > Hi Jack > Is het vrij toegankelijk of moet je nog ergens aanmelden? Vrij toegankelijk, en je hoeft je niet aan te melden. -- Jack Jansen, , http://www.cwi.nl/~jack If I can't dance I don't want to be part of your revolution -- Emma Goldman From vivian.kw.cheng at jpmorgan.com Thu Jun 28 04:39:33 2007 From: vivian.kw.cheng at jpmorgan.com (vivian.kw.cheng at jpmorgan.com) Date: Thu, 28 Jun 2007 13:39:33 +1100 Subject: [python-nl] Seek Help - Writing a Python project Message-ID: Hello, I would like to know if you or anyone can help with my master project "write a language parser in Python" I have only 1 subject left in my master "Science in speech and language processing" course, however due to work issue, I don't have time to complete it. I would like to hire someone who can help me to complete this project. Please let me know if you are able to do so or anyone you know can introduce me for this help. Many Thanks Regards, Vivian Cheng Market Data Analyst - Asia IBTech Trading Technology JPMorgan Chase Bank, N.A. ( DID: +61 2 9220 7915 : Fax: +61 2 9220 7855 ) GDP: 220 7915 * mailto: vivian.kw.cheng at jpmorgan.com This communication is for informational purposes only. It is not intended as an offer or solicitation for the purchase or sale of any financial instrument or as an official confirmation of any transaction. All market prices, data and other information are not warranted as to completeness or accuracy and are subject to change without notice. Any comments or statements made herein do not necessarily reflect those of JPMorgan Chase & Co., its subsidiaries and affiliates. This transmission may contain information that is privileged, confidential, legally privileged, and/or exempt from disclosure under applicable law. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution, or use of the information contained herein (including any reliance thereon) is STRICTLY PROHIBITED. Although this transmission and any attachments are believed to be free of any virus or other defect that might affect any computer system into which it is received and opened, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by JPMorgan Chase & Co., its subsidiaries and affiliates, as applicable, for any loss or damage arising in any way from its use. If you received this transmission in error, please immediately contact the sender and destroy the material in its entirety, whether in electronic or hard copy format. Thank you. Please refer to http://www.jpmorgan.com/pages/disclosures for disclosures relating to UK legal entities. From gijs at looze.net Thu Jun 28 18:25:35 2007 From: gijs at looze.net (Gijs Molenaar) Date: Thu, 28 Jun 2007 18:25:35 +0200 Subject: [python-nl] Go Vision Message-ID: <4683E0FF.3040609@looze.net> Hallo mensen, Wij, studenten aan de Uva, hebben in en python een stukje software gemaakt dat probeert Go borden te herkennen en de zetten bijhoudt. Onze deadline is voorbij, dus we hebben besloten een 1.0 te maken. Met 9x9 borden gaat het vrij goed, 19x19 is nog erg foutgevoelig. Als iemand er nog mee wilt spelen of er iets van wilt leren, de code staat online: http://go.pythonic.nl Elke feedback is welkom. Er kan nog een boel verbeterd worden, misschien komt er ooit een 2.0. Als iemand anders het leuk vind om aan de code te werken, laat maar weten. groet, - gijs