| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | Amazon Rainforest 1.0 |
windows | Home Shell Desktop->Wallpaper Tools | Free |
View Detail
|
|||||||||
| 2 | Amazon Script |
script | CGI Perl | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 3 | Amazon Shop |
script | PHP | $90.00 Additional Info: Source Code |
View Detail
|
|||||||||
|
||||||||||||||
| 4 | Amazon Store Manag |
script | PHP | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 5 | WSL-Amazon 2.0 |
mac | Development->Libraries | Free |
View Detail
|
|||||||||
WSL-Amazon wraps the Amazon Web Services API into an easy to use class library of 72 powerful methods and 66 properties with support for their US, UK, German, and Japanese Amazon stores. WSL-Amazon includes extensive search and information retrieval capabilities, including the ability to create, update and checkout remote Amazon shopping carts -- all from within REALbasic! This class library also comes with the project source code for a fully-functional Amazon-powered application, which developers can reuse in their own REALbasic projects! You may use the encrypted WSL-Amazon classes in your compiled REALbasic applications Royalty-Free. The Freeware version does NOT include support of any kind. If you want access to the full source code of the WSL-Amazon classes, a Source Code License is available for purchase. We also offer priority support plans as well. Here are some key features of "WSL Amazon": · Search by Keyword, ASIN, UPC, Author, Artist/Musician, Actor/Actress, Film Director, Manufacturer, Similar Products, Listmania ID, Wishlist ID, or special Text Stream Phrases. · Search All of Amazon or choose from specific Category filters such as Books, Music, DVD, Software, and many others. · Retrieves extensive product details. · Supports the US, UK, German, French, Canadian, and Japanese Amazon stores. · Display Customer Reviews. · Get Ratings as either an Integer (Number) or Picture (Stars). · Show related Accessories, Listmania Lists and Similar Products. · Display Third-Party Marketplace Offers for a selected product. · Create, Update, and Checkout Amazon Shopping Carts. · Unicode-savvy: receives Amazon data in UTF-8 format. · Includes project source code for a fully-functional Amazon-powered application. · Includes a Free WSLeditfield Editfield subclass that can parse Amazons basic HTML tags. Great for displaying Product Descriptions and Customer Reviews! |
||||||||||||||
| 6 | DBD::Amazon 0.10 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
DBD::Amazon is a DBI driver abstraction for the Amazon E-Commerce Services API. SYNOPSIS $dbh = DBI->connect(dbi:Amazon:, $amznid, undef, { amzn_mode => books, amzn_locale => us, amzn_max_pages => 3 }) or die "Cannot connect: " . $DBI::errstr; # # search for some Perl DBI books # $sth = $dbh->prepare(" SELECT ASIN, Title, Publisher, PublicationDate, Author, SmallImageURL, URL, SalesRank, ListPriceAmt, AverageRating FROM Books WHERE MATCHES ALL(Perl, DBI) AND PublicationDate >= 2000-01-01 ORDER BY SalesRank DESC, ListPriceAmt ASC, AverageRating DESC"); $sth->execute or die Cannot execute: . $sth->errstr; print join(, , @$row), "n" while $row = $sth->fetchrow_arrayref; $dbh->disconnect; DBD::Amazon provides a DBI and SQL syntax abstraction for the Amazon(R) E-Commerce Services 4.0 API aka ECS. http://www.amazon.com/gp/. Using the REST interface, and a limited SQL dialect, it provides a DBI-friendly interface to ECS. Be advised that this is ALPHA release software and subject to change at the whim of the author(s). |
||||||||||||||
| 7 | MCG Amazon Grabber |
script | CGI Perl | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 8 | Amazon Directory RW |
script | CGI Perl | $19.95 |
View Detail
|
|||||||||
|
||||||||||||||
| 9 | Amazon Money Maker |
script | PHP | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 10 | Amazon Toolbar 1.0 |
windows | System->Browser Tweak | Free |
View Detail
|
|||||||||
The Amazon Toolbar will make shopping at Amazon.com a breeze. Search for anything you are looking for in any or all categories or view categories with the Browse menu. Todays Deals are available quickly, the top sellers are available for 26 categories in the Hot 100 products menu. The latest and upcoming products are available in the New Releases menu in many categories. You have quick access to the Amazon Cart, plus a Tools menu featuring Search Terms Highlight, Zoom In/Out and Popup Blocker |
||||||||||||||
| 11 | Amazon Search Directory |
script | CGI Perl | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 12 | Amazon S3 upload applet |
script | Java | $19.00 |
View Detail
|
|||||||||
|
||||||||||||||
| 13 | Amazon Store Builder |
script | PHP | 99.00 |
View Detail
|
|||||||||
|
||||||||||||||
| 14 | Ruby/Amazon 0.9.2 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Ruby/Amazon is a Ruby language library that allows programmatic access to the popular Amazon Web site via the REST (XML over HTTP) based Amazon Web Services. In addition to the original amazon.com site, the amazon.co.uk, amazon.de, amazon.fr, amazon.ca, and amazon.co.jp properties are also supported. Ruby/Amazon library aims to wrap the grunt work of interacting with the Amazon API behind a high-level layer of Ruby, thereby making it easier to use. Although the library is still in development, it already provides support for the vast majority of the AWS v3.1 API. For example, all forms of product search are implemented, along with the transaction details API and the remote shopping-cart API. Furthermore, advanced features such as threaded retrieval of multiple pages, object caching and determining a clients most appropriate AWS locale are all implemented. See the RDoc library documentation for more information, in particular the page about the top level Amazon module. More features are planned for future versions, such as Amazon Web Services for Sellers. |
||||||||||||||
| 15 | SQL::Amazon::UserGuide 0.10 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
SQL::Amazon::UserGuide is a Perl module with user Guide for DBD/SQL::Amazon. SYNOPSIS # # create the parser, passing in the current Amazon metadata # my $parser = SQL::Amazon::Parser->new(%attrs); # # parse a SQL statement, returning a SQL::Amazon::Statement # my $stmt = $parser->parse($sql_stmt) or die "Parse failed: " . $parser->errstr; # # evaluate the parse tree, using an evaluation object # for driver specific evaluation # returns either a scalar rowcount for write operations, # or a SQL::Amazon::Table object for SELECT # or undef on error # my $results = $stmt->execute($params) or die "Evaluation failed: " . $stmt->errstr; SQL::Amazon provides the various components required by DBD::Amazon http://www.presicient.com/dbdamzn to query the Amazon E-Commerce Service 4.0 aka ECS using SQL. Be advised this is ALPHA release software. The suite includes the following components: SQL::Amazon::Parser provides SQL parsing and query plan generation. Implemented as a subclass of SQL::Parser, part of the SQL::Statement bundle. SQL::Amazon::Statement provides SQL query plan execution. Implemented as a subclass of SQL::Statement. SQL::Amazon::Functions provides SQL::Amazon-specific predicate functions, including MATCHES ANY, MATCHES ALL, MATCHES TEXT, POWER_SEARCH, IN, and NOT IN. SQL::Amazon::ReqFactory provides a factory class for generating SQL::Amazon::Request::Request objects based on the predicates in a querys WHERE clause. SQL::Amazon::Spool provides a temporary storage object for intermediate results extracted from the base table cache objects. Acts as a SQL::Eval::Table object for SQL::Statement processing. SQL::Amazon::StorageEngine provides a global storage engine for managing data caching and retrieval. SQL::Amazon::Request::Request provides a base class for all ECS request objects, including numerous default method implementations for building and sending requests, and processing the responses into the base table cache objects. SQL::Amazon::Request::ItemLookup a subclass of SQL::Amazon::Request::Request for the ItemLookup request; also acts as a base class for the ItemSearch request. SQL::Amazon::Request::ItemSearch a subclass of SQL::Amazon::Request::ItemLookup for the ItemSearch request SQL::Amazon::Tables::Table provides a base class for table cache objects, including methods for data type conversion, keyed lookup, and cache management. SQL::Amazon::Tables::< tablename > provides table-specific implementations of the Table base class. |
||||||||||||||
| 16 | Amazon Search 2.4 |
mac | Dashboard Widgets->Shopping | Free |
View Detail
|
|||||||||
Sends your Amazon search straight to your web browser with localization preferences for Amazon s regional web sites. Click on the logo to reveal Amazon s shopping categories for more accurate searching or if you are like many people and don t think you need the categories, just search. The new Automated Update feature will notify you when you launch Amazon Search (or refresh command + R) so you can always stay updated with Amazon Search s new and enhanced features. On the backside you can link directly to WishCentral.com s Free Personal WishList where you can create your own custom wishlist and add wishes from any store (not just Amazon) in a single place. The Amazon Search Widget let s you manage all your buying and wishing needs in one place! If you have any comments or suggestions on improving the Amazon Search Dashboard widget, just go to www.WishCentral.com and submit your comment in the Contact Us form (find link at bottom). I m happy to hear any comments you may have. Whats New in This Release: · Added amazon.co.jp (Japan) category menu including accurate search logo · Corrected amazon.fr Partenaires identification · Added drop down menu localization for German and French. |
||||||||||||||
| 17 | Micro Amazon 1.0 |
mac | Dashboard Widgets->Search | Free |
View Detail
|
|||||||||
The little Micro Amazon widget will send you straight to the search feature of Amazon. When you first load this, it will select the best Amazon store for you. No changes. No worry. No Hassle. Just search! It chooses from the Amazon stores located in the USA (.com), Canada (.ca), United Kingdom (.co.uk), Germany (.de), France (.fr), and Japan (.co.jp). This is a tiny widget. There is no need for a widget of this regard to take up valuable screen space. This is as optimized as it gets. For fast results, use Micro Amazon. |
||||||||||||||
| 18 | Deals @ Amazon 0.5 |
windows | Windows Widgets->Widget Miscellaneous | Free |
View Detail
|
|||||||||
This Widget is based on the Amazon Bar Widget. It shows you all the deals on Amazon in non-obstrusive manner. If you feel like shopping and want to find something quick and easy, Deals @ Amazon widget is the perfect choice for you. [Note: This Widget contains my associate id and any purchases done through the use of this Widget will give me a kickback.] |
||||||||||||||
| 19 | Amazon PCN IE Toolbar 1.0 |
windows | Network Internet->Other | Free |
View Detail
|
|||||||||
Amazon Price Change Notification Toolbar indicates availability of APCN, and will engage Price Watch in one click. APCN will monitor prices at Amazon Webstore and will notify you if price change meets your requirements. Conditions configuration is flexible, and includes prices for new, used, collectable and refurbished Store Items. APCN Service works for Amazon-affiliate web stores as well. |
||||||||||||||
| 20 | Amazon Products Feed |
script | CGI Perl | Free |
View Detail
|
|||||||||
|
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
