sm-photo-tool 1.13 released
23 04 2008Tonight I released version 1.13 of sm-photo-tool. Download it here:
http://sourceforge.net/project/showfiles.php?group_id=179298
Categories : python, sm-photo-tool
Tonight I released version 1.13 of sm-photo-tool. Download it here:
http://sourceforge.net/project/showfiles.php?group_id=179298
While doing my daily blog reading, this post by Kushal Das made me laugh:
How to write better Java code ?
/Me and kart_ was discussing on this and the answer came out:
Don’t write Java, write Python![]()
I released a new version of sm-photo-tool. It’s a simple script that that was originally written by John Ruttenberg wrote. I took it and packaged it in rpm form and have been maintaining it under source control (versus a forum).
sm-photo-tool help
Usage: sm-photo-tool create gallery_name [options] [file...]
sm-photo-tool create_upload gallery_name [options] [file...]
sm-photo-tool update [options]
sm-photo-tool full_update [options]
sm-photo-tool upload gallery_id [options] file…
sm-photo-tool –help for complete documentaton
It’s create to upload an entire directory of photos to smugmug from the command line.
I know it’s probably not good to toot one’s own horn, but what the heck. My zmugfs article is on Red Hat Magazine this morning.
I released zmugfs 0.1 on October 31st, 2007, but I haven’t done anything else with it since then. I’m overdue for finishing it.
Next up is to add the write mode capability to the file system which will actually allow you to upload your photos to smugmug.com. Here’s a quick list:
Stay tuned for more.
Found this nugget while reading blogs this morning: Python Experts - Why They Do Python
In the article they ask “What do you think is the most important feature of the Python language?” I’m surprised that the fact that white space is part of the language leading to more readable code was one of the strengths. When I first learned Python I hated the white space being part of the syntax. Coming from Java it seemed unnatural. But after a while it’s a wonderful thing. It makes the code easier to read, I’ve become very fond of it.
My favorite response to the question was by Tim:
It’s pragmatic nature.. It doesn’t try to be the coolest or most flexible or most ‘enterprisey’. It gives the programmer a very predictable framework in which to ply their skills. In short it doesn’t dictate or get in the way but does gently suggest that you could do better…
If you haven’t played with Python, I urge you to give it a try. It’s best to pick a project and try to do it in Python. You’ll have to do more than one because at first the frustration will annoy you, especially if you’re coming from Java. But after a bit of coding you’ll wonder why you never moved to Python a long time ago. ![]()
Contrary to popular belief, SOAP is dirty! When folks talk about web services they immediately think SOAP, which is unfortunate. When I think of a web service I think of system either a web site, a service running in your companies intranet, even a service running on the same machine, that I can send simple messages to and receive responses. The key is SIMPLE messages.
Yes, that’s a rather loose definition. Mail servers probably fall into that definition, but to me that’s a web service. Well not very webby but a service nonetheless. So if SOAP is dirty what else can you use to create web services? Well there’s the venerable XML-RPC which is truly simple unlike SOAP. Most people don’t use XML-RPC because it doesn’t support “objects”, but then again those are overrated too. Seriously folks, you send a message you get back a structure. You really don’t need more than a hash or an array.
Other reasons folks don’t like XML-RPC are that it lacks support for long data types (only supports integers), UTF-8 encoding (makes it hard to use for internationalization), and doesn’t have the concept of null. Those are all valid reasons, but a lot of times you don’t need that stuff in which case it’s still better to use XML-RPC rather than SOAP. The ease of development and ease of use from an api users point of view out weighs a lot of those things. XML-RPC is also trivial to understand. The specification is easy to digest: http://www.xmlrpc.com/spec. Compare that to the monstrosity of the SOAP spec. There still quite a few application that use XML-RPC as an API: smugmug.com, func, Red Hat Network, and flickr.
If the limitations of XML-RPC truly are deal breakers for you, you’re probably wondering “I guess I’ll need to use SOAP!” Well, aside from needing soap to stay clean, you can actually be SOAP free in your web services and still use longs, nulls, etc. How? Use REST.
There are two ways to implement REST services. There’s the purist way which uses the verbs of the HTTP protocol such as PUT, DELETE, POST, etc. The other more common way is to simply use the GET and POST. You supply your parameters on the URL including the method to be called and get back an XML response. A downside to REST is that the XML response is defined by the web service implementor, unlike XML-RPC or SOAP which have a defined structure. Nonetheless, REST has become very popular among web sites such as smugmug.com, amazon.com, and yahoo.com.
REST and XML-RPC are not the only alternatives to SOAP, JSON is another. JSON is commonly done as a REST web service with the exception that the response is in JSON format. Most folks assume JSON is for use with JavaScript and web applications only, but that is not true. The thing I like most about JSON + REST is I get the ease of calling by a simple URL and get a well formatted easy to read response that supports nulls, UTF-8, and longs. You get none of the scum from SOAP, none of the limitations of XML-RPC, and a well understood format unlike the typical REST response.
Ok the best way to “see” this is by looking at some code. Let’s look at XML-RPC first. Let’s assume we are calling the “smugmug.images.get” method at smugmug.com. Using an XML-RPC library for your language (java, python, perl).
client = ServerProxy("http://smugmug.com/xmlrpc")
session = client.loginWithPassword(”uname”, “pass”)
imgdata = client.smugmug.images.get(session, image_id)
print imgdata['id']
It’s that simple. The library did the parsing for me. imgdata will most likely be a hash. The library sent over something like this:
<?xml version="1.0"?>
<methodCall>
<methodName>smugmug.images.get</methodName>
<params>
<param>
<value><string>AXE0123</string>
</param>
<param>
<value><i4>40</i4></value>
</param>
</params>
</methodCall>
The server responds with something like this:
<?xml version="1.0"?>
<methodResponse>
<array>
<data>
<value><i4>1404</i4></value>
<value><i4>1504</i4></value>
<value><i4>1</i4></value>
</data>
</array>
</methodResponse>
Pretty easy to read isn’t it? But as you saw in the code you didn’t have to know how to read it.
Let’s try the same thing with REST. There are no frameworks that handle REST directly as it’s just a simple HTTP GET or POST and an XML document response.
url = "http://api.smugmug.com/services/api/rest/1.2.1/"
call = url + “?method=smugmug.images.get&session=AXE0123&id=40″
response = urllib.urlopen(call).read()
# parse response XML into a dictionary
imgdata = parse(response)
In most cases you’ll probably have to write your own framework which isn’t really that hard, I did it. What gets sent out is a simple HTTP GET request to http://api.smugmug.com. What you get back is an XML document which you will need to parse.
<?xml version="1.0" encoding="utf-8" ?> <rsp stat="ok"> <method>smugmug.images.get</method> <Images> <Image id="17833"/> <Image id="17832"/> </Images> </rsp>
Yes, it’s XML but so far it’s not too bad is it? You’re probably itching to see what JSON and SOAP can do huh? Well, heeeeere’s JSON! (that’s a Johnny Carson reference for you youngins).
url = "http://api.smugmug.com/services/api/json/1.2.1/"
call = url + “?method=smugmug.images.get&session=AXE0123&id=40″
response = urllib.urlopen(call).read()
# use builtin python library simplejson to read
imgdata = simplejson.loads(response)
The nice part about this is I don’t have to parse the response because libraries like simplejson do that for me. And I can easily make the calling code generic as I did in zmugjson.py. Again, the request is nothing more than a simple HTTP GET. The response is a nice JSON object.
{
"stat":"ok",
"method":"smugmug.images.get",
"Images":[
{"id":222910058},
{"id":222910121}
]
}
As you can see it is very easy to read and no nasty XML to deal with either. Best part is you could use this in an AJAX web ui with no need to create more than one API.
There you have it, nice alternatives for creating web services without using SOAP.
Oh you want to see the SOAP version of the above? hrm. smugmug was wise not to create a SOAP version of the API, but here is what it would probably look like. I’m warning you, you don’t want to see it. Ok here goes.
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
import javax.xml.namespace.QName;
public class TestClient {
public static void main(String [] args) {
try {
String endpoint =
“http://api.smugmug.com/services/api/soap/1.2.1/”;
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress( new java.net.URL(endpoint) );
call.setOperationName(new QName(”http://soapinterop.org/”, GetImagesFromSmugmug”));
List<Integer> ret = (List<Integer>
call.invoke( new Object[] { “AXE0123″, new Integer(40) } );
System.out.println(”Sent ‘Hello!’, got ‘” + ret.toString() + “‘”);
} catch (Exception e) {
System.err.println(e.toString());
}
}
}
Yes, I know it’s Java and not python, but that’s another problem with SOAP. The better libraries are written for Java not python, perl, etc.
What would the SOAP request look like you ask? Probably like this:
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
<SOAP-ENV:Body>
<m:GetImageIds
xmlns:m="Some-URI">
<SessionId>AXE0123</SessionId>
<id>40</id>
</m:GetImageIds>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Followed by a nasty response:
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
<SOAP-ENV:Header>
<t:Transaction
xmlns:t="some-URI"
xsi:type="xsd:int" mustUnderstand="1">
5
</t:Transaction>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:GetImageIds
xmlns:m="Some-URI">
<Images>
<Id>1404</Id>
<Id>1504</Id>
<Id>1</Id>
</Images>
</m:GetImageIds>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Seriously folks, it is truly possible to create web services and software as a service WITHOUT resorting to the evil that SOAP is. So the next time you plan on developing a web services api for your application consider XML-RPC, REST, and JSON.
A co-worker sent me today’s xkcd. I loved it because it describes exactly how I felt when I learned Python.
I learned it earlier this year and even released my own project using Python. If you’re bored with your current programming language as I was, give Python a try. Programming will become fun again.
After two and half months of development, I would like to announce the first release of zmugfs (yes, the Halloween release) :). I was inspired to write this program when I got my wife, Elizabeth, to try out Fedora to import her digital pictures because “it just works in Fedora”. But uploading using the website was a bit lame, so I thought, “it would be cool if you could open up nautilus and see your pictures, then copy them to the folder to upload them”.
That’s how zmugfs was born. What the heck is zmugfs? It’s a FUSE-based filesystem written entirely in python (my new favorite language) which connects to your account on smugmug.com using their JSON apis.
zmugfs requires zmugjson and fuse-python to work, actually requires a paid smugmug.com account to be useful.
Installing on Fedora 7:
Installing on Fedora Core 6:
Or if not a Fedora user, and you should be, try the tarballs.
Here’s a sample config file:
smugmug.username=zmuggy@somewhere.org
smugmug.password=zmuggys_password
# number of images to cache
image.memory.cache=5
# amount of image data to cache in megabytes
# 50 ~ 25 images
image.disk.cache=50
Tonight I wrote the disk caching logic (well most of it). zmugfs will now look in the memory cache for the imgdata, if it doesn’t exist it looks in $HOME/.zmugfs/cache for the file. If it can’t find it there, it does the final attempt to read it from smugmug itself.
I haven’t figured out how I’m going to calculate the size of the disk cache, that’s the last step to finishing that feature, otherwise it’ll use whatever disk space you have.
That’s it for hacking tonight. Off to watch TV.