Search Discussions
-
I just starting out and am using the Python For Kids book. I have an 2.4 GHz Intel Core 2 Duo iMac running OS X 10.6.8, and I?m getting this message when I open IDLE: Warning: The version of Tcl/Tk ...
Bart Montgomery
Nov 7, 2013 at 5:39 pm
Dec 30, 2013 at 6:32 am -
This silly google-groups does not reflect changed subject lines!! That means that GG users who may want to read this may not see it. So reposting as a new thread ...
Rusi
Nov 28, 2013 at 1:52 pm
Dec 9, 2013 at 3:02 am -
Short story: the subject says it all, so if you have an answer already, fire away. Below is the long story of what I'm using it for, and why I think it needs to be recursive. It may even be of more ...
John O'Hagan
Nov 21, 2013 at 6:46 am
Dec 6, 2013 at 4:05 am -
Hi, I'm running pep8 across my code, and getting warnings about my long lines ( 80 characters). I'm wonder what's the recommended way to handle the below cases, and fit under 80 characters. First ...
Victor Hooi
Nov 28, 2013 at 1:57 am
Dec 5, 2013 at 1:47 am -
There's a recent blog post complaining about the lousy support for Unicode text in most programming languages: http://mortoray.com/2013/11/27/the-string-type-is-broken/ The author, Mortoray, gives ...
Steven D'Aprano
Nov 30, 2013 at 12:44 am
Dec 4, 2013 at 2:38 pm -
I am currently using Windows 7 Sp1, Tkinter 8.5, Python 2.7.4 on a laptop with no attached monitor. I am attempting to use winfo_screenmmwidth, but the returned value is incorrect. Specs state 280 ...
Josefg
Nov 26, 2013 at 10:13 pm
Dec 4, 2013 at 1:33 am -
I want to a fixed length list-like container, it should have a sorted()-like function that I can use to sort it,I think there should also a function I can use it to detect whether the numbers of ...
iMath
Nov 29, 2013 at 1:54 am
Dec 4, 2013 at 12:47 am -
I am in the process of porting reportlab to python3.3, one of the contributions is a module that implements a reporting proxy with a canvas that records all access calls and attribute settings etc ...
Robin Becker
Nov 28, 2013 at 11:12 am
Dec 2, 2013 at 2:42 pm -
I've heard that there is a library that allows you to get the appdata directory for a given OS, but I'd like to do it myself, as a learning experience. Is there a built in way to get a users Appdata ...
Eamonn Rea
Nov 25, 2013 at 8:48 pm
Dec 2, 2013 at 2:39 pm -
It's for a school assignment. Basically, I need to roll 5 dies with 6 sides each. So basically, 6 random numbers. That part is easy. Then I need to add it up. Ok, done that. However, I also need to ...
Farhanken
Nov 30, 2013 at 12:31 am
Dec 2, 2013 at 1:01 am -
Hi everyone I a beginner in python. The first project is to build an online city guide start with my own city. I will need some support on where to get started. support like where to find the ...
Ngangsia akumbo
Nov 28, 2013 at 1:43 am
Dec 1, 2013 at 3:04 am -
Hello! I'm using Jython to write a game with Python/Jython/LibGDX. I wasn't having any trouble, and everything was going well, but sadly I can't access items in enumerations. If you know about the ...
Eamonn Rea
Nov 28, 2013 at 5:22 pm
Nov 29, 2013 at 7:40 pm -
I have the following code to extract certain links from a webpage: from bs4 import BeautifulSoup import urllib2, sys import re def tonaton(): site = "http://tonaton.com/en/job-vacancies-in-ghana" hdr ...
Max Cuban
Nov 29, 2013 at 4:56 pm
Nov 29, 2013 at 6:45 pm -
Hello guys, Probably not right forum but I thought I should get some suggestions. I am looking for some tool written in python which can help users to create rpm spec files and later help to build ...
Unix SA
Nov 25, 2013 at 2:17 pm
Nov 29, 2013 at 2:15 pm -
Hello For-each does not iterate ober all entries of collection, if one removes elements during the iteration. Example code: def keepByValue(self, key=None, value=[]): for row in self.flows: if not ...
Valentin Zahnd
Nov 28, 2013 at 3:49 pm
Nov 29, 2013 at 12:04 pm -
I have the following script however when the clipboard contents are greek letters it fails to print them right. I have used all posible encoding for greek letters including utf8 but to no avail so i ...
Mefistofelis
Nov 28, 2013 at 10:22 pm
Nov 29, 2013 at 3:48 am -
Hello ! I wish to develop a database application with a lot of specific functionnalities dealing with sound files. I have developped an Access prototype and run into a first problem : it is not so ...
Jm.almeras
Nov 27, 2013 at 9:35 pm
Nov 28, 2013 at 9:58 pm -
0
webpy
Hello, is here someone which has run webpy with nginx? I has follow the tutorial on webpy.org, but sometimes run sometimes not. It looks not staple. I try to start spawn-fcgi but it looks not so as ...Silvio Siefke
Nov 28, 2013 at 9:05 pm
Nov 28, 2013 at 9:05 pm -
Easy : def getSlice(iterable, start, n): lit = len(iterable) end = start + n return ''.join(iterable[i%lit] for i in range(start, end)) for n in range(1, len(inStr)+1): [getSlice(inStr, i, n) for i ...
Ricardo Aráoz
Nov 28, 2013 at 6:38 pm
Nov 28, 2013 at 6:38 pm -
Hi, I've created a script that allows me to see how many images are on a webpage and their URL however now I want to download all .jpg images from this website and save them onto my computer. I've ...
TheRandomPast .
Nov 28, 2013 at 3:19 pm
Nov 28, 2013 at 5:32 pm -
I have an XML file that has an element called "Node". These can be nested to any depth and the depth of the nesting is not known to me. I need to parse the file and preserve the nesting. For exmaple, ...
Larry Martell
Nov 25, 2013 at 10:22 pm
Nov 28, 2013 at 1:31 pm -
When I run e.g. compile('sin(5) * cos(6)', '<string ', 'eval').co_names, I get ('sin', 'cos'), which is just what I expected. But when I have a list comprehension in the expression, I get a little ...
Magnus Lycka
Nov 27, 2013 at 7:40 pm
Nov 28, 2013 at 11:17 am -
2
error
Hello there, I am attending the lectures, and written the codes according to lectures. Professor's codes are working fine, but my one gives an error. I am new to python. Please it's a humble request, ...Speen saba
Nov 28, 2013 at 12:37 am
Nov 28, 2013 at 2:30 am -
Hello Sir/Mam, Could you please help me with my current research ? Am implementing the concept in python language. My doubts are : 1) Is it possible to Retrieve the address of a variable in python ? ...
Bharath Kummar
Nov 22, 2013 at 12:52 pm
Nov 28, 2013 at 1:24 am -
Hi All, I'm very happy to announce the a new release of Mush, a light weight dependency injection framework aimed at enabling the easy testing and re-use of chunks of code that make up scripts. This ...
Chris Withers
Nov 27, 2013 at 11:43 pm
Nov 27, 2013 at 11:43 pm -
Hello, I'm about held a short course with the title indicated in the subjects. The students are very experienced programmers of our company, with deep knoledge on C, C++, C#, Perl and similar ...
Koch Mate
Nov 22, 2013 at 11:59 pm
Nov 27, 2013 at 11:11 pm -
Hi ! Am I the only one to get a bug in GUIs using tkinter on my Mac under maverick and Python 3.3.3 ? When will they get rid of Tcl/Tk which causes recurrent problems at almost each new Python ...
Dan Wissme
Nov 27, 2013 at 11:32 am
Nov 27, 2013 at 11:01 pm -
Hi, I have a Python application that communicates with a server via telnet. Host and port of the server are supplied by the user when the application is started. How can I determine from within the ...
Malte Forkel
Nov 25, 2013 at 7:35 pm
Nov 27, 2013 at 10:32 pm -
Hi, I have a school project to do where I've to download MD5 Hashes from a particular website and write a code that will crack them. Does anyone know where I'll find out more information on how to do ...
TheRandomPast
Nov 25, 2013 at 11:32 pm
Nov 27, 2013 at 9:18 pm -
Hello, i want try a static Website Generator. Has someone an advice for a simple and easy System to use? I want run my blog with it, so the system should run with my design of Website. I has try ...
Silvio Siefke
Nov 16, 2013 at 1:21 pm
Nov 27, 2013 at 8:36 pm -
Hello, I am working on a problem (Bioinformatics domain) where all possible combinations of input string needs to be printed as sublist For example: Input string : "LEQN" Output= ...
Amjadcsu
Nov 27, 2013 at 10:46 am
Nov 27, 2013 at 6:14 pm -
Hi all. I was wondering what is the best way to install multiple Python installations on a single Windows machine. Regular Windows installer works great as long as all your installations have a ...
Jurko Gospodnetić
Nov 25, 2013 at 12:32 pm
Nov 27, 2013 at 5:33 pm -
Hi Terry, Thanks for your comment. I use Python 2.7.5 Sorry, I will do it. File my_program.py import wx.aui import paramiko import telnetlib from LinuxHostPage import * from WindowsHostPage import * ...
Hoàng Tuấn Việt
Nov 19, 2013 at 8:39 am
Nov 27, 2013 at 3:19 pm -
Hey list, I always have issues with TODOs as they stay in the code and most of time forgot. On that, I tried to find a way to track them and to be able to output them automatically. Automatically is ...
Jordi Riera
Nov 27, 2013 at 2:38 pm
Nov 27, 2013 at 3:13 pm -
I want that a script should only be executed when it is called from another script and should not be directly executable through linux command line. Like, I have two scripts "scrip1.py" and ...
Himanshu Garg
Nov 25, 2013 at 1:55 am
Nov 27, 2013 at 2:39 am -
Hi, I'm trying to use Python's new style string formatting with a dict and string together. For example, I have the following dict and string variable: my_dict = { 'cat': 'ernie', 'dog': 'spot' } foo ...
Victor Hooi
Nov 27, 2013 at 12:01 am
Nov 27, 2013 at 12:21 am -
Hey everyone. I'm trying to figure out how to get python to access the properties section of an mp3 file. When you right click an mp3 file and go to properties you can edit the title, album, and ...
Andonefilms
Nov 26, 2013 at 3:41 pm
Nov 27, 2013 at 12:20 am -
Hi, I have been following a very good online tutorial for matplotlib: http://www.loria.fr/~rougier/teaching/matplotlib/#introduction However, when I try to annotate the point where the cosine/sine ...
Eric Garlic
Nov 26, 2013 at 7:34 pm
Nov 26, 2013 at 7:44 pm -
Hello guys, I am using the asyncio package (Codename 'Tulip'), which will be available in Python 3.4, for the first time. I want the event loop to run a function periodically (e.g. every 2 seconds) ...
Tobias M.
Nov 22, 2013 at 9:30 pm
Nov 26, 2013 at 4:35 pm -
No, it's not the same; after yielding the ten values, the first one then _returns_ the list. It's a weird and confusing syntax to use for such a thing, but fundamentally it's (more or less) this: def ...
Chris Angelico
Nov 26, 2013 at 2:26 pm
Nov 26, 2013 at 3:14 pm -
Hello folks, I?m interested in digging up some Python mailing list archives from ages past. Google Groups? archive goes sporadically back to ?94, but clearly the list is older. Does any one have a ...
Drew Crawford
Nov 26, 2013 at 9:47 am
Nov 26, 2013 at 1:39 pm -
Hello, I want to use some machine learning stuff on mail messages. First step is get some flattened text from a mail message, python's email package does not work as automatically as I wish. Right ...
Florian Lindner
Nov 26, 2013 at 10:51 am
Nov 26, 2013 at 10:51 am -
Hi, let say I have a legacy code with the following structure: pkg1/__init__.py pkg1/pkg2/__init__.py pkg1/pkg2/bar.py pkg1/pkg2/pkg3/__init__.py pkg1/pkg2/pkg3/foo.py In pkg1/pkg2/bar.py I have: # ...
Ptomulik
Nov 26, 2013 at 10:08 am
Nov 26, 2013 at 10:08 am -
Hi, I wonder if someone can help me with a function I need for programming my robot. I want to update an 2D occupancy grid based on sonar data. The sonar ?view angle? is cone shaped. So I need to ...
Robert Voigtländer
Nov 25, 2013 at 7:26 am
Nov 26, 2013 at 7:19 am -
Hi, I was wondering if the default ConfigParser can handle multi line strings (especially in the relate section) For example, if i have system.ini [Global] memory = 1024 [Process A] command = sleep ...
Rita
Nov 25, 2013 at 11:32 pm
Nov 26, 2013 at 12:35 am -
Hi all, How can we set the target folder for the package in Setuptools? Thanks & regards, Chandru **************** CAUTION - Disclaimer ***************** This e-mail contains PRIVILEGED AND ...
Chandru Rajendran
Nov 25, 2013 at 8:35 am
Nov 25, 2013 at 11:14 pm -
I'm on Windows XP SP3, Python 2.7.1. On running import cx_Oracle I got the error ImportError: DLL load failed: This application has failed to start because the application configuration is ...
Ruben van den Berg
Nov 24, 2013 at 5:12 pm
Nov 25, 2013 at 10:50 pm -
(First off, sorry in advance, as I?m not sure if this is the right place to post my inquiry). *Consumer level eye tracking - easy activation of virtual buttons without touchscreen* After using ...
Jeff Kang
Nov 25, 2013 at 8:59 pm
Nov 25, 2013 at 8:59 pm -
Dear Jonas I need someone who knows to write Phyton programmes. The application is a controller for performing tests. Can you propose names or yourself? Best regards Ivan Hendrikx ESTH Lange ...
Hendrikxi
Nov 25, 2013 at 5:16 pm
Nov 25, 2013 at 5:16 pm -
Huh, neat. Looks like that uses time_t to identify start times. ChrisA
Chris Angelico
Nov 25, 2013 at 2:43 pm
Nov 25, 2013 at 3:12 pm
Group Overview
group | python-list |
categories | python |
discussions | 284 |
posts | 2,507 |
users | 357 |
website | python.org |
357 users for November 2013
Archives
- September 2015 (591)
- August 2015 (1,058)
- July 2015 (1,440)
- June 2015 (1,704)
- May 2015 (1,841)
- April 2015 (1,231)
- March 2015 (1,717)
- February 2015 (1,612)
- January 2015 (889)
- December 2014 (1,283)
- November 2014 (1,600)
- October 2014 (1,447)
- September 2014 (1,031)
- August 2014 (1,867)
- July 2014 (1,618)
- June 2014 (1,357)
- May 2014 (1,431)
- April 2014 (1,285)
- March 2014 (2,093)
- February 2014 (1,999)
- January 2014 (2,089)
- December 2013 (2,060)
- November 2013 (2,507)
- October 2013 (1,932)
- September 2013 (1,634)
- August 2013 (1,532)
- July 2013 (2,062)
- June 2013 (2,795)
- May 2013 (1,935)
- April 2013 (1,980)
- March 2013 (1,953)
- February 2013 (1,789)
- January 2013 (1,924)
- December 2012 (1,569)
- November 2012 (1,579)
- October 2012 (1,961)
- September 2012 (2,311)
- August 2012 (1,808)
- July 2012 (1,577)
- June 2012 (1,199)
- May 2012 (1,197)
- April 2012 (1,416)
- March 2012 (1,373)
- February 2012 (1,442)
- January 2012 (1,446)
- December 2011 (1,895)
- November 2011 (1,291)
- October 2011 (1,188)
- September 2011 (1,587)
- August 2011 (2,069)
- July 2011 (2,140)
- June 2011 (1,908)
- May 2011 (2,475)
- April 2011 (2,098)
- March 2011 (1,761)
- February 2011 (1,746)
- January 2011 (2,123)
- December 2010 (1,671)
- November 2010 (2,355)
- October 2010 (2,518)
- September 2010 (2,187)
- August 2010 (3,098)
- July 2010 (2,579)
- June 2010 (3,238)
- May 2010 (2,458)
- April 2010 (2,356)
- March 2010 (2,759)
- February 2010 (3,486)
- January 2010 (3,294)
- December 2009 (2,899)
- November 2009 (3,396)
- October 2009 (3,346)
- September 2009 (3,087)
- August 2009 (3,903)
- July 2009 (3,761)
- June 2009 (3,321)
- May 2009 (3,370)
- April 2009 (4,272)
- March 2009 (4,228)
- February 2009 (3,965)
- January 2009 (4,732)
- December 2008 (4,335)
- November 2008 (3,799)
- October 2008 (4,123)
- September 2008 (3,816)
- August 2008 (4,056)
- July 2008 (4,238)
- June 2008 (3,737)
- May 2008 (4,976)
- April 2008 (4,708)
- March 2008 (4,122)
- February 2008 (4,132)
- January 2008 (4,145)
- December 2007 (3,686)
- November 2007 (3,419)
- October 2007 (4,234)
- September 2007 (4,332)
- August 2007 (4,189)
- July 2007 (3,771)
- June 2007 (4,142)
- May 2007 (5,018)
- April 2007 (4,912)
- March 2007 (4,365)
- February 2007 (3,951)
- January 2007 (3,864)
- December 2006 (4,449)
- November 2006 (4,229)
- October 2006 (5,506)
- September 2006 (5,244)
- August 2006 (4,829)
- July 2006 (4,720)
- June 2006 (5,054)
- May 2006 (5,302)
- April 2006 (4,845)
- March 2006 (5,729)
- February 2006 (4,839)
- January 2006 (5,249)
- December 2005 (5,011)
- November 2005 (5,677)
- October 2005 (5,387)
- September 2005 (4,458)
- August 2005 (4,428)
- July 2005 (4,472)
- June 2005 (4,562)
- May 2005 (4,269)
- April 2005 (5,019)
- March 2005 (5,070)
- February 2005 (5,159)
- January 2005 (5,194)
- December 2004 (5,211)
- November 2004 (4,048)
- October 2004 (5,191)
- September 2004 (5,534)
- August 2004 (6,168)
- July 2004 (4,217)
- June 2004 (4,202)
- May 2004 (3,890)
- April 2004 (4,285)
- March 2004 (5,077)
- February 2004 (4,213)
- January 2004 (3,988)
- December 2003 (3,818)
- November 2003 (4,940)
- October 2003 (6,297)
- September 2003 (4,299)
- August 2003 (5,654)
- July 2003 (4,912)
- June 2003 (4,933)
- May 2003 (4,938)
- April 2003 (5,017)
- March 2003 (5,031)
- February 2003 (7,701)
- January 2003 (6,229)
- December 2002 (4,102)
- November 2002 (4,346)
- October 2002 (3,307)
- September 2002 (4,206)
- August 2002 (4,919)
- July 2002 (4,826)
- June 2002 (4,215)
- May 2002 (5,295)
- April 2002 (5,967)
- March 2002 (5,323)
- February 2002 (5,245)
- January 2002 (5,617)
- December 2001 (4,443)
- November 2001 (4,565)
- October 2001 (3,669)
- September 2001 (3,719)
- August 2001 (5,208)
- July 2001 (6,528)
- June 2001 (4,905)
- May 2001 (5,492)
- April 2001 (4,713)
- March 2001 (4,478)
- February 2001 (3,871)
- January 2001 (4,187)
- December 2000 (3,099)
- November 2000 (2,336)
- October 2000 (3,820)
- September 2000 (3,933)
- August 2000 (4,253)
- July 2000 (4,199)
- June 2000 (4,089)
- May 2000 (4,269)
- April 2000 (3,217)
- March 2000 (3,719)
- February 2000 (4,000)
- January 2000 (2,682)
- December 1999 (2,283)
- November 1999 (1,896)
- October 1999 (2,048)
- September 1999 (2,001)
- August 1999 (2,151)
- July 1999 (2,351)
- June 1999 (2,386)
- May 1999 (2,201)
- April 1999 (1,706)
- March 1999 (6)
- February 1999 (1)