Iron python, beautiful soup, win32 app - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T16:50:33Z http://stackoverflow.com/feeds/question/118654 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/118654/iron-python-beautiful-soup-win32-app 14 Iron python, beautiful soup, win32 app Vasil 2008-09-23T01:37:48Z 2008-11-13T15:31:20Z <p>Does beautiful soup work with iron python? If so with which version of iron python? How easy is it to distribute a windows desktop app on .net 2.0 using iron python (mostly c# calling some python code for parsing html)? </p> http://stackoverflow.com/questions/118654/iron-python-beautiful-soup-win32-app/118671#118671 0 Answer by Cody Brocious for Iron python, beautiful soup, win32 app Cody Brocious 2008-09-23T01:42:48Z 2008-09-23T01:42:48Z <p>I haven't tested it, but I'd say it'll most likely work with the latest IPy2.</p> <p>As for distribution, it's very simple. Use the -X:SaveAssemblies option to compile your Python code down to a binary and then ship it with your other DLLs and the IPy dependencies.</p> http://stackoverflow.com/questions/118654/iron-python-beautiful-soup-win32-app/118680#118680 5 Answer by Devin Jeanpierre for Iron python, beautiful soup, win32 app Devin Jeanpierre 2008-09-23T01:43:40Z 2008-09-23T01:43:40Z <p>If BeautifulSoup doesn't work on IronPython, it's because IronPython doesn't implement the whole Python language (the same way CPython does). BeautifulSoup is pure-python, no C-extensions, so the only problem is the compatibility of IronPython with CPython in terms of Python source code.There shouldn't be one, but if there is, the error will be obvious ("no module named ...", "no method named ...", etc.). Google says that only one of BS's tests fails with IronPython. it probably works, and that test may be fixed by now. I wouldn't know.</p> <p>Try it out and see, would be my advice, unless anybody has anything more concrete.</p> http://stackoverflow.com/questions/118654/iron-python-beautiful-soup-win32-app/118713#118713 8 Answer by technomalogical for Iron python, beautiful soup, win32 app technomalogical 2008-09-23T01:53:58Z 2008-09-23T01:53:58Z <p>I've tested and used BeautifulSoup with both IPy 1.1 and 2.0 (forget which beta, but this was a few months back). Leave a comment if you are still having trouble and I'll dig out my test code and post it.</p> http://stackoverflow.com/questions/118654/iron-python-beautiful-soup-win32-app/119713#119713 0 Answer by Armin Ronacher for Iron python, beautiful soup, win32 app Armin Ronacher 2008-09-23T07:58:31Z 2008-09-23T07:58:31Z <p>If you have the complete standard library and the real <code>re</code> module (google for IronPython community edition) it might work. But IronPython is an incredible bad python implementation, I wouldn't count on that.</p> <p>Besides, give <code>html5lib</code> a try. That parser parses with the same rules firefox parses documents.</p> http://stackoverflow.com/questions/118654/iron-python-beautiful-soup-win32-app/123532#123532 1 Answer by srivatsn for Iron python, beautiful soup, win32 app srivatsn 2008-09-23T20:10:02Z 2008-09-23T20:10:02Z <p>Regarding the second part of your question, you can use the DLR Hosting APIs to run IronPython code from within a C# application. The DLR hosting spec is <a href="http://compilerlab.members.winisp.net/dlr-spec-hosting.pdf" rel="nofollow">here</a>. This <a href="http://blogs.msdn.com/seshadripv/" rel="nofollow">blog</a> also contains some sample hosting applications</p> http://stackoverflow.com/questions/118654/iron-python-beautiful-soup-win32-app/123589#123589 2 Answer by srivatsn for Iron python, beautiful soup, win32 app srivatsn 2008-09-23T20:16:56Z 2008-09-23T20:16:56Z <p>Also, regarding one of the previous comments about compiling with -X:SaveAssemblies - that is wrong. -X:SaveAssemblies is meant as a debugging feature. There is a API meant for compiling python code into binaries. <a href="http://blogs.msdn.com/srivatsn/archive/2008/08/06/static-compilation-of-ironpython-scripts.aspx" rel="nofollow">This post</a> explains the API and the difference between the two modes.</p> http://stackoverflow.com/questions/118654/iron-python-beautiful-soup-win32-app/170856#170856 25 Answer by bouvard for Iron python, beautiful soup, win32 app bouvard 2008-10-04T19:04:21Z 2008-10-04T19:09:47Z <p>I was asking myself this same question and after struggling to follow advice here and elsewhere to get IronPython and BeautifulSoup to play nicely with my existing code I decided to go looking for an alternative native .NET solution. BeautifulSoup is a wonderful bit of code and at first it didn't look like there was anything comparable available for .NET, but then I found the <a href="http://www.codeplex.com/htmlagilitypack" rel="nofollow">HTML Agility Pack</a> and if anything I think I've actually gained some maintainability over BeautifulSoup. It takes clean or crufty HTML and produces a elegant XML DOM from it that can be queried via XPath. With a couple lines of code you can even get back a raw XDocument and then <a href="http://vijay.screamingpens.com/archive/2008/05/26/linq-amp-lambda-part-3-html-agility-pack-to-linq.aspx" rel="nofollow">craft your queries in LINQ to XML</a>. Honestly, if web scraping is your goal, this is about the cleanest solution you are likely to find.</p> <p><b>Edit</b></p> <p>Here is a simple (read: not robust at all) example that parses out the US House of Representatives holiday schedule:</p> <pre><code>using System; using System.Collections.Generic; using HtmlAgilityPack; namespace GovParsingTest { class Program { static void Main(string[] args) { HtmlWeb hw = new HtmlWeb(); string url = @"http://www.house.gov/house/House_Calendar.shtml"; HtmlDocument doc = hw.Load(url); HtmlNode docNode = doc.DocumentNode; HtmlNode div = docNode.SelectSingleNode("//div[@id='primary']"); HtmlNodeCollection tableRows = div.SelectNodes(".//tr"); foreach (HtmlNode row in tableRows) { HtmlNodeCollection cells = row.SelectNodes(".//td"); HtmlNode dateNode = cells[0]; HtmlNode eventNode = cells[1]; while (eventNode.HasChildNodes) { eventNode = eventNode.FirstChild; } Console.WriteLine(dateNode.InnerText); Console.WriteLine(eventNode.InnerText); Console.WriteLine(); } //Console.WriteLine(div.InnerHtml); Console.ReadKey(); } } } </code></pre> http://stackoverflow.com/questions/118654/iron-python-beautiful-soup-win32-app/287247#287247 1 Answer by Tartley for Iron python, beautiful soup, win32 app Tartley 2008-11-13T15:31:20Z 2008-11-13T15:31:20Z <p>We are distributing a 40k line IronPython application. We have not been able to compile the whole thing into a single binary distributable. Instead we have been distributing it as a zillion tiny dlls, one for each IronPython module. This works fine though.</p> <p>However, on the newer release, IronPython 2.0, we have a recent spike which seems to be able to compile everything into a single binary file. This also results in faster application start-up too (module importing is faster.) Hopefully this spike will migrate into our main tree in the next few days.</p> <p>To do the distribution we are using WiX, which is a Microsoft internal tool for creating msi installs, that has been open-sourced (or made freely available, at least.) It has given us no problems, even though our install has some quite fiddly requirements. I will definitely look at using WiX to distribute other IronPython projects in the future.</p>