Welcome To Snipplr
Everyone's Recent Snippets Tagged python
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
Calculadora de Ãrea que soporta Cuadrado, Rectángulo, Triángulo, CÃrculo y Rombo.
0
971
posted 11 years ago by a7xrturo
A program I wrote for data analysis during my final project at university.
0
553
posted 11 years ago by dancohen990
Place this snippent in your script, and call it like this:
urllib.urlretrieve(getFile, saveFile, reporthook=report)
Notice it is the 3rd argument that calls the function on each file that needs to be downloaded.
1
2006
posted 11 years ago by o0110o
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.
1
866
posted 11 years ago by plainwreck
A script to parse emails and return HTML suited for email blast programs
0
808
posted 11 years ago by drydenlong
This is a python script that allows you to scrape historical player names and links from NBA.com historical data
1
836
posted 11 years ago by asimmittal
Python
Replace procedural Nuke Write paths with real paths in write node by replacing the write node(s)
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.
0
861
posted 11 years ago by throb
*Does not check permissions.
python cleanFiles.py --directory=/home/win98/tmp/ --ageInDays=2
0
761
posted 11 years ago by djmornyc
Snippet to show how works optparse module to add optoins when it is called by command line
0
874
posted 11 years ago by ssoton
This portion of code allows to do bandpass filtering over time series
0
622
posted 11 years ago by leonpalafox
Snippet showing a simple Flask application to illustrate the topics covered in the "Quickstart".
0
907
posted 11 years ago by denakitan
Extremely simple snippet showing the basic structure of a Python program.
1
928
posted 12 years ago by denakitan
Require the ID3 lib.
Place the script in the directory containing the mp3 files.
0
591
posted 12 years ago by zhyar
I had hear about a method to run a method like an executable, with the arguments being passed in from the commandline. Apparently, Ruby has this with the Rake project. Well, Python has it with [Shovel](http://devblog.seomoz.org/2012/03/shovel-rake-fo...
0
894
posted 12 years ago by pckujawa
Making a python process exit with error code 1 after 30 seconds. Exit is unclean (no garbage is collected, no flushed buffers, etc...).
0
1159
posted 12 years ago by jarnaldich
Capture Web Screenshots easily with the [GrabzIt ](http://grabz.it/) Python API
You will need the free [GrabzIt Code Library](http://grabz.it/api/python/download.aspx) to get started.
1
925
posted 12 years ago by Maximus1983
Simple animation in C4D (R13) consisting of moving a cube from state 1 to state 2 with Python.
0
1056
posted 12 years ago by adarpodracir
A function that adds gamma attribs to the image files that are 8 bit in nature (aka not EXR or HDR) so that you can get to a linear workflow easily
0
878
posted 12 years ago by throb
Two ways of printing a message backwards using either string slicing, or list() function.
0
706
posted 12 years ago by jdsantiagojr
I started messing around with the Last.fm API and somehow just started building more and more service requests. This should be enough to get anyone started on using Last.FM's API
0
1146
posted 12 years ago by chrisaiv