From astrogirl1303 at hotmail.com Sat Apr 1 07:40:14 2006 From: astrogirl1303 at hotmail.com (Lani Stokes) Date: Sat, 01 Apr 2006 05:40:14 +0000 Subject: [python-uk] TEST Message-ID: An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/python-uk/attachments/20060401/3086836f/attachment.htm From durango at mail2world.com Sat Apr 1 06:41:06 2006 From: durango at mail2world.com (Mr X) Date: Fri, 31 Mar 2006 20:41:06 -0800 Subject: [python-uk] Python, VB math simple problem Message-ID: <2211901c65546$7d0fffb0$0a10010a@mail2world.com> Hi looking for help with what should be a fairly simple Python problem, relating to VB inter-operability. Got a great response from a fellow named Matt at help at python.org, pointed me in some good directions - some areas, concerns still foggy on, the below thread is included.... any feedback on this simple dilemma would be very appreciated. Thanks, D thread follows below; ------------------------------------ To: help at python.org Subject: Problem with Python math functions and VB Date: 3/30/2006 9:39:28 PM Download Message Display Headers Printer Friendly Previous | Next Wondering if you might either know how to solve the following. I've a background in Visual Basic, and am using an old version, 4.0, it compiles to a smaller executable which I prefer. I find myself in an odd situation, needing a very simple yet powerful capability of Python for a VB app Im working on. Simply, a large 300 digit number is divided by a smaller number ranging from 1 to 3 digits. I.e; This large 300 digit number is generated as a string from the VB app, and I want to input this somehow from the VB app directly to Python for simple math operations. Where; x = 300 digit number, y = divisor ( say '37') x / 37 I want to divide x by y but I want the remainder of this division to at least 3 or 4 decimal places, so my Python script at the command line; x %y /y. = z So now I want to take the resultant, the full number plus its remainder, and I want to round this number up to the next highest number and divide it by the same constant; z rounded up to next highest number (never the lowest) so z /y = z Long Remove the 'L' at the end, round up the last digit of z = Z Then; Z %y /y. = a Then I want the last five digits of z (not Z) and a truncated at the end, so the last digit before the decimal point and the four digits past the decimal point printed to a text file. I want to be able to open the text file with the VB app and use this data as inputs. ========== Ok, so here is my dilemma, I know VERY litle about Python and a fair bit about VB. Ideally, I'd love to be able to simply have some extremely small executable that just accepts inputs does the calculations above and then spits out the outputs. If it were possible to write some simple lines of math code in Python and then compile these scripts in Python to a Windows compatible executable,that would be fantastic. If I could simply have my VB app, 'call' the name of the tiny Python executable, and then the Python executable just automatically looked for a named text file (created by the VB app) and extracted the 300 digit number from this, then performed the calcs, then spit this data out as a new text file name it created, which I could then use the VB app to open and read from, THAT would be ideal. However, I don't know if Python can compile scripts to an exe? If it can how could I find out how to do this? If it doesn't, how could I get VB to directly pass commands to the Python command line and then automatically extract the outputs? Shelling out from VB to Python would be tough to the command line I think, since the Python command line uses the 'Edit / Mark, Paste' approach to inserting, copy inputs, outputs and this would be virtually untenable, as far as I can tell to automate in a VB shell out routine. So basically, how the heck can I access Pythons ability to perform simple calculations on very large numbers, easily, from within VB 4.0 ? There must be a way, it seems like such a simple think to do, especially since the actual math operations are so simple, straight forward, and would never change..... Any ideas? ------ Matthew, thanks for your response. <-----Original Message-----> >From: Matthew Dixon Cowles >Sent: 3/31/2006 9:41:18 AM >To: durango at mail2world.com >Cc: help at python.org >Subject: Re: [Python-Help] Problem with Python math functions and VB >I'm sure that there's a way to do that, but I'm not familiar with >Visual Basic and I don't know what inter-process communication >facilities it offers. Is there a person or group you might direct me to that has worked with this inter-process communication between VB and Python? >I don't think that Python is going to be able to do that for you out >of the box. Hundreds of digits of floating-point precision is a lot. Could you explain that a bit more, sorry Im not sure what you mean by 'out of the box' ? If I run the Python command line screen in windows and manually type out a very large number, say 180 digits; where 'X' = very large number; X %37 /37. returns what Im after, value wise..... but of course I don't want to do this manually each time for every dividend. >You might find that one of the Python modules that let you use an >extended-precision library would do what you want. GMPY is one: >http://gmpy.sourceforge.net/ Hey, thats interesting, wonder if these modules can be operated on with VB..... >> So now I want to take the resultant, the full number plus its >> remainder, and I want to round this number up >> to the next highest number and divide it by the same constant; > >That's easy enough. > >> I want to be able to open the text file with the VB app and use this >> data as inputs. > >Python can write to a file without any trouble, so it that form of >inter-process communication suits you, you shouldn't have much >trouble. I assume that Visual Basic has an easy way to start a >program and supply it with arguments, so you could have your Python >program get its inputs from sys.argv. What is sys.argv ? Thats really good news. In fact, all I really need for the moment is a python executable that; ================ PYTHON ALGORITHM ABSTRACT a) opens a text file b) reads a string from the file, which is a very large number c) performs simple arithmetic operations; X %37 /37. = y (four digit remainder after decimal point) X /37 = w (quotient as long, the resulting output is stored as a variable, the 'L' suffix tagged on the end of this resultant then gets removed. then the last digit in the quotient resultant string is increased in value by one, rounded upwards = 'Z' then Z %37 /37. = a then, y and a are printed to a text file with hard returns between them. Thats it, thats all I need to do. =================== >Alas, it's not going to be extremely small. There isn't a compiler >from Python to machine code. Py2exe will bundle a Python program, >with everything that it needs to run, into a single executable >archive. But the archive isn't small. Py2exe is at: > >http://www.py2exe.org/ the most important thing is the functionality, I'll sacrifice size if I have to. My guess is this should work based on your comments, because perhaps all I really have to do is have VB dump out the value of the Very large number, `180 to 300 digits or so', to a text file, which then becomes the input data for the Python executable, and then if I simply call the name of the Python executable from VB as an instance, then the Python App runs, spits out the data as a new text file, then the VB app goes and opens the new text file and reads in the values, and voila! There it is. I'm pretty sure I can call the Python app from VB....... the alternative to all this would be to try and feed Python scripts directly to Python from VB, which I have NO idea how to do or where to begin.... and am guessing would be much more messy... I haven't programmed in Python, how would the "PYTHON ALGORITHM ABSTRACT" I describe above look like, code wise? Is this fairly easy for you to describe? >It may be that Python isn't the best solution for you here. Are there >extended-precision libraries for Visual Basic? Alas, none that I know of that are reliable and not incredibly expensive, been looking for years, plus Im hooped because I have to work with VB 4.0 instead of 6 +, guh.... >Regards, >Matt Matt..... good name, why do I always seem to get along with Matts, you people keep popping up in my life and its always a blast! Best regards, D

_______________________________________________________________
Get the FREE email that has everyone talking at http://www.mail2world.com
Unlimited Email Storage – POP3 – Calendar – SMS – Translator – Much More!
-------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/python-uk/attachments/20060331/9d6b513f/attachment.html From andy at reportlab.com Sat Apr 1 10:10:38 2006 From: andy at reportlab.com (Andy Robinson) Date: Sat, 01 Apr 2006 09:10:38 +0100 Subject: [python-uk] Python, VB math simple problem In-Reply-To: <2211901c65546$7d0fffb0$0a10010a@mail2world.com> References: <2211901c65546$7d0fffb0$0a10010a@mail2world.com> Message-ID: <442E357E.9030408@reportlab.com> > Ideally, I'd love to be able to simply have some extremely small > executable that just accepts inputs > does the calculations above and then spits out the outputs. If it were > possible to write some > simple lines of math code in Python and then compile these scripts in > Python to a Windows > compatible executable,that would be fantastic. You can use py2exe (www.py2exe.org) to create an executable, but it won't be tiny. If you slim down the imported modules to what you need which is minimal, I'd be surprised if it ended up less than 2Mb. It is, however, effortless. You might find it easier to expose your function as a COM server, which is also very easy in Python and py2exe will again let you make a slimmed down distribution. This way there will be no startup overhead of shelling out every time. At the risk of being cheeky, let me say that the book Mark Hammond and I wrote in 2000, Python Programming on Win32, was aimed exactly at people with a VB background and covers the integration possibilities you'll need in a lot of detail. The same info is available more briefly in tutorials in the Pythonwin online help. The main thing which changes since then is having py2exe and Python zip archives to make it all easier to deploy. Good luck, Andy Robinson From ms at cerenity.org Sat Apr 1 21:14:15 2006 From: ms at cerenity.org (Michael) Date: Sat, 1 Apr 2006 20:14:15 +0100 Subject: [python-uk] TEST In-Reply-To: References: Message-ID: <200604012014.15243.ms@cerenity.org> On Saturday 01 April 2006 06:40, Lani Stokes wrote: > TEST import unittest import TEST class SmokeTests(unittest.TestCase): def test_SmokeTest(self): """__init__ - Called with no arguments succeeds""" T = TEST.TEST() if __name__=="__main__": unittest.main() Michael. From avip88 at dsl.pipex.com Sun Apr 2 22:04:43 2006 From: avip88 at dsl.pipex.com (susan walthew) Date: Sun, 2 Apr 2006 21:04:43 +0100 Subject: [python-uk] Buy Valium the Easy Way Message-ID: <000501c65690$aff164f0$5a49b351@youra6a15351b1> Hi there, I want to buy some Valium Roche 10mg - 30 tablets - for a funeral I'm going to in 2 weeks time! Before I put in an order for some - how long do you take to ship them to your customers and how much will they cost in British sterling? I'm not properly set-up with Paypal yet - until in a few days, so would you accept a cheque for the item? Please let me know as soon as you can! Thanks, Susan Walthew -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/python-uk/attachments/20060402/7171f896/attachment.htm From olajide_cslnig at yahoo.com Thu Apr 13 08:32:48 2006 From: olajide_cslnig at yahoo.com (shoola mike) Date: Wed, 12 Apr 2006 23:32:48 -0700 (PDT) Subject: [python-uk] i like to come down to U.K Message-ID: <20060413063248.39793.qmail@web34708.mail.mud.yahoo.com> Dear Tim Couper , I wouldlike to request you to register me for your 2006: Python UK Conference 2006 (Oxford, UK)Incase registration fee is needed I kindly request to pay after getting the Visa.This is so because my Country-Nigeria, is not Visa-free. Secondly,I kindly request for an official invitation letter. Hope to hear from you soon. Kind regards, tina shoola philips projects center --------------------------------- Blab-away for as little as 1?/min. Make PC-to-Phone Calls using Yahoo! Messenger with Voice. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/python-uk/attachments/20060412/f518567e/attachment.htm From andy at reportlab.com Thu Apr 13 09:02:28 2006 From: andy at reportlab.com (Andy Robinson) Date: Thu, 13 Apr 2006 08:02:28 +0100 Subject: [python-uk] i like to come down to U.K In-Reply-To: <20060413063248.39793.qmail@web34708.mail.mud.yahoo.com> References: <20060413063248.39793.qmail@web34708.mail.mud.yahoo.com> Message-ID: <443DF784.8090908@reportlab.com> shoola mike wrote: > Dear Tim Couper , > I wouldlike to request you to register me for your > 2006: Python UK Conference 2006 (Oxford, UK)Incase > registration fee is needed I kindly request to pay > after getting the Visa.This is so because my > Country-Nigeria, is not Visa-free. > > Secondly,I kindly request for an official invitation > letter. Hope to hear from you soon. > Kind regards, I regret to inform you that (a) it's too late, the conference is 100% sold out and starts next week (b) our policy is only to grant visa letters for people with a proven track record of contributing to verifiable software projects, due to large numbers of fraudulent claims. Best Regards, Andy Robinson ACCU Conference Committee From chacaraconfeccoes at dglnet.com.br Tue Apr 18 03:52:21 2006 From: chacaraconfeccoes at dglnet.com.br (Chácara Confecções) Date: Tue, 18 Apr 2006 01:52:21 GMT Subject: [python-uk] Moda Feminina . Message-ID: <20060418015112.71C2334C6@mx1.dglnet.com.br> An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/python-uk/attachments/20060418/fdaf4ded/attachment.html From duncan.booth at suttoncourtenay.org.uk Tue Apr 18 09:41:35 2006 From: duncan.booth at suttoncourtenay.org.uk (Duncan Booth) Date: Tue, 18 Apr 2006 08:41:35 +0100 Subject: [python-uk] I'm not going to the ACCU conference Message-ID: <4444982F.7070803@suttoncourtenay.org.uk> I didn't get myself organised to sign up for the conference this year, but does anyone fancy an evening meet-up for a drink and/or food somewhere in Oxford outside the confines of the conference venue? From mwh at python.net Tue Apr 18 10:47:10 2006 From: mwh at python.net (Michael Hudson) Date: Tue, 18 Apr 2006 09:47:10 +0100 Subject: [python-uk] I'm not going to the ACCU conference References: <4444982F.7070803@suttoncourtenay.org.uk> Message-ID: <2mk69njmnl.fsf@starship.python.net> Duncan Booth writes: > I didn't get myself organised to sign up for the conference this year, > but does anyone fancy an evening meet-up for a drink and/or food > somewhere in Oxford outside the confines of the conference venue? Sure! When is good for you? Wednesday night is the "Blackwells reception", don't know what that is or how long it's likely to go on for, Thursday night has a couple of mystery sessions at the end of the day of unclear length and Friday has the dinner... Cheers, mwh -- It is never worth a first class man's time to express a majority opinion. By definition, there are plenty of others to do that. -- G. H. Hardy From andy at reportlab.com Tue Apr 18 12:04:42 2006 From: andy at reportlab.com (Andy Robinson) Date: Tue, 18 Apr 2006 11:04:42 +0100 Subject: [python-uk] I'm not going to the ACCU conference In-Reply-To: <2mk69njmnl.fsf@starship.python.net> References: <4444982F.7070803@suttoncourtenay.org.uk> <2mk69njmnl.fsf@starship.python.net> Message-ID: <4444B9BA.3070306@reportlab.com> Michael Hudson wrote: > Duncan Booth writes: > > >>I didn't get myself organised to sign up for the conference this year, >>but does anyone fancy an evening meet-up for a drink and/or food >>somewhere in Oxford outside the confines of the conference venue? > > > Sure! When is good for you? Wednesday night is the "Blackwells > reception", don't know what that is or how long it's likely to go on > for, Thursday night has a couple of mystery sessions at the end of the > day of unclear length and Friday has the dinner... Blackwells' drinks budget is not infinite and I guess it will end by 20:00 latest. Whichever evening you want I suggest any non-delegates come to the hotel bar (just inside entrance) between 19:30-20:00 and Pythonistas gather there before going out for food... - Andy From chris at simplistix.co.uk Tue Apr 18 17:11:49 2006 From: chris at simplistix.co.uk (Chris Withers) Date: Tue, 18 Apr 2006 16:11:49 +0100 Subject: [python-uk] I'm not going to the ACCU conference In-Reply-To: <4444B9BA.3070306@reportlab.com> References: <4444982F.7070803@suttoncourtenay.org.uk> <2mk69njmnl.fsf@starship.python.net> <4444B9BA.3070306@reportlab.com> Message-ID: <444501B5.2080808@simplistix.co.uk> Andy Robinson wrote: > Blackwells' drinks budget is not infinite and I guess it will end by > 20:00 latest. Whichever evening you want I suggest any non-delegates > come to the hotel bar (just inside entrance) between 19:30-20:00 and > Pythonistas gather there before going out for food... Thursday night would be grand for me, since I'm likely to be a little pre-occupied on the Wednesday night ;-) Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk From duncan.booth at suttoncourtenay.org.uk Tue Apr 18 19:02:41 2006 From: duncan.booth at suttoncourtenay.org.uk (Duncan Booth) Date: Tue, 18 Apr 2006 18:02:41 +0100 Subject: [python-uk] I'm not going to the ACCU conference In-Reply-To: <4444B9BA.3070306@reportlab.com> References: <4444982F.7070803@suttoncourtenay.org.uk> <2mk69njmnl.fsf@starship.python.net> <4444B9BA.3070306@reportlab.com> Message-ID: <44451BB1.6000003@suttoncourtenay.org.uk> Andy Robinson wrote: > Blackwells' drinks budget is not infinite and I guess it will end by > 20:00 latest. Whichever evening you want I suggest any non-delegates > come to the hotel bar (just inside entrance) between 19:30-20:00 and > Pythonistas gather there before going out for food... > I'll aim to be in the bar Wednesday evening sometime between 19:00 and 20:00. My wife (Judy) will be at the conference, so it depends whether she decides she's had enough and goes home early (in which case I'll be in later), or wants to stick it out for the evening in which case I'll be along pretty early. From simon at brunningonline.net Mon Apr 24 15:14:55 2006 From: simon at brunningonline.net (Simon Brunning) Date: Mon, 24 Apr 2006 14:14:55 +0100 Subject: [python-uk] London 2.0 rc5 Message-ID: <8c7f10c60604240614s36e01283yebce90a349f688e2@mail.gmail.com> Sam Newman has organised London 2.0 rc5 for the evening of May the 3rd at The Olde Bank Of England, 194 Fleet Street, London EC4A 2LT. The demos at rc4 were 100% Python related, so the PSUs cunning plan to infiltrate and take over these events is clearly running to schedule. BTW, if you are using Google Calendar (), I've set up a public Calendar called "London Python", into which I'll put any London based Python related events I come across. If you are not using Google Calendar yet, you can find an RSS feed for it at . If you are not using Google Calendar *or* an RSS reader yet, well, you are probably too 20th century to be interested in any of the events in any case. ;-) -- Cheers, Simon B, simon at brunningonline.net, http://www.brunningonline.net/simon/blog/ From andy at reportlab.com Mon Apr 24 15:21:30 2006 From: andy at reportlab.com (Andy Robinson) Date: Mon, 24 Apr 2006 14:21:30 +0100 Subject: [python-uk] London 2.0 rc5 In-Reply-To: <8c7f10c60604240614s36e01283yebce90a349f688e2@mail.gmail.com> References: <8c7f10c60604240614s36e01283yebce90a349f688e2@mail.gmail.com> Message-ID: <444CD0DA.2040404@reportlab.com> Simon Brunning wrote: > Sam Newman has organised London 2.0 rc5 for the evening of May the 3rd > at The Olde Bank Of England, 194 Fleet Street, London EC4A 2LT. The > demos at rc4 were 100% Python related, so the PSUs cunning plan to > infiltrate and take over these events is clearly running to schedule. Thanks for this, Simon! After various discussions at ACCU I am hoping to start organising a few evening Python talks for the not-yet-converted; May 3rd would be the perfect timing to conspire on this. > BTW, if you are using Google Calendar > (), I've set up a public Calendar > called "London Python", into which I'll put any London based Python > related events I come across. No results for the search just yet. Maybe they cache stuff, will try again later... - Andy From seb at jamkit.com Mon Apr 24 15:36:06 2006 From: seb at jamkit.com (Seb Bacon) Date: Mon, 24 Apr 2006 14:36:06 +0100 Subject: [python-uk] London 2.0 rc5 In-Reply-To: <444CD0DA.2040404@reportlab.com> References: <8c7f10c60604240614s36e01283yebce90a349f688e2@mail.gmail.com> <444CD0DA.2040404@reportlab.com> Message-ID: <444CD446.9060402@jamkit.com> Andy Robinson wrote: >>BTW, if you are using Google Calendar >>(), I've set up a public Calendar >>called "London Python", into which I'll put any London based Python >>related events I come across. > > > No results for the search just yet. Maybe they cache stuff, will try > again later... In the meantime, a workaround is to paste Simon's RSS link (below) into the "Public Calendar Address" tab of the "Add other calendar" function. Seb From simon at brunningonline.net Mon Apr 24 15:58:45 2006 From: simon at brunningonline.net (Simon Brunning) Date: Mon, 24 Apr 2006 14:58:45 +0100 Subject: [python-uk] London 2.0 rc5 In-Reply-To: <444CD0DA.2040404@reportlab.com> References: <8c7f10c60604240614s36e01283yebce90a349f688e2@mail.gmail.com> <444CD0DA.2040404@reportlab.com> Message-ID: <8c7f10c60604240658y45cac2cmc54b3e85b6d89af1@mail.gmail.com> On 4/24/06, Andy Robinson wrote: > Simon Brunning wrote: > > Sam Newman has organised London 2.0 rc5 for the evening of May the 3rd > > at The Olde Bank Of England, 194 Fleet Street, London EC4A 2LT. The > > demos at rc4 were 100% Python related, so the PSUs cunning plan to > > infiltrate and take over these events is clearly running to schedule. > > Thanks for this, Simon! > > After various discussions at ACCU I am hoping to start organising a few > evening Python talks for the not-yet-converted; May 3rd would be the > perfect timing to conspire on this. Perfect. See you there. I'd also like to hear how ACCU went... > > BTW, if you are using Google Calendar > > (), I've set up a public Calendar > > called "London Python", into which I'll put any London based Python > > related events I come across. > > No results for the search just yet. Maybe they cache stuff, will try > again later... Strange. It is marked as public, but it isn't showing up yet. Maybe soon... -- Cheers, Simon B, simon at brunningonline.net, http://www.brunningonline.net/simon/blog/ From andy at reportlab.com Mon Apr 24 15:59:02 2006 From: andy at reportlab.com (Andy Robinson) Date: Mon, 24 Apr 2006 14:59:02 +0100 Subject: [python-uk] London 2.0 rc5 In-Reply-To: <444CD446.9060402@jamkit.com> References: <8c7f10c60604240614s36e01283yebce90a349f688e2@mail.gmail.com> <444CD0DA.2040404@reportlab.com> <444CD446.9060402@jamkit.com> Message-ID: <444CD9A6.6050001@reportlab.com> > In the meantime, a workaround is to paste Simon's RSS link (below) into > the "Public Calendar Address" tab of the "Add other calendar" function. Yup, that works...thanks. Google Calendar is very cool. (he says being dragged kicking and screaming into the 21st century...) From ms at cerenity.org Tue Apr 25 00:39:42 2006 From: ms at cerenity.org (Michael) Date: Mon, 24 Apr 2006 23:39:42 +0100 Subject: [python-uk] Manchester 2.0 Beta? Re: London 2.0 rc5 In-Reply-To: <8c7f10c60604240614s36e01283yebce90a349f688e2@mail.gmail.com> References: <8c7f10c60604240614s36e01283yebce90a349f688e2@mail.gmail.com> Message-ID: <200604242339.42575.ms@cerenity.org> Hi! It's been a few months since the last Northern Python Meetup, if anyone's up for a repeat, how about having Manchester 2.1 Beta ? :-) Having it the same day as the London meet would be cool, but possibly too short notice? If so, how about having it as the same openness as London - that is having it dynamic languages rather than just Python? (Personally I think that'd be a good idea) If so, was the Lass a good idea, or does anyone have a better idea? Would people prefer a different venue? Michael. On Monday 24 April 2006 14:14, Simon Brunning wrote: > Sam Newman has organised London 2.0 rc5 for the evening of May the 3rd > at The Olde Bank Of England, 194 Fleet Street, London EC4A 2LT. The > demos at rc4 were 100% Python related, so the PSUs cunning plan to > infiltrate and take over these events is clearly running to schedule. > > BTW, if you are using Google Calendar > (), I've set up a public Calendar > called "London Python", into which I'll put any London based Python > related events I come across. If you are not using Google Calendar > yet, you can find an RSS feed for it at > ndar.google.com/public/basic>. If you are not using Google Calendar *or* an > RSS reader yet, well, you are probably too 20th century to be interested in > any of the events in any case. ;-) > > -- > Cheers, > Simon B, > simon at brunningonline.net, > http://www.brunningonline.net/simon/blog/ > _______________________________________________ > python-uk mailing list > python-uk at python.org > http://mail.python.org/mailman/listinfo/python-uk From simon at brunningonline.net Tue Apr 25 16:48:36 2006 From: simon at brunningonline.net (Simon Brunning) Date: Tue, 25 Apr 2006 15:48:36 +0100 Subject: [python-uk] London 2.0 rc5 In-Reply-To: <444CD0DA.2040404@reportlab.com> References: <8c7f10c60604240614s36e01283yebce90a349f688e2@mail.gmail.com> <444CD0DA.2040404@reportlab.com> Message-ID: <8c7f10c60604250748w43cf1bfbwbf202b279d54d7da@mail.gmail.com> On 4/24/06, Andy Robinson wrote: > > BTW, if you are using Google Calendar > > (), I've set up a public Calendar > > called "London Python", into which I'll put any London based Python > > related events I come across. > > No results for the search just yet. Maybe they cache stuff, will try > again later... It appears to have turned up now. Thank you for your patience. -- Cheers, Simon B, simon at brunningonline.net, http://www.brunningonline.net/simon/blog/ From mgrazebrook at compuserve.com Tue Apr 25 19:30:49 2006 From: mgrazebrook at compuserve.com (mgrazebrook at compuserve.com) Date: Tue, 25 Apr 2006 13:30:49 -0400 Subject: [python-uk] London 2.0 rc5 Message-ID: <380-22006422517304931@M2W130.mail2web.com> It works! Original Message: ----------------- From: Simon Brunning simon at brunningonline.net Date: Tue, 25 Apr 2006 15:48:36 +0100 To: python-uk at python.org Subject: Re: [python-uk] London 2.0 rc5 On 4/24/06, Andy Robinson wrote: > > BTW, if you are using Google Calendar > > (), I've set up a public Calendar > > called "London Python", into which I'll put any London based Python > > related events I come across. > > No results for the search just yet. Maybe they cache stuff, will try > again later... It appears to have turned up now. Thank you for your patience. -- Cheers, Simon B, simon at brunningonline.net, http://www.brunningonline.net/simon/blog/ _______________________________________________ python-uk mailing list python-uk at python.org http://mail.python.org/mailman/listinfo/python-uk -------------------------------------------------------------------- mail2web - Check your email from the web at http://mail2web.com/ . From mwh at python.net Tue Apr 25 22:01:51 2006 From: mwh at python.net (Michael Hudson) Date: Tue, 25 Apr 2006 21:01:51 +0100 Subject: [python-uk] Manchester 2.0 Beta? Re: London 2.0 rc5 References: <8c7f10c60604240614s36e01283yebce90a349f688e2@mail.gmail.com> <200604242339.42575.ms@cerenity.org> Message-ID: <2mk69dh1ao.fsf@starship.python.net> Michael writes: > Hi! > > > It's been a few months since the last Northern Python Meetup, if anyone's up > for a repeat, how about having Manchester 2.1 Beta ? :-) What about Bristol? Not that I'm there very often at the moment, I'm more likely to make a London meet en route to an airport... Cheers, mwh -- 8. A programming language is low level when its programs require attention to the irrelevant. -- Alan Perlis, http://www.cs.yale.edu/homes/perlis-alan/quotes.html From gjh at higginsandmacfarlane.com Tue Apr 25 22:19:56 2006 From: gjh at higginsandmacfarlane.com (Graham Higgins) Date: Tue, 25 Apr 2006 21:19:56 +0100 Subject: [python-uk] Manchester 2.0 Beta? Re: London 2.0 rc5 In-Reply-To: <2mk69dh1ao.fsf@starship.python.net> References: <8c7f10c60604240614s36e01283yebce90a349f688e2@mail.gmail.com> <200604242339.42575.ms@cerenity.org> <2mk69dh1ao.fsf@starship.python.net> Message-ID: On 25 Apr 2006, at 21:01, Michael Hudson wrote: > What about Bristol? Not that I'm there very often at the moment, I'm > more likely to make a London meet en route to an airport... Not going to make it to London, could make it to Bristol. Cheers, Graham. From ms at cerenity.org Tue Apr 25 23:32:00 2006 From: ms at cerenity.org (Michael) Date: Tue, 25 Apr 2006 22:32:00 +0100 Subject: [python-uk] Manchester 2.0 Beta? Re: London 2.0 rc5 In-Reply-To: <2mk69dh1ao.fsf@starship.python.net> References: <8c7f10c60604240614s36e01283yebce90a349f688e2@mail.gmail.com> <200604242339.42575.ms@cerenity.org> <2mk69dh1ao.fsf@starship.python.net> Message-ID: <200604252232.01507.ms@cerenity.org> On Tuesday 25 April 2006 21:01, Michael Hudson wrote: ... > What about Bristol? Not that I'm there very often at the moment, I'm > more likely to make a London meet en route to an airport... For me, London would be closer (in terms of trains) than Bristol. (Indeed amsterdam would be quicker to get to, but I'm not suggesting that ;-) Michael. From fuzzyman at voidspace.org.uk Wed Apr 26 11:25:04 2006 From: fuzzyman at voidspace.org.uk (Michael Foord) Date: Wed, 26 Apr 2006 10:25:04 +0100 Subject: [python-uk] Northampton Meetup Message-ID: <444F3C70.1070505@voidspace.org.uk> Hello all, While we're discussing meetups (I hope to be at the May 3rd one), would anyone be interested in a Northampton meetup sometime ? Fuzzyman http://www.voidspace.org.uk/python/index.shtml From Marek.Isalski at smuht.nwest.nhs.uk Thu Apr 27 13:11:27 2006 From: Marek.Isalski at smuht.nwest.nhs.uk (Marek Isalski) Date: Thu, 27 Apr 2006 12:11:27 +0100 Subject: [python-uk] Manchester 2.0 Beta? Re: London 2.0 rc5 Message-ID: I'd be interested in a Manchester Python 2.1b on 3/May -- and the Lass sounds fine to me! >>> Michael 24/04/2006 23:39:42 >>> Hi! If so, was the Lass a good idea, or does anyone have a better idea? Would people prefer a different venue? ------------------------------------------------------------- This message has been scanned for all viruses by Sophos Sweep <<<>>> From olajide_cslnig at yahoo.com Fri Apr 28 11:47:14 2006 From: olajide_cslnig at yahoo.com (shoola mike) Date: Fri, 28 Apr 2006 02:47:14 -0700 (PDT) Subject: [python-uk] Manchester 2.0 Beta? Re: London 2.0 rc5 In-Reply-To: Message-ID: <20060428094714.19934.qmail@web34711.mail.mud.yahoo.com> hi, how is your lovely day with you hope it's cool .am interested in Manchester Python.....have a lovely weekend Marek Isalski wrote: I'd be interested in a Manchester Python 2.1b on 3/May -- and the Lass sounds fine to me! >>> Michael 24/04/2006 23:39:42 >>> Hi! If so, was the Lass a good idea, or does anyone have a better idea? Would people prefer a different venue? ------------------------------------------------------------- This message has been scanned for all viruses by Sophos Sweep <<<>>> _______________________________________________ python-uk mailing list python-uk at python.org http://mail.python.org/mailman/listinfo/python-uk --------------------------------- New Yahoo! Messenger with Voice. Call regular phones from your PC and save big. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/python-uk/attachments/20060428/b4674404/attachment.htm