タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

GAEに関するyoshihirouedaのブックマーク (2)

  • Google App EngineをRESTful対応に·App Engine Rest Server MOONGIFT

    RESTfulは一昨年くらいから出てきた技術的な用語だが、一般的なシステム開発においてどのようなメリットがあるだろうか。まず第一にデータベースとアプリケーションサーバを切り離すことができる。いわゆるデータとシステムの疎結合だ。 デモアプリケーション 第二にアプリケーションのインタフェースに様々な選択肢が増えるようになる。Webシステムに限らずiPhoneやコマンドラインでの操作も容易だ。そしてデータの置き場所も制限がなくなるのだ。そう、その夢を感じさせてくれるのがApp Engine Rest Serverだ。 今回紹介するオープンソース・ソフトウェアはApp Engine Rest Server、Google App Engine(GAE)をRESTfulサーバにするソフトウェアだ。 GAEをRESTfulに対応したサーバにするとどうなるか。それは無制限とも言えるストレージをHTTPベー

    Google App EngineをRESTful対応に·App Engine Rest Server MOONGIFT
    yoshihiroueda
    yoshihiroueda 2010/12/06
    GAEで扱うDBをRESTで扱えるようにしたもので、RESTでアプリを組めるようにしたものとは違うようだ。RailsでHerokuを使うべきか。
  • Pythonのメモ - yakkrの日記

    google app engine で AWS から書籍名を取得。書籍の場合は ASIN = ISBN import xml.etree.cElementTree as etree from google.appengine.api import urlfetch def getBookInfo(itemId): class Book(): title = '' author = '' detailPageUrl = '' awsKey = "xxxxxxxxxxxxxxxxxxxx" query = 'http://webservices.amazon.co.jp/onca/xml' query += '?Service=AWSECommerceService&' query += '&AWSAccessKeyId=' + awsKey query += '&Operation=Item

    Pythonのメモ - yakkrの日記
    yoshihiroueda
    yoshihiroueda 2008/10/11
    AWSを使う
  • 1