Re: PDF Generation With Reportlab

2010-06-30 Thread Albert Leibbrandt
On 2010/06/30 10:52 AM, Tim Roberts wrote: Albert Leibbrandt wrote: I am hoping there is someone out there that knows reportlab quite well. I posted this on the reportlab mailing list but there is not much activity on that list Never the less, that is the correct forum for this

PDF Generation With Reportlab

2010-06-28 Thread Albert Leibbrandt
Hi All I am hoping there is someone out there that knows reportlab quite well. I posted this on the reportlab mailing list but there is not much activity on that list I am currently generating a pdf report using reportlab 2.3 and python 2.5.4. The report has a table that spans multiple pages

Re: Need help on left padding

2008-04-28 Thread Albert Leibbrandt
Marc 'BlackJack' Rintsch wrote: On Mon, 28 Apr 2008 04:37:02 -0700, rajesh kataraki wrote: My requirement is I am using one variable ex. var = 5 which is integer. And this variable, I m using in some string. But I want this var to be used as 005 again integer in this string.

CD Burning

2006-04-04 Thread Albert Leibbrandt
Hi Can anybody tell me which windows API or python module they are using for writing cd's / dvd's with python? Thanks Albert -- http://mail.python.org/mailman/listinfo/python-list

Re: GIS

2006-04-03 Thread Albert Leibbrandt
own little project. > So you will be able to ask more precises questions. > > Cyril > > On 4/3/06, *Albert Leibbrandt* <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > Hi > > I need to get myself familiarised with GIS, specifically postgis f

GIS

2006-04-03 Thread Albert Leibbrandt
Hi I need to get myself familiarised with GIS, specifically postgis for postgres. Can anyone give some advice, or some docs that start at the beginning. I've tried the postgis mailing list but it does not seem as if that list is very active. Perhaps you guys know of gis packages for python? T

Re: Inserting record with Microsoft Access

2006-02-09 Thread Albert Leibbrandt
. > >Thanks, >Jeff > > > > > I had to do something similiar in sql server and the experts back then told me that the only way is to write a stored procedure. aparently sql server does not have sequences and I am guessing that access is the same. cheers albert -- Albert

Re: how to remove using replace function?

2006-02-09 Thread Albert Leibbrandt
Rinzwind wrote: >Works for me. > > > txt = "an unfortunate in the middle" print txt.replace("", "") >an unfortunate in the middle > > > > >Though I don't like the 2 spaces it gives ;) > > > so use regex and replace both the double spaces and the cheers albert

Re: cx_Oracle entry point error

2006-02-08 Thread Albert Leibbrandt
[EMAIL PROTECTED] wrote: >I downloaded cx_Oracle from >http://www.cxtools.net/default.aspx?nav=cxorlb and selected the windows >installer for Oracle 8i, Python 2.4 > >>From the readme.txt file: >BINARY INSTALL: >Place the file cx_Oracle.pyd or cx_Oracle.so anywhere on your Python >path. > >So I tr

Re: only a simple xml reader value

2006-02-08 Thread Albert Leibbrandt
[EMAIL PROTECTED] wrote: >I'm newbie with that xml stuff. > >The only thing I must read is the response I get from a EPP server. >A response like this: > > >http://www.eurid.eu/xml/epp/epp-1.0"; >xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; >xmlns:contact="http://www.eurid.eu/xml/epp/con

Large XML Document Processing

2006-01-27 Thread Albert Leibbrandt
Hi Just want to check which xml parser you guys have found to be the quickest. I have xml documents with 250 000 records or more and the processing of these documents are taking way to long. The validation is the main problem. Any module names, non validating would be find to, would help a lo

pymssql and bind variables

2005-09-23 Thread Albert Leibbrandt
I need to write a little app that connects to an MS SQL server and for this I decided on the pymssql module. At this stage I am trying to find out if MS SQL server can handle bind variables. If anybody can give me an answer and perhaps a example it will be appreciated   Thanks Albert

Download Mail Via Python

2005-09-12 Thread Albert Leibbrandt
I am busy writing a little prog to download mail and put the contents of the emails into a database. The problem that I am currently facing is that I can view the message body only if it was sent with a mail client other than MS outlook or outlook express. What am I missing, any reading mat

error when parsing xml

2005-09-05 Thread Albert Leibbrandt
>> I use xml.dom.minidom to parse some xml, but when input >> contains some specific caracters(æ, ø and å), I get an >> UnicodeEncodeError, like this: >> >> UnicodeEncodeError: 'ascii' codec can't encode character >> u'\xe6' in position 604: ordinal not in range(128). >> >> How can I avoid this err

RE: trying to access Oracle

2005-07-27 Thread Albert Leibbrandt
>> I am trying to access Oracle using the cx_Oracle module. I can login to Oracle OK, but I >> am at a loss as to how I should then access the specific table I need so that I can join it to >> our county parcel layer using the “make table view” tool. I have scoured the internet looking >> f

RE: difficulty connecting to networked oracle database

2005-07-22 Thread Albert Leibbrandt
>> As the other posters already mentioned, cx_Oracle is the way to go. I'm >> using it to connect to Oracle not only on Windows, but also on Solaris, >> Linux and AIX. >> Grig I can second that, I have been using python and cx_oracle for more than 3 years now Albert -- http://mail.python.org/

RE: cursor positioning

2005-07-11 Thread Albert Leibbrandt
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mage Sent: 11 July 2005 04:28 PM To: python-list@python.org Subject: Re: cursor positioning Larry Bates wrote: >While not "curses" based this class will update screen as you >want. You could use it as a bas