Top "Python-2.6" questions

For issues that are specific to Python 2.6. If your question applies to Python in general, use the tag [python].

"No module named time"

I compiled Python from source using: wget http://python.org/ftp/python/2.6.6/Python-2.6.6.tar.bz2 tar jxvf Python-2.6.6.tar.bz2 …

python pip python-2.6
python - getting the MAC address properly in Windows

I'm using Windows 7 and Python 2.6. I would like to get the MAC address of my network interface. I've tried using …

python python-2.6 mac-address
Recursively convert python object graph to dictionary

I'm trying to convert the data from a simple object graph into a dictionary. I don't need type information or …

python python-2.6
ElementTree's iter() equivalent in Python2.6

I have this code with ElementTree that works well with Python 2.7. I needed to get all the nodes with the …

python xml python-2.6 elementtree
Most pythonic way to convert a string to a octal number

I am looking to change permissions on a file with the file mask stored in a configuration file. Since os.…

python python-2.6
Parse custom URIs with urlparse (Python)

My application creates custom URIs (or URLs?) to identify objects and resolve them. The problem is that Python's urlparse module …

python url python-2.6 urlparse
Replace html entities with the corresponding utf-8 characters in Python 2.6

I have a html text like this: <xml ... > and I want to convert it to something …

python html-entities python-2.6
check_output error in python

I am gettin a error while running the below code. #!/usr/bin/python import subprocess import os def check_output(*…

python python-2.6
How do I access an Oracle db without installing Oracle's client and cx_Oracle?

I have two RHEL servers running Python 2.4 and 2.6 separately. There is an Oracle database on the other server I need …

python oracle python-2.6 cx-oracle
Reading/writing to a Popen() subprocess

I'm trying to talk to a child process using the python subprocess.Popen() call. In my real code, I'm implementing …

python subprocess popen python-2.6