David Eyk

547
Reputation
53 views

Registered User

Name David Eyk
Member for 1 year
Seen 2 days ago
Website
Location
Age
2d
comment Integrating a simple web server into a custom main loop in python?
Oh, hey, I just noticed you edited your answer. Thanks for confirming my suspicion, and you may have finally convinced me to give Twisted another chance. :)
Nov
16
comment Integrating a simple web server into a custom main loop in python?
Hm. Via <twistedmatrix.com/documents/current/…;, regarding reactor.iterate(): "The reactor must have been started (via the run() method) prior to any invocations of this method. It must also be stopped manually after the last call to this method (via the stop() method). This method is not re-entrant: you must not call it recursively; in particular, you must not call it while the reactor is running." Is this what I'm looking for?
Nov
16
revised Integrating a simple web server into a custom main loop in python?
Added an ideal code example.
Nov
16
comment Integrating a simple web server into a custom main loop in python?
How did I know Twisted would come up? :) However, your example appears to use its own main loop. How do I get around reactor.run()?
Nov
16
comment Integrating a simple web server into a custom main loop in python?
Which is why I'd like to avoid threading. Thanks.
Nov
16
asked Integrating a simple web server into a custom main loop in python?
Oct
12
accepted Editing MP3 metadata on a file-like object in Python?
Oct
9
answered Editing MP3 metadata on a file-like object in Python?
Oct
8
comment Editing MP3 metadata on a file-like object in Python?
Would you recommend a simple one to modify?
Oct
8
revised Editing MP3 metadata on a file-like object in Python?
Explained the nature of the question more succinctly.
Oct
8
comment Editing MP3 metadata on a file-like object in Python?
You're totally right, and we may end up doing that or roll our own frame-hacking strategy. The point of the question, however, was to avoid all that by discovering an out-of-the-box solution that would spare us programming time. Hacking frames or hacking servers are more work, not less, and outside the scope of this question.
Oct
7
revised Editing MP3 metadata on a file-like object in Python?
added 40 characters in body
Oct
7
comment Editing MP3 metadata on a file-like object in Python?
Yeah. As for tmpfs, it's too hackish. I already have the object in memory--why do I need to copy it to work with it?
Oct
7
comment Editing MP3 metadata on a file-like object in Python?
The problem is, all the libraries I've seen won't work w/ StringIO, or anything like it, because they require a filesystem path.
Oct
7
comment Editing MP3 metadata on a file-like object in Python?
Actually, ID3 tags are best prepended. en.wikipedia.org/wiki/ID3#ID3v2
Oct
7
asked Editing MP3 metadata on a file-like object in Python?
Oct
6
comment How do I memoize expensive calculations on Django model objects?
You're entirely right. We were already getting annoyed that we had to receive the dictionary, manipulate it, and then send it back to the setter. Manipulating the dictionary in place is much nicer. The JSON field implementation is interesting, but I'm uncertain how it works behind the scenes. Does it deserialize once on load, providing a manipulable python object, which it then serializes again on save?
Oct
6
revised How do I memoize expensive calculations on Django model objects?
Added a code example.
Oct
6
asked How do I memoize expensive calculations on Django model objects?
Sep
20
awarded  Yearling
Aug
17
comment How do you install lxml on OS X Leopard without using MacPorts or Fink?
AFAIK, wget doesn't come stock w/ OS X. Use curl -O instead.