PyAWS

A Python wrapper for Amazon Web Service
Download

PyAWS Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Python License
  • Price:
  • FREE
  • Publisher Name:
  • Kun Xi
  • Publisher web site:

PyAWS Tags


PyAWS Description

A Python wrapper for Amazon Web Service PyAWS is a Python wrapper for the latest Amazon Web Service. It is designed to pave the way for Python developers to interactivate AWS.The PyAWS project is forked from the code base of pyamazon. The Amazone E-Commerce Services is supported.Installation:Run python setup.py install as root to install PyAWS into Python site-packages.Quick Start>>> from pyaws import ecs>>> ecs.setLicenseKey('Your-AWS-License-Key')>>> books = ecs.ItemSearch('python', SearchIndex='Books')>>> books.Title # books is a paged iteratoru'Learning Python, Second Edition'>>> len(books) # get length of books510>>> books.Title # random access the booksu'The First 280 Years of Monty Python'>>> books.Title u'Python Programming: An Introduction to Computer Science'>>> cart = ecs.CartCreate(, books], (2, 3))>>> for x in cart.CartItems:... print x.Title... u'Learning Python, Second Edition'u'Python Programming: An Introduction to Computer Science' Here are some key features of "PyAWS": · Build the Python object on the fly from the DOM tree. · The page-based REST response is mapped as the iterator object. · Runtime errors are mapped to exceptions · Fine-tuned object generation makes more sense. · Easy to extend. · More! Requirements: · Python


PyAWS Related Software