My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Project Information
Members
Featured
Downloads
Links

The Google Data Scala client library allows client software to connect to Google Services through the Google Data API protocol. It makes it easy to retrieve and modify data exposed by services like Calendar or YouTube, without worrying about the underlying XML representation or how queries are made.

Currently it supports the following services:

Here's a sample of what you can do:

  val s = new YouTubeService("test")
  for (v <- s.getVideos(Query.empty / "Comedy" matching Text("carlin")) {
    for (relatedFeed <- s.getRelatedVideos(v);
         relatedVideo <- relatedFeed)
      println(relatedVideo.title)

or

for (e <- s.getEvents("private", "full", q matching Text("Tennis"))) {
  e.locations = List(Where[s.contacts.Entry]("Vidy, Lausanne", Schemas.EVENT))
  s.updateEvent(e)
}

For more information, see the User's guide.

Powered by Google Project Hosting