User Richard - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T11:04:10Zhttp://stackoverflow.com/feeds/user/105066http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1807020/realistic-free-tts-program0realistic free TTS programRichard2009-11-27T06:04:16Z2009-11-27T06:04:16Z
<p>I have tried Festival, espeak, and MBROLA, but the voices are mediocre at best, and no where near as realistic as current commercial systems. For example this demo: <a href="http://www.acapela-group.com/text-to-speech-interactive-demo.html" rel="nofollow">http://www.acapela-group.com/text-to-speech-interactive-demo.html</a></p>
<p>What is the most realistic free TTS voice you have tried?</p>
http://stackoverflow.com/questions/1803302/pythonic-way-to-select-first-variable-that-is-defined2Pythonic way to select first variable that is definedRichard2009-11-26T12:03:49Z2009-11-27T00:02:08Z
<p>I have some variables and I want to select the first one that is defined, or else return a default value.</p>
<p>For instance I have <code>a</code>, <code>b</code>, and <code>c</code>. My existing code:</p>
<pre><code>result = a if a else (b if b else (c if c else default))
</code></pre>
<p>Another approach I was considering:</p>
<pre><code>result = ([v for v in (a, b, c) if v] + [default])[0]
</code></pre>
<p>But they both feel messy, so is there a more Pythonic way?</p>
<p>Edit: By defined I meant having a True value, which I thought my existing code clarified...</p>
http://stackoverflow.com/questions/1788236/how-to-determine-if-data-is-valid-tar-file1How to determine if data is valid tar file Richard2009-11-24T06:31:08Z2009-11-25T08:23:47Z
<p>My upload form expects a tar file and I want to check whether the uploaded data is valid. The <a href="http://docs.python.org/library/tarfile.html" rel="nofollow">tarfile</a> module supports is_tarfile(), but expects a filename - I don't want to waste resources writing the file to disk just to check if it is valid. </p>
<p>So, is there a way to check the data is a valid tar file without writing to disk, using standard Python libraries?</p>
http://stackoverflow.com/questions/81566/what-is-the-best-way-to-do-web-scripting-web-macros/1793909#17939090Answer by Richard for What is the best way to do web scripting/web macros?Richard2009-11-25T00:22:37Z2009-11-25T00:22:37Z<p>my impression of IMacros is you <a href="http://www.iopus.com/imacros/compare/" rel="nofollow">need to pay</a> to unlock a lot of the goodies, so I went with Chickenfoot. Unfortunately the Chickenfoot mailing list is very quiet lately, so am not confident about its future...</p>
http://stackoverflow.com/questions/1563165/what-pure-python-library-should-i-use-to-scrape-a-website/1793897#17938970Answer by Richard for What pure Python library should I use to scrape a website?Richard2009-11-25T00:18:51Z2009-11-25T00:18:51Z<p><a href="http://www.crummy.com/software/BeautifulSoup/" rel="nofollow">BeautifulSoup</a> is good, but its API is awkward. Try <a href="http://effbot.org/zone/element-soup.htm" rel="nofollow">ElementSoup</a>, which provides an ElementTree interface to BeautifulSoup. </p>
http://stackoverflow.com/questions/130966/which-is-the-best-linux-distribution-for-an-all-time-windows-user/1760771#17607711Answer by Richard for Which is the best LINUX distribution for an all time Windows userRichard2009-11-19T03:47:03Z2009-11-19T03:47:03Z<p>I recommend building your own distribution from scratch: <a href="http://www.linuxfromscratch.org/" rel="nofollow">http://www.linuxfromscratch.org/</a></p>
http://stackoverflow.com/questions/1745674/generate-pretty-image-of-tree-graph0Generate pretty image of tree/graphRichard2009-11-16T23:55:14Z2009-11-17T00:30:10Z
<p>Hello,</p>
<p>I want to generate a pretty image of my tree/graph data. I had a look at <a href="http://www.graphviz.org/Gallery.php" rel="nofollow">Graphviz</a>, but the renderings are not great. Do you know of a solution that will produce pretty images and run on Linux?</p>
http://stackoverflow.com/questions/1727535/replace-urls-in-text-with-links-to-urls1replace URLs in text with links to URLsRichard2009-11-13T06:39:27Z2009-11-13T07:51:21Z
<p>Using Python I want to replace all URLs in a body of text with links to those URLs, like what Gmail does.
Can this be done in a one liner regular expression?</p>
<p>Edit: by body of text I just meant plain text - no HTML</p>
http://stackoverflow.com/questions/300749/protect-flash-video-from-download-right-protect/1719094#17190940Answer by Richard for Protect flash video from download/right protectRichard2009-11-12T00:38:41Z2009-11-12T00:38:41Z<p>sites like youtube try to make it difficult to download their videos by obfuscating the flash and also changing the structure every so often. As others have said it is an arms race. Youtube updates their structure and then tools like <a href="http://code.google.com/p/pytube/" rel="nofollow">pytube</a> have to also update.</p>
http://stackoverflow.com/questions/1620806/writing-a-php-script-to-download-youtube-videos/1719053#17190530Answer by Richard for writing a php script to download youtube videosRichard2009-11-12T00:29:13Z2009-11-12T00:29:13Z<p>Here is a simple Python version that you could learn from: <a href="http://code.google.com/p/pytube/" rel="nofollow">pytube</a></p>
http://stackoverflow.com/questions/1698285/automate-navigation-of-a-javascript-powered-website2automate navigation of a JavaScript powered websiteRichard2009-11-08T23:18:27Z2009-11-11T23:06:12Z
<p>Hello, </p>
<p>I need to automate navigation around a JavaScript powered website so I can scrape some content. I came across <a href="http://groups.csail.mit.edu/uid/chickenfoot/quickstart.html" rel="nofollow">Chickenfoot</a>, which is a FireFox extension that gives me a programming interface to the browser.</p>
<p>Do you know of other solutions?</p>
http://stackoverflow.com/questions/1698285/automate-navigation-of-a-javascript-powered-website/1718720#17187200Answer by Richard for automate navigation of a JavaScript powered websiteRichard2009-11-11T23:06:12Z2009-11-11T23:06:12Z<p>I also checked out <a href="http://www.iopus.com/iMacros/compare/" rel="nofollow">IMacros</a>, but you need to pay for a lot of the advanced features. So I will stick with Chickenfoot. There is a neat video about Chickenfoot <a href="http://video.google.com/videoplay?docid=-8967914974980683249" rel="nofollow">here</a>. </p>
http://stackoverflow.com/questions/624232/twill-mechanize-access-to-html-content/1718676#17186760Answer by Richard for Twill/Mechanize access to html content...Richard2009-11-11T22:54:49Z2009-11-11T22:54:49Z<p>Twill is a <a href="http://twill.idyll.org/python-api.html" rel="nofollow">thin shell around the mechanize package</a>. You are right it does not appear to be actively maintained so I would stick with Mechanize.</p>
<p>However Mechanize does not support the simple interface you are after. For that I would recommend <a href="http://groups.csail.mit.edu/uid/chickenfoot/quickstart.html" rel="nofollow">Chickenfoot</a>.</p>
http://stackoverflow.com/questions/1015702/alternative-for-windows-task-scheduler0Alternative for Windows Task SchedulerRichard2009-06-18T23:23:33Z2009-11-11T20:54:54Z
<p>hi,</p>
<p>I need a Task Scheduler for Windows. Unfortunately the builtin scheduler doesn't meet my needs, which are:</p>
<ul>
<li>can run tasks every minute/hour </li>
<li>runs on Linux and Windows</li>
<li>32 and 64 bit versions</li>
<li>GUI interface</li>
<li>free</li>
</ul>
<p>Nice to haves:</p>
<ul>
<li>supports CRON files</li>
<li>open source</li>
<li>status reports of execution times</li>
</ul>
<p>thanks!</p>
http://stackoverflow.com/questions/1516223/chess-ai-for-gae0chess AI for GAERichard2009-10-04T11:57:20Z2009-11-11T01:10:36Z
<p>Hello,</p>
<p>I am looking for a Chess AI that can be run on Google App Engine. Most chess AI's seem to be written in C and so can not be run on the GAE. It needs to be strong enough to beat a casual player, but efficient enough that it can calculate a move within a single request (less than 10 secs).</p>
<p>Ideally it would be written in Python for easier integration with existing code.</p>
<p>I came across a few promising projects but they don't look mature:</p>
<ul>
<li><a href="http://code.google.com/p/chess-free" rel="nofollow">http://code.google.com/p/chess-free</a></li>
<li><a href="http://mariobalibrera.com/mics/ai.html" rel="nofollow">http://mariobalibrera.com/mics/ai.html</a></li>
</ul>
http://stackoverflow.com/questions/1707725/find-name-of-company-at-url1find name of company at URLRichard2009-11-10T12:50:14Z2009-11-10T22:51:29Z
<p>Hello,</p>
<p>given the URL of a well known company (eg <a href="http://mcdonalds.com/" rel="nofollow">http://mcdonalds.com/</a>), how would you automatically and reliably find the company name (in this case "Mc Donalds")?</p>
<p>Thanks</p>
<p>Edit: someone voted to close this question, so maybe I need to explain the motivation. I have a large list of company URLs and I want to find data about each company using Google Maps. And searching Google Maps with the company name works much better than the URL.</p>
<p>Removing 'http' and 'com' does work in a lot of cases, particularly for well known companies, but not all. I found the whois records were not very helpful.</p>
<p>I was hoping there was some kind of public database matching companies to URLs, but haven't come across one so far.</p>
http://stackoverflow.com/questions/1705077/python-library-for-linux-process-management3Python library for Linux process management Richard2009-11-10T01:14:23Z2009-11-10T02:30:56Z
<p>Hello,</p>
<p>Through my web interface I would like to start/stop certain processes and determine whether a started process is still running. </p>
<p>My existing website is Python based and running on a Linux server, so do you know of a suitable library that supports this functionality?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1685221/accurately-measure-time-python-function-takes4accurately measure time python function takesRichard2009-11-06T03:25:04Z2009-11-06T04:05:56Z
<p>Hello,</p>
<p>I need to measure the time certain parts of my program take (not for debugging but as a feature in the output). Accuracy is important because the total time will be a fraction of a second.</p>
<p>I was going to use the <a href="http://docs.python.org/library/time.html" rel="nofollow">time module</a> when I came across <a href="http://docs.python.org/library/timeit.html" rel="nofollow">timeit</a>, which claims to <em>avoid a number of common traps for measuring execution times</em>. Unfortunately it has an awful interface, taking a string as input which it then eval's. </p>
<p>So, do I need to use this module to measure time accurately, or will time suffice? And what are the pitfalls it refers to?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1683342/website-load-testing-python-script0website load testing Python scriptRichard2009-11-05T20:23:57Z2009-11-05T21:01:01Z
<p>Hello,</p>
<p>I am after a Python script to help me load test my Google App Engine website. I want to give it a set of URLs and a request rate (would need to use threads) and then measure the response times of my website.</p>
<p>I have had a look at a few solutions but they don't let you set an upper limit for the request rate.</p>
<p>Any ideas?
Thanks</p>
http://stackoverflow.com/questions/1672532/how-to-generate-graphical-sitemap-of-large-website1How to generate graphical sitemap of large websiteRichard2009-11-04T09:07:59Z2009-11-04T14:04:17Z
<p>Hello, </p>
<p>I would like to generate a graphical sitemap for my website. There are two stages, as far as I can tell:</p>
<ol>
<li>crawl the website and analyse the link relationship to extract the tree structure </li>
<li>generate a visually pleasing render of the tree</li>
</ol>
<p>Does anyone have advice or experience with achieving this, or know of existing work I can build on (ideally in Python)?</p>
<p>I came across some <a href="http://astuteo.com/slickmap/demo/" rel="nofollow">nice CSS</a> for rendering the tree, but it only works for 3 levels.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1671520/web-chart-with-hover-events2web chart with hover eventsRichard2009-11-04T03:21:09Z2009-11-04T10:19:11Z
<p>Hello,</p>
<p>I am after a library with a Python interface to render nice looking charts with hover events for each point.</p>
<p><a href="http://www.advsofteng.com/gallery.html" rel="nofollow">ChartDirector</a> does what I want, but I would prefer an open source solution.
<a href="http://teethgrinder.co.uk/open-flash-chart-2/" rel="nofollow">OpenFlashChart</a> looks good, although ideally I would want a non-Flash solution. </p>
<p>Any other contenders?</p>
http://stackoverflow.com/questions/1598715/pure-python-solution-to-convert-xhtml-to-pdf7Pure python solution to convert XHTML to PDFRichard2009-10-21T04:26:37Z2009-11-03T10:52:54Z
<p>Hello,</p>
<p>I am after a pure Python solution (for the GAE) to convert webpages to pdf.</p>
<p>I had a look at <a href="http://www.reportlab.org/rl%5Ftoolkit.html" rel="nofollow">reportlab</a> but the documentation focuses on generating pdfs from scratch, rather than converting from HTML.</p>
<p>What do you recommend? - <a href="http://www.xhtml2pdf.com/doc/pisa-en.html" rel="nofollow">pisa</a>?</p>
<p>Edit:
My use case is I have a HTML report that I want to make available in PDF too. I will make updates to this report structure so I don't want to maintain a separate PDF version, but (hopefully) convert automatically. <br>
Also because I generate the report HTML I can ensure it is well formed XHTML to make the PDF conversion easier.</p>
http://stackoverflow.com/questions/1658829/module-to-abstract-limitations-of-gql0module to abstract limitations of GQLRichard2009-11-01T23:54:12Z2009-11-02T10:11:14Z
<p>Hello,</p>
<p>I am after a Python module for Google App Engine that abstracts away limitations of the GQL.</p>
<p>Specifically I want to store big files (> 1MB) and retrieve all records for a model (> 1000). I have my own code that handles this at present but would prefer to build on existing work, if available.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1657020/write-python-inside-jquery/1659416#16594160Answer by Richard for write python inside jqueryRichard2009-11-02T04:27:40Z2009-11-02T04:27:40Z<p>If you define this code in the view (instead of the controller) then you can use Python code within {{ }} blocks.</p>
http://stackoverflow.com/questions/1657201/how-to-open-a-url-with-non-utf-8-arguments0how to open a URL with non utf-8 argumentsRichard2009-11-01T13:49:07Z2009-11-01T23:27:58Z
<p>Hello,</p>
<p>Using Python I need to transfer non utf-8 encoded data (specifically shift-jis) to a URL via the query string.
How should I transfer the data? Quote it? Encode in utf-8?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1656694/how-to-fetch-list-of-replies-for-another-user0How to fetch list of @replies for another userRichard2009-11-01T09:01:16Z2009-11-01T11:51:51Z
<p>Hello,</p>
<p>The Twitter API lets me request another users statuses with <a href="http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses-user%5Ftimeline" rel="nofollow">user_timeline</a> and the authenticated users @replies with <a href="http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses-mentions" rel="nofollow">mentions</a>. Is there a way to request another users @replies (both to and from them)?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1641635/extract-grammar-features-from-sentence-on-google-app-engine0extract grammar features from sentence on Google App EngineRichard2009-10-29T04:36:45Z2009-10-29T05:53:09Z
<p>Hello,</p>
<p>For my GAE app I need to do some natural language processing to extract the subject and object from an input sentence. </p>
<p>Apparently <a href="http://stackoverflow.com/questions/1286301/using-the-python-nltk-2-0b5-on-the-google-app-engine">NLTK can't be installed</a> (easily) on GAE so I am looking for another solution.
I noticed GAE comes with <a href="http://code.google.com/appengine/docs/python/tools/libraries.html#Antlr" rel="nofollow">Antlr3</a> but from browsing their documentation it solves a different kind of grammar problem.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1634608/open-source-alternatives-to-popular-websites1open source alternatives to popular websitesRichard2009-10-28T00:57:09Z2009-10-28T01:04:44Z
<p>Hello,</p>
<p>The other day I came across <a href="http://www.jaiku.com/" rel="nofollow">Jaiku</a>, which is a well structured microblogging system <a href="http://code.google.com/p/jaikuengine/" rel="nofollow">open sourced</a> by Google.</p>
<p>It surprised me I had never heard about this, so I was wondering what other open source alternatives exist for mainstream websites? </p>
<p>I am not asking about forums, eCommerce, wiki's, CMS's, etc, where the market leaders are already well known open source applications (phpBB, osCommerce, Mediawiki, Drupal). </p>
<p>But what about open source alternatives for:</p>
<ul>
<li>Social networking (Facebook)?</li>
<li>Classified advertising (Craigslist)?</li>
<li>Jobs (CareerBuilder)?</li>
<li>Dating (eHarmony)?</li>
</ul>
<p>Or any other field that is defined by a commercial website, as Twitter does for microblogging.</p>
http://stackoverflow.com/questions/1628750/why-is-bash-everywhere11Why is bash everywhere? [closed]Richard2009-10-27T04:15:06Z2009-10-27T23:49:34Z
<p>Bash is used by default in every Linux distro I have tried, over alternatives like zsh. Is there a technical or historical reason for this? </p>
http://stackoverflow.com/questions/1617706/how-to-crowd-source-my-web-crawling2how to crowd source my web crawlingRichard2009-10-24T11:17:02Z2009-10-24T11:22:43Z
<p>Hello,</p>
<p>I want to crawl a website anonymously without having to rely on an anonymous proxy server.
So I was thinking of letting users of my website help me by inserting an invisible IFrame in my template - the IFrame src would be set to a webpage URL I needed, and then uploaded to my server with AJAX.
(I can't use AJAX for the downloading because of the <a href="http://en.wikipedia.org/wiki/Same%5Forigin%5Fpolicy" rel="nofollow">same origin policy</a>)</p>
<p>If there a flaw in this? - can a web server determine when their webpages are being accessed directly or through an IFrame from another server?
Or is there a better approach?</p>
http://stackoverflow.com/questions/1782368/is-it-possible-to-hook-up-a-more-robust-html-parser-to-python-mechanize/1783758#1783758Comment by Richard on Is it possible to hook up a more robust HTML parser to Python mechanize?Richard2009-11-25T00:16:01Z2009-11-25T00:16:01Ztwill is a wrapper around Mechanize - does it actually use a different form parser?http://stackoverflow.com/questions/130966/which-is-the-best-linux-distribution-for-an-all-time-windows-user/1760771#1760771Comment by Richard on Which is the best LINUX distribution for an all time Windows userRichard2009-11-25T00:10:23Z2009-11-25T00:10:23Zwow I got upvoted for that clearly unhelpful advice?!http://stackoverflow.com/questions/1745674/generate-pretty-image-of-tree-graph/1745801#1745801Comment by Richard on Generate pretty image of tree/graphRichard2009-11-17T02:56:51Z2009-11-17T02:56:51Zwow the Gephi renders are beautiful http://stackoverflow.com/questions/1672532/how-to-generate-graphical-sitemap-of-large-website/1672651#1672651Comment by Richard on How to generate graphical sitemap of large websiteRichard2009-11-16T23:50:05Z2009-11-16T23:50:05Zgraphviz looks like a good idea, although the graphs are not overly attractivehttp://stackoverflow.com/questions/1683342/website-load-testing-python-scriptComment by Richard on website load testing Python scriptRichard2009-11-16T23:46:48Z2009-11-16T23:46:48ZMy client wanted to know if our site can serve X requests/sec at a mean response time of Y ms. So I made a Python script to test this. Would concurrency better illustrate this?http://stackoverflow.com/questions/1727535/replace-urls-in-text-with-links-to-urlsComment by Richard on replace URLs in text with links to URLsRichard2009-11-13T09:22:06Z2009-11-13T09:22:06Zthe answers so far have focussed on matching the URL. How about replacing it with the link?http://stackoverflow.com/questions/1727535/replace-urls-in-text-with-links-to-urlsComment by Richard on replace URLs in text with links to URLsRichard2009-11-13T09:08:45Z2009-11-13T09:08:45Zyes, it will then be inserted into a HTML documenthttp://stackoverflow.com/questions/969607/how-to-download-youtube-video/969638#969638Comment by Richard on how to download youtube videoRichard2009-11-12T00:31:45Z2009-11-12T00:31:45Zcheckout pytube too: <a href="http://code.google.com/p/pytube/" rel="nofollow">code.google.com/p/pytube</a>
The script has less features and so is much shorterhttp://stackoverflow.com/questions/1698285/automate-navigation-of-a-javascript-powered-website/1698468#1698468Comment by Richard on automate navigation of a JavaScript powered websiteRichard2009-11-11T23:03:48Z2009-11-11T23:03:48Zis there a Python equivalent? http://stackoverflow.com/questions/1698285/automate-navigation-of-a-javascript-powered-website/1698290#1698290Comment by Richard on automate navigation of a JavaScript powered websiteRichard2009-11-11T23:02:35Z2009-11-11T23:02:35ZI found this really complex to setuphttp://stackoverflow.com/questions/1698285/automate-navigation-of-a-javascript-powered-website/1699202#1699202Comment by Richard on automate navigation of a JavaScript powered websiteRichard2009-11-11T04:35:33Z2009-11-11T04:35:33Zunfortunately I'm on linux...looks neat thoughhttp://stackoverflow.com/questions/1516223/chess-ai-for-gae/1712369#1712369Comment by Richard on chess AI for GAERichard2009-11-11T04:34:49Z2009-11-11T04:34:49Zhi Bill, no my bid wasn't accepted for the project so I dropped this idea.
To get started I would look at hcmus-chess (<a href="http://code.google.com/p/hcmus-chess/" rel="nofollow">code.google.com/p/hcmus-chess</a>) and blitz chess (<a href="http://code.google.com/p/google-app-engine-samples/" rel="nofollow">code.google.com/p/google-app-engine-samples/…</a>)http://stackoverflow.com/questions/1707725/find-name-of-company-at-url/1707826#1707826Comment by Richard on find name of company at URLRichard2009-11-10T22:55:59Z2009-11-10T22:55:59Zthat example seems to inspect the title tag and you suggest to inspect the meta tag. Both are good ideas, but wouldn't be reliable in general.http://stackoverflow.com/questions/1707725/find-name-of-company-at-url/1707789#1707789Comment by Richard on find name of company at URLRichard2009-11-10T22:54:30Z2009-11-10T22:54:30Zgood idea, but I am too cheap!http://stackoverflow.com/questions/1707725/find-name-of-company-at-url/1707741#1707741Comment by Richard on find name of company at URLRichard2009-11-10T22:50:57Z2009-11-10T22:50:57ZYeah I was hoping such a table already existed, which I could reuse.