0
votes
1answer
17 views

Paramiko determine whether file or directory

Related to How to list all the folders and files in the directory after connecting through sftp in python: I'm trying to see walk over the contents of a directory and determine whether or not each ...
1
vote
1answer
57 views

Most efficient way to find mode in numpy array

I have a 2D array containing integers (both positive or negative). Each row represents the values over time for a particular spatial site, whereas each column represents values for various spatial ...
1
vote
1answer
82 views

Python 3.0+ Calculating Mode

I have written a rather lengthy program to calculate the most often occurring number. And this works great! Unless you have 2 most occurring numbers in a list such as 7,7,7,9,9,9. For that I wrote in: ...
0
votes
1answer
89 views

How to produce multiple modes in Python?

Basically I just need to figure out how to produce modes (numbers occurring most frequently) from a list in Python, whether or not that list has multiple modes? Something like this: def print_mode ...
1
vote
0answers
122 views

Django maintenance mode approach

i use an approach to maintenance mode on my django project: in settings i declare a variable named: MAINTENANCE_MODE after imported settings file in urls.py, i use if condition related to ...
1
vote
2answers
133 views

python-mode 6.0.12 indent after return or pass

I use python-mode in emacs. I have been using for 1 month with no problems. Now I have a problem, in that whenever I 'return' or 'pass' a function inside a class, the indent returns to the start of ...
0
votes
1answer
131 views

Calculating mode(s) in a list without sort, count, index, max, or min functions in Python [closed]

say you have a list called myList = [1,90,4,17,90,17,5] Without using the built in count, min, max, sort, index functions, how can you determine the number that occurs the most (and if multimodal, ...
1
vote
4answers
722 views

PIL Image mode “P” -> “RGBA”

This is my issue: import Image im = Image.open("1.png") im.show() print im.mode im.convert("RGBA").save("2.png") Well, with my image you can see the difference. My question is: how do I convert it ...
2
votes
3answers
298 views

Bug in Python's 'a+' file open mode?

I'm currently making a filesystem using python-fuse and was looking up where file pointers start for each of the different modes ('r', 'r+', etc.) and found on multiple sites that the file pointer ...
3
votes
3answers
3k views

Finding the mode of a list in python

So you have a function that can find the mode of the list but how would you display a message if the list does not have a mode ie. the numbers only appear once. Can't use any importing of functions, ...
1
vote
4answers
194 views

why is my write function not creating a file?

according to all the sources i've read, the open method creates a file or overwrite one with an existing name. however i am trying to use it and i get an error: The error was:File not found - ...
2
votes
2answers
274 views

What's the most efficient way to compute the mode in a sliding window over a 2D array in Python?

I have an RGBA image that I need to upscale while keeping it smooth. The catch is that I need to keep the colors exactly the way they are (background: I'm resizing a map where provinces are ...
2
votes
1answer
649 views

python.el shell and execute buffer

I am using the python.el from fgallina python.el github There is a long list of features but I am unaware of how to use them. EDIT: Found this mode was working, however didn't automatically open the ...
8
votes
5answers
3k views

Is there a posibility to execute a Python script while beeing in interactive mode

Normally you can execute a Python script for example: python myscript.py, but if you are in the interactive mode, how is it possible to execute a Python script on the filesystem? >>> exec(File) ??? ...
0
votes
2answers
363 views

Kiosk mode in wxpython?

Is there a way to create a 'kiosk mode' in wxpython under Windows (98 - 7) where the application disables you from breaking out of the app using Windows keys, alt-tab, alt-f4, and ctrl+alt+delete?