I'm using Go for a project that people deploy on their own servers. It allows me to distribute as a single binary, with all dependencies statically linked.
This makes deployment much simpler than Python, which leaves the user to find all dependencies, which isn't as always as straight forward as it seems.
Also, with go.rice I was able to embed my static resources (.html mainly) right into the binary, giving me a single file to deploy, much like a Java fatjar.
This was actually a port of a small Python project to get the feel for Go, and I'm really sold on the "scp" style of deployment (I can get that from Java to, but Go seems more approachable for smaller projects).