Python 3 is the latest version of the Python programming language and was formally released on December 3rd, 2008.
0
votes
0answers
15 views
python3: creating new packages from a template
I'm trying to get paste (depends on pastescript, pastedeploy and modern_package_template) to work in python3 but it seems to require a few patches. Is there another tool in use for use with python3 ...
0
votes
0answers
45 views
import cvxopt.base: the specified module could not be found
I'm new to Python, just installed cvxopt module for my Python3.3 system (64 bit). The installation was successful, but when I typed "import cvxopt" in Python command line, it returned an error:
...
0
votes
0answers
53 views
Python 3 - upon writing to UTF16 BE file, becomes converted to LE
Using Python 3.3 (Windows 8), I am reading from an UTF-16-BE file: a hex editor shows BOM present, 0xFEFF when inspecting in Big Endian mode. Notepad++ reports encoding as UCS-2 Big Endian. After ...
0
votes
0answers
51 views
install cvxopt python3 macosx
I have been trying to install cvxopt for Mac OS 10.8.2 and python3.3 for about two weeks and am pretty close to losing it. I am new to programming, so I am not surprised to have some frustrations, but ...
0
votes
0answers
73 views
How would one use Tk to create a paint-like program with oval, rectangle etc buttons? How to save it (2 Parts)
I wasn't able to get an answer to a question I asked pertaining to a paint-like application, so I'm going to try to understand this more generally. Here is my original question:
Tk Canvas Objects ...
0
votes
0answers
73 views
Can a dict delete its own elements automatically?
I need a dictionary object that can recycle the elements that are no longer needed. The goal is to make the dictionary not become too large, by deleting the objects that no one accessed in a period.
...
0
votes
0answers
71 views
Tk Canvas Objects Failing to Bind
I'm putting together a paint-like program to make visual representations for certain objects which are part of groups. I would like to get the 'pencilButton' working so I can at least get an idea of ...
0
votes
0answers
128 views
Python pickle.load throws __init___ error
In python 3.3 I have written some code which attempts to pickle an instance of a user-defined class. The pickling seems to go well but on unpickling I get this error:
Traceback (most recent call ...
0
votes
0answers
123 views
Python combining sets and ranges of numbers from separate functions
def return_separate_numbers():
N = (int(input('how many draws? '))* 5)#change number to select number of draws
mains = []
for line in open('euromillion_2012.txt').readlines():# ask for ...
0
votes
0answers
96 views
CherryPy: Access postional arguments from URIs in tool (request.params does not work)
I have written a form validation tool (hooked to the 'before_handler'-hook) for an app I am working on. I can access parameters via cherrypy.request.params, no problem here. But I can't access ...
0
votes
0answers
30 views
How To Filter Browser Data In Python3?
I wish to filter data before it is showed on the browser. I would like to search for few words in the content of the page. If the words match the page shouldn't load and instead show a custom message. ...
0
votes
0answers
131 views
How to fill table using mysql connector in Python 3
I have data in a text file which I need to upload into a table. My script in python 3 and uses mysql.connector (https://launchpad.net/myconnpy) to connect to DB and execute commands. I have been able ...
0
votes
0answers
31 views
iptest3 intermittent failure
Strange iptest3 intermittent failure.
In summary, I ran iptest3 once and one test failed. Then I immediately ran that test group again individually (as per iptest3 output) and it passed OK. Then I ...
0
votes
0answers
159 views
tkinter GUI writing to a text widget and replacing text
from tkinter import *
from tkinter import ttk
parent = Tk()
p = ttk.Panedwindow(parent, orient=HORIZONTAL)
p.pack(fill=BOTH, expand=1)
p1 = ttk.Panedwindow(parent, orient=HORIZONTAL)
...
0
votes
0answers
262 views
WLST connect(username,pwd,url) throws StringIndexOutOfBoundsException: String index out of range: -2
I am new to wlst and python. The below code when run gives StringIndexOutOfBoundsException. With other error messages. Please help. Thanks in advance.
class ThreadingClass(threading.Thread):
...
0
votes
0answers
77 views
Pyramid with sqlalchemy wont return from view - instead it eats my ram
I have a Pyramid view that works a lot of the time, but some of the time it just eats up all my ram and gets my computer into page mode if I'm not quick enough to stop the server. I haven't included ...
0
votes
0answers
56 views
Issues with Lettuce Installation
I am trying to install lettuce on my mac but keep running into the following issues. I have python and PIP on my system.
$ sudo pip install lettuce
Password:
Downloading/unpacking lettuce
...
0
votes
0answers
86 views
in tkinter opening and closing the same text file
def write_to_full():
outfilename ='numbers.txt'
major = to_major.get()
minor=to_minor.get()
with open(outfilename, "r+") as f:
old = f.read() # read everything in the ...
0
votes
0answers
119 views
Python Error - Broken Installation?
Each time I use help() and then call 'modules' I get a trace back. I though my installation was broken so I re-downloaded and installed from activestate (python 32). Any suggestions? It is still doing ...
0
votes
0answers
149 views
urllib.request.build_opener works in Python3 script, but not with object
So i am trying to hack together a simple utility to check gmail for me. This script works fine:
import xml.etree.ElementTree as etree
import urllib.request
lusername = "foo" ...
0
votes
0answers
130 views
PyCrypto Installation Issues on OSX Mountain Lion using IDLE
I am new, and this is very probably a simple fix. I have used IDLE for a bit, and am trying to install PyCrypto so that I can import it into IDLE. I have used easy_install to install it in the ...
0
votes
0answers
157 views
Displaying data from a sqlite database to a table in pyqt
I have a sqlite database with a table details which I would like to display in a QTableWidget. Here is a code snippet.All of it works well except that I get a table with rows and columns but is ...
0
votes
0answers
58 views
Trouble using the same image for multiple objects
I'm making a game with Pygame and I'm trying to animate asteroids that get hit with a bullet. The animation works fine if there's just one asteroid type on the screen. I run into trouble when there's ...
0
votes
0answers
92 views
How to set a windows env variable from cygwin .bashrc?
Background: I am trying to run a windows-installed version of python from within cygwin, rather than the cygwin version (some packages I am using prefer the non-cygwin version). The following post got ...
0
votes
0answers
68 views
PyCrypto not Working on Python 3.2
I have PyCrypto version 2.6 and I have read from the changelog that 2.4 or later version of PyCrypto Supports Python 3.
I tried to install it using
# python3 setup.py install
But it gives me this ...
0
votes
0answers
92 views
Boost Python quickstart examples give error
when i try running the example under C:\boost_1_50_0\libs\python\example\quickstart i get the following error and my python file gets removed ( which is quite annoying ) . I am using Python 3.3 & ...
0
votes
0answers
19 views
Varying number of function inputs using var = False in definition. I can do this, right?
Here's a look at the problem code.
def color(a_color, alpha = False):
if alpha != False:
that_tuple = COLOR_LIST[change_name(a_color.lower())]
return that_tuple[0], ...
0
votes
0answers
38 views
How to parse a text file in Python and put the result in xml file
I need to parse a text file cotains many lines, ech line is composed from two column(column1: string column2: hexa value)
it is a log file having this format:
"a string " ==> to be used like a tag ...
0
votes
0answers
93 views
Python telnet connection not able to moniter the Shell which is Invoked from telnet
[python]
I telnet to a windows machine through python Telnetlib and
i have an interactive tool in my windows machine. In order to access that
tool, I have to type this command "nxshell" in command ...
0
votes
0answers
47 views
How to output python program in defferent ways?
I need to build some multiple arguments functions to output the result of program on the screen, to printer and into pdf files.(Using python 3.3)
I have searched the Internet but there was nothing ...
0
votes
0answers
23 views
Can `networkx.draw_networkx_*()` throw exceptions?
While using networkx, I have to draw the nodes and edges via
nx.draw_networkx_nodes()
nx.draw_networkx_edges()
nx.draw_networkx_labels()
multiple times with different sets of nodes and edges, ...
0
votes
0answers
16 views
How to force an error in PLY
I want to check some additional rules inside lexer functions and cause an error to be raised and then handled by an error handling function for current state. How can I achieve this?
0
votes
0answers
21 views
Pyglet OpenGL Error
I am trying to execute, on linux, a python-pyglet version of conway's game of life. I have run the script fine on windows, but on linux i get a Null pointer access error. Thanks for all the help in ...
0
votes
0answers
75 views
Tooltips for a label for GUI created by Glade not showing
I have a GUI program written in python 3 using GTK 3 and Glade. I would like to have a tooltip over a label to provide instructions on the label. In Glade, I have the "Tooltip Text" set and "Has ...
0
votes
0answers
15 views
About MessageBox
import ctypes
ctypes.windll.user32.MessageBoxW(0,"Time's up!","Message",0)
My quention is that I want to set my message box topmost.
It's said I just need to change the first parameter, but I don't ...
0
votes
0answers
88 views
Python reading text file returns one digit of two-digit number
text file in the format:
1,2,3,4,5 tab 10,11
5,6,7,8,9 tab 12,10
def open_nums():
nums =[]
for line in open('numbers_file.txt').readlines():
datafile = ...
0
votes
0answers
93 views
Find Unknown Command Keynotes - python shell script like the command-not-found package but different
yes it is a long question as I prefer to be more informative rather than less but I do not need a book answer.
Ok I have been messing around with some packages found on my Ubuntu install...
Curiosity ...
0
votes
0answers
21 views
i need to clone a graphic so it is 3x4 in python 3
i need to create a patch work design which displays a 3x4 image of a boat using python 3, i also need to create this code in one function so that the 'main' function will call to it.
This is the ...
0
votes
0answers
31 views
Unittest test case help? (python 3.2)
I'm getting an error with my unittest testCases, both my test cases are failing because
TypeError: fave_game() takes exactly 1 positional argument (3 given)
This is my test cases:
import unittest
...
0
votes
0answers
223 views
No module named jinja2
Im trying to deploy a Python3.2 app in my Ubuntu 12.04 server. Everything was fine, until I tried to use Jinja2 as my template system.
Im using virtualenv to use Pyhon3.2 instead of Python2, and I've ...
0
votes
0answers
67 views
Number of location combinations
Before I start, I should state that this is part of an assignment; I'm looking at possible ways I can solve writing this problem, and not the actual code itself.
The user is supposed to approximate ...
0
votes
0answers
22 views
How would I retrieve data individually from a database using SQLite3 with python 3
So far I am able to retrieve all of the data in the database but I wanted to be able to retrieve data case by case with input fields.
con = sqlite3.connect('DatabaseName.sql')
cur = con.cursor()
...
0
votes
0answers
155 views
Read video metadata
For Python 2.x I found a few libraries like enzyme, but there does not seem to be anything around yet ready for Python 3.x... someone maybe knows an already ported library?
0
votes
0answers
41 views
Error in generating number spirals
I'm attempting to output an anti-ulam spiral (i.e. a number spiral that starts from the outside, then loops inward); I take two inputs (t, which is the number of spirals it will generate in total) and ...
0
votes
0answers
56 views
Using multiCore threading python on quadratic multidemensional arrays
Im using python to create a 1-nn classifier foe recognition of some optical handwritten digits and it must be compared to 5000 samples which have their attached correct digits that they represent.
So ...
0
votes
0answers
409 views
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc7 in position
When I use open and read syntax to open and read file in Python 3 and change files encoding, but this error happened. I want to convert a text with any encoding to UTF-8 and save it.
"sin3" has an ...
0
votes
0answers
29 views
Inheriting a functionality in SQLA
I'm trying to incapsulate some functionality (some columns mainly) into base classes to inherit my models from them. The setup looks like this:
class EntityTemplate():
@declared_attr
def ...
0
votes
0answers
16 views
changing values that is a list in a dictionary
Ok so im trying to make a tlc t@c to3 game using dictionaries. ive seen some of the other codes in the web but i wanted to try it this way.
the first problem ive encountered is how do i switch a1, a2, ...
0
votes
0answers
56 views
find distance, alternating sum, and matrix in python
I have write three codes..
when i tried to run my distance code it gives me an error
def distance(u,v):#
inside = 0
for i in range(len(u)):
Part = (u[:]- v[i])**2
inside += ...
0
votes
0answers
123 views
Python3 debugging
Looks like Python 2 is being phased out.. first on Arch, now on Ubuntu linux.
One thing I can't figure out it how to run a debugger with Python3 script. I run winpdb and it sees import exceptions for ...

