User Andreas Thomas - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T06:06:20Z http://stackoverflow.com/feeds/user/1531 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/416851/how-can-i-extract-a-page-from-a-pdf-file/417270#417270 1 Answer by Andreas Thomas for How can I extract a page from a PDF file? Andreas Thomas 2009-01-06T16:45:51Z 2009-01-06T16:45:51Z <p>As <em>gnud</em> already answered, <a href="http://www.pdfhacks.com/pdftk/" rel="nofollow">pdftk</a> is the best tool for the job. For example, to extract pages 5-10 from test.pdf to output.pdf you would write:</p> <pre><code>pdftk test.pdf cat 5-10 output.pdf </code></pre> <p>For the Windows version, you should download it from <a href="http://www.pdfhacks.com/pdftk/" rel="nofollow">pdfhacks.com</a> though, because the version there is newer than on accesspdf.com.<br /> Most Linux distributions have it already on board or provide easy to install packages.</p> http://stackoverflow.com/questions/90775/how-do-you-load-an-embedded-icon-from-an-exe-file-with-pywin32/110777#110777 1 Answer by Andreas Thomas for How do you load an embedded icon from an exe file with PyWin32? Andreas Thomas 2008-09-21T11:07:16Z 2008-09-21T11:07:16Z <p>@<a href="#92710" rel="nofollow">efotinis</a>: You're right. </p> <p>Here is a workaround until py2exe gets fixed and you don't want to include the same icon twice:</p> <pre><code>hicon = win32gui.CreateIconFromResource(win32api.LoadResource(None, win32con.RT_ICON, 1), True) </code></pre> <p>Be aware that <strong>1</strong> is not the ID you gave the icon in setup.py (which is the icon group ID), but the resource ID <em>automatically</em> assigned by py2exe to each icon in each icon group. At least that's how I understand it.</p> <p>If you want to create an icon with a specified size (as CreateIconFromResource uses the system default icon size), you need to use CreateIconFromResourceEx, which isn't available via PyWin32:</p> <pre><code>icon_res = win32api.LoadResource(None, win32con.RT_ICON, 1) hicon = ctypes.windll.user32.CreateIconFromResourceEx(icon_res, len(icon_res), True, 0x00030000, 16, 16, win32con.LR_DEFAULTCOLOR) </code></pre> http://stackoverflow.com/questions/90775/how-do-you-load-an-embedded-icon-from-an-exe-file-with-pywin32 4 How do you load an embedded icon from an exe file with PyWin32? Andreas Thomas 2008-09-18T07:46:43Z 2008-09-21T11:07:16Z <p>I have an exe file generated with py2exe. In the setup.py I specify an icon to be embedded in the exe:</p> <pre><code>windows=[{'script': 'my_script.py','icon_resources': [(0, 'my_icon.ico')], ... </code></pre> <p>I tried loading the icon using:</p> <pre><code>hinst = win32api.GetModuleHandle(None) hicon = win32gui.LoadImage(hinst, 0, win32con.IMAGE_ICON, 0, 0, win32con.LR_DEFAULTSIZE) </code></pre> <p>But this produces an (very unspecific) error:<br /> <strong>pywintypes.error: (0, 'LoadImage', 'No error message is available')</strong><br /> <br> If I try specifying 0 as a string</p> <pre><code>hicon = win32gui.LoadImage(hinst, '0', win32con.IMAGE_ICON, 0, 0, win32con.LR_DEFAULTSIZE) </code></pre> <p>then I get the error:<br /> <strong>pywintypes.error: (1813, 'LoadImage', 'The specified resource type cannot be found in the image file.')</strong><br /> <br>So, what's the correct method/syntax to load the icon?<br /> <em>Also please notice that I don't use any GUI toolkit - just the Windows API via PyWin32.</em></p> http://stackoverflow.com/questions/38056/how-do-you-check-in-linux-with-python-if-a-process-is-still-running 4 How do you check in Linux with Python if a process is still running? Andreas Thomas 2008-09-01T15:20:52Z 2008-09-05T11:02:11Z <p>The only <em>nice</em> way I've found is:</p> <pre><code>import sys import os try: os.kill(int(sys.argv[1]), 0) print "Running" except: print "Not running" </code></pre> <p>(<a href="http://www.unix.com/unix-advanced-expert-users/79267-trick-bash-scripters-check-if-process-running.html" rel="nofollow">Source</a>)<br /> But is this reliable? Does it work with every process and every distribution?</p> http://stackoverflow.com/questions/42093/pure-python-library-to-generate-identicons/42175#42175 3 Answer by Andreas Thomas for Pure Python library to generate Identicons? Andreas Thomas 2008-09-03T17:38:53Z 2008-09-03T17:38:53Z <p>I've found two implementations:<br /> <a href="http://coderepos.org/share/browser/lang/python/misc/identicon.py" rel="nofollow">http://coderepos.org/share/browser/lang/python/misc/identicon.py</a><br /> <a href="http://code.google.com/p/visicon/" rel="nofollow">http://code.google.com/p/visicon/</a></p> http://stackoverflow.com/questions/1476/how-do-you-express-binary-literals-in-python/13107#13107 24 Answer by Andreas Thomas for How do you express binary literals in python? Andreas Thomas 2008-08-16T12:35:36Z 2008-08-16T12:35:36Z <p>For reference&mdash;<em>future</em> Python possibilities:<br /> Starting with Python 2.6 you can express binary literals using the prefix <strong>0b</strong> or <strong>0B</strong>:</p> <pre><code>&gt;&gt;&gt; 0b101111 47 </code></pre> <p>You can also use the new <strong>bin</strong> function to get the binary representation of a number:</p> <pre><code>&gt;&gt;&gt; bin(173) '0b10101101' </code></pre> <p>Development version of the documentation: <a href="http://docs.python.org/dev/whatsnew/2.6.html#pep-3127-integer-literal-support-and-syntax" rel="nofollow">What's New in Python 2.6</a></p> http://stackoverflow.com/questions/101268/hidden-features-of-python/143636#143636 Comment by Andreas Thomas on Hidden features of Python Andreas Thomas 2008-12-28T14:24:32Z 2008-12-28T14:24:32Z Instead of 128 you can also use re.DEBUG. Be aware that the comment in the source says this flag is experimental and you shouldn't rely on it. http://stackoverflow.com/questions/90775/how-do-you-load-an-embedded-icon-from-an-exe-file-with-pywin32/91245#91245 Comment by Andreas Thomas on How do you load an embedded icon from an exe file with PyWin32? Andreas Thomas 2008-09-18T11:37:10Z 2008-09-18T11:37:10Z Sadly a higher ID doesn't work either.