SnipplrPy
Download: SnipplrPy-0.4.tar.gz
Description:
SnipplrPy is a class written in Python to support all the functionalities offered by the great service snipplr.com through xml-rpc.
It covers all functions in snipplr api, plus other usefull features such as posting file contents and retrieving plain source code.
Requirements:
This class works on any system running Python 2.4 or newer. A snipplr api key is needed if you want use user functionalities like posting or deleting snippets.
Screenshots:
Installation:
Download the file, uncompress it and:
sudo python setup.py installExamples:
Configuration
-
from SnipplrPy import *
-
snipplr = SnipplrPy()
-
snipplr.setup("your api key code")
Getting some plugins by tag
-
snippets = snipplr.list("python")
-
-
for snippet in snippets:
-
-
print snippet["id"]
-
-
print snippet["title"]
-
-
print snippet["source"]
Posting and deleting a snippet
-
src="""print "Hello World!\n""""
-
-
snipplr.post("Hello world python", src, "python programming simple")
-
-
snipplr.delete(1273)
Posting a whole file and getting plain source code
-
snipplr.post_file("/usr/local/src/code.py","Simple python snippet","python simple")
-
-
src = snipplr.get_source_plain_text(1273)
License:
SnipplrPy.py -- Snipplr Python Wrapper
Copyright (C) 2007 - Francisco Jesús Jordano Jiménez <arcturus@ardeenelinfierno.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Some ideas and code taken from Avinash Vora (http://www.avinashv.net/) and
his tool SnipplrCLI (http://www.avinashv.net/snipplrcli/)

on Octubre 9th, 2007 at 8:58 am
It’s so cool the new look of your blog!! i like it so much. Congratulations!!There’s a good idea the plugin. Carry on creating!
Love u!
on Noviembre 18th, 2008 at 11:14 am
Hi!
Can I please use you’r API for my new project? I want to make simple and fast cross-platform python based (GTK/Glade) GUI for Snipplr.
Please contact me!
Oto Brglez
on Noviembre 21st, 2008 at 3:09 pm
Hi Oto
Please feel free to use, reuse, rewrite, learn or whatever you want to do with this piece of shared knowledge
Thanks,
Francisco.
on Marzo 18th, 2009 at 3:05 pm
Good work
I liked the regular expression and the end