User corey goldberg - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T02:14:36Zhttp://stackoverflow.com/feeds/user/16148http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1764878/favorite-3rd-party-python-libraries/1764971#17649712Answer by corey goldberg for Favorite 3rd-party Python Libraries?corey goldberg2009-11-19T17:13:08Z2009-11-19T17:13:08Z<ul>
<li><a href="http://matplotlib.sourceforge.net/" rel="nofollow">matplotlib</a> </li>
<li><a href="http://sourceforge.net/projects/pywin32/" rel="nofollow">pywin32</a> </li>
<li><a href="http://numpy.scipy.org/" rel="nofollow">numpy</a> </li>
<li><a href="http://www.wxpython.org/" rel="nofollow">wxPython</a></li>
</ul>
http://stackoverflow.com/questions/1731298/how-do-i-check-the-http-status-code-of-an-object-without-downloading-it/1731351#17313510Answer by corey goldberg for How do I check the HTTP status code of an object without downloading it?corey goldberg2009-11-13T19:28:35Z2009-11-13T19:34:34Z<p>i think your code already does that.
you never call the read() method on the response, so you are never actually downloading the file's contents.</p>
<p>better yet... you could send an HTTP HEAD request using <a href="http://docs.python.org/library/httplib.html" rel="nofollow">httplib</a> instead of doing the HTTP GET that your urllib code does.</p>
http://stackoverflow.com/questions/440356/extracting-embedded-images-from-outlook-email2Extracting Embedded Images From Outlook Emailcorey goldberg2009-01-13T19:15:03Z2009-11-13T14:11:05Z
<p>I am using Microsoft's CDO (Collaboration Data Objects) to programatically read mail from an Outlook mailbox and save embedded image attachments. I'm trying to do this from Python using the Win32 extensions, but samples in any language that uses CDO would be helpful.</p>
<p>So far, I am here...</p>
<p>The following Python code will read the last email in my mailbox, print the names of the attachments, and print the message body:</p>
<pre><code>from win32com.client import Dispatch
session = Dispatch('MAPI.session')
session.Logon('','',0,1,0,0,'exchange.foo.com\nbar');
inbox = session.Inbox
message = inbox.Messages.Item(inbox.Messages.Count)
for attachment in message.Attachments:
print attachment
print message.Text
session.Logoff()
</code></pre>
<p>However, the attachment names are things like: "zesjvqeqcb_chart_0". Inside the email source, I see image source links like this:
<IMG src="cid:zesjvqeqcb_chart_0"></p>
<p>So.. is it possible to use this CID URL (or anything else) to extract the actual image and save it locally?</p>
http://stackoverflow.com/questions/1590474/scheduled-tasks-in-win32/1590546#15905462Answer by corey goldberg for Scheduled tasks in Win32corey goldberg2009-10-19T19:15:42Z2009-10-19T19:15:42Z<p>you can schedule it from another script and kick this off once a day or after each reboot:</p>
<pre><code>#!/usr/bin/env python
import subprocess
interval = 300 # secs
while True:
p = subprocess.Popen(['pythonw.exe', 'foo.py'])
time.sleep(interval)
</code></pre>
<p>This way you can do sub-minute intervals also.</p>
http://stackoverflow.com/questions/1566314/python-newbie-understanding-class-functions/1566344#15663441Answer by corey goldberg for Python newbie - Understanding class functionscorey goldberg2009-10-14T13:47:29Z2009-10-14T13:47:29Z<p>'as' and 'str' are keywords, don't shadow them by defining variables with the same name.</p>
http://stackoverflow.com/questions/1557175/non-blocking-read-log-from-an-http-stream1non-blocking read/log from an http streamcorey goldberg2009-10-12T21:59:39Z2009-10-14T06:13:33Z
<p>I have a client that connects to an HTTP stream and logs the text data it consumes. </p>
<p>I send the streaming server an HTTP GET request... The server replies and continuously publishes data... It will either publish text or send a ping (text) message regularly... and will never close the connection.</p>
<p>I need to read and log the data it consumes in a non-blocking manner.</p>
<p>I am doing something like this:</p>
<pre><code>import urllib2
req = urllib2.urlopen(url)
for dat in req:
with open('out.txt', 'a') as f:
f.write(dat)
</code></pre>
<p>My questions are:<br>
will this ever block when the stream is continuous?<br>
how much data is read in each chunk and can it be specified/tuned?<br>
is this the best way to read/log an http stream?</p>
http://stackoverflow.com/questions/1549412/grouping-data-points-into-series0Grouping data points into seriescorey goldberg2009-10-10T23:53:56Z2009-10-13T16:57:37Z
<p>I have a series of data points (tuples) in a list with a format like:</p>
<pre><code>points = [(1, 'a'), (2, 'b'), (2, 'a'), (3, 'd'), (4, 'c')]
</code></pre>
<p>The first item in each tuple is an integer and they are assured to be sorted. The second value in each tuple is an arbitrary string.</p>
<p>I need them grouped in lists by their first value in a series. So given an interval of 3, the above list would be broken into:</p>
<pre><code>[['a', 'b', 'a', 'd'], ['c']]
</code></pre>
<p>I wrote the following function, which works fine on small data sets. However, it is inneficient for large inputs. Any tips on how to rewrite/optimize/mininize this so I can process large data sets?</p>
<pre><code>def split_series(points, interval):
series = []
start = points[0][0]
finish = points[-1][0]
marker = start
next = start + interval
while marker <= finish:
series.append([point[1] for point in points if marker <= point[0] < next])
marker = next
next += interval
return series
</code></pre>
http://stackoverflow.com/questions/1555968/efficient-way-to-find-the-largest-key-in-a-dictionary-with-non-zero-value/1556050#15560504Answer by corey goldberg for Efficient way to find the largest key in a dictionary with non-zero valuecorey goldberg2009-10-12T18:09:11Z2009-10-12T18:47:28Z<p>To get the largest key, you can use the <a href="http://docs.python.org/3.1/library/functions.html#max" rel="nofollow"><code>max</code></a> function and inspect the keys like this:</p>
<pre><code>max(x.iterkeys())
</code></pre>
<p>To filter out ones where the value is 0, you can use a <a href="http://docs.python.org/reference/expressions.html#grammar-token-generator%5Fexpression" rel="nofollow"><em>generator expression</em></a>:</p>
<pre><code>(k for k, v in x.iteritems() if v != 0)
</code></pre>
<p>You can combine these to get what you are looking for (since <code>max</code> takes only one argument, the parentheses around the generator expression can be dropped):</p>
<pre><code>max(k for k, v in x.iteritems() if v != 0)
</code></pre>
http://stackoverflow.com/questions/1459087/looking-for-a-bare-bones-open-source-editor-written-in-python/1460430#14604301Answer by corey goldberg for Looking for a bare-bones open-source editor written in pythoncorey goldberg2009-09-22T14:29:41Z2009-09-22T14:29:41Z<p>check out:</p>
<p><strong>Scitilla/SciTE</strong><br>
<a href="http://www.scintilla.org/SciTE.html" rel="nofollow">http://www.scintilla.org/SciTE.html</a></p>
<p><strong>Editra</strong><br>
<a href="http://editra.org/" rel="nofollow">http://editra.org/</a></p>
<p>both are cross platform and written in Python. They are full featured editors, but barebones compared to an IDE or such.</p>
http://stackoverflow.com/questions/1373660/is-this-bad-python-style/1373677#13736771Answer by corey goldberg for Is this bad Python style?corey goldberg2009-09-03T14:20:12Z2009-09-03T14:20:12Z<p>looks fine to me.. I read files like that often.</p>
http://stackoverflow.com/questions/176011/python-list-vs-array-when-to-use9Python List vs. Array - when to use?corey goldberg2008-10-06T20:17:43Z2009-08-31T16:24:42Z
<p>If you are creating a 1d array, you can implement it as a List, or else use the 'array' module in the STDLIB. I have always used Lists for 1d arrays.</p>
<p>What is the reason or circumstance where I would want to use the array module instead?</p>
<p>Is it for performance and memory optimization, or am I missing something obvious?</p>
http://stackoverflow.com/questions/192907/xml-parsing-sax-vs-dom-vs-elementtree8XML Parsing - SAX vs. DOM. vs. ElementTreecorey goldberg2008-10-10T20:22:24Z2009-08-24T13:45:55Z
<p>Python has several ways to parse XML...</p>
<p>I understand the very basics of parsing with SAX. It functions as a stream parser, with an event-driven API.</p>
<p>I understand the DOM parser also. It reads the XML into memory and coverts it to objects that can be accessed with Python.</p>
<p>Generally speaking, it was easy to choose between the 2 depending on what you needed to do, memory constraints, performance, etc.</p>
<p>(hopefully I'm correct so far).</p>
<p>since Python 2.5, we also have ElementTree. How does this compare to DOM and SAX? Which is it more like? Why is it better than the previous parsers?</p>
http://stackoverflow.com/questions/1233728/python-sub-process/1233847#12338471Answer by corey goldberg for python sub-process corey goldberg2009-08-05T15:01:13Z2009-08-05T15:01:13Z<p>one error:<br>
you have an unquoted %s in your list of args, so your string formatting will fail.</p>
http://stackoverflow.com/questions/1190206/threading-in-python/1190247#11902470Answer by corey goldberg for Threading in Pythoncorey goldberg2009-07-27T19:47:10Z2009-07-27T19:47:10Z<p>there is no "best approach" to concurrency. Which approach you try depends on many factors. Are you i/o blocked a lot (threading)? Are you trying to spread the load across multiple processor cores (multiprocessing)? etc etc...</p>
http://stackoverflow.com/questions/1180878/spoofing-the-origination-ip-address-of-an-http-request2Spoofing the origination IP address of an HTTP requestcorey goldberg2009-07-25T01:11:24Z2009-07-27T01:46:10Z
<p>This only needs to work on a single subnet and is not for malicious use. </p>
<p>I have a load testing tool written in Python that basically blasts HTTP requests at a URL. I need to run performance tests against an IP-based load balancer, so the requests must come from a range of IP's. Most commercial performance tools provide this functionality, but I want to build it into my own.</p>
<p>The tool uses Python's urllib2 for transport. Is it possible to send HTTP requests with spoofed IP addresses for the packets making up the request?</p>
http://stackoverflow.com/questions/1153407/stopping-a-long-running-subprocess1Stopping a Long-Running Subprocesscorey goldberg2009-07-20T12:55:40Z2009-07-20T13:02:16Z
<p>I create a subprocess using subprocess.Popen() that runs for a long time. It is called from its own thread, and the thread is blocked until the subprocess completes/returns.</p>
<p>I want to be able to interrupt the subprocess so the process terminates when I want.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/350207/dont-change-url-in-browser-when-clicking-asplinkbutton0Don't Change URL in Browser When Clicking <asp:LinkButton>corey goldberg2008-12-08T17:14:03Z2009-07-16T02:00:03Z
<p>I have an ASP.NET page that uses a menu based on asp:LinkButton control in a Master page. When a user selects a menu item, an onclick handler calls a method in my C# code. The method it calls just does a Server.Transfer() to a new page. From what I have read, this is not supposed to change the URL displayed in the browser.</p>
<p>The problem is it that the URL changes in the browser as the user navigates the menu to different pages.</p>
<p>Here is an item in the menu:</p>
<pre><code><asp:LinkButton id="foo" runat="server" onclick="changeToHelp"><span>Help</span>
</asp:LinkButton>
</code></pre>
<p>In my C# code, I handle the event with a method like:</p>
<pre><code>protected void changeToHelp(object sender, EventArgs e)
{
Server.Transfer("Help.aspx");
}
</code></pre>
<p>Any ideas how I can navigate through the menu without the browser's URL bar changing?</p>
http://stackoverflow.com/questions/1131430/are-generators-threadsafe4Are Generators Threadsafe?corey goldberg2009-07-15T13:32:05Z2009-07-15T21:28:12Z
<p>I have a multithreaded program where I create a generator function and then pass it to new threads. I want it to be shared/global in nature so each thread can get the next value from the generator.</p>
<p>Is it safe to use a generator like this, or will I run into problems/conditions accessing the shared generator from multiple threads? </p>
<p>If not, is there a better way to approach the problem? I need something that will cycle through a list and produce the next value for whichever thread calls it.</p>
http://stackoverflow.com/questions/1086000/how-can-i-determine-which-os-im-running-on-in-a-python-script/1087129#10871290Answer by corey goldberg for How can I determine which OS I'm running on in a Python script?corey goldberg2009-07-06T13:58:01Z2009-07-06T13:58:01Z<pre><code>if sys.platform.startswith('win'):
# do windows stuff
else:
# do nix/other stuff
</code></pre>
http://stackoverflow.com/questions/209888/tutorial-for-python-should-i-use-2-x-or-3-06Tutorial for Python - Should I use 2.x or 3.0?corey goldberg2008-10-16T19:19:00Z2009-07-06T08:00:15Z
<p>Python 3.0 is in beta with a final release coming shortly. Obviously it will take some significant time for general adoption and for it to eventually replace 2.x.</p>
<p>I am writing a tutorial about certain aspects of programming Python. I'm wondering if I should do it in Python 2.x or 3.0? (not that the difference is huge)</p>
<p>a 2.x tutorial is probably more useful now, but it would be nice to start producing 3.0 tutorials.</p>
<p>anyone have thoughts?</p>
<p>(of course I could do both, but I would prefer to do one or the other)</p>
http://stackoverflow.com/questions/1059559/python-strings-split-with-multiple-separators/1059612#10596121Answer by corey goldberg for Python strings split with multiple separatorscorey goldberg2009-06-29T18:01:00Z2009-06-29T18:01:00Z<p>try this:</p>
<pre><code>import re
phrase = "Hey, you - what are you doing here!?"
matches = re.findall('\w+', phrase)
print matches
</code></pre>
<p>this will print <code>['Hey', 'you', 'what', 'are', 'you', 'doing', 'here']</code></p>
http://stackoverflow.com/questions/1045886/https-log-in-with-urllib2/1046153#10461531Answer by corey goldberg for HTTPS log in with urllib2corey goldberg2009-06-25T20:40:35Z2009-06-25T20:40:35Z<p>The urllib2 documentation has an example of working with Basic Authentication:</p>
<p><a href="http://docs.python.org/library/urllib2.html#examples" rel="nofollow">http://docs.python.org/library/urllib2.html#examples</a></p>
http://stackoverflow.com/questions/1037673/pure-python-gui-library/1038494#10384942Answer by corey goldberg for Pure python gui library?corey goldberg2009-06-24T13:48:15Z2009-06-24T13:48:15Z<p>starting in Python 2.7 and 3.1, Tk will look a lot better.</p>
<p><a href="http://docs.python.org/dev/whatsnew/2.7.html#ttk-themed-widgets-for-tk" rel="nofollow">http://docs.python.org/dev/whatsnew/2.7.html#ttk-themed-widgets-for-tk</a></p>
<p>"Tcl/Tk 8.5 includes a set of themed widgets that re-implement basic Tk widgets but have a more customizable appearance and can therefore more closely resemble the native platform’s widgets. This widget set was originally called Tile, but was renamed to Ttk (for “themed Tk”) on being added to Tcl/Tck release 8.5."</p>
http://stackoverflow.com/questions/1014503/what-does-typeerror-cannot-concatenate-str-and-list-objects-mean/1014519#10145192Answer by corey goldberg for What does : TypeError: cannot concatenate 'str' and 'list' objects mean?corey goldberg2009-06-18T18:52:10Z2009-06-18T19:02:27Z<p>string objects can only be concatenated with other strings. Python is a strongly-typed language. It will not coerce types for you.</p>
<p>you can do: </p>
<pre><code>'a' + '1'
</code></pre>
<p>but not: </p>
<pre><code>'a' + 1
</code></pre>
<p>in your case, you are trying to concat a string and a list. this won't work. you can append the item to the list though, if that is your desired result:</p>
<pre><code>my_list.append('a')
</code></pre>
http://stackoverflow.com/questions/987217/how-can-i-change-a-user-agent-string-programmatically/987257#9872573Answer by corey goldberg for How can I change a user agent string programmatically?corey goldberg2009-06-12T15:22:40Z2009-06-12T15:22:40Z<p>I assume you mean a user-agent string in an HTTP request? This is just an HTTP header that gets sent along with your request.</p>
<p>using Python's urllib2:</p>
<pre><code>import urllib2
url = 'http://foo.com/'
# add a header to define a custon User-Agent
headers = { 'User-Agent' : 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)' }
req = urllib2.Request(url, '', headers)
response = urllib2.urlopen(req).read()
</code></pre>
http://stackoverflow.com/questions/974741/wget-vs-urlretrieve-of-python/975759#9757590Answer by corey goldberg for wget Vs urlretrieve of python corey goldberg2009-06-10T13:55:34Z2009-06-10T13:55:34Z<p>There shouldn't be a difference really. All urlretrieve does is make a simple HTTP GET request. Have you taken out your data processing code and done a straight throughput comparison of wget vs. pure python?</p>
http://stackoverflow.com/questions/975532/which-editor-is-best-for-python-coding-on-linux/975718#9757183Answer by corey goldberg for Which editor is best for Python coding on Linux?corey goldberg2009-06-10T13:48:24Z2009-06-10T13:48:24Z<p>NetBeans 6.5 is pretty good with Python (on both *nix and windows).</p>
<p><a href="http://www.netbeans.org/features/python/" rel="nofollow">http://www.netbeans.org/features/python/</a></p>
http://stackoverflow.com/questions/922788/writing-a-kernel-mode-profiler-for-processes-in-python/922904#9229040Answer by corey goldberg for Writing a kernel mode profiler for processes in python.corey goldberg2009-05-28T20:10:16Z2009-05-28T20:10:16Z<p>have you looked at PSI? (<a href="http://www.psychofx.com/psi/" rel="nofollow">http://www.psychofx.com/psi/</a>)</p>
<p>"PSI is a Python module providing direct access to real-time system and process information. PSI is a Python C extension, providing the most efficient access to system information directly from system calls."</p>
<p>it might give you what you are looking for. .... or at least a starting point.</p>
http://stackoverflow.com/questions/911655/gnuplot-vs-matplotlib/911779#9117793Answer by corey goldberg for gnuplot vs matplotlibcorey goldberg2009-05-26T17:15:51Z2009-05-26T17:15:51Z<p>I have played with both, and I like Matplotlib much better in terms of Python integration, options, and quality of graphs/plots.</p>
http://stackoverflow.com/questions/889528/how-can-i-read-write-against-a-python-httpconnection/889550#8895501Answer by corey goldberg for How can I read()/write() against a python HTTPConnection?corey goldberg2009-05-20T18:42:41Z2009-05-20T18:42:41Z<p>for output:</p>
<pre><code>output = response.read()
</code></pre>
<p><a href="http://docs.python.org/library/httplib.html#httpresponse-objects" rel="nofollow">http://docs.python.org/library/httplib.html#httpresponse-objects</a></p>
<p>for input:
pass your data in the POST body of your request</p>
http://stackoverflow.com/questions/1731298/how-do-i-check-the-http-status-code-of-an-object-without-downloading-it/1731351#1731351Comment by corey goldberg on How do I check the HTTP status code of an object without downloading it?corey goldberg2009-11-13T19:33:43Z2009-11-13T19:33:43ZKen, I know what you mean, but his questions was how to do it without downloading the file. and in this case, no content is read by the client after the response headerhttp://stackoverflow.com/questions/1632234/python-list-running-processes-64bit-windows/1632274#1632274Comment by corey goldberg on Python, List running processes 64Bit Windowscorey goldberg2009-10-27T17:18:31Z2009-10-27T17:18:31ZWMI works well for thishttp://stackoverflow.com/questions/1590474/scheduled-tasks-in-win32/1590546#1590546Comment by corey goldberg on Scheduled tasks in Win32corey goldberg2009-10-19T19:36:50Z2009-10-19T19:36:50Zbecause os.popen is deprecated. see <a href="http://docs.python.org/library/subprocess.html" rel="nofollow">docs.python.org/library/subprocess.html</a>http://stackoverflow.com/questions/1549412/grouping-data-points-into-series/1561542#1561542Comment by corey goldberg on Grouping data points into seriescorey goldberg2009-10-13T21:05:14Z2009-10-13T21:05:14Zalso, this seems to be slightly faster than the defaultdict versionhttp://stackoverflow.com/questions/1549412/grouping-data-points-into-series/1561542#1561542Comment by corey goldberg on Grouping data points into seriescorey goldberg2009-10-13T20:55:39Z2009-10-13T20:55:39Zoops.. my bad. it does give correct output. I am erasing my previous comment and upvoting this solution.http://stackoverflow.com/questions/1557175/non-blocking-read-log-from-an-http-stream/1557380#1557380Comment by corey goldberg on non-blocking read/log from an http streamcorey goldberg2009-10-13T18:58:50Z2009-10-13T18:58:50Zthe for/with order was intentional. this will open/close the file handle with each write. Not efficient for a busy stream, but in my case the stream is mostly blocked/waiting and then occasionally receives data to log.http://stackoverflow.com/questions/1557571/how-to-get-time-of-a-python-program-execution/1557805#1557805Comment by corey goldberg on how to get time of a python program execution?corey goldberg2009-10-13T14:03:50Z2009-10-13T14:03:50Ztime.time() is best used on *nix. time.clock() is best used on Windows.http://stackoverflow.com/questions/1557571/how-to-get-time-of-a-python-program-execution/1557584#1557584Comment by corey goldberg on how to get time of a python program execution?corey goldberg2009-10-13T14:02:34Z2009-10-13T14:02:34Zon Windows, do the same thing, but use time.clock() instead of time.time(). You will get slightly better accuracy.http://stackoverflow.com/questions/1555968/efficient-way-to-find-the-largest-key-in-a-dictionary-with-non-zero-value/1556050#1556050Comment by corey goldberg on Efficient way to find the largest key in a dictionary with non-zero valuecorey goldberg2009-10-12T18:28:28Z2009-10-12T18:28:28ZI just updated my answer... switched from lists to generators/iteratorshttp://stackoverflow.com/questions/1549412/grouping-data-points-into-series/1549466#1549466Comment by corey goldberg on Grouping data points into seriescorey goldberg2009-10-11T02:40:29Z2009-10-11T02:40:29Zyour dict version is the only one that correctly printed empty groups. it is also very fast. accepting this answerhttp://stackoverflow.com/questions/1549412/grouping-data-points-into-series/1549451#1549451Comment by corey goldberg on Grouping data points into seriescorey goldberg2009-10-11T02:37:57Z2009-10-11T02:37:57Zthis version is fast, but it doesn't store empty groups for empty intervals. see Nicholas Riley's answer and commentshttp://stackoverflow.com/questions/1549412/grouping-data-points-into-series/1549430#1549430Comment by corey goldberg on Grouping data points into seriescorey goldberg2009-10-11T02:20:43Z2009-10-11T02:20:43Zthis version is much faster and is very readable. but it doesn't store empty groups for empty intervals. see Nicholas Riley's answer and commentshttp://stackoverflow.com/questions/1549412/grouping-data-points-into-series/1549466#1549466Comment by corey goldberg on Grouping data points into seriescorey goldberg2009-10-11T00:54:55Z2009-10-11T00:54:55Zcool. i'll run some benchmarkshttp://stackoverflow.com/questions/1549412/grouping-data-points-into-series/1549466#1549466Comment by corey goldberg on Grouping data points into seriescorey goldberg2009-10-11T00:36:36Z2009-10-11T00:36:36Zi actually need to know when a group is empty, so can't make that assupmtion.http://stackoverflow.com/questions/1549412/grouping-data-points-into-seriesComment by corey goldberg on Grouping data points into seriescorey goldberg2009-10-11T00:25:55Z2009-10-11T00:25:55Zhop, yes correct