0
votes
1answer
41 views

How do I seed a directory or file using python-libtorrent?

After several hours of looking for the answer I've had no luck. Can anyone point me to an example of how to create a torrent and seed that brand new torrent in python? So far I can download just ...
0
votes
0answers
28 views

libpd with python2.7 and mac os x

I have installed pure data libpd in python 2.7 on mac osx 10.7. when I try to run the example provided in libpd for python, none of the example is giving sound. test.py is dumping some text, no sound ...
1
vote
1answer
45 views

How To Make Mini Example For DrawingArea Display Something

I've written a mini example for DrawingArea which, when started, displays nothing. If I insert a raw_input() just for waiting for a keyboard press at a specific place, it functions, so this is a ...
0
votes
1answer
62 views

using python sched module and enterabs to make a function run at a certain time

I cannot seem to find a simple example of how to schedule an event in Python. I want to be able to pass a date and time string as an argument into a function. For example: String: "m/d/Y HH:MM" ...
0
votes
1answer
95 views

working with file system through python

I want to write a program in python which detects the type of file system and then makes some changes to master file table (in NTFS) or File allocation table (in FAT). Is there an explicit way to do ...
2
votes
1answer
208 views

how to find longest match of a string including a focus word in python

new to python/programming, so not quite sure how to phrase this.... What I want to do is this: input a sentence, find all matches of the input sentence and a set of stored sentences/strings, and ...
0
votes
0answers
193 views

Any custom simple to moderately challenging program ideas I can use to practice? [closed]

I have an upcoming exam for my computer science class and I'm still pretty novice when it comes to creating programs. I have a strong desire to learn python and just become a better programmer overall ...
0
votes
2answers
667 views

Where can I find some examples about using Berkeley DB with Python [closed]

I search some results by google, like http://docs.python.org/library/bsddb.html, http://pybsddb.sourceforge.net/ and so on. But I cannot find any example from those pages. I think maybe someone ...
3
votes
2answers
118 views

How much should one TestCase cover?

I've never written a proper test until now, only small programs that I would dispose of after the test succeeded. I was looking through Python's unittest module and tutorials around the web, but ...
5
votes
1answer
2k views

python relative import example code does not work [duplicate]

Possible Duplicate: How to properly use relative or absolute imports in Python modules? I have this file layout, as shown in this example: (download here: ...
7
votes
2answers
489 views

Learning Django - Good starter project [closed]

I am presently embarking to learn Python and Django together and I have gained a fair bit of theoretical knowledge to help me out. However, I'm after a good project that I can dig into which will ...
3
votes
3answers
770 views

python3 multiprocessing example crashed my pc :(

I am new to multiprocessing I have run example code for two 'highly recommended' multiprocessing examples given in response to other stackoverflow multiprocessing questions. Here is an example of one ...
4
votes
1answer
3k views

Python3 subprocess communicate example

I'm new to subprocessing. I just need a really simple win32 example of communicate() between a parent.py and child.py. A string sent from parent.py to child.py, altered by child.py and sent back to ...
6
votes
5answers
3k views

Example use of “continue” statement in Python?

The definition of the continue statement is: "The continue statement continues with the next iteration of the loop." I can't find any good example of code. Could someone suggest some simple cases ...
1
vote
1answer
620 views

How to set the application name in spynner/PyQt4?

I have had searched the web to find the way to put a name in the top of a PyQt4 application border. I saw setCaption() method ( like in ...
-1
votes
1answer
1k views

Tornado chat example [closed]

There is an example of the chat on tornado? not demo-chat, more functionality? With channels and users online.I can not find anything like this.
1
vote
0answers
249 views

Python Flask - Problems with Minitwit on Internet Explorer 9

I have tested Minitwit. I have just changed DATABASE = '/tmp/minitwit.db' to DATABASE = 'minitwit.db' in order to make it work (no tmp folder existed). It works fine on Firefox. Now it does not ...
1
vote
1answer
960 views

Fuse-Python: Unable to run example

I'm tinkering around with the fuse-python bindings and I can't seem to grasp how to run the example xmp.py from the library package (xmp.py is located here). Looking at a lecture slide from MIT ...
6
votes
2answers
3k views

python logging to multiple files

Does someone has an example of logging in python to 2 or more different logfiles. I want to log for example to '/tmp/foo.log' and '/tmp/bar.log' Thanks in advance T
0
votes
1answer
892 views

Simple multiprocessing/threading example in python?

What's the differences between module threading, Thread, multiprocessing? (may be I have badly understood the conceptual differences between multithreads (share memory and global variables?) and ...
0
votes
1answer
68 views

python doctest: stop example execution and use the resulting context in some shell

i think there was some directive i could enter in the test that would allow me to run some commands interactively at the point of the directive and then continue the example, but i dont remember what ...
1
vote
7answers
2k views

Check even/odd for Palindrome?

Is it a good idea to check for odd/even length of a palindrome number/string? Most snippets I came across don't do this basic test. If length is even, it can't be a palindrome, no? if len(var) % 2 ...
7
votes
3answers
9k views

Understanding .get() method in python

sentence = "The quick brown fox jumped over the lazy dog." characters = {} for character in sentence: characters[character] = characters.get(character,0) + 1 print(characters) I don't ...
5
votes
8answers
1k views

Real-world examples of nested functions

I asked previously how the nested functions work, but unfortunately I still don't quite get it. To understand it better, can someone please show some real-wold, practical usage examples of nested ...
0
votes
8answers
1k views

While loop example

x = y // 2 # For some y > 1 while x > 1: if y % x == 0: # Remainder print(y, 'has factor', x) break # Skip else x -= 1 else: # Normal exit print(y, 'is prime') This ...
14
votes
5answers
5k views

python optparse, how to include additional info in usage output?

Using python's optparse module I would like to add extra example lines below the regular usage output. My current help_print() output looks like this: usage: check_dell.py [options] options: -h, ...
8
votes
2answers
6k views

Python: next() function

I'm learning Python from a book, and I came across this example: M = [[1,2,3], [4,5,6], [7,8,9]] G = (sum(row) for row in M) # create a generator of row sums next(G) # Run the iteration ...
2
votes
4answers
332 views

Filtering odd numbers

M = [[1,2,3], [4,5,6], [7,8,9]] col2 = [row[1] + 1 for row in M if row[1] % 2 == 0] print (col2) Output: [3, 9] I'm expecting it to filter out the odd numbers, but it does the opposite.
0
votes
3answers
174 views

Unexpected result in a simple example

def solve(numLegs, numHeads): for numSpiders in range(0, numHeads + 1): for numChicks in range(0, numHeads - numSpiders + 1): numPigs = numHeads - numChicks - numSpiders ...
0
votes
5answers
267 views

Understanding an example

def solve(numLegs, numHeads): for numChicks in range(0, numHeads + 1): numPigs = numHeads - numChicks totLegs = 4*numPigs + 2*numChicks if totLegs == numLegs: return [numPigs, ...
0
votes
2answers
97 views

Unexpected result on a simple example

# Barn yard example: counting heads and legs def solve(numLegs, numHeads): for numChicks in range(0, numHeads + 1): numPigs = numHeads - numChicks totLegs = 4*numPigs + 2*numChicks ...
1
vote
2answers
2k views

Example of how to use msilib to create a .msi file from a python module

Can anyone give me an example of how to use python's msilib standard library module to create a msi file from a custom python module? For example, let's say I have a custom module called cool.py with ...
1
vote
4answers
737 views

Where is a python real project to be used as example for the unit-test part?

I'm looking for a python project to use as example to copy the design of the unit test parts. The project should have these features: its code is almost fully unit tested the code is distributed in ...
0
votes
3answers
1k views

PyQt - QScrollBar

Dear Stacktoverflow, can you show me an example of how to use a QScrollBar? Thanks.