For issues relating to development in Python, version 2.x.

learn more… | top users | synonyms (2)

0
votes
2answers
20 views

Python3 has no acces to python2 modules (ubuntu)

Im fairly new to programming and Ubuntu. Yesterday I finally managed to create a dual-boot system, so now I'm running Ubuntu 12.04 LTS. For a school project, I need to work in Python3 with a module ...
0
votes
3answers
49 views

feature: **kwargs allowing improperly named variables

The following is invalid python: def myInvalidFun(kw arg zero=6): pass The following is valid python: def myValidFun(**kwargs): if kwargs.has_key("kw arg zero"): pass To call ...
-1
votes
2answers
38 views

Loop list and open file if found

Not sure where to start with this... I know how to read in a csv file but if I have a heap of files in the same directory, how can read them in according to whether they are in a list. For example, a ...
0
votes
1answer
21 views

Determine difference in http request between Python2 and Python3

I am attempting to use Python3 to send metrics to Hosted Graphite. The examples given on the site are Python2, and I have successfully ported the TCP and UDP examples to Python3 (despite my ...
2
votes
1answer
21 views

Terminate Python program on Ctrl+C when it's running a subprocess

I have a little program written in Python (version 2.7.3 on Linux) that runs an external command on a number of files in a loop. It does this using subprocess.check_output and it then writes data from ...
-2
votes
1answer
37 views

Python “Invalid Syntax” error in class definition [closed]

I am new to Python, and am writing a grep-like program. I am trying to write the following class to receive an OptionParser to parse the command line input: Class StdRenderer(): parser = None ...
1
vote
2answers
29 views

Python regex with ØÆÅ letters

I am new at Python so this may seem to be very easy. I am trying to remove all #, numbers and if the same letter is repeated more then two times in a row, I need to change it to only two letters. This ...
1
vote
1answer
66 views

python re.compile and split with ÆØÅ charcters

I am very new in Python. I do have a file with a list of words. They contain Danish letters (ÆØÅ) but the re.compile do not understand theses characters. The function split the words by each ÆØÅ. The ...
0
votes
1answer
19 views

Python program uses 2.6 method, but came with python24.dll

I am running a downloaded Python program (.pyc file) that throws the following error: AttributeError: 'str' object has no attribute 'format' Apparently, str.format is a 2.6+ method. When I check the ...
0
votes
1answer
49 views

Unable to show an image using python PIL Image.show

I'm using the Python Imaging Library and I am unable to open an image successfully in Windows Live Photo Gallery. There is a message that shows up saying "There are no photos or videos selected" ...
4
votes
2answers
52 views

Python exception chaining

Is there a standard way of using exception chains in Python? Like the Java exception 'caused by'? Here is some background. I have a module with one main exception class DSError: class ...
0
votes
1answer
43 views

Find all links within a div using lxml

I'm writing a tool that needs a collect all urls within a div on a web page but no urls outside that div. Simplified the page it looks something like this: <div id="bar"> <a link I dont ...
1
vote
1answer
58 views

What is the Pythonic way to avoid reference before assignment errors in enclosing scopes?

I'm speaking about the general case. Here's an example: c = 1 def a(): def b(): print(c) b() c = 2 a() This code will return the following error: NameError: free variable 'c' ...
2
votes
1answer
54 views

Size of 2D dict

What is an efficient way to find the size of a 2D dictionary? I'm currently using this oneliner: sum((len(v) for v in d.itervalues())) Is there a better way?
2
votes
2answers
43 views

Importing a .csv with urls and process them (PYTHON)

I am working on a scrip that will import a list of urls and then check some things in the source code. I need help on importing a .csv and processing it, if anyone can help here is a part of the code ...
0
votes
3answers
61 views

How do I convert this into a comprehension? (Python)

This function produces the sum of the first n values, the sum of the second n values...etc. Here is the function: def collect_sum(iterable,n): for e in range(1,len(ite)+1): if e%n==0: ...
0
votes
2answers
52 views

I can't convert an empty string to integer using python

I use pySerial to read data from serial port and I am trying to convert the string below to integer: s=ser.read() int(s) but i can't.The error i take is: Traceback (most recent call last): File ...
0
votes
1answer
79 views

sublime text 3 use python 3.3 as compiler

Just purchased sublime 3. I'm wondering how I can compile in python 3 and not in python 2. When I execute import sys print(sys.version) I receive "2.7.3 |EPD_free 7.3-2 (32-bit)| (default, Apr ...
2
votes
4answers
74 views

loop for to print a dictionary of dictionaries

I'd like to find a way to print a list of dictionnaries line by line, so that the result be clear and easy to read the list is like this. myList = ...
1
vote
1answer
54 views

An explanation of the “print >>…” syntax

print >>sys.stderr, 'waiting for a connection' Can anyone explain what the ">>" operators do in this case?
0
votes
1answer
59 views

Regex python parse files

#!/usr/bin/env python # -*- coding: utf-8 -*- #fixed the import, just red PEP 8 import re ################################################### def extract(data): ms = re.match(r'(\S+).*mid:(\d+)' ...
1
vote
1answer
51 views

comparison between two values in two tables and Append

I have two lists (normally they're much longer here is just an example) : the first contain Destination, mid, TypeSource, TypeDestination and Time [{'Destination': 'me.xx@domain.fr', 'mid': '6754', ...
0
votes
2answers
31 views

Regular expression to get string

i'm creating a script that parse log files... here's an example of the lines: data = "09:55:04.125 mta Messages I Doc O:SERVER (NVS:SMTP/me@domain.com) R:NVS:FAXG3.I0.0101 mid:6393" ...
1
vote
1answer
52 views

Delete duplicates from a list with many Elements [duplicate]

I have a lists with several elements and i'd like to remove the duplicated, here's an example of a list: list = [{'status': 'OK', 'mid': '6639'}, {'status': 'OK', 'mid': '6639'}, {'status': 'OK', ...
3
votes
2answers
55 views

I would like to extract the words from “:” to slash

I have asked this question before and now i edit it because i found some lines that doesn't correspond to the format i gave before ... here's an example of the lines: data = "09:55:04.125 mta ...
0
votes
2answers
277 views

Python: How to import ascii characters

For the password entry field of an email client that I am making, I thought that it would be cool to have the password show random characters. Since I don't want to write down a dictionary of all ...
0
votes
2answers
36 views

Sorting a parsed XML file into cfg file

I am using this code to turn a XML file into a cfg file import sys, lxml.etree doc = lxml.etree.parse('settings.xml') foo = open('settings.cfg', 'w') for el in doc.findall('setting'): ...
1
vote
1answer
37 views

numpy get index where value is true

>>> ex=np.arange(30) >>> e=np.reshape(ex,[3,10]) >>> e array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [10, 11, 12, 13, 14, 15, 16, 17, 18, 19], [20, 21, 22, ...
1
vote
2answers
32 views

My script returns an error when the test isn't corresponding to the Regex: 'NoneType' object has no attribute 'group'

My script down here is supposed to return a result in this format [ {'heure':xxxx,'mid': xxxx,'type message': "e.g SMS.Message ", "Origine":xxx,"Destination":xxxx}] Well it works but without ...
-4
votes
4answers
103 views

How to use “While()” in python [closed]

Hi all my code below allows me to extract some specific informations from the data and i would like that someone helps me to write this more properly by using a while so i can do this for many lines ...
-2
votes
1answer
32 views

Regex Python Extract Informations [closed]

I wonder if there's a way in python to be able to extract the informations from a line like the example below and put it in a table: table = [ Time: 01:09:25.258, O:Localhost, R:192.168.1.1 id:62 ] ...
1
vote
1answer
39 views

How to get first couple elements and remainder?

Is it possible to do something like this in Python: a, b, *c = [1,2,3,4] where a = 1 b = 2 c = [3,4] ? The most compact way I found of doing it is: l = [1,2,3,4] a, b = l[:2] c = l[2:]
-1
votes
1answer
65 views

Confused about Python SMTP client

I am trying to learn about how to send emails using Python. Using scripts from Tutorial's Point, and Stack Overflow I have created a basic script which can send emails using Gmail. I have a few ...
0
votes
0answers
61 views

What are the best practices to work with time in Python? [closed]

As I observed, dealing with time, especially with time zones can be a huge pain if you are not prepared for it, however everyone should master working with time, because this is the problem you almost ...
0
votes
0answers
29 views

Why was the old system of python classes used before python 2.2 introduce class(object), and why is it favored? [duplicate]

Are there any benefits that Python is loosing by the new (type/object) system default in Python 3; and what are the benefits and downfalls for both systems? As the old saying goes; If its not broke, ...
-1
votes
1answer
40 views

How to install the Python-RSA 3.1.1 package in Python 3.2? [closed]

So far I've tried these methods to install the package pip install rsa andpython setup.py install but it seems like I installed the one for python2.7. How can I install the one for python3.2? Or ...
0
votes
2answers
59 views

How can I print only the lines with five or more matches of a regular expression?

I'm trying to use regular expressions in Python to parse a large tab delimited text file line by line, and print the lines where the line contains 5 or more instances of 0/1 or 1/1. My script is ...
0
votes
0answers
50 views

attribute error using beautifulsoup get_text()

I am trying to extract the text between <p> <\p>tags but I am getting an Attribute error with the following code: page=urllib2.urlopen(url) soup=BeautifulSoup(page.read()) ...
0
votes
1answer
74 views

multiple instances of python in separated windows

I'm using PyUserInput and I want to run multiple python scripts in separate windows is it possible to make the script run inside of a window while still allowing me to do other things with my mouse ...
0
votes
3answers
69 views

How do I make a text game where after entering a room, Python knows that room was already used? [closed]

I just started programming about 3 weeks ago, so please bear with me. I'm using Python. I want to make a simple text game where the person enters a room and then has options to go into other rooms. ...
2
votes
1answer
41 views

What is >> for after print command in python 2?

import cStringIO output = cStringIO.StringIO() output.write('First line.\n') print >>output, 'Second line.' # Retrieve file contents -- this will be # 'First line.\nSecond line.\n' contents = ...
1
vote
1answer
88 views

Binding events for lines/ovals on the Tk Canvas with python

This is a map navigation application. Maybe this functionality is available off the shelf, but it will be a really meaty learning exercise to build it from scratch. Python 2.6 under windows XP. As an ...
0
votes
1answer
22 views

how to check the request is https in app engine python

I would like to know if is there a way to validate that a request (say a POST or a GET) was made over https, I need to check this in a webapp2.RequestHandler to invalidate every request that is not ...
3
votes
2answers
98 views

Is it possible to detect conflicting method names in Python?

I have created a Python class called Liger, which extends a class called Lion and a class called Tiger. The class Liger inherits the method speak() from both Lion and Tiger, but the syntax is valid ...
2
votes
1answer
310 views

matplotlib color map - predefine mappings to values?

I have an array that I am viewing using imshow(). (imsave() really, but the process should be identical). I know that the values in the array will be between 0-9 and wonder if it is possible to use ...
0
votes
1answer
177 views

Pasting content of CSV files into an excel sheet in python 2.5

So basically I got an xlsm document, it contains a sheet "data" and a graph, the graph is generated from data. I have 5 CSV files. I need to erase the content of data, then fill it with the 5 CSV ...
0
votes
3answers
145 views

Compare only time part in datetime - Python

I want to compare only time part in datetime. I have different dates with only time field to compare. Since dates are different and only time part i want to consider So i think creating two datetime ...
1
vote
1answer
69 views

Pygame sprite not displaying for unknown reasons

Okay, so I have now tried to fix my Pygame code for 5 days so I can get the monster sprite drawn just like the platform sprites are already working. I can't find an error with my code and so do my ...
0
votes
1answer
62 views

Ubuntu - python2 and python3 coexist - installing library

I have a silly problem. I wrote a simple application in Python3. I was testing it on my local machine with Windows and Python3 only so when I installed psutil everything worked just fine. However when ...
1
vote
1answer
68 views

python mmap seek to line instead of byte offset?

I am playing around with mmap to open large files. Assume that the first line of the file is a count of observations. Each observation spans 2 lines: Observation ID \n Variable length number of ...

1 2 3 4 5 8