User corey goldberg - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T02:14:36Z http://stackoverflow.com/feeds/user/16148 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1764878/favorite-3rd-party-python-libraries/1764971#1764971 2 Answer by corey goldberg for Favorite 3rd-party Python Libraries? corey goldberg 2009-11-19T17:13:08Z 2009-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#1731351 0 Answer by corey goldberg for How do I check the HTTP status code of an object without downloading it? corey goldberg 2009-11-13T19:28:35Z 2009-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-email 2 Extracting Embedded Images From Outlook Email corey goldberg 2009-01-13T19:15:03Z 2009-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: &lt;IMG src="cid:zesjvqeqcb_chart_0"&gt;</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#1590546 2 Answer by corey goldberg for Scheduled tasks in Win32 corey goldberg 2009-10-19T19:15:42Z 2009-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#1566344 1 Answer by corey goldberg for Python newbie - Understanding class functions corey goldberg 2009-10-14T13:47:29Z 2009-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-stream 1 non-blocking read/log from an http stream corey goldberg 2009-10-12T21:59:39Z 2009-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-series 0 Grouping data points into series corey goldberg 2009-10-10T23:53:56Z 2009-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 &lt;= finish: series.append([point[1] for point in points if marker &lt;= point[0] &lt; 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#1556050 4 Answer by corey goldberg for Efficient way to find the largest key in a dictionary with non-zero value corey goldberg 2009-10-12T18:09:11Z 2009-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#1460430 1 Answer by corey goldberg for Looking for a bare-bones open-source editor written in python corey goldberg 2009-09-22T14:29:41Z 2009-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#1373677 1 Answer by corey goldberg for Is this bad Python style? corey goldberg 2009-09-03T14:20:12Z 2009-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-use 9 Python List vs. Array - when to use? corey goldberg 2008-10-06T20:17:43Z 2009-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-elementtree 8 XML Parsing - SAX vs. DOM. vs. ElementTree corey goldberg 2008-10-10T20:22:24Z 2009-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#1233847 1 Answer by corey goldberg for python sub-process corey goldberg 2009-08-05T15:01:13Z 2009-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#1190247 0 Answer by corey goldberg for Threading in Python corey goldberg 2009-07-27T19:47:10Z 2009-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-request 2 Spoofing the origination IP address of an HTTP request corey goldberg 2009-07-25T01:11:24Z 2009-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-subprocess 1 Stopping a Long-Running Subprocess corey goldberg 2009-07-20T12:55:40Z 2009-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-asplinkbutton 0 Don't Change URL in Browser When Clicking <asp:LinkButton> corey goldberg 2008-12-08T17:14:03Z 2009-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>&lt;asp:LinkButton id="foo" runat="server" onclick="changeToHelp"&gt;&lt;span&gt;Help&lt;/span&gt; &lt;/asp:LinkButton&gt; </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-threadsafe 4 Are Generators Threadsafe? corey goldberg 2009-07-15T13:32:05Z 2009-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#1087129 0 Answer by corey goldberg for How can I determine which OS I'm running on in a Python script? corey goldberg 2009-07-06T13:58:01Z 2009-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-0 6 Tutorial for Python - Should I use 2.x or 3.0? corey goldberg 2008-10-16T19:19:00Z 2009-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#1059612 1 Answer by corey goldberg for Python strings split with multiple separators corey goldberg 2009-06-29T18:01:00Z 2009-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#1046153 1 Answer by corey goldberg for HTTPS log in with urllib2 corey goldberg 2009-06-25T20:40:35Z 2009-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#1038494 2 Answer by corey goldberg for Pure python gui library? corey goldberg 2009-06-24T13:48:15Z 2009-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#1014519 2 Answer by corey goldberg for What does : TypeError: cannot concatenate 'str' and 'list' objects mean? corey goldberg 2009-06-18T18:52:10Z 2009-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#987257 3 Answer by corey goldberg for How can I change a user agent string programmatically? corey goldberg 2009-06-12T15:22:40Z 2009-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#975759 0 Answer by corey goldberg for wget Vs urlretrieve of python corey goldberg 2009-06-10T13:55:34Z 2009-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#975718 3 Answer by corey goldberg for Which editor is best for Python coding on Linux? corey goldberg 2009-06-10T13:48:24Z 2009-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#922904 0 Answer by corey goldberg for Writing a kernel mode profiler for processes in python. corey goldberg 2009-05-28T20:10:16Z 2009-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#911779 3 Answer by corey goldberg for gnuplot vs matplotlib corey goldberg 2009-05-26T17:15:51Z 2009-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#889550 1 Answer by corey goldberg for How can I read()/write() against a python HTTPConnection? corey goldberg 2009-05-20T18:42:41Z 2009-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#1731351 Comment by corey goldberg on How do I check the HTTP status code of an object without downloading it? corey goldberg 2009-11-13T19:33:43Z 2009-11-13T19:33:43Z Ken, 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 header http://stackoverflow.com/questions/1632234/python-list-running-processes-64bit-windows/1632274#1632274 Comment by corey goldberg on Python, List running processes 64Bit Windows corey goldberg 2009-10-27T17:18:31Z 2009-10-27T17:18:31Z WMI works well for this http://stackoverflow.com/questions/1590474/scheduled-tasks-in-win32/1590546#1590546 Comment by corey goldberg on Scheduled tasks in Win32 corey goldberg 2009-10-19T19:36:50Z 2009-10-19T19:36:50Z because 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#1561542 Comment by corey goldberg on Grouping data points into series corey goldberg 2009-10-13T21:05:14Z 2009-10-13T21:05:14Z also, this seems to be slightly faster than the defaultdict version http://stackoverflow.com/questions/1549412/grouping-data-points-into-series/1561542#1561542 Comment by corey goldberg on Grouping data points into series corey goldberg 2009-10-13T20:55:39Z 2009-10-13T20:55:39Z oops.. 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#1557380 Comment by corey goldberg on non-blocking read/log from an http stream corey goldberg 2009-10-13T18:58:50Z 2009-10-13T18:58:50Z the 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#1557805 Comment by corey goldberg on how to get time of a python program execution? corey goldberg 2009-10-13T14:03:50Z 2009-10-13T14:03:50Z time.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#1557584 Comment by corey goldberg on how to get time of a python program execution? corey goldberg 2009-10-13T14:02:34Z 2009-10-13T14:02:34Z on 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#1556050 Comment by corey goldberg on Efficient way to find the largest key in a dictionary with non-zero value corey goldberg 2009-10-12T18:28:28Z 2009-10-12T18:28:28Z I just updated my answer... switched from lists to generators/iterators http://stackoverflow.com/questions/1549412/grouping-data-points-into-series/1549466#1549466 Comment by corey goldberg on Grouping data points into series corey goldberg 2009-10-11T02:40:29Z 2009-10-11T02:40:29Z your dict version is the only one that correctly printed empty groups. it is also very fast. accepting this answer http://stackoverflow.com/questions/1549412/grouping-data-points-into-series/1549451#1549451 Comment by corey goldberg on Grouping data points into series corey goldberg 2009-10-11T02:37:57Z 2009-10-11T02:37:57Z this version is fast, but it doesn't store empty groups for empty intervals. see Nicholas Riley's answer and comments http://stackoverflow.com/questions/1549412/grouping-data-points-into-series/1549430#1549430 Comment by corey goldberg on Grouping data points into series corey goldberg 2009-10-11T02:20:43Z 2009-10-11T02:20:43Z this version is much faster and is very readable. but it doesn't store empty groups for empty intervals. see Nicholas Riley's answer and comments http://stackoverflow.com/questions/1549412/grouping-data-points-into-series/1549466#1549466 Comment by corey goldberg on Grouping data points into series corey goldberg 2009-10-11T00:54:55Z 2009-10-11T00:54:55Z cool. i'll run some benchmarks http://stackoverflow.com/questions/1549412/grouping-data-points-into-series/1549466#1549466 Comment by corey goldberg on Grouping data points into series corey goldberg 2009-10-11T00:36:36Z 2009-10-11T00:36:36Z i actually need to know when a group is empty, so can't make that assupmtion. http://stackoverflow.com/questions/1549412/grouping-data-points-into-series Comment by corey goldberg on Grouping data points into series corey goldberg 2009-10-11T00:25:55Z 2009-10-11T00:25:55Z hop, yes correct