<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/tags/python</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Tue, 18 Jun 2013 16:19:53 GMT</pubDate>
<item>
<title>(Python) Pandora for Food – Crawl Yelp for personalized recommendations - richyeung</title>
<link>http://snipplr.com/view/71354/pandora-for-food--crawl-yelp-for-personalized-recommendations/</link>
<description><![CDATA[ <p>Web crawling Yelp for personalized food recommendations</p> ]]></description>
<pubDate>Fri, 31 May 2013 08:36:16 GMT</pubDate>
<guid>http://snipplr.com/view/71354/pandora-for-food--crawl-yelp-for-personalized-recommendations/</guid>
</item>
<item>
<title>(Python) Objectjson - JSON to nested object. - plainwreck</title>
<link>http://snipplr.com/view/71218/objectjson--json-to-nested-object/</link>
<description><![CDATA[ <p>Makes working with JSON data, in my eyes, easier in Python.

Instead of

    json_data['key']['key']['key']

Do

    json_data.key.key.key

This can also be modified to work the same way with dict types.</p> ]]></description>
<pubDate>Fri, 17 May 2013 23:23:24 GMT</pubDate>
<guid>http://snipplr.com/view/71218/objectjson--json-to-nested-object/</guid>
</item>
<item>
<title>(Python) Email to HTML Script - drydenlong</title>
<link>http://snipplr.com/view/71177/email-to-html-script/</link>
<description><![CDATA[ <p>A script to parse emails and return HTML suited for email blast programs</p> ]]></description>
<pubDate>Wed, 15 May 2013 03:59:49 GMT</pubDate>
<guid>http://snipplr.com/view/71177/email-to-html-script/</guid>
</item>
<item>
<title>(Python) LJAutoComment - aruseni</title>
<link>http://snipplr.com/view/71026/ljautocomment/</link>
<description><![CDATA[ <p>This class is used to automatically update a LiveJournal blog’s RSS feed, detect new entries and post a comment if the entry is new enough (i.e. is posted in a given period of time from now, for example not older than 1 hour)

**Example:**

    comment = u"Первый комментарий."

    engine = LJAutoComment('http://asena.livejournal.com/data/rss', 'user', 'password', comment, 1)
    engine()</p> ]]></description>
<pubDate>Fri, 03 May 2013 00:08:51 GMT</pubDate>
<guid>http://snipplr.com/view/71026/ljautocomment/</guid>
</item>
<item>
<title>(Python) Scrape list of all NBA players - asimmittal</title>
<link>http://snipplr.com/view/70949/scrape-list-of-all-nba-players/</link>
<description><![CDATA[ <p>This is a python script that allows you to scrape historical player names and links from NBA.com historical data</p> ]]></description>
<pubDate>Sun, 28 Apr 2013 16:33:43 GMT</pubDate>
<guid>http://snipplr.com/view/70949/scrape-list-of-all-nba-players/</guid>
</item>
<item>
<title>(Python) Replace procedural Nuke Write paths with real paths in write node by replacing the write node(s) - throb</title>
<link>http://snipplr.com/view/70898/replace-procedural-nuke-write-paths-with-real-paths-in-write-node-by-replacing-the-write-nodes/</link>
<description><![CDATA[ <p>This allows you to take a node that has expressions in it and create copies of them that are hard pathed.  It will also disable said expression driven write nodes and disable them.</p> ]]></description>
<pubDate>Tue, 23 Apr 2013 13:41:33 GMT</pubDate>
<guid>http://snipplr.com/view/70898/replace-procedural-nuke-write-paths-with-real-paths-in-write-node-by-replacing-the-write-nodes/</guid>
</item>
<item>
<title>(Python) Synesthor Thinks (get a color from colorrrs.com) - nerdfiles</title>
<link>http://snipplr.com/view/69762/synesthor-thinks-get-a-color-from-colorrrscom/</link>
<description><![CDATA[ <p>alias synesthor_thinks="py /Users/nerdfiles/Tools/colorrrs/colorrrs.py | pbcopy"</p> ]]></description>
<pubDate>Sat, 02 Feb 2013 08:18:26 GMT</pubDate>
<guid>http://snipplr.com/view/69762/synesthor-thinks-get-a-color-from-colorrrscom/</guid>
</item>
<item>
<title>(Bash) Py Alias (for bash) - nerdfiles</title>
<link>http://snipplr.com/view/69306/py-alias-for-bash/</link>
<description><![CDATA[ <p>Python Bash aliases, workflows.</p> ]]></description>
<pubDate>Sat, 29 Dec 2012 21:23:42 GMT</pubDate>
<guid>http://snipplr.com/view/69306/py-alias-for-bash/</guid>
</item>
<item>
<title>(Python) Clean files/directory by time. - djmornyc</title>
<link>http://snipplr.com/view/69118/clean-filesdirectory-by-time/</link>
<description><![CDATA[ <p>*Does not check permissions.
python cleanFiles.py --directory=/home/win98/tmp/ --ageInDays=2</p> ]]></description>
<pubDate>Sat, 15 Dec 2012 02:15:21 GMT</pubDate>
<guid>http://snipplr.com/view/69118/clean-filesdirectory-by-time/</guid>
</item>
<item>
<title>(Python) batch accounts  import  into discuz with python - dylanninin</title>
<link>http://snipplr.com/view/68951/batch-accounts--import--into-discuz-with-python/</link>
<description><![CDATA[ <p>batch accounts  import  into discuz with python</p> ]]></description>
<pubDate>Tue, 04 Dec 2012 22:23:05 GMT</pubDate>
<guid>http://snipplr.com/view/68951/batch-accounts--import--into-discuz-with-python/</guid>
</item>
<item>
<title>(Python) Python main with options - ssoton</title>
<link>http://snipplr.com/view/68825/python-main-with-options/</link>
<description><![CDATA[ <p>Snippet to show how works optparse module to add optoins when it is called by command line</p> ]]></description>
<pubDate>Thu, 29 Nov 2012 21:53:43 GMT</pubDate>
<guid>http://snipplr.com/view/68825/python-main-with-options/</guid>
</item>
<item>
<title>(Python) Filter Signals using scipy - leonpalafox</title>
<link>http://snipplr.com/view/68771/filter-signals-using-scipy/</link>
<description><![CDATA[ <p>This portion of code allows to do bandpass filtering over time series</p> ]]></description>
<pubDate>Mon, 26 Nov 2012 22:34:26 GMT</pubDate>
<guid>http://snipplr.com/view/68771/filter-signals-using-scipy/</guid>
</item>
<item>
<title>(Python) Flask - The Basics - denakitan</title>
<link>http://snipplr.com/view/68733/flask--the-basics/</link>
<description><![CDATA[ <p>Snippet showing a simple Flask application to illustrate the topics covered in the "Quickstart".</p> ]]></description>
<pubDate>Sat, 24 Nov 2012 00:22:31 GMT</pubDate>
<guid>http://snipplr.com/view/68733/flask--the-basics/</guid>
</item>
<item>
<title>(Python) Appindicator facade - ssoton</title>
<link>http://snipplr.com/view/68709/appindicator-facade/</link>
<description><![CDATA[ <p>snippet to show appindicator problem</p> ]]></description>
<pubDate>Thu, 22 Nov 2012 22:17:25 GMT</pubDate>
<guid>http://snipplr.com/view/68709/appindicator-facade/</guid>
</item>
<item>
<title>(Bash) A project environment .work file example - nerdfiles</title>
<link>http://snipplr.com/view/68643/a-project-environment-work-file-example/</link>
<description><![CDATA[ <p>To be used with FUNC_WORK.</p> ]]></description>
<pubDate>Mon, 19 Nov 2012 11:50:08 GMT</pubDate>
<guid>http://snipplr.com/view/68643/a-project-environment-work-file-example/</guid>
</item>
<item>
<title>(Python) Python simple thread manager - ytech</title>
<link>http://snipplr.com/view/68634/python-simple-thread-manager/</link>
<description><![CDATA[ <p>A python static class that handles simple thread management.</p> ]]></description>
<pubDate>Sun, 18 Nov 2012 08:55:20 GMT</pubDate>
<guid>http://snipplr.com/view/68634/python-simple-thread-manager/</guid>
</item>
<item>
<title>(Python) Python - Basic Main Structure - denakitan</title>
<link>http://snipplr.com/view/67927/python--basic-main-structure/</link>
<description><![CDATA[ <p>Extremely simple snippet showing the basic structure of a Python program.</p> ]]></description>
<pubDate>Thu, 25 Oct 2012 05:06:19 GMT</pubDate>
<guid>http://snipplr.com/view/67927/python--basic-main-structure/</guid>
</item>
<item>
<title>(Python) Simple IRC bot with SSL - zhyar</title>
<link>http://snipplr.com/view/67553/simple-irc-bot-with-ssl/</link>
<description><![CDATA[ <p>This is a simple IRC bot connecting with SSL.</p> ]]></description>
<pubDate>Mon, 01 Oct 2012 22:02:46 GMT</pubDate>
<guid>http://snipplr.com/view/67553/simple-irc-bot-with-ssl/</guid>
</item>
<item>
<title>(Python) Example of web parser - zhyar</title>
<link>http://snipplr.com/view/67552/example-of-web-parser/</link>
<description><![CDATA[ <p>Simple web parser using urllib and re libs.</p> ]]></description>
<pubDate>Mon, 01 Oct 2012 21:45:02 GMT</pubDate>
<guid>http://snipplr.com/view/67552/example-of-web-parser/</guid>
</item>
<item>
<title>(Python) Simple ID3 tagger - zhyar</title>
<link>http://snipplr.com/view/67550/simple-id3-tagger/</link>
<description><![CDATA[ <p>Require the ID3 lib.
Place the script in the directory containing the mp3 files.</p> ]]></description>
<pubDate>Mon, 01 Oct 2012 21:19:41 GMT</pubDate>
<guid>http://snipplr.com/view/67550/simple-id3-tagger/</guid>
</item>
</channel>
</rss>