0
votes
2answers
24 views
How do I decode garbled text from the Library of Congress?
I am making a z39.50 search in python, but have a problem with decoding search results.
The first search result for "harry potter" is apparantly a hebrew version of the book.
How can I make this …
0
votes
1answer
18 views
Display the result on the webpage as soon as the data is available at server
I am writing a cgi page in Python. Let's say a client sends request to my cgi page. My cgi page does the calculation and as soon as it has the first output, it sends back that output to the client, …
1
vote
2answers
26 views
I need a clean approach for range-checking floats in Python
I'm looking for a simple way of range checking floats in Python where the minimum and maximum bounds may be null.
The code in question is:
tval = float(-b - discriminant) / float (2*a)
if …
0
votes
2answers
42 views
String Conversion
Hi i have string
s='This is sample'
i need to convert like this
s='"This is sample"'
output="This is sample"
how to do this in dynamic
Thanks in advance
0
votes
3answers
38 views
How to detect an invalid C escaped string using a regular expression?
I would like to find a regular expression (regex) that does detect if you have some invalid escapes in a C escaped string.
I consider valid \\ \n \r \" (the test string is using ")
A partial …
0
votes
2answers
27 views
Extract resulted list data to a xml file in python
Hi,
How can I extract my resulted list data to an xml file?
My resulted list is given below:
week=[{'item': Electrelane, 'weight': 140}, {'item': Kraftwerk, 'weight': 117},{'item': The Flaming Lips, …
0
votes
1answer
13 views
Good IronPython Book?
Hello guys,
Does anyone know a good IronPython book?
2
votes
1answer
19 views
Django Admin doesn’t show entries.
If I create a new entry for one particular model it doesn't show up in the django admin.
The Agency Model is causing the trouble.
# catalog.models
class Content(models.Model):
class Meta:
…
0
votes
4answers
61 views
Python to Javascript
Hi everyone,
are there any tools for Windows to convert python to javascript?
regards
Alberto
2
votes
4answers
73 views
Storing Python dictionary entries in the order they are pushed
Fellows:
A Python dictionary is stored in no particular order (mappings have no order), e.g.,
>>> myDict = {'first':'uno','second':'dos','third':'tres'}
myDict = …
0
votes
0answers
24 views
Easiest “daytime” service client in Python?
What's the easiest way to write a daytime client in Python?
And if there's more data of unknown size but still plain text - how do I read until the server closes the connection?
3
votes
3answers
136 views
Not possible to do (a, b) += (1, 2) in python?
The following line doesn't seem to work:
(count, total) += self._GetNumberOfNonZeroActions((state[0] + x, state[1] - ring, state[2]))
I guess it is not possible to use the += operator in this case. …
1
vote
2answers
24 views
Overriding __getattribute__ for the Model class in Django
In Django, I need to create a model in which an instance of that model can inherit values from another instance of that model in what amounts to a superclass-subclass type relationship. I created a …
0
votes
1answer
11 views
Send raw ethernet packet with data field length in type field
I'm trying to send a raw ethernet frame with the length of my data written in the type field. This should be a valid ethernet frame. My code for this looks like this:
ethData = "foobar"
proto …
1
vote
4answers
81 views
Project Ideas for medium level Java/Python developer
I am a Python and Java developer with about 1.5 years of coding experience and I am looking for a fun but challenging project to engage myself in.
What are some fun and interesting project ideas that …
