2
votes
2answers
30 views
What is the current choice for doing RPC in Python?
Actually, I've done some work with Pyro and RPyC, but there is more RPC implementation than these two. Can we make a list of them?
Native Python-based protocols:
PyRo (Python Remote Objects)
RPyC …
0
votes
1answer
15 views
help needed for using qt designer files in python(silly noob question)…
Hello all,
I'm new to PyQt though i know python a bit.. I wanted to Qt designer for GUI programming since it'll make my job easier. I've taken a simple dialog in Qt designer and converted using …
0
votes
2answers
39 views
Python Ascendance and descendance
Hello,
I apologize in advance for the basic level of my question. I would like to the print the:
total number and identity of nodes that have 0 child, 1 child, 2 children, 3 children.
total number …
0
votes
1answer
23 views
Retrieve the source of a dynamic website using python (bypassing onclick)
I wish to retrieve the source of a website, that is dynamically generated upon clicking a link. The link itself is as below:
<a onclick="function(); return false" href="#">Link</a>
This …
0
votes
2answers
14 views
Decoding packed data into a structure
Hi
What would the best way of unpacking a python string into fields
I have data received from a tcp socket, it is packed as follows, I believe it will be in a string from the socket recv function
…
3
votes
3answers
79 views
A business Case for Enterprise Python
Hi all,
This will not be a "programming" question but more technology / platform related question. I'm trying to figure out whether Python can be a suitable Java alternative for enterprise / web …
5
votes
14answers
374 views
How long should you focus on a programming language?
Okay, so I've been doing web design for about a year or two, and I've decided that I want to learn a Programming Language, because I've figured out that's what interest me more.
I start out learning …
1
vote
2answers
44 views
Order a list of files by size via python
Example dump from the list of a directory:
hello:3.1 GB
world:1.2 MB
foo:956.2 KB
The above list is in the format of FILE:VALUE UNIT. How would one go about ordering each line above according to …
1
vote
5answers
45 views
How to Determine The Module a Particular Exception Class is Defined In
Note: i edited my Q (in the title) so that it better reflects what i actually want to know. In the original title and in the text of my Q, i referred to the source of the thrown exception; what i …
1
vote
5answers
89 views
struct objects in python
I wanted to create a throwaway "struct" object to keep various status flags. My first approach was this (javascript style)
>>> status = object()
>>> status.foo = 3
Traceback (most …
2
votes
5answers
60 views
Should I take a Python CS class using Windows or Mac?
Hi,
I'll be taking a Python-based computer science class next semester using my MacBook Pro. It will be centered around a custom-designed package for this class. The problem is that this package is …
1
vote
5answers
94 views
Add tuple to list of tuples in Python
I am new to python and don't know the best way to do this.
I have a list of tuples which represent points and another list which represents offsets. I need a set of all the combinations that this …
0
votes
8answers
112 views
Count Parenthesis in a file with a Python program?
I Wanna fix a function through it i can count how many times are used the:(,),[,]
if the counts of ( are equal to those of )
and if the counts of [ are equal to those of ]
then i have valid syntax!
…
0
votes
3answers
61 views
Python directory searching and organizing by dict.
Hey all, this is my first time recently trying to get into the file and os part of Python. I am trying to search a directory then find all sub directories. If the directory has no folders, add all the …
0
votes
7answers
110 views
Delete final line in file via python
How can one delete the very last line of a file via python?
Example File:
hello
world
foo
bar
Resulatant File:
hello
world
foo
I've created the following code to find the number of lines in the …
