Image | ![]() |
EAN-13 | 9780783134741 ![]() |
Product Name | Goodnight Moon and Other Sleepytime Tales |
Language | English |
Category | Electronics / Photography: A/V Media: Movie / TV |
Amazon.com | ![]() |
Model | 2221165 |
Price New | 6.49 US Dollars (curriencies) |
Price Used | 1.49 US Dollars (curriencies) |
Aspect Ratio | 1.33:1 |
Cast | Susan Sarandon |
Genre | KIDS & FAMILY |
Width | 5.5 inches (convert) |
Height | 0.5 inches (convert) |
Length | 7.5 inches (convert) |
Weight | 3.2 ounces (convert) |
Binding | Dvd |
Format | Multiple Formats, Closed-captioned, Color, Dolby, Dubbed, NTSC, Subtitled, Widescreen |
Published | 10/05/2017 |
Run Time | 124 minutes |
Features | Factory sealed DVD |
Long Description | Goodnight Moon and Other Sleepytime Tales (DVD) Everybody's favorite bedtime story, "Goodnight Moon" comes to life on DVD for the very first time. Along with other beloved animated tales and lullabies, children and stars come together in a delightful exploration of the nighttime world. Children offer wise and witty reflections on a host of sleepytime topics, from the comfort of "blankies" to Native American dreamcatchers, from monsters and nightmares to the mysteries of dreamland. Susan Sarandon narrates "Goodnight Moon," Tony Bennett sings the swing classic "Hit the Road to Dreamland," Lauryn Hill lends a new rhythm to the rhyme "Hush, Little Baby," the many voices of Billy Crystal bring "There's a Nightmare in My Closet" to animated life, Natalie Coletells the tale of Faith Ringgold's "Tar Beach," Aaron Neville sings "Brahms Lullaby" and Patti LaBelle performs "Twinkle, Twinkle, Little Star." |
Similar Items | 0883929238255: Classical Baby 0883929220496: Child's Garden Of Poetry 0883929010943: Classical Baby-Poetry Show (Dvd) 0786936695076: Very Hungry Caterpillar and Other Stories 0767685253922: Caldecott Favorites Featuring The Snowy Day 0767685115374: Where the Wild Things Are...and 5 More Stories by Maurice Sendak 0767685107201: Good Night Gorilla... And More Great Sleepytime Stories (Scholastic Storybook Treasures) 0767685107171: Chicka Chicka Boom Boom... And More Fun With Letters And Numbers (Scholastic Storybook Treasures) 0026359291920: Classical Baby-Dance (Dvd/P S/4x3 Transfer) 0026359235528: Classical Baby: The Music Show View 6 more similar items |
Created | 10-08-2013 1:37:16am |
Modified | 05-01-2020 1:26:17am |
MD5 | b1ff44484d7cc87a73815ce4a36b97d3 |
SHA256 | ec71884525c6bac80c4f0cba5d8333c3c94ea8fbe3acb6425ec877f9dc21964f |
Search Google | by EAN or by Title |
Query Time | 0.0188289 |
Article of interest
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.