Disable All Advertising
Image
EAN-139780618335244   EAN-13 barcode 9780618335244
Product NameThe Fire Cat (I Can Read Level 1)
LanguageEnglish
CategoryBook / Magazine / Publication
Short DescriptionHeight:9.02 inches / Length:0.31 inches / Weight:0.25 pounds / Width:5.98 inches
Amazon.comA Buy on Amazon ~ 0064440389
SKU9780064440387
Price New2.00 US Dollars    (curriencies)
Price Used0.01 US Dollars    (curriencies)
Width0.19 inches    (convert)
Height9 inches    (convert)
Length6 inches    (convert)
Weight7.84 ounces    (convert)
AuthorEsther Averill
Page Count64
BindingPaperback
Published09/07/1983
FeaturesGreat product!
Long DescriptionPickles the fire cat to the rescue! Pickles is a young cat with big paws who wishes to do big things with them! When he's adopted by the local firehouse, Pickles works hard to be a good fire cat. He learns to jump on a fire truck. He learns to help put out a fire, and he even helps out in a rescue. Beginning readers will cheer as Pickles gets his wish and finds something big to do with his paws. With sweet illustrations from author-illustrator Esther Averill, this Level One I Can Read book is perfect for children learning to sound out words and sentences.
Similar Items9780064442701: Sammy the Seal (I Can Read Level 1)
9780860684848: No More Monsters for Me! (I Can Read Level 1)
9780064441094: No More Monsters for Me! (I Can Read Level 1)
9780689835032: The Horse In Harry's Room (Level 1)
9780516449210: The Horse In Harry's Room (Level 1)
9780439148658: The Horse In Harry's Room (Level 1)
9780064440738: The Horse In Harry's Room (Level 1)
9780064440455: Morris Goes to School (I Can Read Level 1)
9780064440080: Harry and the Lady Next Door (I Can Read Level 1)
9780140370058: The Fat Cat Sat on the Mat (I Can Read Level 1)
View 77 more similar items
Created02-26-2012 6:38:13pm
Modified04-30-2020 10:46:55pm
MD5d2245fa5dc54b6b7d22ab1942bdda3ce
SHA256843d6e69263404736466d265026bb51776f7c908838ba9622fd5abfdaa77aeaf
Search Googleby EAN or by Title
Query Time0.0579610

An article of interest

Making use of the tools we offer

Data feed access via Java

This is a basic implementation of a service that provides retrieval access to the EANData.com UPC web site. Its was coded to verify basic  proof-of-concept for development of another application and was not intended to provide be anything more than basic functionality in the retrieval  of UPC data from the EANData.com web site.

There are several places where simple code was left in place rather than using more advanced Java features/methods to allow for easier  understanding of junior developers. Not much time spent refactoring or cleaning up the code. It is provided as a starting point only.

It contains a Factory service that returns a service object configured using the UcpService.properties (see below) file found in the class path of  the executed code. The UpcQueryService can respond with an implementation of the UpcResponse and supporting interfaces or with an InputStream  allowing direct access to the response from the from the EANData.com web site.

JSR 353 is the Java API for JSON is currently under development (http://java.net/projects/json-processing-spec & http://java.net/projects/jsonp).  The several Java JSON implementations seemed to be more than I was wanting/needing so I wrote a basic parser to provide JSON parsing capability  needed. Its not perfect but is a good basic start.

Download the example source code

The UpcService.properties must be configured.

Url (Required)
provides the address used to query UPC data. The additional parameters are added to retrieve the requested information.

ApiKeyCode (Required)
Provided from EANData.com when your account is setup.

Mode (Required)
The manner in which the data will be retrieved from the EANData.com web site.
 
AutoRetrieveGraphics (Optional)
Boolean to indicate whether the graphics, when indicated by a Url, are to be automatically retrieved at the same time with the UPC data. Default is false. A factory method allows for the this property to be overridden at the time the UpcQueryService is created.