Tagged Questions
1
vote
2answers
44 views
python: adding a reset function to a threaded application
My python code runs a function that takes a long time:
Navigation()
During this execution I'd like to have a reset button. For reset button to work, I used threading and I managed to get my code ...
3
votes
3answers
40 views
Given f, is there an automatic way to calculate fprime for Newton's method?
The following was ported from the pseudo-code from the Wikipedia article on Newton's method:
#! /usr/bin/env python3
# https://en.wikipedia.org/wiki/Newton's_method
import sys
x0 = 1
f = lambda x: x ...
0
votes
0answers
10 views
Sending python logger info or messages to client through UDP or TCP connection
i want to send the logger info/messages of a python script to vb.net application via UDP or TCP. can anyone help me finding the right way to do so ?
Here is my work roughly done : Its just log the ...
0
votes
2answers
45 views
Filter list to remove similar, but not identical, entries
I have a long list containing several thousand names that are all unique strings, but I would like to filter them to produce a shorter list so that if there are similar names only one is retained. For ...
0
votes
1answer
19 views
Metaclass - cannot replace class dict
Running this (Python 3.3.1):
from collections import OrderedDict
class MyType(type):
@classmethod
def __prepare__(*args):
return OrderedDict()
class MyClass2(metaclass=MyType):
...
0
votes
1answer
9 views
How to empty DBM file in Python efficiently?
There is a command in DBM module to delete the value stored at a key.
del d[key] # delete data stored at key (raises KeyError # if no such key)
But I cannot even iterate with this command, ...
0
votes
2answers
29 views
Set the same width to an entry and text tkinter label
I would like to put an entry and a text label one under the other and with the same width.
Here is my code :
from tkinter import *
root = Tk()
title = StringVar()
title_entry = Entry(root, ...
-3
votes
0answers
22 views
How do you make a pygame code run on IDLE.? [closed]
I tried to copy paste a code from a python game and run it on Python 3.3 but I got an error
0
votes
3answers
50 views
Verifying If key or value exists in dictionary, works for char and fails for number
Why is below program returns nothing when I provide input 1 or 3. And works in case of c.
#!/usr/local/bin/python3
d = {'a':1, 'b':3, 8:'c'}
x = input()
if x in d.values():
print('In a ...
2
votes
4answers
65 views
string.lower in Python 3
I had a working python script, but something must have changed in python 3.
For example if I wanted to convert argument 1 to lowercase:
import string
print(string.lower(sys.argv[1]))
It says that ...
0
votes
2answers
41 views
command line arguments PYTHON
Code
import sys
def main()
print(sys.argv)
Version - 3.3
File name Pytest.py
running the file with syntax pytest.py aaa bbb ccc
But it didn't print anything and not giving any error also
1
vote
1answer
23 views
Efficient way to iterate through numpy arrays in parallel and create a new resultant array
I have 3 numpy arrays dm_w, dm_s and dm_p. I am in need of iterating through these arrays in parallel, do some computation based on a check condition as shown in code below.
My code works well for ...
1
vote
2answers
29 views
input error in python
from theano.tensor import stacklists, scalars, matrices
from theano import function
a, b, c, d = scalars('abcd')
X = stacklists([[a, b], [c, d]])
f = function([a, b, c, d], X)
f(1, 2, 3, 4)
...
0
votes
1answer
27 views
WebDriver claiming editable element is not editable
I'm running a simple test with Selenium WebDriver and Python to send/verify receipt of email.
Once I switch to the iframe containing the message body and locate the editable body element and try to ...
0
votes
1answer
26 views
Why is the compileall module not working?
I'm testing compiling Python code, but when I run the compileall module on a directory with a test file in it, it skips the directory and goes and compiles the Standard Library for some reason. Why is ...
1
vote
1answer
16 views
Python3 PIL (Pillow) draw.pieslice bad arc
I'm dawing a simple pieslice with PIL
image = Image.new("RGBA", (256, 128), "#DDD")
draw = ImageDraw.Draw(image, image.mode)
draw.pieslice((0, 0 , 64, 64), 180, 270, fill="white)
del draw
...
0
votes
1answer
15 views
CMake find_package(PythonLibs) not working
I am trying to use Python.h in a C++ project compiled with g++. I am using CMake to generate proper include/lib links. I am using the built-in feature
find_package(PythonLibs REQUIRED)
but cannot ...
0
votes
2answers
45 views
Why is Tkinter missing?
Started messing with Tkinter today, but when I tried to run my first program it crashed. It appears the reason is that I don't have Tkinter. This is a standard installation of Python 3.3 on Windows 7, ...
0
votes
1answer
23 views
Why am I getting this AttributeError ? (python3 , pygame)
Below is the error I am receiving and the code I have written. I know similar questions have been asked , but the solutions they are given do not relate to this case. And I can't seem to figure out ...
0
votes
6answers
82 views
Generating a list of prime numbers. - beginner [closed]
I am just starting out, and I've written the following code and have been trying to debug it for a few hours. I am not getting something very basic here. I want the code to give me a list of prime ...
0
votes
1answer
26 views
Pygame drawing doesn't work correctly
I have a problem with drawing a simple rectangle on the screen. I've no clue why it fails to draw, I've tried several things: drawing it on the background surface, changing the order of the function ...
0
votes
1answer
40 views
Getting arguments from code
Sorry if this is a bit vague, or already been asked, but I wasn't sure of the terminology so I couldn't google it. What I'm looking for is how to assign the arguments that psutil.virtual_memory() ...
1
vote
2answers
38 views
relative import in Python 3 not working
I have the following directory:
mydirectory
├── __init__.py
├── file1.py
└── file2.py
I have a function f defined in file1.py.
If, in file2.py, I do
from .file1 import f
I get the following ...
0
votes
1answer
59 views
How can I make a ball move in pygame when dragged by mouse?
I am making a small game in python where balls are fired by a catapult, and then the balls destroy a structure of boxes and a snake. At the moment I have made the boxes and the snakes however, I am ...
6
votes
3answers
95 views
Python 3.x: alternative pprint implementation
Standard pprint module is nice when deals with lists, dicts and so on. But sometimes completely unusable with custom classes:
The only way to make it print usable information about an object of some ...
0
votes
0answers
33 views
Unable to successfully dump emails retrieved from gmail to mbox file using python
I have written below 2 code snippets. Second one work's as expected but not the first one.I am unable to find out why output list of print(msg_obj.keys()) at line #22 in first snippet doesn't contain ...
0
votes
1answer
38 views
Find b'' in command output?
I'm trying to find a specific string from a command output in terminal. It doesn't work however.
Here is the command I'm running:
check = subprocess.check_output("netctl list | sed -n 's/^\* //p'", ...
2
votes
3answers
65 views
Python writing binary files, bytes
Python 3. I'm using QT's file dialog widget to save PDFs downloaded from the internet. I've been reading the file using 'open', and attempting to write it using the file dialog widget. However, I've ...
0
votes
1answer
38 views
Python 2 and 3 metaclass compatibility when kwargs are used
I am making a metaclass where I customize the __new__ method to customize how the new class will be created according to the provided values in kwargs. This probably makes more sense in an example:
...
0
votes
1answer
28 views
Python decode french char in html email attachment
I'm trying to decode an html attachment file of an email that I take on an IMAP Server.
If the html file contain normal character it's working without problem, but when you have some french é ...
1
vote
1answer
52 views
How to create element pairs of two lists by iterating through them in parallel?
I want to iterate through two lists in parallel and create element pairs as follows.
My code:
q_node_roots = ['A', 'B', 'C']
s_node_roots = ['X', 'Y', 'Z']
for q_node_pair, s_node_pair in ...
1
vote
2answers
27 views
thread getting stuck (python)
Basically I have a program that starts a new thread, then tries to do stuff in this new thread. However, the new thread seems to get stuck until the main thread reaches the end of the program.
here ...
1
vote
0answers
29 views
Using Websocket in Pyramid using Python3
Is there a way to use Websockets in Pyramid using Python 3.
I want to use it for live-updating tables when there are data changes on the server.
I already thought of using long-polling, but I don't ...
0
votes
1answer
39 views
invalid syntax error python3 [closed]
can someone please explain this error message to me please
File "game.py", line 3, in <module>
import random
File "/usr/lib/python3.2/random.py", line 40, in <module>
from types ...
0
votes
2answers
63 views
Add different variables in two dictionaries
I need a little bit of help here. I am a new python coder. I need a lot of help. So, I want to add the different variables in two dictionaries. An example is:
x = {'a':1, 'b':2}
y = {'b':1, 'c':2}
...
0
votes
2answers
97 views
Utilising Python dictionaries
I have a program which writes a text file containing names and some queries. The first four lines start by defining a parental figure on left and their children after the colon; think of it as a ...
-2
votes
3answers
47 views
Take off '[' from Json string?
I have a JSON return string from MongoDB
[{'api_calls_per_day': 0.29411764705882354, '_id': ObjectId('51948e5bc25f4b1d1c0d303a'), 'api_calls_total': 5, 'api_calls_with_key': 3, ...
0
votes
2answers
26 views
Submitting a web form in python 3
Please could someone convert the following from python2 to python3;
import requests
url = "http://duckduckgo.com/html"
payload = {'q':'python'}
r = requests.post(url, payload)
with ...
3
votes
1answer
75 views
Python equivalent of Perl's HTTP::Async->next_response
I'm looking for a way to do the equivalent of Perl's HTTP::Async module's next_response method
The HTTP::Async module doesn't spawn any background threads, nor does it use any callbacks. Instead, ...
0
votes
2answers
43 views
Updating default arguments in Python across calls [duplicate]
In the following function L stores the values during every call.
For example, if I call f(1), L is now [1]. When I call it again the previous L is appended with the new value. So now L is [1,1].
def ...
-1
votes
4answers
63 views
How the program has control with the break statement [closed]
Could anybody explain this program and output of this? I am having doubt at if statement. I'm not able to understand how break statement works in this:
for n in range(2, 10):
for x in range(2, ...
2
votes
2answers
97 views
Python converting string to tuple without splitting characters
I am striving to convert a string to a tuple without splitting the characters of the string in the process. Can somebody suggest an easy method to do this. Need a one liner.
Fails
a = 'Quattro ...
-1
votes
2answers
139 views
How to integrate simpleGUI with python 2.7 and 3.0 shell
I am learning Python from coursera. In this course they use simpleGUI module on Codeskulpture. Can anyone tell me how to integrate simpleGUI with python 2.7 and 3.0 shell...
Thanks
-2
votes
1answer
59 views
terminal command line python3.3
I'm following a book tutorial and it's telling me to install python3.3 with the command line
sudo apt-get install python3.3
however I'm getting errors
Unable to locate package python3.3
Couldn't ...
3
votes
3answers
130 views
use of // in python
I am new in python programming. I have come to piece of program in which
if (pos.x//1,pos.y//1) not in self.cleaned:
self.cleaned.append((pos.x//1,pos.y//1))
is used. It might be silly of me. ...
0
votes
1answer
52 views
Python advice using delays with tkinter
I have created GUI using tkinter, which will run on the RaspberryPi and will perform various actions such as lighting LEDs. The problem I have is toggling an LED on and off using the root.after ...
15
votes
2answers
427 views
Why do distribute and pip install to my virtualenv's ./local/bin?
I create and activate a virtualenv (venv) using Python 3.3's built-in way of doing it:
$ python3.3 -m venv env
$ source env/bin/activate
At this point python is the python in my virtualenv, which I ...
1
vote
1answer
189 views
Pyside-uic for python3?
Is there pyside-uic version which generates code for python 3? In Ubuntu repos there is pyside for both python 2 and 3, but pyside-tools (package which contains pyside-uic) is only available for ...
0
votes
2answers
239 views
Python :: input() :: Using Backspace And Arrow Keys
I have a python script that takes information from the user through the built in input() function.
My question is why do the backspace and arrow keys not function correctly and how can I fix it so ...
76
votes
2answers
2k views
What does -> mean in Python function definitions?
I've recently noticed something interesting when looking at Python 3.3 grammar specification:
funcdef: 'def' NAME parameters ['->' test] ':' suite
The optional 'arrow' block was absent in Python ...
