[Tutor] Using an XML file for web crawling

2017-03-31 Thread Igor Alexandre
te. Do you guys know how can I do it? I'm looking for some code on the web where I can just type the xml address and wait for the crawler to do it's job, saving all the pages indicated in the sitemap as a text file in my computer. Thank

[Tutor] Python social network / cms components?

2010-09-09 Thread Igor Choromanski
rogramming experience boils down to very high level scripting languages that I keep on learning to accomplish very specific tasks :) Thank you all, - igor ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor

[Tutor] video watermark

2010-06-04 Thread Igor Nemilentsev
Hi everyone. Can someone suggest a python module so that it would be able to do a video processing and adding watermark in video? -- "If it's not loud, it doesn't work!" -- Blank Reg, from "Max Headroom" ___ Tutor maillist - Tutor@python.org To unsub

[Tutor] Python and Computational Geometry

2009-12-28 Thread Abdulhafid Igor Ryabchuk
Dear Pythonistas, I am starting a small project that centres around implementation of computational geometry algorithms. I was wondering if there are any particular Python modules I should have a look at. Regards, AH ___ Tutor maillist - Tutor@python

Re: [Tutor] Fw: utf locale sorting

2009-09-18 Thread Igor Mavrović - ma...@irb
Excellent, the thing works! Thanx a lot! - Original Message - From: Kent Johnson To: Igor Mavrović - ma...@irb Cc: Rich Lovely ; tutor@python.org Sent: Wednesday, September 16, 2009 7:06 PM Subject: Re: [Tutor] Fw: utf locale sorting How about this (assuming both

Re: [Tutor] Fw: utf locale sorting

2009-09-16 Thread Igor Mavrović - ma...@irb
rted(words, key=lambda o: locale.strxfrm(o[0])) can't work 'cause strxfrm's argument must be a string, not a tuple... What do you think? Igor - Original Message - From: Rich Lovely To: Igor Mavrović - ma...@irb Cc: tutor@python.org Sent: Wednesday, September 16, 2009 4

[Tutor] Fw: utf locale sorting

2009-09-16 Thread Igor Mavrović - ma...@irb
Hi, I know about the use of locale module: import locale locale.setlocale(locale.LC_ALL, "hr_HR.UTF8") print sorted(words, key=locale.strxfrm) but I have specific and complicated data structure (list of lists containing strings, tuples and dictionaries) due to LDAP search result data. So I u

[Tutor] Bitten by lexical closures

2006-05-03 Thread Igor
b = [curry(f,what) for what in "1234"] gives the right functions. Regards, Igor ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

[Tutor] Text and Tkinter

2005-03-29 Thread Igor Riabtchuk
Hi,   As I am sure you know, the text widget in Tkinter by default prints keyboard output left-to-right. Is there a way to make it print right-to-left?   Igor ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

[Tutor] Tkinter and keyboard output

2005-03-24 Thread Igor Riabtchuk
d of coding , I coded  - how would I implement the function which would allow the code to determine which 'Key' was pressed after Alt?   Thank you. Igor ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Dictionary blues...

2005-03-23 Thread Igor Riabtchuk
I just solved it :) thank you all for chastising me :) particularly Alan Gauld - you save me again :) I reckon I will have to put a credit for you in the code :) Igor - Original Message - From: "Igor Riabtchuk" <[EMAIL PROTECTED]> To: Sent: Wednesday, March 23, 2005

Re: [Tutor] Dictionary blues...

2005-03-23 Thread Igor Riabtchuk
;p': str='t' elif event.keysym=='t': str='z' put all the conversion values into a dictionary and make the function use the key:value pairs from dictionary. I hope I am making sense. Igor - Original Message - From: "Alan Gauld" <[EMAIL

[Tutor] Dictionary blues...

2005-03-23 Thread Igor Riabtchuk
n 'break'   The error message says wrong syntax...   What I am basically trying to do is to allow the output of dictionary values for each keyboard button pressed.   Igor ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

[Tutor] problems with dictionary

2005-03-23 Thread Igor Riabtchuk
  def Conv(self,event):     if event.keysym==a:     str="tom"     self.text(END, str)     return 'break' )   There is clearly a mistake in the first function, only thing is I cannot spot it and thus the thing does not work.   Any ideas?   Igor __

[Tutor] Changing Keyboard output

2005-03-20 Thread Igor Riabtchuk
Hi,   I am totally new to Python and still learning.   I am looking for a way to change keyboard output within Tkinter widget - for example, say I press "p" and I want it to come out as "t".   Could anyone possibly point me in the righ