Python 3 is the latest version of the Python programming language and was formally released on December 3rd, 2008.

learn more… | top users | synonyms (4)

0
votes
0answers
44 views

Python With Java Code is not Working

I am trying to execute a Python Program(written in Python 3.x) for comparison between two numbers. IDE: Eclipse JAR: jython-standalone-2.5.3.jar When I run the Program, in Eclipse in console it ...
0
votes
0answers
69 views

How to stop exception in open ERP 7 when setting up a hierarchy in the sales module?

I am using openERP V7 in ubuntu 12.04/ I have a manager M1 and under him 3 employees emp1, emp2 and emp3 in department d1 under sales and another manager M2, with under him emp4, emp5 and emp6 in ...
0
votes
0answers
69 views

How to detect CAN device insertion and removal in Linux using Python

I've been researching for a while on how to best detect an CAN-USB device being connected and disconnected from a Linux platform (Ubuntu 12.04), but it has been slow progress. The best advice I can ...
0
votes
0answers
23 views

Re-writing the code without the enumerate function

The parameter is a list of 4-element lists that represent rank ballots for a single riding. The Borda Count is determined by assigning points according to ranking. A party gets 3 points for each ...
0
votes
0answers
17 views

eric5(python IDE):how to disappear the “Run Script” dialog

eric5(python IDE):how to disappear the "Run Script" dialog what bother me is that everytime I press F2 , the "Run Script" dialog always pops up ,but I hardly ever use it ,so how to disappear the "Run ...
0
votes
0answers
84 views

How to control Enttec Open DMX USB via Python?

I'm wondering is that possible to control lights connected to Enttec Open DMX USB via Python shell. If it is, how to?
0
votes
0answers
28 views

Python AttributeError: CherryPy

I started using/testing cherrypy and wrote the module with the below code import cherrypy from ShutterDeck import Controller class Root: @cherrypy.expose def index(self): return 'Hello ...
0
votes
0answers
36 views

Need Matrix multiplication assistance

So I have these three complete functions that return the desired row of a matrix, column of a matrix, and dot product of the row and column, and I need to somehow mesh them together in a fourth ...
0
votes
0answers
20 views

Matrix Multiplication Inquiry

Just wondering if there's a way to multiply a matrix in this manner, Using four different functions: -a function row(A, i) that takes a matrix A and an index i and returns a list with the ...
0
votes
0answers
225 views

running a python script when both bluetooth devices gets paired in raspberry PI

I have a project where I have to send data acquired from an accelerometer through a Bluetooth module connected to my pi to a smart phone. A python script will be designed to acquire and send the data ...
0
votes
0answers
179 views

Installing Python on Linux Mint

I have been trying to install python3.3.0 on Linux Mint. After reading the README file, I ran the following commands: ./configure make make test sudo make install I ran the make test command, but ...
0
votes
0answers
39 views

Joblib parallel increases time by n jobs

While trying to get multiprocessing to work (and understand it) in python 3.3 I quickly reverted to joblib to make my life easier. But I experience something very strange (in my point of view). When ...
0
votes
0answers
81 views

Launching Python has encounterd a. Unable to get project for the run

Launching Python has encounterd a problem. Unable to get project for the run It would let me put the word problem in the title. The title is the exact message i get when i try to run/debug a file in ...
0
votes
0answers
40 views

Why does this fail in pyscripter?

This question started as a simple Python 3.x question but now I'm not sure what is going on. When I run the following code in a shell it works fine. When I run it in PyScripter the result is always ...
0
votes
0answers
24 views

Parsing a bad XHTML page with Python 3

I'm using Python 3.3 and html.parser. I have to parse an XHTML which contains many errors. In order to parse it with built-in libraries, I've found some workarounds, like: Using: ...
0
votes
0answers
21 views

Automation needs log in log off for different users on Windows. Can this be achieved using python?

I need to run script on different users of a Windows machine. Writing scripts in python. How can this be achieved? Any input will be appreciated.
0
votes
0answers
50 views

Is there any way to get information from Python into another window?

The idea is that I input a string into a script, and have it pasted into the last text field that was focused. I've seen it done in some programs, but is it possible to do this in Python? I'm using ...
0
votes
0answers
123 views

NLTK tokenizer ImportError: No module named copy_reg

Short information: I'm running python 3.0 and have NLTK installed (switched back from 3.3 because NLTK has no support for 3.3 which sucks because all other extensions I have are for 3.3) When trying ...
0
votes
0answers
36 views

Reading a .txt file from Python 3 (with an undefined amount of lines)

I am an engineering student and I'm not the best at programming, so here it goes. My goals is to compare a set of integers from a "User" to a list in a .txt file (like Notepad) and then print the word ...
0
votes
0answers
54 views

When I use ftplib, the error occurred:UnicodeEncodeError: 'gbk' codec can't encode character '\xe6' in position 49: illegal multibyte sequence

When I use ftplib in python3.2, there exists a file on the server whose name is Chinese. And when I use the dir() method to show the directory, error occurred, as follows: UnicodeEncodeError: 'gbk' ...
0
votes
0answers
30 views

The cx_freeze installer repeatedly fails on me

I wanted to compile one of my smaller projects, so I went ahead and downloaded cx_freeze from the official website. I ran the installer, and told it that I wanted to install for all users, and upon ...
0
votes
0answers
98 views

Installing cx_Freeze in Linux

I am installing cx_Freeze in Linux but it doesn't work: [root@STATE lib]# rpm -ivh /root/cx_Freeze-4.3.1-py33-1.i386.rpm Preparing... ########################################### [100%] ...
0
votes
0answers
38 views

no python3 support for brew macvim

For some reason macvim installed with brew doesn't have the python3 support. Here is how I installed it: brew install macvim --with-cscope --with-python3 Whenever I run :echo has('python3') The ...
0
votes
0answers
51 views

iTunes API search from .csv list Python

I have a list of UPCs saved in a csv (but can be moved to any other format) that I would like to search via the iTunes API and have that result downloaded with the file named after the searched UPC. ...
0
votes
0answers
84 views

PyQt.QtGui moving a widget

So i have a simple program which creates a GUI and then creates a toolbar (with just one button for simplicity). when you click the button, it exits the program. everything works but i cant move the ...
0
votes
0answers
45 views

Getting Bukkit (Java) Output in python3

I made a simple python program that started a minecraft bukkit server but in the background using javaw and sub processes. I was wondering if it was possible to send input and receive output from the ...
0
votes
0answers
44 views

Lines between lines with strings in python

I have read a file. Now I have all these lines of strings. I need to extract specific lines. These lines are between two lines with a specific string in them. There is no set amount of lines between ...
0
votes
0answers
60 views

Error hyde with python-3.x

I followed (https://github.com/hyde/hyde) and installed all requirements.txt using the command "hyde-s folder_name create-l starter "error occurs: Traceback (most recent call last): File "C: \ ...
0
votes
0answers
22 views

How to Override PyQt's “QWebPage.javaScriptPrompt()”?

According to PyQt documentation, the signature is (bool, QString result) QWebPage.javaScriptPrompt (self, QWebFrame originatingFrame, QString msg, QString defaultValue) What should my ...
0
votes
0answers
79 views

How to implement resource_filename in pkg_resources?

I wrote a package that imports pkg_resource package provided by distribute 0.6.35. I import pkg_resource because I need its resource_filename to get the path of a built-in data. However, the ...
0
votes
0answers
24 views

Problems trying to start a process in a process in a process. .net

I've got application A, written in .net and script B written in Python (3.x). Application A invokes script B at its start up. Script B reads a text file with lines to execute on a command prompt ...
0
votes
0answers
192 views

Pydev 2.7.1 & 2.7.2 - adding Python 3.3 interpreter thows an error

I'm trying to add python 3.3 (32Bit & 64Bit) interpreter to my Eclipse 4.2.2 64Bit installation on windows7 64Bit but i get this error: java.lang.RuntimeException: No output was in the standard ...
0
votes
0answers
21 views

Store option, if given, set from default, if not

Here is my problem. I got this task to do from my teacher: using optparse, define option: -f "filename" If filename is not given, use some default value, "test.txt" for example. I've read ...
0
votes
0answers
69 views

Deletion method not working properly in skiplist python

I am having a problem with my deletion code in my skiplist python program. Here is the code for the method: def delete ( self, key ): '''Delete the first or only element with a given key ...
0
votes
0answers
53 views

python3 WebKit button signals

any doc about WebKit 3.0? in python2, webkit.doc list all signal, in py3 „None”. In particular, i create an button (get_dom_document -> create_element) and no signal seems to be valid at „connect” ...
0
votes
0answers
95 views

I need help for a geometric sequence code on Python that involves the use of multiple functions

Write a function that takes in 1 input variable x and verifies that the geometric series (1 - x +x^2 -x^3 +... ) converges with the sum 1/(1+x) for 0 < x < 1. The program should either stop - ...
0
votes
0answers
31 views

Pipe tkinter events to input

How can the result of a function be piped to the input() method. For example : def myFunction(): return 'random string' a = input() print(a) # result of myFunction() I'm trying to do this ...
0
votes
0answers
70 views

How to “configure” the “pyqtconfig” when I use a binary package of PyQt?

Sorry for my bad English. There is a _pkg_config in <python-path>\Lib\site-packages\PyQt4\pyqtconfig.py. It contains some infomations about the path of PyQt, but the value is not correct for ...
0
votes
0answers
53 views

How can I find a broken pipe (Python unit test)?

I've written a Thread class that reads from an URL, processes the stream and keeps a result as an attribute. In unit testing, instead of an URL, a 'rb' file gets passed to the object. I've ...
0
votes
0answers
27 views

Python 3.3 Usage for GZIP Decompression and Indexing/Searching

Good Morning Forum, This is my first post on this website, but I have used it countless times while learning about Python, so first and foremost, thank you for the innumerable amounts of awesomeness ...
0
votes
0answers
42 views

end=' ' python syntax error

Have been to trying to learn python from a couple of days, encountered a syntax error but seems to work in the tutorial that i am learing from, heres the code def func(a): for i in range(a,10): ...
0
votes
0answers
105 views

Content-Disposition: attachment jpeg Python

With image 1a.png, I want to save image as file? #!/Python33/python from PySide.QtCore import * from PySide.QtGui import * print('Content-Type: image/png') print('Content-Disposition: attachment; ...
0
votes
0answers
127 views

Python player with MP3 streaming

There's a URL leading to some MP3 file (http://cs521411.userapi.com/u5653073/audios/544cc46aaedf.mp3 for example). I want to create a simple player in Python 3 that would be able to play it ...
0
votes
0answers
44 views

eclipse(pydev) changed utf-8 text to gibbrish

Im working on python project with eclipse juno + pydev. Today I open my eclipse and I see some of the hebrew text became gibbrish, 'א' became '�?' and some other letters changed as well. I tried ...
0
votes
0answers
121 views

Error in python griddata: “builtins.IndexError: index 0 is out of bounds for axis 0 with size 0”

Griddata error (adapted from: Matplotlib contour from xyz data: griddata invalid index) I have a matrix of some values corresponding to a set of coordinates. I want to load the data from an external ...
0
votes
0answers
260 views

How do I create an all in one exe file from cx_freeze (or installer) from python 3.3

I have made a GUI python script that I would like to share with my coworkers to improve productivity. I need a way to include everything in one file/directory for them to use. I tried the standard ...
0
votes
0answers
134 views

Python 3 https connection via sockets

I need to use https connection via sockets(to use socks proxy), I'm trying to use ssl but get an error: >>> import socket >>> import ssl >>> s = ...
0
votes
0answers
92 views

PyQt-win-gpl-4.9.6 - qtdirs.exe crash during configure.py

I am trying to build and install PyQt-win-gpl-4.9.6 with Python33. I have installed/updated mingw (without MSYS), qt-win-opensource-4.8.4-mingw, QScintilla-gpl-2.7, and sip-4.14.3. Next up is ...
0
votes
0answers
73 views

Hello can anyone help me connect my microsoft access database connect to my log in form?

I have created this code which relates my Tkinter GUI, and am trying to link it in with my database for my project, can anyone see a reason why it is no working, I have tried to connect the database ...
0
votes
0answers
20 views

What standard gtk widget should I use to draw 2d game elements?

I want to draw vector images on a standard Gtk+ widget, I am thinking of using Gtk.DrawingArea in a viewport. Is there something better?

1 2 3 4 5 17