<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 09:06:22 +0000</lastBuildDate>
    <item>
      <title>(Python) Add attribute data from a CSV to an SVG - ralentina</title>
      <link>https://snipplr.com/view/337851/add-attribute-data-from-a-csv-to-an-svg</link>
      <description>&lt;p&gt;Take attribute data stored in a CSV and insert it into an SVG based on unique ID field. &#13;
&#13;
The final bit of code adds an 'onmouseover' effect to animate the map in javascript.&lt;/p&gt;</description>
      <pubDate>Thu, 09 Apr 2020 21:01:22 UTC</pubDate>
      <guid>https://snipplr.com/view/337851/add-attribute-data-from-a-csv-to-an-svg</guid>
    </item>
    <item>
      <title>(Python) Scraping Coordinates with Beautiful Soup - ralentina</title>
      <link>https://snipplr.com/view/337845/scraping-coordinates-with-beautiful-soup</link>
      <description>&lt;p&gt;scraping geographical coordinates from an online directory (for a mapping project), using Beautiful Soup. Data exported into csv.&lt;/p&gt;</description>
      <pubDate>Thu, 09 Apr 2020 14:22:20 UTC</pubDate>
      <guid>https://snipplr.com/view/337845/scraping-coordinates-with-beautiful-soup</guid>
    </item>
    <item>
      <title>(Python) Get current date and time in Python - johnwalsh1</title>
      <link>https://snipplr.com/view/337289/get-current-date-and-time-in-python</link>
      <description>&lt;p&gt;Always gives me perfect date.&#13;
&#13;
Sample Output&#13;
&#13;
Current Day is: 1&#13;
Current Month is: 2&#13;
Current Year is: 2020&#13;
Current Hour is: 17&#13;
Current Minute is: 3&#13;
Current Second is: 8&#13;
Current Microsecond is: 556483&lt;/p&gt;</description>
      <pubDate>Sat, 29 Feb 2020 10:22:06 UTC</pubDate>
      <guid>https://snipplr.com/view/337289/get-current-date-and-time-in-python</guid>
    </item>
    <item>
      <title>(Python) Download a Github user's Public Repositories - rootVIII</title>
      <link>https://snipplr.com/view/334796/download-a-github-users-public-repositories</link>
      <description>&lt;p&gt;Clone any Github user's collection of public repositories&lt;/p&gt;</description>
      <pubDate>Sun, 27 Oct 2019 06:48:31 UTC</pubDate>
      <guid>https://snipplr.com/view/334796/download-a-github-users-public-repositories</guid>
    </item>
    <item>
      <title>(Python) Write message to a file - wayneweicheng</title>
      <link>https://snipplr.com/view/331749/write-message-to-a-file</link>
      <description>&lt;p&gt;Useful for debugging&lt;/p&gt;</description>
      <pubDate>Mon, 08 Apr 2019 22:27:48 UTC</pubDate>
      <guid>https://snipplr.com/view/331749/write-message-to-a-file</guid>
    </item>
    <item>
      <title>(Python) Python Sample SMS Code - SMS Messaging API - Broadnet</title>
      <link>https://snipplr.com/view/325666/python-sample-sms-code--sms-messaging-api</link>
      <description>&lt;p&gt; Just try the following Python Sample SMS Code scripts and you will find that sending SMS to your contact via this programming script is fun! &lt;/p&gt;</description>
      <pubDate>Wed, 19 Jul 2017 20:55:19 UTC</pubDate>
      <guid>https://snipplr.com/view/325666/python-sample-sms-code--sms-messaging-api</guid>
    </item>
    <item>
      <title>(Python) least common multiple - amirteymuri</title>
      <link>https://snipplr.com/view/290874/least-common-multiple</link>
      <description>&lt;p&gt;Calculates the lcm of 2 or more numbers (based on a self-made algorithm)&lt;/p&gt;</description>
      <pubDate>Mon, 26 Dec 2016 05:41:24 UTC</pubDate>
      <guid>https://snipplr.com/view/290874/least-common-multiple</guid>
    </item>
    <item>
      <title>(Python) Convert List to String - onlyforbopi</title>
      <link>https://snipplr.com/view/285472/convert-list-to-string</link>
      <description>&lt;p&gt;Used to convert lists to string&lt;/p&gt;</description>
      <pubDate>Mon, 12 Dec 2016 18:43:31 UTC</pubDate>
      <guid>https://snipplr.com/view/285472/convert-list-to-string</guid>
    </item>
    <item>
      <title>(Python) Python Reverse Array - denisemauldin</title>
      <link>https://snipplr.com/view/147101/python-reverse-array</link>
      <description>&lt;p&gt;arr[::-1] does a list slice to reverse the array&#13;
&#13;
str(x) for x in arr[::-1] casts the ints in the array as strings&#13;
&#13;
map(str, arr[::-1]) does the same thing by using map to cast the ints&#13;
&#13;
" ".join() joins the resulting strings with a space&lt;/p&gt;</description>
      <pubDate>Fri, 03 Jun 2016 03:46:58 UTC</pubDate>
      <guid>https://snipplr.com/view/147101/python-reverse-array</guid>
    </item>
    <item>
      <title>(Python) Google chrome bookmarks to html and then to database - Gauravwagh11</title>
      <link>https://snipplr.com/view/144690/google-chrome-bookmarks-to-html-and-then-to-database</link>
      <description>&lt;p&gt;Display the google chrome bookmarks to html and then save to database.&lt;/p&gt;</description>
      <pubDate>Wed, 28 Oct 2015 23:24:57 UTC</pubDate>
      <guid>https://snipplr.com/view/144690/google-chrome-bookmarks-to-html-and-then-to-database</guid>
    </item>
    <item>
      <title>(Python) Python - Self-Modding Code - BustACode</title>
      <link>https://snipplr.com/view/101026/python--selfmodding-code</link>
      <description>&lt;p&gt;One day I got to wondering if it was possible to get a Python script to modify itself. After a few searches I found a solution that I present here. I did not write this code, but feel that it should be "paid forward" so others know that it is possible, and how to accomplish it. Basically the script reads itself into a variable, then REs the time stamp line which is then replaces with a new one. Next the modified code is saved back down. I could actually see a genetic algo modding itself as it goes so that it writes an optimal version of itself at the end. Pretty cool. NOTE: A backup function should be added for safety.&#13;
Original code site: http://showmedo.com/videotutorials/video?name=7610000&amp;#&lt;/p&gt;</description>
      <pubDate>Fri, 22 May 2015 16:45:40 UTC</pubDate>
      <guid>https://snipplr.com/view/101026/python--selfmodding-code</guid>
    </item>
    <item>
      <title>(Python) Python Censorship - arielinfante</title>
      <link>https://snipplr.com/view/96455/python-censorship</link>
      <description>&lt;p&gt;A simple Python censor script that takes 2 arguments. One is for the text you want to censor and the other is the list of words that should not be viewed.&lt;/p&gt;</description>
      <pubDate>Sat, 11 Apr 2015 09:17:59 UTC</pubDate>
      <guid>https://snipplr.com/view/96455/python-censorship</guid>
    </item>
    <item>
      <title>(Python) Buscar ficheros en el ordenador - tionazo</title>
      <link>https://snipplr.com/view/85432/buscar-ficheros-en-el-ordenador</link>
      <description>&lt;p&gt;Overview&#13;
&#13;
In an earlier post "OS.walk in Python", I described how to use os.walk and showed some examples on how to use it in scripts. &#13;
&#13;
In this article, I will show how to use the os.walk() module function to walk a&#13;
directory tree, and the fnmatch module for matching file names.&#13;
&#13;
What is OS.walk?&#13;
&#13;
It generates the file names in a directory tree by walking the tree either&#13;
top-down or bottom-up.&#13;
&#13;
For each directory in the tree rooted at directory top (including top itself), &#13;
it yields a 3-tuple (dirpath, dirnames, filenames).&#13;
&#13;
dirpath		# is a string, the path to the directory. &#13;
&#13;
dirnames	# is a list of the names of the subdirectories in dirpath&#13;
		  (excluding '.' and '..'). &#13;
&#13;
filenames	# is a list of the names of the non-directory files in dirpath. &#13;
&#13;
Note that the names in the lists contain no path components. &#13;
&#13;
To get a full path (which begins with top) to a file or directory in dirpath,&#13;
do os.path.join(dirpath, name).&#13;
&#13;
For more information, please see the Python Docs.&#13;
&#13;
What is Fnmatch&#13;
&#13;
The fnmatch module compares file names against glob-style patterns such as used&#13;
by Unix shells.&#13;
&#13;
These are not the same as the more sophisticated regular expression rules. &#13;
&#13;
It's purely a string matching operation. &#13;
&#13;
If you find it more convenient to use a different pattern style, for example &#13;
regular expressions, then simply use regex operations to match your filenames.&#13;
&#13;
http://www.doughellmann.com/PyMOTW/fnmatch/&#13;
&#13;
What does it do?&#13;
&#13;
The fnmatch module is used for the wild-card pattern matching.&#13;
&#13;
Simple Matching&#13;
fnmatch() compares a single file name against a pattern and returns a boolean&#13;
indicating whether or not they match. &#13;
&#13;
The comparison is case-sensitive when the operating system uses a case-sensitive&#13;
file system.&#13;
&#13;
Filtering&#13;
To test a sequence of filenames, you can use filter(). &#13;
&#13;
It returns a list of the names that match the pattern argument.&lt;/p&gt;</description>
      <pubDate>Mon, 29 Dec 2014 23:42:01 UTC</pubDate>
      <guid>https://snipplr.com/view/85432/buscar-ficheros-en-el-ordenador</guid>
    </item>
    <item>
      <title>(Python) Get all links from a website - tionazo</title>
      <link>https://snipplr.com/view/84940/get-all-links-from-a-website</link>
      <description>&lt;p&gt;Get all links from a website &#13;
from: http://www.pythonforbeginners.com/code/regular-expression-re-findall&lt;/p&gt;</description>
      <pubDate>Fri, 26 Dec 2014 08:33:28 UTC</pubDate>
      <guid>https://snipplr.com/view/84940/get-all-links-from-a-website</guid>
    </item>
    <item>
      <title>(Python) Flatten a list of lists (any depth) in Python - alces</title>
      <link>https://snipplr.com/view/82978/flatten-a-list-of-lists-any-depth-in-python</link>
      <description>&lt;p&gt;Flatten a list of lists (or tuple of tuples, list of tuples, etc.) to any depth of nesting using no mutable objects.&lt;/p&gt;</description>
      <pubDate>Wed, 03 Dec 2014 20:53:26 UTC</pubDate>
      <guid>https://snipplr.com/view/82978/flatten-a-list-of-lists-any-depth-in-python</guid>
    </item>
    <item>
      <title>(Python) Void main char argv os subprocess - lancer229</title>
      <link>https://snipplr.com/view/82859/void-main-char-argv-os-subprocess</link>
      <description>&lt;p&gt;What kind of program is this?&lt;/p&gt;</description>
      <pubDate>Tue, 02 Dec 2014 13:42:37 UTC</pubDate>
      <guid>https://snipplr.com/view/82859/void-main-char-argv-os-subprocess</guid>
    </item>
    <item>
      <title>(Python) Update timezone data on RedHat-like servers using fabric - alces</title>
      <link>https://snipplr.com/view/78406/update-timezone-data-on-redhatlike-servers-using-fabric</link>
      <description>&lt;p&gt;Usage: &#13;
&#13;
1.  save the snippet as *fabfile.py*&#13;
&#13;
2.  and run:&#13;
&#13;
**$ fab -H myhost1,myhost2...**&#13;
&#13;
or set *env.roledefs['myrole'] = ['myhost1', 'myhost2', ...]* in *fabfile.py* and run this way:&#13;
&#13;
**$ fab -R myrole**&lt;/p&gt;</description>
      <pubDate>Fri, 26 Sep 2014 17:48:59 UTC</pubDate>
      <guid>https://snipplr.com/view/78406/update-timezone-data-on-redhatlike-servers-using-fabric</guid>
    </item>
    <item>
      <title>(Python) Fir npm install with gyp for windows if your name is contains non-english characters. - composite</title>
      <link>https://snipplr.com/view/75710/fir-npm-install-with-gyp-for-windows-if-your-name-is-contains-nonenglish-characters</link>
      <description>&lt;p&gt;his simple patch solves the problem when building on windows with usernames with non-ascii letters.&lt;/p&gt;</description>
      <pubDate>Wed, 30 Jul 2014 10:36:06 UTC</pubDate>
      <guid>https://snipplr.com/view/75710/fir-npm-install-with-gyp-for-windows-if-your-name-is-contains-nonenglish-characters</guid>
    </item>
    <item>
      <title>(Python) Python: check battery stat and run through cron - pantuts</title>
      <link>https://snipplr.com/view/75543/python-check-battery-stat-and-run-through-cron</link>
      <description>&lt;p&gt;for Cron:&#13;
# run&#13;
$ crontab -e&#13;
# then add this&#13;
*/1 * * * * export DISPLAY=:0.0 &amp;&amp; /home/username/path/to/script.py &gt; /dev/null&#13;
 &#13;
# then save.&#13;
# This cron job will run every minute&lt;/p&gt;</description>
      <pubDate>Fri, 25 Jul 2014 20:07:53 UTC</pubDate>
      <guid>https://snipplr.com/view/75543/python-check-battery-stat-and-run-through-cron</guid>
    </item>
    <item>
      <title>(Python) Python formatKey for Redis - dsonbill</title>
      <link>https://snipplr.com/view/74953/python-formatkey-for-redis</link>
      <description>&lt;p&gt;Tiny python closure for combining redis keys with "format".&#13;
Uses a closure so it does not remake the base key each use.&lt;/p&gt;</description>
      <pubDate>Wed, 25 Jun 2014 09:30:12 UTC</pubDate>
      <guid>https://snipplr.com/view/74953/python-formatkey-for-redis</guid>
    </item>
    <item>
      <title>(Python) SystemInformation.py - JordanRowles</title>
      <link>https://snipplr.com/view/74196/systeminformationpy</link>
      <description>&lt;p&gt;Gets system, machine, OS and networking information and either writes it to a file or returns the data as a string.&lt;/p&gt;</description>
      <pubDate>Sat, 12 Apr 2014 02:49:12 UTC</pubDate>
      <guid>https://snipplr.com/view/74196/systeminformationpy</guid>
    </item>
    <item>
      <title>(Python) Merge Multiple Word Documents into Single Doc using REST API in Python - johansonkatherine</title>
      <link>https://snipplr.com/view/73997/merge-multiple-word-documents-into-single-doc-using-rest-api-in-python</link>
      <description>&lt;p&gt;This REST example uses pycurl library to send HTTP request and handle HTTP response so you need to install it to use this example. Once input Word documents are uploaded, you can use the following URI to merge documents on Aspose for Cloud or any supported third party storage.&#13;
&#13;
&#13;
http://api.aspose.com/v1.1/words/MainDocument.docx/appendDocument&#13;
&#13;
&#13;
You can use a couple of optional parameters with the above mentioned URI. All or specific parameters can be used according to your requirement.&#13;
&#13;
After building URI, you need to go through the following steps:&#13;
&#13;
â€¢	Set App SID and App Key and sign URI. See section 1 of the following code and Sign URI method for more details.&#13;
â€¢	Build JSON to post in the request body. A list of input documents including their paths and import format modes should be provided. See section 2 of the following code.&#13;
â€¢	Send a POST request to Aspose for Cloud service. See section 3 of the following code and process_command method for more details.&#13;
â€¢	Download merged document file if required. See section 4 of the following code.&lt;/p&gt;</description>
      <pubDate>Wed, 26 Mar 2014 19:03:53 UTC</pubDate>
      <guid>https://snipplr.com/view/73997/merge-multiple-word-documents-into-single-doc-using-rest-api-in-python</guid>
    </item>
    <item>
      <title>(Python) random wikipedia reader - naveenrn</title>
      <link>https://snipplr.com/view/73862/random-wikipedia-reader</link>
      <description>&lt;p&gt;to open and read a random wikipedia article&lt;/p&gt;</description>
      <pubDate>Fri, 14 Mar 2014 06:31:41 UTC</pubDate>
      <guid>https://snipplr.com/view/73862/random-wikipedia-reader</guid>
    </item>
    <item>
      <title>(Python) Recursively consolodate all Files into one folder - jlmarks</title>
      <link>https://snipplr.com/view/73765/recursively-consolodate-all-files-into-one-folder</link>
      <description>&lt;p&gt;This file starts at the bottom of the tree and recursively moves all of the files from that tree into another folder. To avoid overwriting files I prepended all of the files with a 9digit number.&lt;/p&gt;</description>
      <pubDate>Sat, 01 Mar 2014 06:17:34 UTC</pubDate>
      <guid>https://snipplr.com/view/73765/recursively-consolodate-all-files-into-one-folder</guid>
    </item>
    <item>
      <title>(Visual Basic) Trading at www.cex.io ( VB Script ) - Create your own Bitcoin Trading BOT - rbillig</title>
      <link>https://snipplr.com/view/73211/trading-at-wwwcexio--vb-script---create-your-own-bitcoin-trading-bot</link>
      <description>&lt;p&gt;'&#13;
'&#13;
'    1, Create your cex.io account from https://cex.io/r/0/rbillig/0/ ( mandatory )&#13;
'    2, Tranfer Bitcoins to you account&#13;
'    3, Under your CEX account, create a public and secret key&#13;
'    4, Modify the 3 vars below ( G_USERNAME, G_APIKEY, G_APIKEY_SECRET )&#13;
'    5, If the decimal separator in your country is not ".", modify "G_SeparateurDecimalDuSyteme" ( eg "," for France )&#13;
'    6, Example below show how to display your balance and place an order&#13;
'    7, Send 0.01 BITCOINs to "1EfjFxXX31z7PQBKFHe7UQ7LduR64Vczf5" and use this basic code exemple to do more and more &#13;
'&#13;
'    Usage ( after acount creation and key and secret key settings ) : &#13;
'&#13;
'             1, Save this content to a file named c:\test.vbs&#13;
'             2, open a Windows command prompt ( start / run / type "cmd" )&#13;
'             3, type  "cscript c:\test.vbs"&#13;
'&#13;
'&#13;
'    If you win something with this code, help me and donate some BITCOINs to the following adress :&#13;
'    &#13;
'          1EfjFxXX31z7PQBKFHe7UQ7LduR64Vczf5&#13;
'&#13;
'&#13;
'    Creator Remy BILLIG - billig_remy@hotmail.com - December 2013 -  ( France )&#13;
'                                                    Special thanks to Demon ( http://demon.tw )&#13;
'&#13;
'&#13;
'                                                    Donation : "1EfjFxXX31z7PQBKFHe7UQ7LduR64Vczf5"&#13;
'                                                    Thank you&#13;
'    More info : https://cex.io/api&#13;
'&lt;/p&gt;</description>
      <pubDate>Sun, 22 Dec 2013 18:49:58 UTC</pubDate>
      <guid>https://snipplr.com/view/73211/trading-at-wwwcexio--vb-script---create-your-own-bitcoin-trading-bot</guid>
    </item>
    <item>
      <title>(Python) Python Web Server - ronaklovespython</title>
      <link>https://snipplr.com/view/73076/python-web-server</link>
      <description>&lt;p&gt;Code for single threaded python web server&lt;/p&gt;</description>
      <pubDate>Tue, 03 Dec 2013 09:28:45 UTC</pubDate>
      <guid>https://snipplr.com/view/73076/python-web-server</guid>
    </item>
    <item>
      <title>(Python) Export JPEG Files With Each LayerSet with option (Photoshop Python With PyQt) - janusoo</title>
      <link>https://snipplr.com/view/72975/export-jpeg-files-with-each-layerset-with-option-photoshop-python-with-pyqt</link>
      <description>&lt;p&gt;with layer set prefix option and custom output path&lt;/p&gt;</description>
      <pubDate>Mon, 25 Nov 2013 03:36:32 UTC</pubDate>
      <guid>https://snipplr.com/view/72975/export-jpeg-files-with-each-layerset-with-option-photoshop-python-with-pyqt</guid>
    </item>
    <item>
      <title>(Python) Export JPEG Files with each LayerSet (Photoshop Python with PyQt) - janusoo</title>
      <link>https://snipplr.com/view/72974/export-jpeg-files-with-each-layerset-photoshop-python-with-pyqt</link>
      <description>&lt;p&gt;Photoshop python script&#13;
export multiple files with each layerSet&lt;/p&gt;</description>
      <pubDate>Mon, 25 Nov 2013 01:33:47 UTC</pubDate>
      <guid>https://snipplr.com/view/72974/export-jpeg-files-with-each-layerset-photoshop-python-with-pyqt</guid>
    </item>
    <item>
      <title>(Python) Generador de oraciones - a7xrturo</title>
      <link>https://snipplr.com/view/72693/generador-de-oraciones</link>
      <description>&lt;p&gt;Crea oraciones aleatoriamente a partir de lo que se ponga en las listas part1, part2 y part3&lt;/p&gt;</description>
      <pubDate>Sat, 19 Oct 2013 11:48:48 UTC</pubDate>
      <guid>https://snipplr.com/view/72693/generador-de-oraciones</guid>
    </item>
    <item>
      <title>(Python) Pentagono Turtle - a7xrturo</title>
      <link>https://snipplr.com/view/72505/pentagono-turtle</link>
      <description>&lt;p&gt;Hacer un pentÃ¡gono con Turtle&lt;/p&gt;</description>
      <pubDate>Tue, 01 Oct 2013 12:43:34 UTC</pubDate>
      <guid>https://snipplr.com/view/72505/pentagono-turtle</guid>
    </item>
    <item>
      <title>(Python) Contador de vocales - a7xrturo</title>
      <link>https://snipplr.com/view/72504/contador-de-vocales</link>
      <description>&lt;p&gt;Cuenta vocales en la input.&lt;/p&gt;</description>
      <pubDate>Tue, 01 Oct 2013 12:39:07 UTC</pubDate>
      <guid>https://snipplr.com/view/72504/contador-de-vocales</guid>
    </item>
    <item>
      <title>(Python) Contador de palabras - a7xrturo</title>
      <link>https://snipplr.com/view/72503/contador-de-palabras</link>
      <description>&lt;p&gt;Contador de palabras en la input.&lt;/p&gt;</description>
      <pubDate>Tue, 01 Oct 2013 12:31:12 UTC</pubDate>
      <guid>https://snipplr.com/view/72503/contador-de-palabras</guid>
    </item>
    <item>
      <title>(Python) Calculadora de Area - a7xrturo</title>
      <link>https://snipplr.com/view/72502/calculadora-de-area</link>
      <description>&lt;p&gt;Calculadora de Ãrea que soporta Cuadrado, RectÃ¡ngulo, TriÃ¡ngulo, CÃ­rculo y Rombo.&lt;/p&gt;</description>
      <pubDate>Tue, 01 Oct 2013 12:29:45 UTC</pubDate>
      <guid>https://snipplr.com/view/72502/calculadora-de-area</guid>
    </item>
    <item>
      <title>(Python) interferogram.py - dancohen990</title>
      <link>https://snipplr.com/view/72324/interferogrampy</link>
      <description>&lt;p&gt;A program I wrote for data analysis during my final project at university.&lt;/p&gt;</description>
      <pubDate>Tue, 10 Sep 2013 05:25:50 UTC</pubDate>
      <guid>https://snipplr.com/view/72324/interferogrampy</guid>
    </item>
    <item>
      <title>(Python) Display the download percentage of a file - o0110o</title>
      <link>https://snipplr.com/view/72137/display-the-download-percentage-of-a-file</link>
      <description>&lt;p&gt;Place this snippent in your script, and call it like this:&#13;
urllib.urlretrieve(getFile, saveFile, reporthook=report)&#13;
&#13;
Notice it is the 3rd argument that calls the function on each file that needs to be downloaded.&lt;/p&gt;</description>
      <pubDate>Fri, 16 Aug 2013 21:25:24 UTC</pubDate>
      <guid>https://snipplr.com/view/72137/display-the-download-percentage-of-a-file</guid>
    </item>
    <item>
      <title>(Python) Python main() Sample - MrBlaise</title>
      <link>https://snipplr.com/view/71859/python-main-sample</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 16 Jul 2013 03:34:59 UTC</pubDate>
      <guid>https://snipplr.com/view/71859/python-main-sample</guid>
    </item>
    <item>
      <title>(Python) Pandora for Food â€“ Crawl Yelp for personalized recommendations - richyeung</title>
      <link>https://snipplr.com/view/71354/pandora-for-food--crawl-yelp-for-personalized-recommendations</link>
      <description>&lt;p&gt;Web crawling Yelp for personalized food recommendations&lt;/p&gt;</description>
      <pubDate>Fri, 31 May 2013 08:36:16 UTC</pubDate>
      <guid>https://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>https://snipplr.com/view/71218/objectjson--json-to-nested-object</link>
      <description>&lt;p&gt;Makes working with JSON data, in my eyes, easier in Python.&#13;
&#13;
Instead of&#13;
&#13;
    json_data['key']['key']['key']&#13;
&#13;
Do&#13;
&#13;
    json_data.key.key.key&#13;
&#13;
This can also be modified to work the same way with dict types.&lt;/p&gt;</description>
      <pubDate>Fri, 17 May 2013 23:23:24 UTC</pubDate>
      <guid>https://snipplr.com/view/71218/objectjson--json-to-nested-object</guid>
    </item>
    <item>
      <title>(Python) Email to HTML Script - drydenlong</title>
      <link>https://snipplr.com/view/71177/email-to-html-script</link>
      <description>&lt;p&gt;A script to parse emails and return HTML suited for email blast programs&lt;/p&gt;</description>
      <pubDate>Wed, 15 May 2013 03:59:49 UTC</pubDate>
      <guid>https://snipplr.com/view/71177/email-to-html-script</guid>
    </item>
    <item>
      <title>(Python) Scrape list of all NBA players - asimmittal</title>
      <link>https://snipplr.com/view/70949/scrape-list-of-all-nba-players</link>
      <description>&lt;p&gt;This is a python script that allows you to scrape historical player names and links from NBA.com historical data&lt;/p&gt;</description>
      <pubDate>Sun, 28 Apr 2013 16:33:43 UTC</pubDate>
      <guid>https://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>https://snipplr.com/view/70898/replace-procedural-nuke-write-paths-with-real-paths-in-write-node-by-replacing-the-write-nodes</link>
      <description>&lt;p&gt;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.&lt;/p&gt;</description>
      <pubDate>Tue, 23 Apr 2013 13:41:33 UTC</pubDate>
      <guid>https://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) Clean files/directory by time. - djmornyc</title>
      <link>https://snipplr.com/view/69118/clean-filesdirectory-by-time</link>
      <description>&lt;p&gt;*Does not check permissions.&#13;
python cleanFiles.py --directory=/home/win98/tmp/ --ageInDays=2&lt;/p&gt;</description>
      <pubDate>Sat, 15 Dec 2012 02:15:21 UTC</pubDate>
      <guid>https://snipplr.com/view/69118/clean-filesdirectory-by-time</guid>
    </item>
    <item>
      <title>(Python) batch accounts  import  into discuz with python - dylanninin</title>
      <link>https://snipplr.com/view/68951/batch-accounts--import--into-discuz-with-python</link>
      <description>&lt;p&gt;batch accounts  import  into discuz with python&lt;/p&gt;</description>
      <pubDate>Tue, 04 Dec 2012 22:23:05 UTC</pubDate>
      <guid>https://snipplr.com/view/68951/batch-accounts--import--into-discuz-with-python</guid>
    </item>
    <item>
      <title>(Python) Python main with options - ssoton</title>
      <link>https://snipplr.com/view/68825/python-main-with-options</link>
      <description>&lt;p&gt;Snippet to show how works optparse module to add optoins when it is called by command line&lt;/p&gt;</description>
      <pubDate>Thu, 29 Nov 2012 21:53:43 UTC</pubDate>
      <guid>https://snipplr.com/view/68825/python-main-with-options</guid>
    </item>
    <item>
      <title>(Python) Filter Signals using scipy - leonpalafox</title>
      <link>https://snipplr.com/view/68771/filter-signals-using-scipy</link>
      <description>&lt;p&gt;This portion of code allows to do bandpass filtering over time series&lt;/p&gt;</description>
      <pubDate>Mon, 26 Nov 2012 22:34:26 UTC</pubDate>
      <guid>https://snipplr.com/view/68771/filter-signals-using-scipy</guid>
    </item>
    <item>
      <title>(Python) Flask - The Basics - denakitan</title>
      <link>https://snipplr.com/view/68733/flask--the-basics</link>
      <description>&lt;p&gt;Snippet showing a simple Flask application to illustrate the topics covered in the "Quickstart".&lt;/p&gt;</description>
      <pubDate>Sat, 24 Nov 2012 00:22:31 UTC</pubDate>
      <guid>https://snipplr.com/view/68733/flask--the-basics</guid>
    </item>
    <item>
      <title>(Python) Appindicator facade - ssoton</title>
      <link>https://snipplr.com/view/68709/appindicator-facade</link>
      <description>&lt;p&gt;snippet to show appindicator problem&lt;/p&gt;</description>
      <pubDate>Thu, 22 Nov 2012 22:17:25 UTC</pubDate>
      <guid>https://snipplr.com/view/68709/appindicator-facade</guid>
    </item>
    <item>
      <title>(Python) Python simple thread manager - ytech</title>
      <link>https://snipplr.com/view/68634/python-simple-thread-manager</link>
      <description>&lt;p&gt;A python static class that handles simple thread management.&lt;/p&gt;</description>
      <pubDate>Sun, 18 Nov 2012 08:55:20 UTC</pubDate>
      <guid>https://snipplr.com/view/68634/python-simple-thread-manager</guid>
    </item>
    <item>
      <title>(Python) Python - Basic Main Structure - denakitan</title>
      <link>https://snipplr.com/view/67927/python--basic-main-structure</link>
      <description>&lt;p&gt;Extremely simple snippet showing the basic structure of a Python program.&lt;/p&gt;</description>
      <pubDate>Thu, 25 Oct 2012 05:06:19 UTC</pubDate>
      <guid>https://snipplr.com/view/67927/python--basic-main-structure</guid>
    </item>
    <item>
      <title>(Python) Simple IRC bot with SSL - zhyar</title>
      <link>https://snipplr.com/view/67553/simple-irc-bot-with-ssl</link>
      <description>&lt;p&gt;This is a simple IRC bot connecting with SSL.&lt;/p&gt;</description>
      <pubDate>Mon, 01 Oct 2012 22:02:46 UTC</pubDate>
      <guid>https://snipplr.com/view/67553/simple-irc-bot-with-ssl</guid>
    </item>
  </channel>
</rss>
