Skip to content

Instantly share code, notes, and snippets.

@deeagle
Created June 29, 2020 14:26
Show Gist options
  • Save deeagle/9439de3a01e2fab60d1c54c4cfc5a29f to your computer and use it in GitHub Desktop.
Save deeagle/9439de3a01e2fab60d1c54c4cfc5a29f to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import urllib.request\n",
"import pandas as pd"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"url = \"https://data.seattle.gov/resource/6vkj-f5xf.csv\"\n",
"seattle_inventory = \"seattle-inventory.csv\""
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"('seattle-inventory.csv', <http.client.HTTPMessage at 0x17d72f8a988>)"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"urllib.request.urlretrieve(url, seattle_inventory)"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
"apcs = pd.read_csv (seattle_inventory)"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>bibnum</th>\n",
" <th>title</th>\n",
" <th>author</th>\n",
" <th>isbn</th>\n",
" <th>publicationyear</th>\n",
" <th>publisher</th>\n",
" <th>subjects</th>\n",
" <th>itemtype</th>\n",
" <th>itemcollection</th>\n",
" <th>floatingitem</th>\n",
" <th>itemlocation</th>\n",
" <th>reportdate</th>\n",
" <th>itemcount</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>3011076</td>\n",
" <td>A tale of two friends / adapted by Ellie O'Rya...</td>\n",
" <td>O'Ryan, Ellie</td>\n",
" <td>1481425730, 1481425749, 9781481425735, 9781481...</td>\n",
" <td>2014.</td>\n",
" <td>Simon Spotlight,</td>\n",
" <td>Musicians Fiction, Bullfighters Fiction, Best ...</td>\n",
" <td>jcbk</td>\n",
" <td>ncrdr</td>\n",
" <td>Floating</td>\n",
" <td>qna</td>\n",
" <td>2017-09-01T00:00:00.000</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>2248846</td>\n",
" <td>Naruto. Vol. 1, Uzumaki Naruto / story and art...</td>\n",
" <td>Kishimoto, Masashi, 1974-</td>\n",
" <td>1569319006</td>\n",
" <td>2003, c1999.</td>\n",
" <td>Viz,</td>\n",
" <td>Ninja Japan Comic books strips etc, Comic book...</td>\n",
" <td>acbk</td>\n",
" <td>nycomic</td>\n",
" <td>NaN</td>\n",
" <td>lcy</td>\n",
" <td>2017-09-01T00:00:00.000</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>3209270</td>\n",
" <td>Peace, love &amp; Wi-Fi : a ZITS treasury / by Jer...</td>\n",
" <td>Scott, Jerry, 1955-</td>\n",
" <td>144945867X, 9781449458676</td>\n",
" <td>2014.</td>\n",
" <td>Andrews McMeel Publishing,</td>\n",
" <td>Duncan Jeremy Fictitious character Comic books...</td>\n",
" <td>acbk</td>\n",
" <td>nycomic</td>\n",
" <td>NaN</td>\n",
" <td>bea</td>\n",
" <td>2017-09-01T00:00:00.000</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>1907265</td>\n",
" <td>The Paris pilgrims : a novel / Clancy Carlile.</td>\n",
" <td>Carlile, Clancy, 1930-</td>\n",
" <td>0786706155</td>\n",
" <td>c1999.</td>\n",
" <td>Carroll &amp; Graf,</td>\n",
" <td>Hemingway Ernest 1899 1961 Fiction, Biographic...</td>\n",
" <td>acbk</td>\n",
" <td>cafic</td>\n",
" <td>NaN</td>\n",
" <td>cen</td>\n",
" <td>2017-09-01T00:00:00.000</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>1644616</td>\n",
" <td>Erotic by nature : a celebration of life, of l...</td>\n",
" <td>NaN</td>\n",
" <td>094020813X</td>\n",
" <td>1991, c1988.</td>\n",
" <td>Red Alder Books/Down There Press,</td>\n",
" <td>Erotic literature American, American literatur...</td>\n",
" <td>acbk</td>\n",
" <td>canf</td>\n",
" <td>NaN</td>\n",
" <td>cen</td>\n",
" <td>2017-09-01T00:00:00.000</td>\n",
" <td>1</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" bibnum title \\\n",
"0 3011076 A tale of two friends / adapted by Ellie O'Rya... \n",
"1 2248846 Naruto. Vol. 1, Uzumaki Naruto / story and art... \n",
"2 3209270 Peace, love & Wi-Fi : a ZITS treasury / by Jer... \n",
"3 1907265 The Paris pilgrims : a novel / Clancy Carlile. \n",
"4 1644616 Erotic by nature : a celebration of life, of l... \n",
"\n",
" author \\\n",
"0 O'Ryan, Ellie \n",
"1 Kishimoto, Masashi, 1974- \n",
"2 Scott, Jerry, 1955- \n",
"3 Carlile, Clancy, 1930- \n",
"4 NaN \n",
"\n",
" isbn publicationyear \\\n",
"0 1481425730, 1481425749, 9781481425735, 9781481... 2014. \n",
"1 1569319006 2003, c1999. \n",
"2 144945867X, 9781449458676 2014. \n",
"3 0786706155 c1999. \n",
"4 094020813X 1991, c1988. \n",
"\n",
" publisher \\\n",
"0 Simon Spotlight, \n",
"1 Viz, \n",
"2 Andrews McMeel Publishing, \n",
"3 Carroll & Graf, \n",
"4 Red Alder Books/Down There Press, \n",
"\n",
" subjects itemtype itemcollection \\\n",
"0 Musicians Fiction, Bullfighters Fiction, Best ... jcbk ncrdr \n",
"1 Ninja Japan Comic books strips etc, Comic book... acbk nycomic \n",
"2 Duncan Jeremy Fictitious character Comic books... acbk nycomic \n",
"3 Hemingway Ernest 1899 1961 Fiction, Biographic... acbk cafic \n",
"4 Erotic literature American, American literatur... acbk canf \n",
"\n",
" floatingitem itemlocation reportdate itemcount \n",
"0 Floating qna 2017-09-01T00:00:00.000 1 \n",
"1 NaN lcy 2017-09-01T00:00:00.000 1 \n",
"2 NaN bea 2017-09-01T00:00:00.000 1 \n",
"3 NaN cen 2017-09-01T00:00:00.000 1 \n",
"4 NaN cen 2017-09-01T00:00:00.000 1 "
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"apcs.head()"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"(0, bibnum 3011076\n",
"title A tale of two friends / adapted by Ellie O'Rya...\n",
"author O'Ryan, Ellie\n",
"isbn 1481425730, 1481425749, 9781481425735, 9781481...\n",
"publicationyear 2014.\n",
"publisher Simon Spotlight,\n",
"subjects Musicians Fiction, Bullfighters Fiction, Best ...\n",
"itemtype jcbk\n",
"itemcollection ncrdr\n",
"floatingitem Floating\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 0, dtype: object)\n",
"(1, bibnum 2248846\n",
"title Naruto. Vol. 1, Uzumaki Naruto / story and art...\n",
"author Kishimoto, Masashi, 1974-\n",
"isbn 1569319006\n",
"publicationyear 2003, c1999.\n",
"publisher Viz,\n",
"subjects Ninja Japan Comic books strips etc, Comic book...\n",
"itemtype acbk\n",
"itemcollection nycomic\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 1, dtype: object)\n",
"(2, bibnum 3209270\n",
"title Peace, love & Wi-Fi : a ZITS treasury / by Jer...\n",
"author Scott, Jerry, 1955-\n",
"isbn 144945867X, 9781449458676\n",
"publicationyear 2014.\n",
"publisher Andrews McMeel Publishing,\n",
"subjects Duncan Jeremy Fictitious character Comic books...\n",
"itemtype acbk\n",
"itemcollection nycomic\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 2, dtype: object)\n",
"(3, bibnum 1907265\n",
"title The Paris pilgrims : a novel / Clancy Carlile.\n",
"author Carlile, Clancy, 1930-\n",
"isbn 0786706155\n",
"publicationyear c1999.\n",
"publisher Carroll & Graf,\n",
"subjects Hemingway Ernest 1899 1961 Fiction, Biographic...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 3, dtype: object)\n",
"(4, bibnum 1644616\n",
"title Erotic by nature : a celebration of life, of l...\n",
"author NaN\n",
"isbn 094020813X\n",
"publicationyear 1991, c1988.\n",
"publisher Red Alder Books/Down There Press,\n",
"subjects Erotic literature American, American literatur...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 4, dtype: object)\n",
"(5, bibnum 1736505\n",
"title Children of Cambodia's killing fields : memoir...\n",
"author NaN\n",
"isbn 0300068395, 0300078730\n",
"publicationyear c1997.\n",
"publisher Yale University Press,\n",
"subjects Political atrocities Cambodia, Children Cambod...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 5, dtype: object)\n",
"(6, bibnum 1749492\n",
"title Anti-Zionism : analytical reflections / editor...\n",
"author NaN\n",
"isbn 091559773X\n",
"publicationyear c1989.\n",
"publisher Amana Books,\n",
"subjects Berger Elmer 1908 1996, Zionism Controversial ...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 6, dtype: object)\n",
"(7, bibnum 3270562\n",
"title Hard-hearted Highlander / Julia London.\n",
"author London, Julia\n",
"isbn 0373789998, 037380394X, 9780373789993, 9780373...\n",
"publicationyear [2017]\n",
"publisher HQN,\n",
"subjects Man woman relationships Fiction, Betrothal Fic...\n",
"itemtype acbk\n",
"itemcollection nanew\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 7, dtype: object)\n",
"(8, bibnum 3264577\n",
"title The Sandcastle Empire / Kayla Olson.\n",
"author Olson, Kayla\n",
"isbn 0062484877, 9780062484871\n",
"publicationyear 2017.\n",
"publisher HarperTeen,\n",
"subjects Survival Juvenile fiction, Islands Juvenile fi...\n",
"itemtype acbk\n",
"itemcollection nynew\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 8, dtype: object)\n",
"(9, bibnum 3236819\n",
"title Doctor Who. The return of Doctor Mysterio / BB...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2017]\n",
"publisher BBC Worldwide,\n",
"subjects Doctor Fictitious character Drama, Time travel...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 9, dtype: object)\n",
"(10, bibnum 3018388\n",
"title Burnt toast makes you sing good : a memoir of ...\n",
"author Flinn, Kathleen\n",
"isbn 067001544X, 9780670015443\n",
"publicationyear 2014.\n",
"publisher Viking,\n",
"subjects Cooking American Midwestern style, Flinn Kathl...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation mon\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 10, dtype: object)\n",
"(11, bibnum 3122831\n",
"title Barbie & her sisters in the great puppy advent...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2015]\n",
"publisher Universal Studios Home Entertainment,\n",
"subjects Barbie Fictitious character Juvenile drama, Si...\n",
"itemtype jcdvd\n",
"itemcollection ncdvd\n",
"floatingitem Floating\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 11, dtype: object)\n",
"(12, bibnum 2519097\n",
"title Stop bullying now! [videorecording] : Take a s...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2006?]\n",
"publisher U.S. Dept. of Health and Human Services ; Dept...\n",
"subjects Bullying in schools United States Prevention, ...\n",
"itemtype acdvd\n",
"itemcollection cadvdnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 12, dtype: object)\n",
"(13, bibnum 3274605\n",
"title The only child : a novel / Andrew Pyper.\n",
"author Pyper, Andrew\n",
"isbn 1476755213, 9781476755212\n",
"publicationyear 2017.\n",
"publisher Simon & Schuster,\n",
"subjects Forensic psychiatrists Fiction, Psychological ...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 13, dtype: object)\n",
"(14, bibnum 3265336\n",
"title The Jolley-Rogers and the monster's gold / Jon...\n",
"author Duddle, Jonny\n",
"isbn 0763692921, 9780763692926\n",
"publicationyear 2017.\n",
"publisher Templar Books, an imprint of Candelwick Press,\n",
"subjects Pirates Juvenile fiction, Monsters Juvenile fi...\n",
"itemtype jcbk\n",
"itemcollection ncef\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 14, dtype: object)\n",
"(15, bibnum 3154492\n",
"title Duke in his own words : John Wayne's life in l...\n",
"author NaN\n",
"isbn 1942556195, 9781942556190\n",
"publicationyear c2015.\n",
"publisher Topix Media Lab,\n",
"subjects Wayne John 1907 1979 Correspondence, Wayne Joh...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 15, dtype: object)\n",
"(16, bibnum 3167678\n",
"title The Alchemists' Council / Cynthea Masson.\n",
"author Masson, Cynthea, 1962-\n",
"isbn 1770412719, 9781770412712\n",
"publicationyear 2016.\n",
"publisher ECW Press,\n",
"subjects Alchemy Fiction, Fantasy fiction\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 16, dtype: object)\n",
"(17, bibnum 3137398\n",
"title Parrots of the wild : a natural history of the...\n",
"author Toft, Catherine Ann, 1950-2011,,\n",
"isbn 0520239253, 9780520239258\n",
"publicationyear [2015]\n",
"publisher University of California Press ; in collaborat...\n",
"subjects Parrots, Parrots Conservation, Human animal re...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 17, dtype: object)\n",
"(18, bibnum 3165211\n",
"title The aromatherapy garden : growing fragrant pla...\n",
"author Keville, Kathi\n",
"isbn 1604695498, 9781604695496\n",
"publicationyear 2016.\n",
"publisher Timber Press,\n",
"subjects Fragrant gardens, Aromatic plants Therapeutic ...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 18, dtype: object)\n",
"(19, bibnum 2483968\n",
"title The walking dead. Volume 8, Made to suffer / [...\n",
"author Kirkman, Robert\n",
"isbn 1582408831, 9781582408835\n",
"publicationyear c2008.\n",
"publisher Image Comics\n",
"subjects Graphic novels, Horror comic books strips etc\n",
"itemtype acbk\n",
"itemcollection nacomic\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 19, dtype: object)\n",
"(20, bibnum 3199800\n",
"title Naked '76 / Kevin Brooks.\n",
"author Brooks, Kevin\n",
"isbn 1512404187, 9781512404180\n",
"publicationyear 2016.\n",
"publisher Carolrhoda Labs,\n",
"subjects Bands Music Fiction, Punk rock music Fiction, ...\n",
"itemtype acbk\n",
"itemcollection nyfic\n",
"floatingitem NaN\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 20, dtype: object)\n",
"(21, bibnum 2268788\n",
"title Abakada ng pag-ibig : Paula / Maia Jose.\n",
"author Jose, Maia.\n",
"isbn 9718240357\n",
"publicationyear 2000.\n",
"publisher Books for Pleasure,\n",
"subjects Lesbianism Fiction, Same sex marriage Fiction,...\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 21, dtype: object)\n",
"(22, bibnum 797564\n",
"title Broadcasting yearbook--marketbook issue.\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear 1960.\n",
"publisher [Broadcasting Publications],\n",
"subjects Broadcast advertising United States Periodical...\n",
"itemtype arbk\n",
"itemcollection cs6r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 22, dtype: object)\n",
"(23, bibnum 2059264\n",
"title House of dreams / Brenda Joyce.\n",
"author Joyce, Brenda\n",
"isbn 158724036X\n",
"publicationyear c2000.\n",
"publisher Wheeler Pub.,\n",
"subjects Aristocracy Social class Fiction, Spirit posse...\n",
"itemtype acbk\n",
"itemcollection cs1malf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 23, dtype: object)\n",
"(24, bibnum 2940843\n",
"title Recentering the universe : the radical theorie...\n",
"author Miller, Ron, 1947-\n",
"isbn 0761358854, 9780761358855\n",
"publicationyear c2014.\n",
"publisher Twenty-First Century Books,\n",
"subjects Astronomy History Juvenile literature, Astrono...\n",
"itemtype acbk\n",
"itemcollection nynf\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 24, dtype: object)\n",
"(25, bibnum 3028235\n",
"title Take a bow-wow / by Kristin Earhart ; illustra...\n",
"author Earhart, Kristin\n",
"isbn 0545617618, 9780545617611\n",
"publicationyear [2014]\n",
"publisher Scholastic Inc.,\n",
"subjects Dogs Juvenile fiction, Poodles Juvenile fictio...\n",
"itemtype jcbk\n",
"itemcollection ncef\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 25, dtype: object)\n",
"(26, bibnum 2985327\n",
"title Everyday [videorecording] / Sundance Selects ;...\n",
"author NaN\n",
"isbn 0788617818, 9780788617812\n",
"publicationyear ©2014\n",
"publisher distributed by MPI Home Video\n",
"subjects Families Drama, Drug traffic Drama, Prisons Dr...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 26, dtype: object)\n",
"(27, bibnum 2352640\n",
"title Morningstar guide to mutual funds : five-star ...\n",
"author NaN\n",
"isbn 0471718327, 9780471718321\n",
"publicationyear c2005.\n",
"publisher John Wiley & Sons ,\n",
"subjects Mutual funds\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 27, dtype: object)\n",
"(28, bibnum 2552455\n",
"title The great powers outage / William Boniface ; i...\n",
"author Boniface, William\n",
"isbn 0060774703, 0060774711, 9780060774707, 9780060...\n",
"publicationyear 2008.\n",
"publisher HarperCollins,\n",
"subjects Heroes Juvenile fiction, Criminals Juvenile fi...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation mgm\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 28, dtype: object)\n",
"(29, bibnum 2242143\n",
"title Last day, hooray! / Nancy Poydar.\n",
"author Poydar, Nancy\n",
"isbn 0823418073\n",
"publicationyear 2004.\n",
"publisher Holiday House,\n",
"subjects Schools Fiction, Parties Fiction\n",
"itemtype jcbk\n",
"itemcollection ccpic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 3\n",
"Name: 29, dtype: object)\n",
"(30, bibnum 3056809\n",
"title My old lady [videorecording] / Universal ; Coh...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2015]\n",
"publisher Universal Studios Home Entertainment,\n",
"subjects Roommates Drama, Paris France Drama, Family se...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 30, dtype: object)\n",
"(31, bibnum 2765249\n",
"title Lone wolf [text (large print)] / Jodi Picoult.\n",
"author Picoult, Jodi, 1966-\n",
"isbn 1611733669, 9781611733662\n",
"publicationyear 2012.\n",
"publisher Center Point Publishing,\n",
"subjects Accident victims Fiction, Terminal care Decisi...\n",
"itemtype acbk\n",
"itemcollection nalpfic\n",
"floatingitem Floating\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 31, dtype: object)\n",
"(32, bibnum 1932479\n",
"title Travel forecasting procedures to support the P...\n",
"author Rutherford, G. Scott, 1944-\n",
"isbn NaN\n",
"publicationyear [1983]\n",
"publisher [The Council?],\n",
"subjects Transportation Washington State Puget Sound Re...\n",
"itemtype arbk\n",
"itemcollection cs6r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 32, dtype: object)\n",
"(33, bibnum 476602\n",
"title The Amazing movie fakebook [music] : for all k...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear c1987.\n",
"publisher Warner Bros. Publications,\n",
"subjects Motion picture music Fake books\n",
"itemtype armus\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 33, dtype: object)\n",
"(34, bibnum 2963138\n",
"title Promise land : my journey through America's se...\n",
"author Lamb-Shapiro, Jessica\n",
"isbn 1439100195, 1439100217, 9781439100196, 9781439...\n",
"publicationyear 2014.\n",
"publisher Simon & Schuster,\n",
"subjects Self care Health, Self care Health Psychologic...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 34, dtype: object)\n",
"(35, bibnum 2709870\n",
"title A small hotel / Robert Olen Butler.\n",
"author Butler, Robert Olen\n",
"isbn 0802119875, 9780802119872\n",
"publicationyear 2011.\n",
"publisher Grove Press,\n",
"subjects Man woman relationships Fiction, New Orleans L...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 35, dtype: object)\n",
"(36, bibnum 2328787\n",
"title Haiti / Rosalie Ng Cheong-Lum & Leslie Jermyn.\n",
"author NgCheong-Lum, Roseline, 1962-\n",
"isbn 0761419683\n",
"publicationyear 2005.\n",
"publisher Marshall Cavendish Benchmark,\n",
"subjects Haiti Juvenile literature\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation dlr\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 36, dtype: object)\n",
"(37, bibnum 2845634\n",
"title You're doing it wrong! : how to improve your l...\n",
"author Thornton, Lee\n",
"isbn 1440544166, 9781440544163\n",
"publicationyear c2012.\n",
"publisher Adams Media,\n",
"subjects Conduct of life Miscellanea, Life skills Misce...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation uni\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 37, dtype: object)\n",
"(38, bibnum 11879\n",
"title Mirror to the American past; a survey of Ameri...\n",
"author Williams, Hermann Warner, 1908-1974\n",
"isbn 0821204440\n",
"publicationyear [1973]\n",
"publisher New York Graphic Society\n",
"subjects Genre painting American, Genre painting 18th c...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 38, dtype: object)\n",
"(39, bibnum 3174946\n",
"title Pete the Cat. Snow daze / by James Dean.\n",
"author Dean, James, 1957-\n",
"isbn 0062404253, 0062404261, 9780062404251, 9780062...\n",
"publicationyear [2016]\n",
"publisher Harper, an imprint of HarperCollinsPublishers,\n",
"subjects Pete the Cat Fictitious character Juvenile fic...\n",
"itemtype jcbk\n",
"itemcollection ncrdr\n",
"floatingitem Floating\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 3\n",
"Name: 39, dtype: object)\n",
"(40, bibnum 168951\n",
"title Glove toys.\n",
"author Hutchings, Margaret\n",
"isbn NaN\n",
"publicationyear [1958]\n",
"publisher Studio Publications\n",
"subjects Puppets\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 40, dtype: object)\n",
"(41, bibnum 2796048\n",
"title Back and deader than ever / a novel by Lisi Ha...\n",
"author Harrison, Lisi\n",
"isbn 0316099171, 9780316099172\n",
"publicationyear 2012.\n",
"publisher Poppy/Little, Brown,\n",
"subjects Monsters Juvenile fiction, High schools Juveni...\n",
"itemtype acbk\n",
"itemcollection nyfic\n",
"floatingitem NaN\n",
"itemlocation uni\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 41, dtype: object)\n",
"(42, bibnum 3230596\n",
"title Nicaragua / by Wil Mara.\n",
"author Mara, Wil\n",
"isbn 0531220907, 9780531220900\n",
"publicationyear [2016]\n",
"publisher Children's Press,\n",
"subjects Nicaragua Juvenile literature\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 42, dtype: object)\n",
"(43, bibnum 2613611\n",
"title Japan took the J.A.P. out of me : [a memoir] /...\n",
"author Cook, Lisa Fineberg\n",
"isbn 1439110034, 9781439110034\n",
"publicationyear c2009.\n",
"publisher Downtown Press,\n",
"subjects Cook Lisa Fineberg, Cook Lisa Fineberg Marriag...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 43, dtype: object)\n",
"(44, bibnum 3259688\n",
"title The English daughter / Maggie Wadey.\n",
"author Wadey, Maggie\n",
"isbn 1910985139, 9781910985137\n",
"publicationyear 2016.\n",
"publisher Sandstone Press Ltd,\n",
"subjects Wadey Maggie Family, Kavanagh Agnes Teresa Chi...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 44, dtype: object)\n",
"(45, bibnum 2490088\n",
"title Curious George rides a bike [videorecording] :...\n",
"author NaN\n",
"isbn 0545073073, 9780545073073\n",
"publicationyear 2008.\n",
"publisher New Video,\n",
"subjects Curious George Fictitious character Juvenile f...\n",
"itemtype jcdvd\n",
"itemcollection ncdvd\n",
"floatingitem Floating\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 45, dtype: object)\n",
"(46, bibnum 2535499\n",
"title Acid precipitation : hearings before the Subco...\n",
"author United States. Congress. House. Committee on E...\n",
"isbn NaN\n",
"publicationyear 1982.\n",
"publisher U.S. G.P.O.,\n",
"subjects Acid rain United States, Acid pollution of riv...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 46, dtype: object)\n",
"(47, bibnum 35714\n",
"title On Noam Chomsky; critical essays.\n",
"author Harman, Gilbert\n",
"isbn 0385037651\n",
"publicationyear 1974.\n",
"publisher Anchor Press,\n",
"subjects Chomsky Noam, Linguistics Research United States\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 47, dtype: object)\n",
"(48, bibnum 2737405\n",
"title How to help the Earth / by the Lorax with Tish...\n",
"author Rabe, Tish\n",
"isbn 0375869778, 0375969772, 9780375869778, 9780375...\n",
"publicationyear c2012.\n",
"publisher Random House,\n",
"subjects Refuse and refuse disposal Juvenile literature...\n",
"itemtype jcbk\n",
"itemcollection ncrdr\n",
"floatingitem Floating\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 48, dtype: object)\n",
"(49, bibnum 2064271\n",
"title Our Native American legacy : Northwest towns w...\n",
"author Nestor, Sandy\n",
"isbn 087004401X\n",
"publicationyear 2001.\n",
"publisher Caxton Press,\n",
"subjects Names Indian Northwest Pacific, Names Indian A...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 49, dtype: object)\n",
"(50, bibnum 3160162\n",
"title Finding luck / by Kristin Earhart ; illustrate...\n",
"author Earhart, Kristin\n",
"isbn 1481414232, 9781481414234\n",
"publicationyear 2016.\n",
"publisher Aladdin,\n",
"subjects Brothers and sisters Juvenile fiction, Ponies ...\n",
"itemtype jcbk\n",
"itemcollection ncef\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 50, dtype: object)\n",
"(51, bibnum 2590075\n",
"title Preliminaires [sound recording] / Iggy Pop.\n",
"author Pop, Iggy, 1947-\n",
"isbn NaN\n",
"publicationyear p2009.\n",
"publisher Astralwerks,\n",
"subjects Popular music 2001 2010, Rock music 2001 2010\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 51, dtype: object)\n",
"(52, bibnum 3272492\n",
"title Hothouse / Karyna McGlynn.\n",
"author McGlynn, Karyna\n",
"isbn 1941411452, 9781941411452\n",
"publicationyear [2017]\n",
"publisher Sarabande Books,\n",
"subjects Poetry\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation uni\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 52, dtype: object)\n",
"(53, bibnum 723015\n",
"title Heteroptera or true bugs of Ecuador : a partia...\n",
"author Froeschner, Richard C.\n",
"isbn NaN\n",
"publicationyear 1981.\n",
"publisher Smithsonian Institution Press,\n",
"subjects Hemiptera Ecuador Catalogs and collections, He...\n",
"itemtype arbk\n",
"itemcollection cs7r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 53, dtype: object)\n",
"(54, bibnum 2872935\n",
"title The U.S. Army Rangers : the missions / by Will...\n",
"author Caper, William\n",
"isbn 1429686596, 9781429686594\n",
"publicationyear 2013.\n",
"publisher Capstone Press,\n",
"subjects United States Army Commando troops Juvenile li...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 54, dtype: object)\n",
"(55, bibnum 2792404\n",
"title Wishes and worries : coping with a parent who ...\n",
"author NaN\n",
"isbn 1770492380, 9781770492387\n",
"publicationyear 2011.\n",
"publisher Tundra Books,\n",
"subjects Children of alcoholics Juvenile literature, Al...\n",
"itemtype jcbk\n",
"itemcollection ccnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 55, dtype: object)\n",
"(56, bibnum 2967007\n",
"title Robots / Melissa Stewart.\n",
"author Stewart, Melissa\n",
"isbn 1426313446, 1426313454, 9781426313448, 9781426...\n",
"publicationyear [2014]\n",
"publisher National Geographic,\n",
"subjects Robots Juvenile literature, Robots\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 56, dtype: object)\n",
"(57, bibnum 2987954\n",
"title The Romanov sisters : the lost lives of the da...\n",
"author Rappaport, Helen\n",
"isbn 1250020204, 9781250020208\n",
"publicationyear 2014.\n",
"publisher St. Martin's Press,\n",
"subjects Nicholas II Emperor of Russia 1868 1918 Assass...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation cap\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 57, dtype: object)\n",
"(58, bibnum 2130621\n",
"title Fire fighters : stories of survival from the f...\n",
"author NaN\n",
"isbn 1560254025\n",
"publicationyear c2002.\n",
"publisher Thunder's Mouth Press : Distributed by Publish...\n",
"subjects Fire extinction, Survival, Fires\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 58, dtype: object)\n",
"(59, bibnum 3167001\n",
"title Melba's American comfort : 100 recipes from my...\n",
"author Wilson, Melba (Chef),\n",
"isbn 1476795282, 1476795304, 9781476795287, 9781476...\n",
"publicationyear 2016.\n",
"publisher Atria Books,\n",
"subjects Cooking American Southern style, Comfort food,...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 59, dtype: object)\n",
"(60, bibnum 2745277\n",
"title The corn maiden and other nightmares / Joyce C...\n",
"author Oates, Joyce Carol, 1938-\n",
"isbn 0802126022, 9780802126023\n",
"publicationyear c2011.\n",
"publisher Mysterious Press,\n",
"subjects Short stories, Suspense fiction, Horror fiction\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 60, dtype: object)\n",
"(61, bibnum 3277676\n",
"title Filling her shoes : a memoir of an inherited f...\n",
"author Fasbinder, Betsy Graziani.\n",
"isbn 1631521985, 9781631521980\n",
"publicationyear 2017.\n",
"publisher She Writes Press,\n",
"subjects Fasbinder Betsy Graziani Family, Stepmothers U...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 61, dtype: object)\n",
"(62, bibnum 3068849\n",
"title The autumn republic / Brian McClellan.\n",
"author McClellan, Brian, 1986-\n",
"isbn 0316219118, 0316219126, 9780316219112, 9780316...\n",
"publicationyear 2015.\n",
"publisher Orbit,\n",
"subjects Kings and rulers Fiction, Imaginary wars and b...\n",
"itemtype acbk\n",
"itemcollection casf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 62, dtype: object)\n",
"(63, bibnum 2044450\n",
"title American furniture : tables, chairs, sofas & b...\n",
"author Schwartz, Marvin D.\n",
"isbn 157912108X\n",
"publicationyear c2000.\n",
"publisher Black Dog & Leventhal : Distributed by Workman...\n",
"subjects Tables United States, Chairs United States, So...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 63, dtype: object)\n",
"(64, bibnum 443857\n",
"title NaN\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher NaN\n",
"subjects NaN\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 64, dtype: object)\n",
"(65, bibnum 2968611\n",
"title Iron Man. The secret origin of Tony Stark, Boo...\n",
"author Gillen, Kieron\n",
"isbn 0785168346, 9780785168348\n",
"publicationyear 2013.\n",
"publisher Marvel Worldwide, Inc.,\n",
"subjects Iron Man Fictitious character Comic books stri...\n",
"itemtype acbk\n",
"itemcollection nycomic\n",
"floatingitem NaN\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 65, dtype: object)\n",
"(66, bibnum 488817\n",
"title Dutch and Flemish paintings from the Hermitage.\n",
"author NaN\n",
"isbn 0810911396, 087099509X, 0870995103\n",
"publicationyear 1988.\n",
"publisher Metropolitan Museum of Art ; Art Institute of ...\n",
"subjects Gosudarstvennyi Ermitazh Russia Exhibitions, P...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 66, dtype: object)\n",
"(67, bibnum 3275106\n",
"title The secret grave / Lois Ruby.\n",
"author Ruby, Lois\n",
"isbn 0545932505, 9780545932509\n",
"publicationyear [2017]\n",
"publisher Scholastic Inc.,\n",
"subjects Haunted places Juvenile fiction, Friendship Ju...\n",
"itemtype jcbk\n",
"itemcollection ccfic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 67, dtype: object)\n",
"(68, bibnum 445120\n",
"title NaN\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher NaN\n",
"subjects NaN\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 68, dtype: object)\n",
"(69, bibnum 2874263\n",
"title The wild beasts of Wuhan : an Ava Lee novel / ...\n",
"author Hamilton, Ian, 1946-\n",
"isbn 1250032296, 1250035155, 9781250032294, 9781250...\n",
"publicationyear 2013.\n",
"publisher Picador,\n",
"subjects Lee Ava Fictitious character Fiction, Women ac...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 69, dtype: object)\n",
"(70, bibnum 3220551\n",
"title Da da da! Die di chao ren / wen/tu, Gongxi Day...\n",
"author Miyanishi, Tatsuya, 1956-\n",
"isbn 9789862116326, 9862116323\n",
"publicationyear 2016.\n",
"publisher Xiao lu wen hua,\n",
"subjects Fathers Juvenile fiction, Picture books for ch...\n",
"itemtype jcbk\n",
"itemcollection ncln\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 70, dtype: object)\n",
"(71, bibnum 3174467\n",
"title 13 hours [videorecording] : the secret soldier...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2016]\n",
"publisher Paramount,\n",
"subjects Terrorism Drama, Benghazi Consulate Attack Ban...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation spa\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 71, dtype: object)\n",
"(72, bibnum 2440310\n",
"title Frankenstein : a cultural history / Susan Tyle...\n",
"author Hitchcock, Susan Tyler\n",
"isbn 0393061442, 9780393061444\n",
"publicationyear c2007.\n",
"publisher W.W. Norton,\n",
"subjects Shelley Mary Wollstonecraft 1797 1851 Frankens...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 72, dtype: object)\n",
"(73, bibnum 83737\n",
"title Imagination and the spirit; essays in literatu...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [1971]\n",
"publisher Eerdmans\n",
"subjects Christianity and literature\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 73, dtype: object)\n",
"(74, bibnum 311693\n",
"title Women in aviation.\n",
"author Peckham, Betty Clock, 1906-\n",
"isbn NaN\n",
"publicationyear c1945.\n",
"publisher Nelson,\n",
"subjects Women in aeronautics\n",
"itemtype arbk\n",
"itemcollection caaero\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 74, dtype: object)\n",
"(75, bibnum 3165152\n",
"title No shred of evidence / Charles Todd.\n",
"author Todd, Charles\n",
"isbn 0062386182, 9780062386182\n",
"publicationyear [2016]\n",
"publisher William Morrow, an imprint of HarperCollinsPub...\n",
"subjects Rutledge Ian Fictitious character Fiction, Pol...\n",
"itemtype acbk\n",
"itemcollection camys\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 4\n",
"Name: 75, dtype: object)\n",
"(76, bibnum 3271750\n",
"title Sex and the city. Season 4 / HBO.\n",
"author NaN\n",
"isbn 1419889974, 9781419889974\n",
"publicationyear [2010]\n",
"publisher Home Box Office : Distributed by Warner Bros. ...\n",
"subjects Female friendship New York State New York Dram...\n",
"itemtype acdvd\n",
"itemcollection cadvd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 76, dtype: object)\n",
"(77, bibnum 2856305\n",
"title Memorial / written by Chris Roberson ; art by ...\n",
"author Roberson, Chris\n",
"isbn 1613773544, 9781613773543\n",
"publicationyear c2012.\n",
"publisher IDW Publishing,\n",
"subjects Fantasy comic books strips etc, Graphic novels\n",
"itemtype acbk\n",
"itemcollection nacomic\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 77, dtype: object)\n",
"(78, bibnum 1646212\n",
"title The comic toolbox : how to be funny even if yo...\n",
"author Vorhaus, John\n",
"isbn 1879505215\n",
"publicationyear c1994.\n",
"publisher Silman-James Press,\n",
"subjects Comedy\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 78, dtype: object)\n",
"(79, bibnum 732430\n",
"title Pioneering Ganders : a genealogy of John and L...\n",
"author Ganders, Harry Stanley, 1894-\n",
"isbn NaN\n",
"publicationyear 1974.\n",
"publisher Syracuse University,\n",
"subjects Ganders family\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 79, dtype: object)\n",
"(80, bibnum 3009698\n",
"title Riptide / Catherine Coulter.\n",
"author Coulter, Catherine\n",
"isbn 0515130966, 9780515130966\n",
"publicationyear 2001, c2000.\n",
"publisher Jove Books,\n",
"subjects Women speechwriters Fiction, Stalkers Fiction,...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 80, dtype: object)\n",
"(81, bibnum 292021\n",
"title Lyon memorial; Massachusetts families includin...\n",
"author Lyon, Sidney Elizabeth, 1846-\n",
"isbn NaN\n",
"publicationyear 1905.\n",
"publisher Graham,\n",
"subjects Lyons family\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 81, dtype: object)\n",
"(82, bibnum 2176355\n",
"title A birthday for Frances / by Russell Hoban ; pi...\n",
"author Hoban, Russell\n",
"isbn 0060223383, 0060223391, 0064430073\n",
"publicationyear 1995.\n",
"publisher HarperCollins,\n",
"subjects Birthdays Juvenile fiction, Badgers Juvenile f...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 82, dtype: object)\n",
"(83, bibnum 2459355\n",
"title Hanukkah & Chinese New Year [sound recording]\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear p2002.\n",
"publisher Kimbo Educational,\n",
"subjects Hanukkah Songs and music Juvenile sound record...\n",
"itemtype jccd\n",
"itemcollection cccd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 83, dtype: object)\n",
"(84, bibnum 2709212\n",
"title Thea Stilton and the cherry blossom adventure ...\n",
"author Stilton, Thea\n",
"isbn 0545227720, 9780545227728\n",
"publicationyear 2011.\n",
"publisher Scholastic,\n",
"subjects Stilton Thea Juvenile fiction, Stilton Geronim...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 84, dtype: object)\n",
"(85, bibnum 2503772\n",
"title Your pet cat / by Elaine Landau.\n",
"author Landau, Elaine\n",
"isbn 0531167666, 9780531167663\n",
"publicationyear c2007.\n",
"publisher Children's Press,\n",
"subjects Cats Juvenile literature\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation dlr\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 85, dtype: object)\n",
"(86, bibnum 2698355\n",
"title Lemonade : and other poems squeezed from a sin...\n",
"author Raczka, Bob\n",
"isbn 1596435410, 9781596435414\n",
"publicationyear 2011.\n",
"publisher Roaring Brook Press,\n",
"subjects Word games Juvenile literature, Childrens poet...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 86, dtype: object)\n",
"(87, bibnum 2801586\n",
"title Thạch Sanh & Sơn Tinh Thủy Tinh / lời, Nguyên ...\n",
"author Đinh, Nguyên Anh.\n",
"isbn NaN\n",
"publicationyear c2011.\n",
"publisher [Nhà xuất bản Dân Trí],\n",
"subjects Tales Vietnam Juvenile literature, Folklore Ju...\n",
"itemtype jcbk\n",
"itemcollection ncln\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 87, dtype: object)\n",
"(88, bibnum 2083884\n",
"title A collection of beauties at the height of thei...\n",
"author Otto, Whitney\n",
"isbn 0375505458\n",
"publicationyear c2002.\n",
"publisher Random House,\n",
"subjects Young adults Fiction, Bars Drinking establishm...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 88, dtype: object)\n",
"(89, bibnum 2697048\n",
"title Celtic Thunder [videorecording] : Christmas / ...\n",
"author Celtic Thunder (Musical group : 2007-)\n",
"isbn NaN\n",
"publicationyear c2010.\n",
"publisher Decca : Distributed by Universal Music Distrib...\n",
"subjects Christmas music, Carols English, Concert films\n",
"itemtype acdvd\n",
"itemcollection cadvdnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 3\n",
"Name: 89, dtype: object)\n",
"(90, bibnum 2833067\n",
"title Miss Peregrine's Home for Peculiar Children / ...\n",
"author Riggs, Ransom\n",
"isbn 1410450236, 9781410450234\n",
"publicationyear 2012.\n",
"publisher Thorndike Press,\n",
"subjects Grandfathers Juvenile fiction, Orphanages Juve...\n",
"itemtype acbk\n",
"itemcollection nylp\n",
"floatingitem Floating\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 90, dtype: object)\n",
"(91, bibnum 1303954\n",
"title The legendary Italian westerns [sound recordin...\n",
"author Morricone, Ennio\n",
"isbn NaN\n",
"publicationyear p1990.\n",
"publisher RCA : Distributed by BMG Music,\n",
"subjects Motion picture music Excerpts\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 91, dtype: object)\n",
"(92, bibnum 2216058\n",
"title The floating book / Michelle Lovric.\n",
"author Lovric, Michelle\n",
"isbn 0060578564\n",
"publicationyear c2003.\n",
"publisher ReganBooks,\n",
"subjects Printing Fiction, Printers Fiction, Venice Ita...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 92, dtype: object)\n",
"(93, bibnum 2959221\n",
"title Powers. [3], Little deaths / created and produ...\n",
"author Bendis, Brian Michael\n",
"isbn 0785159843, 9780785159841\n",
"publicationyear c2011.\n",
"publisher Marvel Worldwide,\n",
"subjects Superheroes Comic books strips etc, Police Com...\n",
"itemtype acbk\n",
"itemcollection nacomic\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 93, dtype: object)\n",
"(94, bibnum 1804689\n",
"title A field guide to western trees : Eastern [i.e....\n",
"author Petrides, George A.\n",
"isbn 0395904544\n",
"publicationyear 1998.\n",
"publisher Houghton Mifflin,\n",
"subjects Trees West U S Identification, Trees Canada We...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 94, dtype: object)\n",
"(95, bibnum 2935743\n",
"title Angry birds playground : dinosaurs : a prehist...\n",
"author Esbaum, Jill\n",
"isbn 1426313241, 142631325X, 9781426313240, 9781426...\n",
"publicationyear c2013.\n",
"publisher National Geographic,\n",
"subjects Dinosaurs Juvenile literature, Fossils Juvenil...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 95, dtype: object)\n",
"(96, bibnum 2566973\n",
"title Poppy and Ereth / Avi ; illustrated by Brian F...\n",
"author Avi, 1937-\n",
"isbn 0061119695, 0061119709, 9780061119699, 9780061...\n",
"publicationyear 2009.\n",
"publisher HarperCollinsPublishers,\n",
"subjects White footed mouse Fiction, Mice Juvenile fict...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 96, dtype: object)\n",
"(97, bibnum 441852\n",
"title NaN\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher NaN\n",
"subjects NaN\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 97, dtype: object)\n",
"(98, bibnum 2900921\n",
"title Al Capone does my homework / Gennifer Choldenko.\n",
"author Choldenko, Gennifer, 1957-\n",
"isbn 0803734727, 9780803734722\n",
"publicationyear c2013.\n",
"publisher Dial Books for Young Readers,\n",
"subjects United States Penitentiary Alcatraz Island Cal...\n",
"itemtype jcbk\n",
"itemcollection ccfic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 98, dtype: object)\n",
"(99, bibnum 3164326\n",
"title Strawberry Shortcake. Berry bake shop [videore...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2015]\n",
"publisher 20th Century Fox Home Entertainment,\n",
"subjects Strawberry Shortcake Fictitious character Juve...\n",
"itemtype jcdvd\n",
"itemcollection ncdvd\n",
"floatingitem Floating\n",
"itemlocation cap\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 99, dtype: object)\n",
"(100, bibnum 2582997\n",
"title Report to Congress for the period of ... / Uni...\n",
"author United States. Maritime Commission\n",
"isbn NaN\n",
"publicationyear 1937-1950.\n",
"publisher U.S. G.P.O.,\n",
"subjects Merchant marine United States Periodicals, Shi...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 3\n",
"Name: 100, dtype: object)\n",
"(101, bibnum 450744\n",
"title Eroticon; [music] seven piano-pieces rev. and ...\n",
"author Jensen, Adolf, 1837-1879\n",
"isbn NaN\n",
"publicationyear c1889.\n",
"publisher Schirmer,\n",
"subjects Piano music\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 101, dtype: object)\n",
"(102, bibnum 3032381\n",
"title The forks over knives plan : how to transition...\n",
"author Pulde, Alona.\n",
"isbn 1476753296, 9781476753294\n",
"publicationyear 2014.\n",
"publisher Simon & Schuster,\n",
"subjects Natural foods Health aspects, Veganism Health ...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation cap\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 102, dtype: object)\n",
"(103, bibnum 2049266\n",
"title America and the intellectual cold wars in Euro...\n",
"author Berghahn, Volker R. (Volker Rolf), 1938-\n",
"isbn 0691074798\n",
"publicationyear 2001.\n",
"publisher Princeton University Press,\n",
"subjects Stone Shepard, Cold War Public opinion, Public...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 103, dtype: object)\n",
"(104, bibnum 2639784\n",
"title Current diagnosis & treatment, surgery.\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher McGraw-Hill Medical\n",
"subjects Surgery, Diagnosis Surgical Handbooks manuals ...\n",
"itemtype arbk\n",
"itemcollection cs7r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 104, dtype: object)\n",
"(105, bibnum 2973939\n",
"title Kicking the sky : a novel / Anthony De Sa.\n",
"author De Sa, Anthony\n",
"isbn 156512927X, 9781565129276\n",
"publicationyear 2014.\n",
"publisher Algonquin Books of Chapel Hill,\n",
"subjects Boys Fiction, Portuguese Canada Fiction, Toron...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 105, dtype: object)\n",
"(106, bibnum 2926288\n",
"title Musk Ox counts / Erin Cabatingan ; illustrated...\n",
"author Cabatingan, Erin\n",
"isbn 1596437987, 9781596437982\n",
"publicationyear 2013.\n",
"publisher Roaring Brook Press,\n",
"subjects Muskox Juvenile fiction, Zebras Juvenile ficti...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 106, dtype: object)\n",
"(107, bibnum 2695359\n",
"title The low GI guide to living well with PCOS : lo...\n",
"author Brand Miller, Janette, 1952-\n",
"isbn 073821390X, 9780738213903\n",
"publicationyear c2011.\n",
"publisher Da Capo Press,\n",
"subjects Polycystic ovary syndrome, Polycystic ovary sy...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 107, dtype: object)\n",
"(108, bibnum 2496929\n",
"title Balto [videorecording] / Universal Pictures ; ...\n",
"author NaN\n",
"isbn 0783219601, 9780783219608\n",
"publicationyear 2002.\n",
"publisher Universal Studios Home Video,\n",
"subjects Balto Dog Juvenile drama, Sled dogs Juvenile d...\n",
"itemtype jcdvd\n",
"itemcollection ncdvd\n",
"floatingitem Floating\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 108, dtype: object)\n",
"(109, bibnum 3118062\n",
"title Exposed / Brighton Walsh.\n",
"author Walsh, Brighton.\n",
"isbn 125005964X, 9781250059642\n",
"publicationyear 2015.\n",
"publisher St. Martin's Griffin,\n",
"subjects Young women Fiction, Criminals Fiction, Man wo...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 109, dtype: object)\n",
"(110, bibnum 517562\n",
"title Mississippi to Madrid : memoir of a Black Amer...\n",
"author Yates, James, 1906-\n",
"isbn 0940880199, 0940880202\n",
"publicationyear c1989.\n",
"publisher Open Hand Pub.,\n",
"subjects Yates James 1906, Spain Ej‚rcito Popular de la...\n",
"itemtype acbk\n",
"itemcollection naaanf\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 110, dtype: object)\n",
"(111, bibnum 2653487\n",
"title On the town [sound recording] / Leonard Bernst...\n",
"author Bernstein, Leonard, 1918-1990\n",
"isbn NaN\n",
"publicationyear p1998.\n",
"publisher Sony Classical/Columbia/Legacy,\n",
"subjects Musicals\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 111, dtype: object)\n",
"(112, bibnum 3149247\n",
"title Trace [sound recording] / Son Volt.\n",
"author Son Volt (Musical group)\n",
"isbn NaN\n",
"publicationyear p2015.\n",
"publisher Rhino/Warner Bros.,\n",
"subjects Rock music 1991 2000, Country music 1991 2000\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 112, dtype: object)\n",
"(113, bibnum 2363867\n",
"title A million dots / Andrew Clements ; illustrated...\n",
"author Clements, Andrew, 1949-\n",
"isbn 0689858248\n",
"publicationyear c2006.\n",
"publisher Simon & Schuster Books for Young Readers,\n",
"subjects Million The number Juvenile literature\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 113, dtype: object)\n",
"(114, bibnum 2721929\n",
"title Good night, world / words by Willa Perlman ; p...\n",
"author Perlman, Willa\n",
"isbn 1442401974, 9781442401976\n",
"publicationyear 2011.\n",
"publisher Beach Lane Books,\n",
"subjects Stories in rhyme Juvenile fiction, Bedtime Juv...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 114, dtype: object)\n",
"(115, bibnum 1801370\n",
"title Charts and publications. 2, United States Paci...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher National Oceanic and Atmospheric Administratio...\n",
"subjects Nautical charts Pacific Coast U S Catalogs Per...\n",
"itemtype acmap\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 115, dtype: object)\n",
"(116, bibnum 3044157\n",
"title Gluten-free artisan bread in five minutes a da...\n",
"author Hertzberg, Jeff\n",
"isbn 1250018315, 9781250018311\n",
"publicationyear 2014.\n",
"publisher Thomas Dunne Books/St. Martin's Press,\n",
"subjects Gluten free diet Recipes, Bread, Cooking Bread...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 116, dtype: object)\n",
"(117, bibnum 251291\n",
"title Our navy for a thousand years; a concise accou...\n",
"author Eardley-Wilmot, Sydney Marow, Sir, 1847-1929.\n",
"isbn NaN\n",
"publicationyear [1932?]\n",
"publisher S. Low\n",
"subjects Great Britain Royal Navy History, Great Britai...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 117, dtype: object)\n",
"(118, bibnum 3091442\n",
"title The horse Comanche [sound recording] / Chadwic...\n",
"author Stokes, Chadwick.\n",
"isbn NaN\n",
"publicationyear [2015]\n",
"publisher Ruff Shod Records,\n",
"subjects Popular music 2011 2020\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 118, dtype: object)\n",
"(119, bibnum 3082810\n",
"title Mama Seeton's whistle / by Jerry Spinelli ; ar...\n",
"author Spinelli, Jerry\n",
"isbn 0316122173, 9780316122177\n",
"publicationyear 2015.\n",
"publisher Little, Brown and Company,\n",
"subjects Whistling Juvenile fiction, Mother and child J...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 119, dtype: object)\n",
"(120, bibnum 1873603\n",
"title Structural details manual / David R. Williams.\n",
"author Williams, David R., P.E.\n",
"isbn 0070704430\n",
"publicationyear c1999.\n",
"publisher McGraw Hill,\n",
"subjects Building Details\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 120, dtype: object)\n",
"(121, bibnum 345206\n",
"title Handbook of structural concrete / edited by F....\n",
"author NaN\n",
"isbn 0070115737\n",
"publicationyear 1983.\n",
"publisher McGraw-Hill,\n",
"subjects Concrete Handbooks manuals etc\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 121, dtype: object)\n",
"(122, bibnum 3262481\n",
"title The 5 second rule : transform your life, work,...\n",
"author Robbins, Mel, 1968-\n",
"isbn 1682612384, 9781682612385\n",
"publicationyear 2017.\n",
"publisher Savio Republic,\n",
"subjects Self esteem Psychological aspects, Courage Pop...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 122, dtype: object)\n",
"(123, bibnum 2973471\n",
"title Side effects may vary / Julie Murphy.\n",
"author Murphy, Julie, 1985-\n",
"isbn 006224535X, 9780062245359\n",
"publicationyear [2014]\n",
"publisher Balzer + Bray, an imprint of HarperCollinsPubl...\n",
"subjects Leukemia Juvenile fiction, Revenge Juvenile fi...\n",
"itemtype acbk\n",
"itemcollection nyfic\n",
"floatingitem NaN\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 123, dtype: object)\n",
"(124, bibnum 3093908\n",
"title The tricks and treats of Halloween / by Angela...\n",
"author Murphy, Angela.\n",
"isbn 1481409786, 1481409794, 9781481409780, 9781481...\n",
"publicationyear [2014]\n",
"publisher Simon Spotlight,\n",
"subjects Halloween Juvenile literature\n",
"itemtype jcbk\n",
"itemcollection nchol\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 124, dtype: object)\n",
"(125, bibnum 2760676\n",
"title Let's throw a St. Patrick's Day party! / Rache...\n",
"author Lynette, Rachel\n",
"isbn 1448825741, 144882737X, 1448827388, 9781448825...\n",
"publicationyear 2012.\n",
"publisher PowerKids Press,\n",
"subjects Saint Patricks Day decorations Juvenile litera...\n",
"itemtype jcbk\n",
"itemcollection nchol\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 125, dtype: object)\n",
"(126, bibnum 2001090\n",
"title Hens dancing / Raffaella Barker.\n",
"author Barker, Raffaella, 1964-\n",
"isbn 0375503862\n",
"publicationyear 2001.\n",
"publisher Random House,\n",
"subjects Single mothers Fiction, Mother and child Ficti...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 126, dtype: object)\n",
"(127, bibnum 2774333\n",
"title Why be happy when you could be normal? / Jeane...\n",
"author Winterson, Jeanette, 1959-\n",
"isbn 0802120105, 9780802120106\n",
"publicationyear [2012].\n",
"publisher Grove Press,\n",
"subjects Winterson Jeanette 1959, Lesbians England Biog...\n",
"itemtype acbk\n",
"itemcollection nab\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 127, dtype: object)\n",
"(128, bibnum 2667150\n",
"title Henry and the bully / Nancy Carlson.\n",
"author Carlson, Nancy L.\n",
"isbn 0670011487, 9780670011483\n",
"publicationyear 2010.\n",
"publisher Viking,\n",
"subjects Bullies Fiction, Mice Juvenile fiction, Animal...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 128, dtype: object)\n",
"(129, bibnum 1785040\n",
"title Sóng trôi : tập truyện / Ngự Thuyét.\n",
"author Ngự Thuyét\n",
"isbn NaN\n",
"publicationyear 1996.\n",
"publisher Thanh Văn,\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 129, dtype: object)\n",
"(130, bibnum 2622635\n",
"title A very big bunny / Marisabina Russo.\n",
"author Russo, Marisabina\n",
"isbn 0375844635, 037594463X, 9780375844638, 9780375...\n",
"publicationyear c2010.\n",
"publisher Schwartz & Wade Books,\n",
"subjects Size Fiction, Individuality Juvenile fiction, ...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 130, dtype: object)\n",
"(131, bibnum 258271\n",
"title Massachusetts memorial to her soldiers and sai...\n",
"author Gardner, James Browne, 1842-\n",
"isbn NaN\n",
"publicationyear [1909]\n",
"publisher [Gardner and Taplin],\n",
"subjects Massachusetts Militia, North Carolina History ...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 131, dtype: object)\n",
"(132, bibnum 3286332\n",
"title Lowlands : [a novel] / Terence Gallagher.\n",
"author Gallagher, Terence\n",
"isbn 1604891912, 9781604891911\n",
"publicationyear [2017]\n",
"publisher Livingston Press, The University of West Alabama,\n",
"subjects High school students Fiction, Bildungsromans, ...\n",
"itemtype acbk\n",
"itemcollection nyfic\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 132, dtype: object)\n",
"(133, bibnum 204414\n",
"title Ways and means of using birds in combating nox...\n",
"author Soviet Union. Upravlenie po zapovednikam i okh...\n",
"isbn NaN\n",
"publicationyear 1956 [1960]\n",
"publisher Ministry of Agriculture of the USSR, [Israel P...\n",
"subjects Beneficial birds Congresses, Insect pests Biol...\n",
"itemtype arbk\n",
"itemcollection cs7r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 133, dtype: object)\n",
"(134, bibnum 3056858\n",
"title Strangers / Bill Pronzini.\n",
"author Pronzini, Bill\n",
"isbn 1410470857, 9781410470850\n",
"publicationyear 2014.\n",
"publisher Thorndike Press, a part of Gale, Cengage Learn...\n",
"subjects Teenage boys Fiction, Rape Investigation Ficti...\n",
"itemtype acbk\n",
"itemcollection nalpfic\n",
"floatingitem Floating\n",
"itemlocation hip\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 134, dtype: object)\n",
"(135, bibnum 1591913\n",
"title Home to Harlem / by Claude McKay ; foreword by...\n",
"author McKay, Claude, 1890-1948\n",
"isbn 1555530230, 1555530240, 1555530249\n",
"publicationyear c1987.\n",
"publisher Northeastern University Press,\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 135, dtype: object)\n",
"(136, bibnum 2730727\n",
"title Jasmine and the treasure chest / written by Ka...\n",
"author Kit, Katy\n",
"isbn 0807550809, 0807550817, 9780807550809, 9780807...\n",
"publicationyear 2011.\n",
"publisher Albert Whitman & Co.,\n",
"subjects Mermaids Fiction, Buried treasure Fiction, Mys...\n",
"itemtype jcbk\n",
"itemcollection ncef\n",
"floatingitem NaN\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 136, dtype: object)\n",
"(137, bibnum 2918726\n",
"title Oil and honey [sound recording] : [the educati...\n",
"author McKibben, Bill\n",
"isbn 1427233462, 9781427233462\n",
"publicationyear p2013.\n",
"publisher Macmillan Audio,\n",
"subjects McKibben Bill, Environmentalism United States,...\n",
"itemtype accd\n",
"itemcollection cacdnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 137, dtype: object)\n",
"(138, bibnum 2638542\n",
"title End your addiction now : the proven nutritiona...\n",
"author Gant, Charles\n",
"isbn 0757003133, 9780757003134\n",
"publicationyear c2010.\n",
"publisher Square One Publishers,\n",
"subjects Substance abuse Nutritional aspects\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 138, dtype: object)\n",
"(139, bibnum 2449232\n",
"title Spinning in the old way : how (and why) to mak...\n",
"author Gibson-Roberts, Priscilla A.\n",
"isbn 0966828984, 9780966828986\n",
"publicationyear c2006.\n",
"publisher Nomad Press,\n",
"subjects Hand spinning, Spun yarns\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 139, dtype: object)\n",
"(140, bibnum 2830815\n",
"title The secret lives of codebreakers : the men and...\n",
"author McKay, Sinclair\n",
"isbn 0452298717, 9780452298712\n",
"publicationyear c2012.\n",
"publisher Penguin Group,\n",
"subjects Great Britain Government Communications Headqu...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 140, dtype: object)\n",
"(141, bibnum 3136799\n",
"title Follow me! : animal parents and babies / Shira...\n",
"author Evans, Shira\n",
"isbn 1426323476, 1426323484, 9781426323478, 9781426...\n",
"publicationyear [2016]\n",
"publisher National Geographic,\n",
"subjects Parental behavior in animals Juvenile literatu...\n",
"itemtype jcbk\n",
"itemcollection ncenf\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 141, dtype: object)\n",
"(142, bibnum 3102588\n",
"title Sick in the head : conversations about life an...\n",
"author Apatow, Judd, 1967-\n",
"isbn 0812997573, 9780812997576\n",
"publicationyear [2015]\n",
"publisher Random House,\n",
"subjects Comedians United States Interviews, Stand up c...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 142, dtype: object)\n",
"(143, bibnum 2865436\n",
"title Lincoln's Gettysburg address : a pictorial int...\n",
"author Daugherty, James, 1889-1974\n",
"isbn 0807545503, 9780807545508\n",
"publicationyear 2013.\n",
"publisher Albert Whitman & Co.,\n",
"subjects Lincoln Abraham 1809 1865 Gettysburg address J...\n",
"itemtype jcbk\n",
"itemcollection naover\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 143, dtype: object)\n",
"(144, bibnum 2627459\n",
"title Christmas chants [sound recording] / Gregorian.\n",
"author Gregorian (Musical group)\n",
"isbn NaN\n",
"publicationyear p2009.\n",
"publisher Curb Records,\n",
"subjects Christmas music, Carols English\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 144, dtype: object)\n",
"(145, bibnum 2389604\n",
"title Kids inventing : a handbook for young inventor...\n",
"author Casey, Susan (Susan Mary)\n",
"isbn 0471660868, 9780471660866\n",
"publicationyear 2005.\n",
"publisher John Wiley,\n",
"subjects Inventions Juvenile literature, Children as in...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 145, dtype: object)\n",
"(146, bibnum 2016155\n",
"title Grief pool : poems / by Jeff Crandall.\n",
"author Crandall, Jeff\n",
"isbn 0967982405\n",
"publicationyear c2000.\n",
"publisher Firestorm Press,\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 146, dtype: object)\n",
"(147, bibnum 1731789\n",
"title New Scottish writing / edited by Harry Ritchie.\n",
"author NaN\n",
"isbn 0747528241\n",
"publicationyear 1996.\n",
"publisher Bloomsbury Pub.,\n",
"subjects English literature Scottish authors, English l...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 147, dtype: object)\n",
"(148, bibnum 3254362\n",
"title We'll always have Casablanca : the life, legen...\n",
"author Isenberg, Noah William.\n",
"isbn 0393243125, 9780393243123\n",
"publicationyear c2017.\n",
"publisher W. W. Norton & Company,\n",
"subjects Casablanca Motion picture, Casablanca Motion p...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 148, dtype: object)\n",
"(149, bibnum 438742\n",
"title NaN\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher NaN\n",
"subjects NaN\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 149, dtype: object)\n",
"(150, bibnum 2802318\n",
"title Making babies : stumbling into motherhood / An...\n",
"author Enright, Anne, 1962-\n",
"isbn 0393078280, 9780393078282\n",
"publicationyear 2012, c2004.\n",
"publisher W.W. Norton,\n",
"subjects Motherhood, Parenting\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 150, dtype: object)\n",
"(151, bibnum 3204880\n",
"title Hidden Christmas : the surprising truth behind...\n",
"author Keller, Timothy, 1950-\n",
"isbn 0735221650, 9780735221659\n",
"publicationyear [2016]\n",
"publisher Viking,\n",
"subjects Jesus Christ Nativity, Christmas, Christianity...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 151, dtype: object)\n",
"(152, bibnum 2835411\n",
"title The real name of God : embracing the full esse...\n",
"author Dosick, Wayne D., 1947-\n",
"isbn 1594774730, 9781594774737\n",
"publicationyear c2012.\n",
"publisher Inner Traditions,\n",
"subjects God Judaism Name\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 152, dtype: object)\n",
"(153, bibnum 3181806\n",
"title Avengers assemble. Civil war / based on the TV...\n",
"author Caramagna, Joe\n",
"isbn 1302901648, 9781302901646\n",
"publicationyear [2016]\n",
"publisher Marvel Worldwide, Inc., a subsidiary of Marvel...\n",
"subjects Superheroes Comic books strips etc, Adventure ...\n",
"itemtype jcbk\n",
"itemcollection nccomic\n",
"floatingitem NaN\n",
"itemlocation uni\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 153, dtype: object)\n",
"(154, bibnum 3077219\n",
"title Rebel power! / written by Lauren Nesworthy.\n",
"author Nesworthy, Lauren.\n",
"isbn 1465435956, 1465435964, 9781465435958, 9781465...\n",
"publicationyear 2015.\n",
"publisher DK Publishing,\n",
"subjects Star Wars rebels Television program Juvenile l...\n",
"itemtype jcbk\n",
"itemcollection ncrdr\n",
"floatingitem Floating\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 154, dtype: object)\n",
"(155, bibnum 2840736\n",
"title Domestic malice : a novel / by Jessica Fletche...\n",
"author Bain, Donald, 1935-\n",
"isbn 0451238036, 9780451238030\n",
"publicationyear 2012.\n",
"publisher Obsidian,\n",
"subjects Fletcher Jessica Fiction, Women novelists Fict...\n",
"itemtype acbk\n",
"itemcollection namys\n",
"floatingitem Floating\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 155, dtype: object)\n",
"(156, bibnum 2731293\n",
"title Middle of everywhere [sound recording] / Pokey...\n",
"author LaFarge, Pokey\n",
"isbn NaN\n",
"publicationyear p2011.\n",
"publisher Free Dirt Records,\n",
"subjects Popular music 2011 2020, Blues Music 2011 2020...\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 156, dtype: object)\n",
"(157, bibnum 2498521\n",
"title Cuộc du lịch kỳ diệu của Nin Hơ Gớc Xơn / Xen ...\n",
"author Lagerlöf, Selma, 1858-1940\n",
"isbn NaN\n",
"publicationyear 2007.\n",
"publisher Nhà xuất bản Văn hóa - thông tin,\n",
"subjects Geese Juvenile fiction, Sweden Juvenile fictio...\n",
"itemtype jcbk\n",
"itemcollection ccln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 157, dtype: object)\n",
"(158, bibnum 2946394\n",
"title Capturing the light : the birth of photography...\n",
"author Watson, Roger (Museum curator)\n",
"isbn 1250009707, 9781250009708\n",
"publicationyear 2013.\n",
"publisher St. Martin's Press,\n",
"subjects Daguerre Louis Jacques Mand‚ 1787 1851, Talbot...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation fre\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 158, dtype: object)\n",
"(159, bibnum 2111930\n",
"title Defying Hitler : a memoir / Sebastian Haffner ...\n",
"author Haffner, Sebastian\n",
"isbn 0374161577\n",
"publicationyear 2002.\n",
"publisher Farrar, Straus and Giroux,\n",
"subjects Haffner Sebastian, Historians Germany Biograph...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 159, dtype: object)\n",
"(160, bibnum 3177459\n",
"title Victor Frankenstein [videorecording] / Twentie...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2016]\n",
"publisher Twentieth Century Fox Home Entertainment,\n",
"subjects Frankenstein Victor Fictitious character Drama...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 3\n",
"Name: 160, dtype: object)\n",
"(161, bibnum 3165861\n",
"title The complete photo guide to cardmaking / Judi ...\n",
"author Watanabe, Judi, 1963-\n",
"isbn 1589238826, 9781589238824\n",
"publicationyear [2016]\n",
"publisher Creative Publishing International, an imprint ...\n",
"subjects Greeting cards, Paper work\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 161, dtype: object)\n",
"(162, bibnum 3014817\n",
"title Daughters of the declaration : how women socia...\n",
"author Gaudiani, Claire\n",
"isbn 1610390318, 9781610390316\n",
"publicationyear c2011.\n",
"publisher PublicAffairs,\n",
"subjects Women philanthropists United States History, S...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 162, dtype: object)\n",
"(163, bibnum 3106320\n",
"title Stampede of the supermarket slugs / by Bill Do...\n",
"author Doyle, Bill H., 1968-\n",
"isbn 0375869344, 0375969349, 9780375869341, 9780375...\n",
"publicationyear c2012.\n",
"publisher Random House,\n",
"subjects Slugs Mollusks Fiction, Cousins Fiction, Magic...\n",
"itemtype jcbk\n",
"itemcollection ncef\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 163, dtype: object)\n",
"(164, bibnum 271815\n",
"title Elegy written in a country churchyard.\n",
"author Gray, Thomas, 1716-1771\n",
"isbn NaN\n",
"publicationyear 1960.\n",
"publisher A.J. St. Onge,\n",
"subjects NaN\n",
"itemtype arbk\n",
"itemcollection cs8r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 164, dtype: object)\n",
"(165, bibnum 2954535\n",
"title The Martian : a novel / Andy Weir.\n",
"author Weir, Andy\n",
"isbn 0804139024, 9780804139021\n",
"publicationyear [2014], c2011.\n",
"publisher Crown,\n",
"subjects Astronauts Fiction, Survival Fiction, Wilderne...\n",
"itemtype acbk\n",
"itemcollection nasf\n",
"floatingitem NaN\n",
"itemlocation nhy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 165, dtype: object)\n",
"(166, bibnum 1706536\n",
"title Oh pray my wings are gonna fit me well / Maya ...\n",
"author Angelou, Maya\n",
"isbn 0679457070\n",
"publicationyear [c1997]\n",
"publisher Random House,\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 166, dtype: object)\n",
"(167, bibnum 3264005\n",
"title The wishing foxes / Margaret Read MacDonald wi...\n",
"author MacDonald, Margaret Read, 1940-\n",
"isbn 1945268018, 9781945268014\n",
"publicationyear 2017.\n",
"publisher Plum Street Publishers,\n",
"subjects Folklore Appalachian Region Juvenile literatur...\n",
"itemtype jcbk\n",
"itemcollection ncfft\n",
"floatingitem NaN\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 167, dtype: object)\n",
"(168, bibnum 2673420\n",
"title Malta / Sean Sheehan and Yong Jui Lin.\n",
"author Sheehan, Sean, 1951-\n",
"isbn 1608700240, 9781608700240\n",
"publicationyear c2011.\n",
"publisher Marshall Cavendish Benchmark,\n",
"subjects Malta Juvenile literature\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 168, dtype: object)\n",
"(169, bibnum 562584\n",
"title A journal by Thos. Hughes for his amusement, &...\n",
"author Hughes, Thomas, 1759 or 60-1790.\n",
"isbn NaN\n",
"publicationyear 1947.\n",
"publisher University Press,\n",
"subjects Hughes Thomas 1759 or 60 1790, Canada Descript...\n",
"itemtype arbk\n",
"itemcollection cs9r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 169, dtype: object)\n",
"(170, bibnum 2900075\n",
"title Toys in space / by Mini Grey.\n",
"author Grey, Mini\n",
"isbn 0307978125, 030797815X, 0307978478, 9780307978...\n",
"publicationyear 2013.\n",
"publisher Alfred A. Knopf,\n",
"subjects Toys Juvenile fiction, Storytelling Juvenile f...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation cap\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 170, dtype: object)\n",
"(171, bibnum 1787791\n",
"title From the devotions.\n",
"author Phillips, Carl, 1959-\n",
"isbn 1555972632\n",
"publicationyear c1998.\n",
"publisher Graywolf Press,\n",
"subjects American poetry\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 171, dtype: object)\n",
"(172, bibnum 3236201\n",
"title Prussian blue : a Bernie Gunther novel / Phili...\n",
"author Kerr, Philip\n",
"isbn 1524756156, 9781524756154\n",
"publicationyear [2017]\n",
"publisher Random House Large Print,\n",
"subjects Gunther Bernhard Fictitious character Fiction,...\n",
"itemtype acbk\n",
"itemcollection nalpfic\n",
"floatingitem Floating\n",
"itemlocation dlr\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 172, dtype: object)\n",
"(173, bibnum 2806133\n",
"title Cole : ninja of Earth / by Greg Farshtey.\n",
"author Farshtey, Greg\n",
"isbn 0545369932, 9780545369930\n",
"publicationyear c2012.\n",
"publisher Scholastic,\n",
"subjects Ninja Juvenile fiction, Martial arts Training ...\n",
"itemtype jcbk\n",
"itemcollection ncef\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 173, dtype: object)\n",
"(174, bibnum 3215746\n",
"title The wonder of you / Elvis with the Royal Philh...\n",
"author Presley, Elvis, 1935-1977\n",
"isbn NaN\n",
"publicationyear [2016]\n",
"publisher RCA/Legacy,\n",
"subjects Popular music 2011 2020, Rock music 2011 2020,...\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 174, dtype: object)\n",
"(175, bibnum 413969\n",
"title German art in the 20th century : painting and ...\n",
"author NaN\n",
"isbn 3791307436\n",
"publicationyear c1985.\n",
"publisher Prestel ; Distributed in the U.S.A. by Neues P...\n",
"subjects Art German 20th century Exhibitions, Art Germa...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 175, dtype: object)\n",
"(176, bibnum 3238144\n",
"title Pete the cat and the treasure map / by James D...\n",
"author Dean, James, 1957-\n",
"isbn 0062404415, 9780062404411\n",
"publicationyear [2017]\n",
"publisher HarperFestival, an imprint of HarperCollinsPub...\n",
"subjects Cats Juvenile fiction, Pirates Juvenile fictio...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 176, dtype: object)\n",
"(177, bibnum 1846744\n",
"title Aleksandr Rodchenko / Magdalena Dabrowski, Lea...\n",
"author Dabrowski, Magdalena\n",
"isbn 0810961873\n",
"publicationyear 1998.\n",
"publisher Museum of Modern Art,\n",
"subjects Rodchenko Aleksandr Mikhailovich 1891 1956, Ph...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 177, dtype: object)\n",
"(178, bibnum 449282\n",
"title Musica da camera [music]\n",
"author Moevs, Robert, 1920-2007\n",
"isbn NaN\n",
"publicationyear [1968]\n",
"publisher Piedmont Music Co.; sole selling agent: Marks ...\n",
"subjects Instrumental ensembles Scores\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 178, dtype: object)\n",
"(179, bibnum 1101468\n",
"title Kantate Nr. 212, Mer hahn en neue Oberkeet [mu...\n",
"author Bach, Johann Sebastian, 1685-1750\n",
"isbn NaN\n",
"publicationyear [19--]\n",
"publisher Breitkopf & Härtel,\n",
"subjects Cantatas Secular Vocal scores with piano\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 179, dtype: object)\n",
"(180, bibnum 3126062\n",
"title Sweet ruin / Kresley Cole.\n",
"author Cole, Kresley\n",
"isbn 1451649975, 9781451649970\n",
"publicationyear 2015.\n",
"publisher Gallery Books,\n",
"subjects Vampires Fiction, Paranormal romance stories\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 180, dtype: object)\n",
"(181, bibnum 2903335\n",
"title Paleo cooking from Elana's pantry : gluten-fre...\n",
"author Amsterdam, Elana\n",
"isbn 1607745518, 9781607745518\n",
"publicationyear c2013.\n",
"publisher Ten Speed Press,\n",
"subjects High protein diet Recipes, Prehistoric peoples...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 181, dtype: object)\n",
"(182, bibnum 3146689\n",
"title A gathering of shadows / V.E. Schwab.\n",
"author Schwab, Victoria\n",
"isbn 0765376474, 9780765376473\n",
"publicationyear 2016.\n",
"publisher Tor,\n",
"subjects Magic Fiction, Contests Fiction, Fantasy ficti...\n",
"itemtype acbk\n",
"itemcollection nanew\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 182, dtype: object)\n",
"(183, bibnum 2127084\n",
"title Pimsleur language programs. Spanish 1 A [sound...\n",
"author NaN\n",
"isbn 0788797581\n",
"publicationyear 1998.\n",
"publisher Simon and Schuster Audio [producer] : Recorded...\n",
"subjects Spanish language Sound recordings for English ...\n",
"itemtype accd\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 183, dtype: object)\n",
"(184, bibnum 2850292\n",
"title Pokupal baran baranki / khudozhnik, Boris Trzh...\n",
"author NaN\n",
"isbn 5389031768, 9785389031760\n",
"publicationyear 2012.\n",
"publisher \"Makhaon\",\n",
"subjects Childrens poetry Russian Juvenile literature, ...\n",
"itemtype jcbk\n",
"itemcollection ccln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 184, dtype: object)\n",
"(185, bibnum 3170881\n",
"title Same but different : teen life on the autism e...\n",
"author Peete, Holly Robinson, 1964-\n",
"isbn 0545094682, 9780545094689\n",
"publicationyear 2016.\n",
"publisher Scholastic Press,\n",
"subjects Autistic children Juvenile fiction\n",
"itemtype acbk\n",
"itemcollection nyfic\n",
"floatingitem NaN\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 185, dtype: object)\n",
"(186, bibnum 1274604\n",
"title The William S. Paley collection / William Rubi...\n",
"author Museum of Modern Art (New York, N.Y.)\n",
"isbn 0870701703\n",
"publicationyear c1992.\n",
"publisher Museum of Modern Art : Distributed by Harry N....\n",
"subjects Paley William S William Samuel 1901 1990 Art c...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 186, dtype: object)\n",
"(187, bibnum 3199176\n",
"title Let the circle be unbroken / Mildred D. Taylor.\n",
"author Taylor, Mildred D.\n",
"isbn 1101997540, 9781101997543\n",
"publicationyear 2016.\n",
"publisher Puffin Books,\n",
"subjects Logan family Fictitious characters Taylor Juve...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 187, dtype: object)\n",
"(188, bibnum 2979627\n",
"title Kedamiha Letibeb Feriha / ʾAbā Mātéyās Desta.\n",
"author Aba Matthias Desta.\n",
"isbn NaN\n",
"publicationyear 2000.\n",
"publisher [Multicultural Books, distributor],\n",
"subjects YaItyopya ortodoks tawahedo b‚ta kerestiyan, E...\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 188, dtype: object)\n",
"(189, bibnum 2664280\n",
"title Suburban nature [sound recording] / Sarah Jaffe.\n",
"author Jaffe, Sarah, 1986-\n",
"isbn NaN\n",
"publicationyear p2010.\n",
"publisher Kirtland Records,\n",
"subjects Popular music 2001 2010\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 189, dtype: object)\n",
"(190, bibnum 3255663\n",
"title Wild Kratts. Panda-monium / PBS Kids ; a Kratt...\n",
"author NaN\n",
"isbn 1531700233, 9781531700232\n",
"publicationyear [2017]\n",
"publisher PBS Distribution,\n",
"subjects Giant panda Juvenile films, Animated televisio...\n",
"itemtype jcdvd\n",
"itemcollection ncdvd\n",
"floatingitem Floating\n",
"itemlocation hip\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 190, dtype: object)\n",
"(191, bibnum 2277393\n",
"title Inside the kingdom [text (large print)] : my l...\n",
"author Bin Ladin, Carmen\n",
"isbn 0786270675\n",
"publicationyear 2004.\n",
"publisher Thorndike Press,\n",
"subjects Bin Ladin Carmen, Women Saudi Arabia Biography...\n",
"itemtype acbk\n",
"itemcollection cs1malp\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 191, dtype: object)\n",
"(192, bibnum 625870\n",
"title Company of adventurers / Peter C. Newman.\n",
"author Newman, Peter Charles\n",
"isbn 0670803790, 0670808776\n",
"publicationyear 1985-<1991 >\n",
"publisher New York, N.Y., U.S.A. : Viking,\n",
"subjects Hudsons Bay Company, Fur trade Northwest Canad...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 192, dtype: object)\n",
"(193, bibnum 3204834\n",
"title Ghosts and goblins and ninja, oh my! / by Walk...\n",
"author Styles, Walker\n",
"isbn 1481463063, 1481463071, 9781481463065, 9781481...\n",
"publicationyear 2016.\n",
"publisher Little Simon,\n",
"subjects Mystery and detective stories, Detectives Fict...\n",
"itemtype jcbk\n",
"itemcollection ncef\n",
"floatingitem NaN\n",
"itemlocation nhy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 193, dtype: object)\n",
"(194, bibnum 2444175\n",
"title The rough guide to world party [sound recording].\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear p2007.\n",
"publisher World Music Network,\n",
"subjects Popular music, World music\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 194, dtype: object)\n",
"(195, bibnum 2877476\n",
"title Maria's story [videorecording] / a Camino Film...\n",
"author NaN\n",
"isbn 1604863226, 9781604863222\n",
"publicationyear c2010.\n",
"publisher PM Press,\n",
"subjects Serrano Mar¡a, Women guerrillas El Salvador Ch...\n",
"itemtype acdvd\n",
"itemcollection nadvdnf\n",
"floatingitem Floating\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 195, dtype: object)\n",
"(196, bibnum 3038971\n",
"title Hesitant alien [sound recording] / Gerard Way.\n",
"author Way, Gerard\n",
"isbn NaN\n",
"publicationyear [2014]\n",
"publisher Reprise,\n",
"subjects Rock music 2011 2020\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 196, dtype: object)\n",
"(197, bibnum 2762453\n",
"title Time for a hug / Phillis Gershator & Mim Green...\n",
"author Gershator, Phillis\n",
"isbn 1402778627, 9781402778629\n",
"publicationyear 2012.\n",
"publisher Sterling Pub. Co.,\n",
"subjects Stories in rhyme Juvenile fiction, Hugging Juv...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 197, dtype: object)\n",
"(198, bibnum 3104204\n",
"title First grade dropout / written by Audrey Vernic...\n",
"author Vernick, Audrey\n",
"isbn 0544129857, 9780544129856\n",
"publicationyear [2015]\n",
"publisher Clarion Books/Houghton Mifflin Harcourt,\n",
"subjects Schools Juvenile fiction, Embarrassment in chi...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 198, dtype: object)\n",
"(199, bibnum 3164323\n",
"title Pound puppies. Showstopping pups [videorecordi...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2016]\n",
"publisher Shout Factory,\n",
"subjects Puppies Juvenile drama, Animal shelters Juveni...\n",
"itemtype jcdvd\n",
"itemcollection ncdvd\n",
"floatingitem Floating\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 199, dtype: object)\n",
"(200, bibnum 1633614\n",
"title La barbarie à visage humain / Bernard-Henri Lévy.\n",
"author Lévy, Bernard-Henri\n",
"isbn 2253037400\n",
"publicationyear [1985]\n",
"publisher Grasset,\n",
"subjects Socialism History, Power Social sciences, Tota...\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 200, dtype: object)\n",
"(201, bibnum 2657586\n",
"title Once upon a baby brother / Sarah Sullivan ; pi...\n",
"author Sullivan, Sarah\n",
"isbn 0374346356, 9780374346355\n",
"publicationyear 2010.\n",
"publisher Farrar, Straus, Giroux,\n",
"subjects Storytelling Juvenile fiction, Creative writin...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 201, dtype: object)\n",
"(202, bibnum 3166125\n",
"title Rookie blue. The complete third season [videor...\n",
"author NaN\n",
"isbn 1417237961, 9781417237968\n",
"publicationyear c2013.\n",
"publisher Entertainment One,\n",
"subjects Police Drama, Crime Drama, Television cop show...\n",
"itemtype acdvd\n",
"itemcollection cadvd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 202, dtype: object)\n",
"(203, bibnum 2991835\n",
"title A fighting chance [sound recording]/ Elizabeth...\n",
"author Warren, Elizabeth\n",
"isbn 1427239169, 9781427239167\n",
"publicationyear p2014.\n",
"publisher Macmillan Audio\n",
"subjects Warren Elizabeth, Women legislators United Sta...\n",
"itemtype accd\n",
"itemcollection nacdnf\n",
"floatingitem Floating\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 203, dtype: object)\n",
"(204, bibnum 3160538\n",
"title Mi vida loca [videorecording] / Cineville ; HB...\n",
"author NaN\n",
"isbn 0783128371, 9780783128375\n",
"publicationyear c2004\n",
"publisher HBO Video,\n",
"subjects Gangs California Los Angeles Drama, Mexican Am...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 204, dtype: object)\n",
"(205, bibnum 281530\n",
"title Commanders of the Army of the Potomac.\n",
"author Hassler, Warren W.\n",
"isbn NaN\n",
"publicationyear [1962]\n",
"publisher Louisiana State University Press,\n",
"subjects United States Army of the Potomac Biography, G...\n",
"itemtype acbk\n",
"itemcollection cab\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 205, dtype: object)\n",
"(206, bibnum 2894990\n",
"title Fellow traveler [sound recording] : the comple...\n",
"author Adams, John, 1947-\n",
"isbn NaN\n",
"publicationyear p2013.\n",
"publisher Azica Records,\n",
"subjects NaN\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 206, dtype: object)\n",
"(207, bibnum 3193472\n",
"title Moomin and family life / Tove Jansson.\n",
"author Jansson, Tove\n",
"isbn 177046252X, 9781770462526\n",
"publicationyear 2016.\n",
"publisher Drawn & Quarterly,\n",
"subjects Moomins Fictitious characters Comic books stri...\n",
"itemtype jcbk\n",
"itemcollection nccomic\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 207, dtype: object)\n",
"(208, bibnum 2413601\n",
"title Traveling Tom and the leprechaun / by Teresa B...\n",
"author Bateman, Teresa\n",
"isbn 0823419762, 9780823419760\n",
"publicationyear c2007.\n",
"publisher Holiday House,\n",
"subjects Minstrels Juvenile fiction, Leprechauns Juveni...\n",
"itemtype jcbk\n",
"itemcollection nchol\n",
"floatingitem NaN\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 208, dtype: object)\n",
"(209, bibnum 299722\n",
"title The presidential primary, by Louise Overacker.\n",
"author Overacker, Louise, 1891-\n",
"isbn NaN\n",
"publicationyear 1926.\n",
"publisher Macmillan,\n",
"subjects Primaries United States, Presidents United Sta...\n",
"itemtype arbk\n",
"itemcollection cs6r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 209, dtype: object)\n",
"(210, bibnum 2899120\n",
"title Pathétique [sound recording] ; Moonlight ; App...\n",
"author Beethoven, Ludwig van, 1770-1827,\n",
"isbn NaN\n",
"publicationyear p2012.\n",
"publisher Mercury Classics/Deutsche Grammophon,\n",
"subjects Sonatas Piano\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 210, dtype: object)\n",
"(211, bibnum 397420\n",
"title Bold money : a new way to play the options mar...\n",
"author Van Peebles, Melvin, 1932-\n",
"isbn 0446513407\n",
"publicationyear 1986.\n",
"publisher Warner Books,\n",
"subjects Options Finance, Speculation, Investments\n",
"itemtype acbk\n",
"itemcollection naaanf\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 211, dtype: object)\n",
"(212, bibnum 2486765\n",
"title Bravo, Mia! / by Laurence Yep.\n",
"author Yep, Laurence, 1948-\n",
"isbn 1593694105, 9781593694104\n",
"publicationyear c2008.\n",
"publisher American Girl,\n",
"subjects Ice skating Fiction, Ice skating Competitions ...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 212, dtype: object)\n",
"(213, bibnum 3217993\n",
"title The riot / Laura Wilson.\n",
"author Wilson, Laura, 1964-\n",
"isbn 163194102X, 9781631941023\n",
"publicationyear [2016]\n",
"publisher Felony & Mayhem Press,\n",
"subjects Mystery fiction\n",
"itemtype acbk\n",
"itemcollection namys\n",
"floatingitem Floating\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 213, dtype: object)\n",
"(214, bibnum 3246869\n",
"title The museum of me / Emma Lewis.\n",
"author Lewis, Emma, 1988-\n",
"isbn 184976414X, 9781849764148\n",
"publicationyear 2016.\n",
"publisher Tate Publishing,\n",
"subjects Museums Juvenile fiction\n",
"itemtype jcbk\n",
"itemcollection ccpic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 214, dtype: object)\n",
"(215, bibnum 3255834\n",
"title Almost complete poems / Stanley Moss.\n",
"author Moss, Stanley\n",
"isbn 1609807278, 9781609807276\n",
"publicationyear [2016]\n",
"publisher Seven Stories Press,\n",
"subjects American poetry 20th century, Poetry\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 215, dtype: object)\n",
"(216, bibnum 3109451\n",
"title Granddaddy's turn : a journey to the ballot bo...\n",
"author Bandy, Michael S.\n",
"isbn 0763665932, 9780763665937\n",
"publicationyear 2015\n",
"publisher Candlewick Press,\n",
"subjects Grandfathers Juvenile fiction, Grandparent and...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 216, dtype: object)\n",
"(217, bibnum 528666\n",
"title Human wishes / Robert Hass.\n",
"author Hass, Robert\n",
"isbn 0880012110, 0880012129\n",
"publicationyear c1989.\n",
"publisher Ecco Press,\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 217, dtype: object)\n",
"(218, bibnum 2765359\n",
"title Farmer boy goes west / Heather Williams.\n",
"author Williams, Heather, 1978-\n",
"isbn 0061242519, 9780061242519\n",
"publicationyear 2012.\n",
"publisher Harper,\n",
"subjects Wilder Almanzo Juvenile fiction, Farm life Min...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 218, dtype: object)\n",
"(219, bibnum 3262205\n",
"title Orange is the new black. Season four / Tilted ...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2017]\n",
"publisher Lionsgate,\n",
"subjects Federal Correctional Institution Danbury Conn ...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 219, dtype: object)\n",
"(220, bibnum 2909009\n",
"title Leaning toward the fiddler [sound recording] :...\n",
"author Wechkin, Hope.\n",
"isbn NaN\n",
"publicationyear p2013.\n",
"publisher Ravello Records,\n",
"subjects Folk music, Songs with violin, World music\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 220, dtype: object)\n",
"(221, bibnum 2918716\n",
"title A house in the sky [sound recording] / Amanda ...\n",
"author Lindhout, Amanda\n",
"isbn 1442367547, 9781442367548\n",
"publicationyear p2013.\n",
"publisher Simon & Schuster Audio,\n",
"subjects Lindhout Amanda, Journalists Canada Biography,...\n",
"itemtype accd\n",
"itemcollection nacdnf\n",
"floatingitem Floating\n",
"itemlocation spa\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 221, dtype: object)\n",
"(222, bibnum 221432\n",
"title Detached essays and illustrations, issued duri...\n",
"author Architectural Publication Society\n",
"isbn NaN\n",
"publicationyear 1853.\n",
"publisher Printed by T. Richards,\n",
"subjects Architecture\n",
"itemtype arbk\n",
"itemcollection cs8ro\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 222, dtype: object)\n",
"(223, bibnum 3091015\n",
"title The shattered court : a novel of the four arts...\n",
"author Scott, M. J. (Melanie Joy), 1971-\n",
"isbn 0451465393, 9780451465399\n",
"publicationyear [2015]\n",
"publisher Roc,\n",
"subjects Witches Fiction, Magic Fiction, Man woman rela...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 223, dtype: object)\n",
"(224, bibnum 2970978\n",
"title Big Nate. Great minds think alike / by Lincoln...\n",
"author Peirce, Lincoln\n",
"isbn 1449436358, 9781449436353\n",
"publicationyear [2014]\n",
"publisher Andrews McMeel Publishing,\n",
"subjects Big Nate Comic books strips etc, Middle school...\n",
"itemtype jcbk\n",
"itemcollection nccomic\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 224, dtype: object)\n",
"(225, bibnum 2970677\n",
"title At the Blue Note [sound recording] : Saturday,...\n",
"author Jarrett, Keith\n",
"isbn NaN\n",
"publicationyear p1995.\n",
"publisher ECM,\n",
"subjects Jazz 1991 2000, Piano music Jazz\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 225, dtype: object)\n",
"(226, bibnum 3181971\n",
"title The next / Stephanie Gangi.\n",
"author Gangi, Stephanie.\n",
"isbn 1250110564, 9781250110565\n",
"publicationyear 2016.\n",
"publisher St. Martin's Press,\n",
"subjects Single women Fiction, Paranormal fiction\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 226, dtype: object)\n",
"(227, bibnum 2805000\n",
"title The big push : how popular culture is always s...\n",
"author Wittekind, Erika, 1980-\n",
"isbn 0756545188, 0756545358, 9780756545185, 9780756...\n",
"publicationyear 2012.\n",
"publisher Compass Point Books,\n",
"subjects Consumer behavior Juvenile literature, Popular...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 227, dtype: object)\n",
"(228, bibnum 3091638\n",
"title Don Matteo. Set 9 [videorecording] / Rai Radio...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2015]\n",
"publisher MHZ Networks Home Entertainment,\n",
"subjects Catholic Church Clergy Drama, Criminal investi...\n",
"itemtype acdvd\n",
"itemcollection nalndvd\n",
"floatingitem Floating\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 228, dtype: object)\n",
"(229, bibnum 2695321\n",
"title Ansel Adams in the national parks : photograph...\n",
"author Adams, Ansel, 1902-1984\n",
"isbn 0316078468, 9780316078467\n",
"publicationyear 2010.\n",
"publisher Little, Brown,\n",
"subjects Adams Ansel 1902 1984, National parks and rese...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 229, dtype: object)\n",
"(230, bibnum 2210594\n",
"title World aviation directory & aerospace database....\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear c2003-2005.\n",
"publisher World Aviation Directory & Aerospace Database,\n",
"subjects Aeronautics Directories, Aerospace industries ...\n",
"itemtype arbk\n",
"itemcollection caaero\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 230, dtype: object)\n",
"(231, bibnum 340448\n",
"title Maximilian, prince of Wied's Travels in the in...\n",
"author Wied, Maximilian, Prinz von, 1782-1867\n",
"isbn NaN\n",
"publicationyear 1906.\n",
"publisher The A.H. Clark Company,\n",
"subjects Indians of North America, Indians of North Ame...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 3\n",
"Name: 231, dtype: object)\n",
"(232, bibnum 2386361\n",
"title A Christmas celebration [sound recording] / Ce...\n",
"author Celtic Woman (Musical group)\n",
"isbn NaN\n",
"publicationyear p2006.\n",
"publisher Manhattan,\n",
"subjects Christmas music, Carols\n",
"itemtype accd\n",
"itemcollection nahol\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 232, dtype: object)\n",
"(233, bibnum 2434272\n",
"title The violin : an illustrated step-by-step instr...\n",
"author Cappelli, Frank\n",
"isbn 1932904174, 9781932904178\n",
"publicationyear c2007.\n",
"publisher Eldorado Ink,\n",
"subjects Violin Instruction and study Juvenile literatu...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 233, dtype: object)\n",
"(234, bibnum 2692327\n",
"title Kaffe Fassett's quilts en Provence / featuring...\n",
"author NaN\n",
"isbn 1600853242, 9781600853241\n",
"publicationyear 2010.\n",
"publisher Taunton Press,\n",
"subjects Patchwork Patterns, Quilting Patterns\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 234, dtype: object)\n",
"(235, bibnum 354447\n",
"title A table for the identification of Nevada's com...\n",
"author Grawe, Oliver Rudolph, 1901-\n",
"isbn NaN\n",
"publicationyear [[1928]\n",
"publisher [University of Nevada]\n",
"subjects Mineralogy Nevada, Mineralogy Determinative\n",
"itemtype arbk\n",
"itemcollection cs7r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 235, dtype: object)\n",
"(236, bibnum 2730040\n",
"title Beginner's World Atlas [cartographic material]\n",
"author National Geographic Society (U.S.)\n",
"isbn 1426308388, 9781426308383\n",
"publicationyear 2011.\n",
"publisher Natl Geographic Soc Childrens books,\n",
"subjects Childrens atlases, Atlases, Geography\n",
"itemtype jcbk\n",
"itemcollection naover\n",
"floatingitem NaN\n",
"itemlocation nhy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 236, dtype: object)\n",
"(237, bibnum 2938802\n",
"title Röyksopp.\n",
"author NaN\n",
"isbn 5099990383021\n",
"publicationyear p2013.\n",
"publisher Night Time Stories,\n",
"subjects Popular music 2011 2020\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation cap\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 3\n",
"Name: 237, dtype: object)\n",
"(238, bibnum 2553026\n",
"title No more tomorrows / Dominic Caruso\n",
"author Caruso, Dominic\n",
"isbn 097898403X, 9780978984038\n",
"publicationyear 2008.\n",
"publisher WestBank Publishing,\n",
"subjects Caruso Francesca Death and burial, Honor killi...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 238, dtype: object)\n",
"(239, bibnum 3287423\n",
"title The football fanbook / Gary Gramling ; design ...\n",
"author Gramling, Gary\n",
"isbn 1683300076, 9781683300076\n",
"publicationyear 2017.\n",
"publisher Liberty Street, an imprint of Time Inc. Books,\n",
"subjects Football Miscellanea Juvenile literature, Foot...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation nhy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 239, dtype: object)\n",
"(240, bibnum 2856430\n",
"title The US capital commotion / created by Jeff Bro...\n",
"author Greenhut, Josh\n",
"isbn 0061430196, 0061574368, 9780061430190, 9780061...\n",
"publicationyear c2012.\n",
"publisher HarperCollins,\n",
"subjects Heroes Juvenile fiction, Washington D C Juveni...\n",
"itemtype jcbk\n",
"itemcollection ncef\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 240, dtype: object)\n",
"(241, bibnum 429339\n",
"title NaN\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher NaN\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 241, dtype: object)\n",
"(242, bibnum 2665641\n",
"title Encyclopedia Brown, boy detective / by Donald ...\n",
"author Sobol, Donald J., 1924-2012\n",
"isbn 0142408883, 9780142408889\n",
"publicationyear 2007, c1963.\n",
"publisher Puffin Books,\n",
"subjects Brown Encyclopedia Fictional character Fiction...\n",
"itemtype jcbk\n",
"itemcollection ncser\n",
"floatingitem NaN\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 242, dtype: object)\n",
"(243, bibnum 477252\n",
"title Worldly saints : the Puritans as they really w...\n",
"author Ryken, Leland\n",
"isbn 0310325005\n",
"publicationyear c1986.\n",
"publisher Academie Books,\n",
"subjects Puritans, Reformed Church\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 243, dtype: object)\n",
"(244, bibnum 3165397\n",
"title Absalom's daughters : a novel / Suzanne Feldman.\n",
"author Feldman, Suzanne, 1958-\n",
"isbn 1627794530, 9781627794534\n",
"publicationyear 2016.\n",
"publisher Henry Holt and Company,\n",
"subjects African American girls Fiction, Sisters Fictio...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 244, dtype: object)\n",
"(245, bibnum 3177813\n",
"title The pages of the mind / Jeffe Kennedy.\n",
"author Kennedy, Jeffe, 1966-\n",
"isbn 149670424X, 9781496704245\n",
"publicationyear [2016]\n",
"publisher Kensington Books,\n",
"subjects Marriages of royalty and nobility Fiction, Que...\n",
"itemtype acbk\n",
"itemcollection nanew\n",
"floatingitem NaN\n",
"itemlocation uni\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 245, dtype: object)\n",
"(246, bibnum 3044565\n",
"title The Swon Brothers [sound recording].\n",
"author Swon Brothers.\n",
"isbn NaN\n",
"publicationyear [2014]\n",
"publisher Arista Nashville,\n",
"subjects Country music 2011 2020\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 246, dtype: object)\n",
"(247, bibnum 2375907\n",
"title Garfield out to lunch / by Jim Davis.\n",
"author Davis, Jim, 1945 July 28-\n",
"isbn 0345475623, 9780345475626\n",
"publicationyear 2006.\n",
"publisher Ballantine Books,\n",
"subjects Garfield Fictitious character Comic books stri...\n",
"itemtype jcbk\n",
"itemcollection cccomic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 247, dtype: object)\n",
"(248, bibnum 2108093\n",
"title Amazing origami / Kunihiko Kasahara.\n",
"author Kasahara, Kunihiko, 1941-\n",
"isbn 0806974206\n",
"publicationyear 2002.\n",
"publisher Sterling Pub.,\n",
"subjects Origami\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 248, dtype: object)\n",
"(249, bibnum 2599633\n",
"title Justice at Guantánamo : one woman's odyssey an...\n",
"author Huskey, Kristine A.\n",
"isbn 1599214687, 9781599214689\n",
"publicationyear c2009.\n",
"publisher Lyons Press,\n",
"subjects Huskey Kristine A, Cause lawyers United States...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 249, dtype: object)\n",
"(250, bibnum 2639529\n",
"title Wheel throwing / Emily Reason.\n",
"author Reason, Emily\n",
"isbn 1600592449, 9781600592447\n",
"publicationyear 2010.\n",
"publisher Lark Books,\n",
"subjects Pottery craft\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 250, dtype: object)\n",
"(251, bibnum 2702339\n",
"title Here's how windows : big savings at a bargain ...\n",
"author NaN\n",
"isbn 1589236289, 9781589236288\n",
"publicationyear c2010.\n",
"publisher Creative Pub. International,\n",
"subjects Windows\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 251, dtype: object)\n",
"(252, bibnum 2744782\n",
"title Reiki healing light [sound recording] : music ...\n",
"author Gordon, David (Musician)\n",
"isbn NaN\n",
"publicationyear p2011.\n",
"publisher Sequoia,\n",
"subjects Music for relaxation, Music for meditation, Ne...\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 252, dtype: object)\n",
"(253, bibnum 2904764\n",
"title The marriage of true minds [sound recording] /...\n",
"author Matmos (Musical group)\n",
"isbn NaN\n",
"publicationyear p2013.\n",
"publisher Thrill Jockey,\n",
"subjects Popular music 2011 2020, Electronic dance musi...\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 253, dtype: object)\n",
"(254, bibnum 3112218\n",
"title The Amazon / written by Tom Jackson.\n",
"author Jackson, Tom, 1953-\n",
"isbn 1465435662, 1465435670, 9781465435668, 9781465...\n",
"publicationyear 2015.\n",
"publisher DK Pubishing,\n",
"subjects Amazon River Region Juvenile literature, Rain ...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 254, dtype: object)\n",
"(255, bibnum 3166649\n",
"title BFF's. 3 / Brenda Hampton.\n",
"author Hampton, Brenda (Brenda M.)\n",
"isbn 1622869621, 9781622869626\n",
"publicationyear [2016]\n",
"publisher Urban Books, LLC,\n",
"subjects African American women Fiction, Female friends...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 255, dtype: object)\n",
"(256, bibnum 192428\n",
"title Latviešu valodas sinonīmu vārdnīca. E. Grīnber...\n",
"author Grīnberga, E.\n",
"isbn NaN\n",
"publicationyear 1967.\n",
"publisher Latvju grāmata,\n",
"subjects Latvian language Synonyms and antonyms\n",
"itemtype arbk\n",
"itemcollection calnr\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 256, dtype: object)\n",
"(257, bibnum 3078452\n",
"title The power of others : peer pressure, groupthin...\n",
"author Bond, Michael Shaw,\n",
"isbn 1780746539, 9781780746531\n",
"publicationyear 2015.\n",
"publisher Oneworld,\n",
"subjects Social groups Psychological aspects, Social in...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 257, dtype: object)\n",
"(258, bibnum 1699640\n",
"title Federal Title VI enforcement to insure nondisc...\n",
"author United States Commission on Civil Rights.\n",
"isbn NaN\n",
"publicationyear [1996]\n",
"publisher The Commission,\n",
"subjects Affirmative action programs United States Fina...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 258, dtype: object)\n",
"(259, bibnum 3168600\n",
"title Lumberjanes. [3], A terrible plan / written by...\n",
"author Stevenson, Noelle\n",
"isbn 1608868036, 9781608868032\n",
"publicationyear 2016.\n",
"publisher BOOM! Box, a division of Boom Entertainment, I...\n",
"subjects Teenage girls Comic books strips etc, Camps Co...\n",
"itemtype jcbk\n",
"itemcollection nccomic\n",
"floatingitem NaN\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 259, dtype: object)\n",
"(260, bibnum 2916653\n",
"title Branded by the pink triangle / Ken Setterington.\n",
"author Setterington, Ken\n",
"isbn 1926920961, 9781926920962\n",
"publicationyear c2013.\n",
"publisher Second Story Press,\n",
"subjects Gays Nazi persecution Juvenile literature, Wor...\n",
"itemtype acbk\n",
"itemcollection naglc\n",
"floatingitem NaN\n",
"itemlocation cap\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 260, dtype: object)\n",
"(261, bibnum 3102933\n",
"title The ultimate sacrifice III : no regrets : a no...\n",
"author Fields, Anthony.\n",
"isbn 1936649357, 9781936649358\n",
"publicationyear ©2013.\n",
"publisher Wahida Clark Presents Publishing,\n",
"subjects African American men Fiction, Drug traffic Fic...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 261, dtype: object)\n",
"(262, bibnum 1301253\n",
"title Lake Chelan National Recreation Area : general...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [1993]\n",
"publisher The Service,\n",
"subjects National parks and reserves Environmental aspe...\n",
"itemtype arbk\n",
"itemcollection cs6r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 262, dtype: object)\n",
"(263, bibnum 2921533\n",
"title Percy Jackson & the Olympians. Book two, The s...\n",
"author Riordan, Rick\n",
"isbn 1423145291, 142314550X, 9781423145295, 9781423...\n",
"publicationyear c2013.\n",
"publisher Disney-Hyperion Books,\n",
"subjects Jackson Percy Fictitious character Comic books...\n",
"itemtype jcbk\n",
"itemcollection nccomic\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 263, dtype: object)\n",
"(264, bibnum 2673823\n",
"title Life turns electric [sound recording] / Finger...\n",
"author Finger Eleven (Musical group)\n",
"isbn NaN\n",
"publicationyear p2010.\n",
"publisher Wind-up Records,\n",
"subjects Rock music 2001 2010\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 264, dtype: object)\n",
"(265, bibnum 3237030\n",
"title Miffy at the library / based on the work of Di...\n",
"author Testa, Maggie\n",
"isbn 1481469312, 1481469320, 9781481469319, 9781481...\n",
"publicationyear 2017.\n",
"publisher Simon Spotlight,\n",
"subjects Miffy Fictitious character Juvenile fiction, M...\n",
"itemtype jcbk\n",
"itemcollection ncrdr\n",
"floatingitem Floating\n",
"itemlocation spa\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 265, dtype: object)\n",
"(266, bibnum 3061181\n",
"title Clear lake forest [sound recording] / the Blac...\n",
"author Black Angels (Musical group)\n",
"isbn NaN\n",
"publicationyear [2014]\n",
"publisher Blue Horizon Ventures,\n",
"subjects Rock music 2011 2020\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 266, dtype: object)\n",
"(267, bibnum 3102483\n",
"title Ruff Ruffman's 44 favorite science activities.\n",
"author NaN\n",
"isbn 076367432X, 9780763674328\n",
"publicationyear 2015.\n",
"publisher Candlewick Entertainment, an imprint of Candle...\n",
"subjects Science Miscellanea Juvenile literature, Scien...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 267, dtype: object)\n",
"(268, bibnum 3138500\n",
"title Future imperfect : Warzones! / writer, Peter D...\n",
"author David, Peter (Peter Allen)\n",
"isbn 0785198695, 9780785198697\n",
"publicationyear 2015.\n",
"publisher Marvel Comics,\n",
"subjects Hulk Fictitious character Comic books strips e...\n",
"itemtype acbk\n",
"itemcollection nycomic\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 268, dtype: object)\n",
"(269, bibnum 916965\n",
"title Infantry.\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear 1957-2013.\n",
"publisher U.S. Army Infantry School,\n",
"subjects Infantry Periodicals, Military art and science...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 4\n",
"Name: 269, dtype: object)\n",
"(270, bibnum 3141523\n",
"title Jessie the lonely puppy / by Holly Webb ; illu...\n",
"author Webb, Holly\n",
"isbn 1589254732, 1680100033, 9781589254732, 9781680...\n",
"publicationyear 2015.\n",
"publisher Tiger Tales,\n",
"subjects Puppies Juvenile fiction, Fear in children Juv...\n",
"itemtype jcbk\n",
"itemcollection ccef\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 270, dtype: object)\n",
"(271, bibnum 3148964\n",
"title 101 movies to see before you grow up / written...\n",
"author Valle, Suzette,\n",
"isbn 1633220435, 9781633220430\n",
"publicationyear [2015]\n",
"publisher Walter Foster Jr.,\n",
"subjects Motion pictures Juvenile literature\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 271, dtype: object)\n",
"(272, bibnum 2758601\n",
"title The devil's odds / Milton T. Burton.\n",
"author Burton, Milton T.\n",
"isbn 0312643357, 9780312643355\n",
"publicationyear 2012.\n",
"publisher Minotaur Books,\n",
"subjects Texas Rangers Fiction, Witnesses Protection Fi...\n",
"itemtype acbk\n",
"itemcollection camys\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 272, dtype: object)\n",
"(273, bibnum 3170624\n",
"title The murder of Mary Russell / Laurie R. King.\n",
"author King, Laurie R.\n",
"isbn 1410486044, 9781410486042\n",
"publicationyear 2016.\n",
"publisher Thorndike Press Large Print,\n",
"subjects Russell Mary Fictitious character 1900 Fiction...\n",
"itemtype acbk\n",
"itemcollection nalpfic\n",
"floatingitem Floating\n",
"itemlocation mon\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 273, dtype: object)\n",
"(274, bibnum 539741\n",
"title 1990 space life sciences training program : a ...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear 1989.\n",
"publisher NASA,\n",
"subjects NaN\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 274, dtype: object)\n",
"(275, bibnum 437016\n",
"title Fairfield Porter : art in its own terms : sele...\n",
"author Porter, Fairfield\n",
"isbn 0800825861, 080082587X\n",
"publicationyear 1979.\n",
"publisher Taplinger Pub. Co.,\n",
"subjects Art\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 275, dtype: object)\n",
"(276, bibnum 2990900\n",
"title The traitor's wife [sound recording] : [the wo...\n",
"author Pataki, Allison\n",
"isbn 1442375043, 9781442375048\n",
"publicationyear [2014]\n",
"publisher Simon & Schuster Audio,\n",
"subjects Arnold Margaret Shippen 1760 1804 Fiction, Arn...\n",
"itemtype accd\n",
"itemcollection cabocd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 276, dtype: object)\n",
"(277, bibnum 3196971\n",
"title El día de un gato / por Rebecca Rissman ; ilus...\n",
"author Rissman, Rebecca\n",
"isbn 9583049549, 9789583049545\n",
"publicationyear 2015.\n",
"publisher Panamericana Editorial,\n",
"subjects Upside down books Specimens, Flip books Specim...\n",
"itemtype jcbk\n",
"itemcollection ncln\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 277, dtype: object)\n",
"(278, bibnum 2688059\n",
"title \"Girl, colored\" and other stories : a complete...\n",
"author NaN\n",
"isbn 0786446064, 9780786446063\n",
"publicationyear c2011.\n",
"publisher McFarland & Co., Publishers,\n",
"subjects American fiction African American authors, Ame...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 278, dtype: object)\n",
"(279, bibnum 2983428\n",
"title Pizza party! / based on the screenplay \"Day on...\n",
"author Sternin, Joshua\n",
"isbn 0385385064, 0385385072, 9780385385060, 9780385...\n",
"publicationyear [2014.]\n",
"publisher Random House,\n",
"subjects Teenage Mutant Ninja Turtles Fictitious charac...\n",
"itemtype jcbk\n",
"itemcollection ncrdr\n",
"floatingitem Floating\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 279, dtype: object)\n",
"(280, bibnum 3253963\n",
"title Saints for all occasions / J. Courtney Sullivan.\n",
"author Sullivan, J. Courtney\n",
"isbn 030794980X, 0307959570, 9780307949806, 9780307...\n",
"publicationyear 2017.\n",
"publisher Alfred A. Knopf,\n",
"subjects Sisters Fiction, Domestic fiction\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 280, dtype: object)\n",
"(281, bibnum 22503\n",
"title American prisoners of war in Southeast Asia. H...\n",
"author United States. Congress. House. Committee on F...\n",
"isbn NaN\n",
"publicationyear 1971-73.\n",
"publisher U.S. Govt. Print. Off.,\n",
"subjects Vietnam War 1961 1975 Prisoners and prisons, P...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 4\n",
"Name: 281, dtype: object)\n",
"(282, bibnum 3125186\n",
"title Creepy crawlies and the scientific method : mo...\n",
"author Kneidel, Sally Stenhouse\n",
"isbn 1938486323, 9781938486326\n",
"publicationyear [2015]\n",
"publisher Fulcrum,\n",
"subjects Animals Experiments Juvenile literature, Scien...\n",
"itemtype jcbk\n",
"itemcollection ccnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 282, dtype: object)\n",
"(283, bibnum 3171997\n",
"title Wabbit. Season one, part one [videorecording] ...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2016]\n",
"publisher Warner Bros. Entertainment,\n",
"subjects Bugs Bunny Fictitious character Juvenile drama...\n",
"itemtype jcdvd\n",
"itemcollection ncdvd\n",
"floatingitem Floating\n",
"itemlocation cap\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 283, dtype: object)\n",
"(284, bibnum 2904034\n",
"title Fangirl / Rainbow Rowell.\n",
"author Rowell, Rainbow\n",
"isbn 1250030951, 9781250030955\n",
"publicationyear 2013.\n",
"publisher St. Martin's Griffin,\n",
"subjects Bildungsromans, College freshmen Juvenile fict...\n",
"itemtype acbk\n",
"itemcollection nynew\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 284, dtype: object)\n",
"(285, bibnum 3184631\n",
"title Beginning acoustic guitar / featuring Michael ...\n",
"author Thompson, Michael (Guitarist)\n",
"isbn 0634063561, 9780634063565\n",
"publicationyear c1999.\n",
"publisher Hal Leonard,\n",
"subjects Guitar Methods Self instruction, Guitar Instru...\n",
"itemtype acdvd\n",
"itemcollection nadvdnf\n",
"floatingitem Floating\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 285, dtype: object)\n",
"(286, bibnum 2671634\n",
"title Skating on stilts : why we aren't stopping tom...\n",
"author Baker, Stewart A.\n",
"isbn 0817911251, 0817911545, 0817911561, 9780817911...\n",
"publicationyear c2010.\n",
"publisher Hoover Institution Press,\n",
"subjects Terrorism United States Prevention, Bioterrori...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 286, dtype: object)\n",
"(287, bibnum 1667108\n",
"title Inside out : modernism and postmodernism in Ch...\n",
"author NaN\n",
"isbn 8772884274\n",
"publicationyear 1993.\n",
"publisher Aarhus University Press,\n",
"subjects Chinese literature 20th century History and cr...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 287, dtype: object)\n",
"(288, bibnum 2045497\n",
"title VCR cross reference : model numbers & parts / ...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear c1994.\n",
"publisher International Society of Certified Electronics...\n",
"subjects Videocassette recorders Catalogs, Video tape r...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 288, dtype: object)\n",
"(289, bibnum 3050546\n",
"title The sellout / Paul Beatty.\n",
"author Beatty, Paul\n",
"isbn 0374260508, 9780374260507\n",
"publicationyear 2015.\n",
"publisher Farrar, Straus and Giroux,\n",
"subjects Fathers and sons Fiction, Race relations Ficti...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 289, dtype: object)\n",
"(290, bibnum 743544\n",
"title A hand-list of the birds of the Philippine Isl...\n",
"author McGregor, Richard Crittenden, 1871-1936.\n",
"isbn NaN\n",
"publicationyear 1906.\n",
"publisher Bureau of Printing,\n",
"subjects Birds Philippines\n",
"itemtype arbk\n",
"itemcollection cs7r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 290, dtype: object)\n",
"(291, bibnum 3167911\n",
"title A return to love : reflections on the principl...\n",
"author Williamson, Marianne, 1952-\n",
"isbn 0060927488, 9780060927486\n",
"publicationyear 2012, ©1992.\n",
"publisher HarperOne,\n",
"subjects Course in Miracles, Spiritual life\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 291, dtype: object)\n",
"(292, bibnum 2587838\n",
"title Honey Hunt. 2 / story and art by Miki Aihara ;...\n",
"author Aihara, Miki\n",
"isbn 142152547X, 9781421525471\n",
"publicationyear 2009.\n",
"publisher Viz Media,\n",
"subjects Bashfulness Comic books strips etc, Children o...\n",
"itemtype acbk\n",
"itemcollection nycomic\n",
"floatingitem NaN\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 292, dtype: object)\n",
"(293, bibnum 282783\n",
"title Ajanta, Ellora and Aurangabad caves, by Ramesh...\n",
"author Gupte, Ramesh Shankar\n",
"isbn NaN\n",
"publicationyear [1962]\n",
"publisher D.B. Taraporevala\n",
"subjects Art India Ajanta, Art India Ellora, Art India ...\n",
"itemtype arbk\n",
"itemcollection cs8r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 293, dtype: object)\n",
"(294, bibnum 3236979\n",
"title Solarium : poems / Jordan Zandi.\n",
"author Zandi, Jordan, 1984-\n",
"isbn 1941411177, 9781941411179\n",
"publicationyear [2016]\n",
"publisher Sarabande Books,\n",
"subjects American poetry 21st century\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 294, dtype: object)\n",
"(295, bibnum 2985823\n",
"title Institutional time : a critique of studio art ...\n",
"author Chicago, Judy, 1939-\n",
"isbn 1580933661, 9781580933667\n",
"publicationyear [2014]\n",
"publisher The Monacelli Press,\n",
"subjects Art Study and teaching Higher United States, C...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation cap\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 295, dtype: object)\n",
"(296, bibnum 1764519\n",
"title Intertwining : selected projects 1989-1995 / S...\n",
"author Holl, Steven\n",
"isbn 1568980612\n",
"publicationyear c1996.\n",
"publisher Princeton Architectural Press,\n",
"subjects Holl Steven Themes motives, Architecture Unite...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 296, dtype: object)\n",
"(297, bibnum 2805018\n",
"title Animal babies / by Andrea Pinnington and Tory ...\n",
"author Pinnington, Andrea\n",
"isbn 0545365686, 9780545365680\n",
"publicationyear 2012.\n",
"publisher Scholastic,\n",
"subjects Animals Infancy Juvenile literature\n",
"itemtype jcbk\n",
"itemcollection ncenf\n",
"floatingitem NaN\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 297, dtype: object)\n",
"(298, bibnum 2469699\n",
"title Japanese folk songs [sound recording] = Nihon ...\n",
"author Hirota, Joji\n",
"isbn NaN\n",
"publicationyear p2007.\n",
"publisher ARC Music,\n",
"subjects Folk songs Japanese Japan, Folk music Japan\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 298, dtype: object)\n",
"(299, bibnum 452902\n",
"title Seven pieces, opus 27, for organ [music] / Mar...\n",
"author Dupré, Marcel, 1886-1971\n",
"isbn NaN\n",
"publicationyear c1931.\n",
"publisher H.W. Gray,\n",
"subjects Organ music\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 299, dtype: object)\n",
"(300, bibnum 3120858\n",
"title Everybody rise : a novel / Stephanie Clifford.\n",
"author Clifford, Stephanie.\n",
"isbn 1250077176, 9781250077172\n",
"publicationyear 2015.\n",
"publisher St. Martin's Press,\n",
"subjects Young women New York State New York Fiction, S...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 300, dtype: object)\n",
"(301, bibnum 2882964\n",
"title The nuclear age / Tim O'Brien.\n",
"author O'Brien, Tim, 1946-\n",
"isbn 0140259104, 9780140259100\n",
"publicationyear 1996.\n",
"publisher Penguin Books,\n",
"subjects Men Psychology Fiction, Nuclear warfare Fictio...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 301, dtype: object)\n",
"(302, bibnum 1320160\n",
"title Aviation, transport services : agreements betw...\n",
"author Peru.\n",
"isbn NaN\n",
"publicationyear [1993?]\n",
"publisher Dept. of State : For sale by the Supt. of Docs...\n",
"subjects Aeronautics Commercial Law and legislation Uni...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 302, dtype: object)\n",
"(303, bibnum 2953046\n",
"title Aunt Dimity and the wishing well / Nancy Ather...\n",
"author Atherton, Nancy\n",
"isbn 0670026697, 9780670026692\n",
"publicationyear 2014.\n",
"publisher Viking,\n",
"subjects Dimity Aunt Fictitious character Fiction, Shep...\n",
"itemtype acbk\n",
"itemcollection namys\n",
"floatingitem Floating\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 303, dtype: object)\n",
"(304, bibnum 3126051\n",
"title Superstar / Courtney Sheinmel ; illustrated by...\n",
"author Sheinmel, Courtney\n",
"isbn 1585368555, 1585368563, 9781585368556, 9781585...\n",
"publicationyear [2015].\n",
"publisher Sleeping Bear Press,\n",
"subjects Auditions Juvenile fiction, Acting Juvenile fi...\n",
"itemtype jcbk\n",
"itemcollection ncef\n",
"floatingitem NaN\n",
"itemlocation hip\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 304, dtype: object)\n",
"(305, bibnum 3009060\n",
"title Spera. Volume three / written by Josh Tierney ...\n",
"author Tierney, Josh, 1984-\n",
"isbn 1939867010, 9781939867018\n",
"publicationyear 2013.\n",
"publisher Archaia,\n",
"subjects Princesses Comic books strips etc, Imaginary p...\n",
"itemtype acbk\n",
"itemcollection nycomic\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 305, dtype: object)\n",
"(306, bibnum 2704030\n",
"title Garden up! : smart vertical gardening for smal...\n",
"author Morrison, Susan, 1963-\n",
"isbn 1591864925, 9781591864929\n",
"publicationyear c2011.\n",
"publisher Cool Springs Press,\n",
"subjects Vertical gardening\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 306, dtype: object)\n",
"(307, bibnum 2485744\n",
"title Resident evil. Extinction [videorecording] / S...\n",
"author NaN\n",
"isbn 1424857368, 9781424857364\n",
"publicationyear 2008.\n",
"publisher Sony Pictures Home Entertainment,\n",
"subjects Extinction Biology Drama, Zombies Drama, Virus...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation cap\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 307, dtype: object)\n",
"(308, bibnum 3181236\n",
"title Jerusalem : a novel / Alan Moore.\n",
"author Moore, Alan, 1953-\n",
"isbn 1631491342, 1631492438, 9781631491344, 9781631...\n",
"publicationyear [2016]\n",
"publisher Liveright Publishing Corporation,\n",
"subjects Space and time Fiction, Slums Fiction, Mortali...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 308, dtype: object)\n",
"(309, bibnum 2418685\n",
"title Vampire knight. Vol. 1 / story & art by Matsur...\n",
"author Hino, Matsuri\n",
"isbn 1421508222, 9781421508221\n",
"publicationyear c2007.\n",
"publisher Viz Media,\n",
"subjects High school students Comic books strips etc, V...\n",
"itemtype acbk\n",
"itemcollection nycomic\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 309, dtype: object)\n",
"(310, bibnum 3204051\n",
"title West of the Jordan : a novel / Laila Halaby.\n",
"author Halaby, Laila\n",
"isbn 0807083593, 1417657731, 9780807083598, 9781417...\n",
"publicationyear ©2003.\n",
"publisher Beacon Press,\n",
"subjects Americans Jordan Fiction, Arab American famili...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation hip\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 310, dtype: object)\n",
"(311, bibnum 579102\n",
"title Dashiell family records / compiled by Benjamin...\n",
"author Dashiell, Benjamin J.\n",
"isbn NaN\n",
"publicationyear [1991?]\n",
"publisher Ye Galleon Press,\n",
"subjects Dashiell family\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 3\n",
"Name: 311, dtype: object)\n",
"(312, bibnum 1630188\n",
"title Networking with the affluent and their advisor...\n",
"author Stanley, Thomas J.\n",
"isbn 1556238916\n",
"publicationyear c1993.\n",
"publisher Business One Irwin,\n",
"subjects Affluent consumers United States, Social netwo...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 312, dtype: object)\n",
"(313, bibnum 3002300\n",
"title The Oxford New Greek Dictionary : Greek-Englis...\n",
"author Watts, Niki\n",
"isbn 0425222438, 9780425222430\n",
"publicationyear 2008.\n",
"publisher Berkley Books,\n",
"subjects Greek language Modern Dictionaries English, En...\n",
"itemtype arbk\n",
"itemcollection caeslr\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 313, dtype: object)\n",
"(314, bibnum 2227937\n",
"title Once upon a starry night : a book of constella...\n",
"author Mitton, Jacqueline\n",
"isbn 0792263324, 1426303912, 9780792263326, 9781426...\n",
"publicationyear c2003.\n",
"publisher National Geographic,\n",
"subjects Constellations Juvenile literature, Astronomy ...\n",
"itemtype jcbk\n",
"itemcollection ncenf\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 314, dtype: object)\n",
"(315, bibnum 2681956\n",
"title The human blend [sound recording] / Alan Dean ...\n",
"author Foster, Alan Dean, 1946-\n",
"isbn 1400118662, 9781400118663\n",
"publicationyear p2010.\n",
"publisher Tantor Media,\n",
"subjects Regeneration Biology Fiction, Thieves Fiction,...\n",
"itemtype accd\n",
"itemcollection cabocd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 315, dtype: object)\n",
"(316, bibnum 3011224\n",
"title Facing the other way : the story of 4-A-D / Ma...\n",
"author Aston, Martin,\n",
"isbn 0007564120, 9780007564125\n",
"publicationyear 2014, c2013.\n",
"publisher The Friday Project,\n",
"subjects 4AD Firm History, Sound recording industry Gre...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 316, dtype: object)\n",
"(317, bibnum 3215770\n",
"title Star trek. Beyond [videorecording] / Paramount...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2016]\n",
"publisher Paramount Home Entertainment,\n",
"subjects Kirk James T 2233 2371 Drama, Spock Mr Drama, ...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation dlr\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 317, dtype: object)\n",
"(318, bibnum 2815177\n",
"title Brain on fire : my month of madness / Susannah...\n",
"author Cahalan, Susannah\n",
"isbn 145162137X, 9781451621372\n",
"publicationyear 2012.\n",
"publisher Free Press,\n",
"subjects Cahalan Susannah Health, Cahalan Susannah Ment...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation uni\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 318, dtype: object)\n",
"(319, bibnum 2939806\n",
"title Valentine's Day / by Trudi Strain Trueit.\n",
"author Trueit, Trudi Strain\n",
"isbn 0531272079, 0531273571, 9780531272077, 9780531...\n",
"publicationyear 2014.\n",
"publisher Children's Press, an imprint of Scholastic Inc.,\n",
"subjects Valentines Day Juvenile literature, Holidays J...\n",
"itemtype jcbk\n",
"itemcollection nchol\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 319, dtype: object)\n",
"(320, bibnum 1816500\n",
"title A journey of the imagination : the art of Jame...\n",
"author Christensen, James, 1942-2017\n",
"isbn 0867130210\n",
"publicationyear c1994.\n",
"publisher Greenwich Workshop,\n",
"subjects Christensen James 1942 Themes motives, Fantasy...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 320, dtype: object)\n",
"(321, bibnum 1982705\n",
"title Through Yup'ik eyes / text by Colin Chisholm.\n",
"author Chisholm, Colin, 1967-\n",
"isbn 0882405330\n",
"publicationyear 2000.\n",
"publisher Alaska Northwest Books,\n",
"subjects Chisholm Colin 1967, Yupik Eskimos Biography, ...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 321, dtype: object)\n",
"(322, bibnum 2240333\n",
"title Maples / Rosemary Barrett ; photographs by Der...\n",
"author Barrett, Rosemary\n",
"isbn 1552978850\n",
"publicationyear 2004.\n",
"publisher Firefly Books,\n",
"subjects Maple, Trees\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 322, dtype: object)\n",
"(323, bibnum 1322820\n",
"title Cujo / Stephen King.\n",
"author King, Stephen, 1947-\n",
"isbn 0816156670\n",
"publicationyear 1993.\n",
"publisher G.K. Hall,\n",
"subjects Castle Rock Me Imaginary place Fiction, Large ...\n",
"itemtype acbk\n",
"itemcollection cs1malf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 323, dtype: object)\n",
"(324, bibnum 2449758\n",
"title The Dead Sea scrolls [sound recording] : the t...\n",
"author Schiffman, Lawrence H.\n",
"isbn 1428156240, 1428156259, 9781428156241, 9781428...\n",
"publicationyear p2007.\n",
"publisher Recorded Books,\n",
"subjects Dead Sea scrolls, Judaism History Post exilic ...\n",
"itemtype accd\n",
"itemcollection cacdnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 324, dtype: object)\n",
"(325, bibnum 2626010\n",
"title A Muppets Christmas [videorecording] : letters...\n",
"author NaN\n",
"isbn 0788896261, 9780788896262\n",
"publicationyear [2009].\n",
"publisher Disney DVD ; Distributed by Buena Vista Pictur...\n",
"subjects Muppets Fictitious characters Juvenile fiction...\n",
"itemtype jcdvd\n",
"itemcollection ncdvd\n",
"floatingitem Floating\n",
"itemlocation nhy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 325, dtype: object)\n",
"(326, bibnum 2328906\n",
"title Hantavirus / Amy Sterling Casil.\n",
"author Casil, Amy Sterling\n",
"isbn 1404202544\n",
"publicationyear 2005.\n",
"publisher Rosen Pub. Group,\n",
"subjects Hantavirus infections Epidemiology Juvenile li...\n",
"itemtype jcbk\n",
"itemcollection ccnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 326, dtype: object)\n",
"(327, bibnum 3230641\n",
"title Jack Reacher. Never go back / Paramount Pictur...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2017]\n",
"publisher Paramount,\n",
"subjects Reacher Jack Fictitious character Drama, Milit...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 327, dtype: object)\n",
"(328, bibnum 2831498\n",
"title The raft / S.A. Bodeen.\n",
"author Bodeen, S. A. (Stephanie A.), 1965-\n",
"isbn 0312650108, 125002739X, 9780312650100, 9781250...\n",
"publicationyear 2012.\n",
"publisher Feiwel and Friends,\n",
"subjects Survival at sea Juvenile fiction, Aircraft acc...\n",
"itemtype acbk\n",
"itemcollection nyfic\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 328, dtype: object)\n",
"(329, bibnum 3246470\n",
"title Gunpowder and tea cakes : my journey with Feli...\n",
"author Ernst, Kathleen, 1959-\n",
"isbn 160958869X, 9781609588694\n",
"publicationyear [2017]\n",
"publisher American Girl,\n",
"subjects Friendship Juvenile fiction, Families Juvenile...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 329, dtype: object)\n",
"(330, bibnum 2702828\n",
"title Winter in Thrush Green / Miss Read ; illustrat...\n",
"author Read, Miss\n",
"isbn 0618884394, 9780618884391\n",
"publicationyear 2008.\n",
"publisher Houghton Mifflin Co.,\n",
"subjects Thrush Green Imaginary place Fiction, Country ...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 330, dtype: object)\n",
"(331, bibnum 212126\n",
"title Prehistory and the Missouri Valley development...\n",
"author Wedel, Waldo R. (Waldo Rudolph), 1908-1996\n",
"isbn NaN\n",
"publicationyear 1948.\n",
"publisher Smithsonian Institution,\n",
"subjects Indians of North America Missouri River Valley...\n",
"itemtype arbk\n",
"itemcollection cs7r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 331, dtype: object)\n",
"(332, bibnum 3273216\n",
"title The girl who wouldn't die / Randall Platt.\n",
"author Platt, Randall.\n",
"isbn 151070809X, 9781510708099\n",
"publicationyear 2017.\n",
"publisher Sky Pony Press,\n",
"subjects Holocaust Jewish 1939 1945 Juvenile fiction, W...\n",
"itemtype acbk\n",
"itemcollection nynew\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 332, dtype: object)\n",
"(333, bibnum 1934916\n",
"title Captain Underpants and the perilous plot of Pr...\n",
"author Pilkey, Dav, 1966-\n",
"isbn 0439049970, 0439049989\n",
"publicationyear 2000.\n",
"publisher Blue Sky Press,\n",
"subjects Captain Underpants Fictitious character Juveni...\n",
"itemtype jcbk\n",
"itemcollection ncef\n",
"floatingitem NaN\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 333, dtype: object)\n",
"(334, bibnum 2274171\n",
"title The rosary girls / Richard Montanari.\n",
"author Montanari, Richard\n",
"isbn 0345470958\n",
"publicationyear c2005.\n",
"publisher Ballantine Books,\n",
"subjects Balzano Jessica Fictitious character Fiction, ...\n",
"itemtype acbk\n",
"itemcollection camys\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 334, dtype: object)\n",
"(335, bibnum 2720046\n",
"title Keep the aspidistra flying / George Orwell.\n",
"author Orwell, George, 1903-1950\n",
"isbn 0156468999, 9780156468992\n",
"publicationyear [2010?], c1956.\n",
"publisher Harcourt,\n",
"subjects Booksellers and bookselling Fiction, Young men...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 335, dtype: object)\n",
"(336, bibnum 2121656\n",
"title Ethics process : testimony of former Senator A...\n",
"author United States. Congress. Joint Committee on th...\n",
"isbn 0160407575\n",
"publicationyear 1993.\n",
"publisher U.S. G.P.O. : For sale by the U.S. G.P.O., Sup...\n",
"subjects United States Congress Ethics, United States C...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 336, dtype: object)\n",
"(337, bibnum 513138\n",
"title The Summit choirbook [music]\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [1984], c1983.\n",
"publisher The Dominican Nuns, Monastery of Our Lady of t...\n",
"subjects Catholic Church United States Hymns, Hymns Eng...\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 337, dtype: object)\n",
"(338, bibnum 3122865\n",
"title Reds against blues! / illustrated by Richard C...\n",
"author NaN\n",
"isbn 1101932848, 1101932856, 9781101932841, 9781101...\n",
"publicationyear [2016]\n",
"publisher Random House,\n",
"subjects Railroad trains Fiction, Soccer Fiction, Sport...\n",
"itemtype jcbk\n",
"itemcollection ncrdr\n",
"floatingitem Floating\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 338, dtype: object)\n",
"(339, bibnum 1920758\n",
"title Furuete nemure, sanshimai : sanshimai tanteida...\n",
"author Akagawa, Jirō, 1948-\n",
"isbn 4061820141\n",
"publicationyear 1998.\n",
"publisher Kōdansha,\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 339, dtype: object)\n",
"(340, bibnum 3042829\n",
"title Reasons she goes to the woods / Deborah Kay Da...\n",
"author Davies, Deborah Kay\n",
"isbn 1780743769, 9781780743769\n",
"publicationyear 2014.\n",
"publisher Oneworld,\n",
"subjects Secrecy Fiction, Children Fiction\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 340, dtype: object)\n",
"(341, bibnum 2608969\n",
"title Avatar : a confidential report on the biologic...\n",
"author Wilhelm, Maria\n",
"isbn 0007342446, 0061896756, 9780007342440, 9780061...\n",
"publicationyear c2009.\n",
"publisher HarperCollins,\n",
"subjects Avatar Motion picture 2009, Science fiction films\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation uni\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 341, dtype: object)\n",
"(342, bibnum 2859031\n",
"title Bone River / Megan Chance.\n",
"author Chance, Megan\n",
"isbn 1612184847, 9781612184845\n",
"publicationyear c2012.\n",
"publisher Amazon Publishing,\n",
"subjects Mummies Fiction, Indians of North America Soci...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 342, dtype: object)\n",
"(343, bibnum 418400\n",
"title Rhododendrons.\n",
"author American Rhododendron Society\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher NaN\n",
"subjects NaN\n",
"itemtype arbk\n",
"itemcollection cs8r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 343, dtype: object)\n",
"(344, bibnum 1680229\n",
"title Black heritage sites : an African American ody...\n",
"author Curtis, Nancy C.\n",
"isbn 0838906435\n",
"publicationyear 1996.\n",
"publisher American Library Association,\n",
"subjects Historic sites United States Directories, Afri...\n",
"itemtype arbk\n",
"itemcollection naaar\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 344, dtype: object)\n",
"(345, bibnum 3168770\n",
"title Explorers of the wild / Cale Atkinson.\n",
"author Atkinson, Cale\n",
"isbn 1484723406, 9781484723401\n",
"publicationyear 2016.\n",
"publisher Disney Hyperion,\n",
"subjects Play Juvenile fiction, Explorers Juvenile fict...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 345, dtype: object)\n",
"(346, bibnum 505436\n",
"title Susan B. Anthony : a biography of a singular f...\n",
"author Barry, Kathleen\n",
"isbn 0814711057\n",
"publicationyear c1988.\n",
"publisher New York University Press,\n",
"subjects Anthony Susan B Susan Brownell 1820 1906, Femi...\n",
"itemtype acbk\n",
"itemcollection cab\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 346, dtype: object)\n",
"(347, bibnum 3165478\n",
"title The sweepstakes of love : stories / Toomas Vin...\n",
"author Vint, Toomas,\n",
"isbn 1564789470, 9781564789471\n",
"publicationyear 2016.\n",
"publisher Dalkey Archive Press,\n",
"subjects Vint Toomas, Authors Estonian Biography, Paint...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 347, dtype: object)\n",
"(348, bibnum 2702344\n",
"title Help, it's broken! : a fix-it bible for the re...\n",
"author Cohen, Arianne\n",
"isbn 1936297477, 9781936297474\n",
"publicationyear 2011.\n",
"publisher Filipacchi Pub.,\n",
"subjects Dwellings Maintenance and repair Amateurs manuals\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 348, dtype: object)\n",
"(349, bibnum 2739258\n",
"title Tyler Perry's Madea's big happy family [videor...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2011]\n",
"publisher Lionsgate,\n",
"subjects Simmons Madea Fictitious character Drama, Afri...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 349, dtype: object)\n",
"(350, bibnum 2774059\n",
"title Amelia's boy survival guide / by Marissa Moss ...\n",
"author Moss, Marissa\n",
"isbn 1442440848, 9781442440845\n",
"publicationyear c2012.\n",
"publisher Simon & Schuster Books for Young Readers,\n",
"subjects Interpersonal relations Juvenile fiction, Midd...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 350, dtype: object)\n",
"(351, bibnum 2151246\n",
"title Mouse tail moon / Joanne Ryder ; illustrated b...\n",
"author Ryder, Joanne\n",
"isbn 0805064044\n",
"publicationyear 2002.\n",
"publisher Henry Holt,\n",
"subjects Mice Juvenile poetry, Childrens poetry America...\n",
"itemtype jcbk\n",
"itemcollection ccnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 351, dtype: object)\n",
"(352, bibnum 2277773\n",
"title Evening in the Palace of Reason : Bach meets F...\n",
"author Gaines, Jim.\n",
"isbn 0007156588\n",
"publicationyear c2005.\n",
"publisher Fourth Estate/HarperCollins,\n",
"subjects Bach Johann Sebastian 1685 1750, Frederick II ...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 352, dtype: object)\n",
"(353, bibnum 452559\n",
"title 2e symphonie pour grand orgue, op.20 [music]\n",
"author Vierne, Louis, 1870-1937\n",
"isbn NaN\n",
"publicationyear c1903.\n",
"publisher J. Hamelle,\n",
"subjects Symphonies Organ\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 353, dtype: object)\n",
"(354, bibnum 2854382\n",
"title Private Berlin [sound recording] / James Patte...\n",
"author Patterson, James, 1947-\n",
"isbn 1611130484, 9781611130485\n",
"publicationyear p2013.\n",
"publisher Hachette Audio,\n",
"subjects Missing persons Fiction, Private security serv...\n",
"itemtype accd\n",
"itemcollection nabocd\n",
"floatingitem Floating\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 354, dtype: object)\n",
"(355, bibnum 116184\n",
"title \"Soul-butter and hog wash\" and other essays on...\n",
"author NaN\n",
"isbn 0842512322\n",
"publicationyear c1978.\n",
"publisher Brigham Young University Press,\n",
"subjects Frontier and pioneer life West U S, West U S H...\n",
"itemtype acbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 355, dtype: object)\n",
"(356, bibnum 1602838\n",
"title The library / Sarah Stewart ; pictures by Davi...\n",
"author Stewart, Sarah, 1939-\n",
"isbn 0374343888\n",
"publicationyear c1995.\n",
"publisher Farrar Straus Giroux,\n",
"subjects Books and reading Juvenile fiction, Stories in...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 356, dtype: object)\n",
"(357, bibnum 476100\n",
"title Annual report on the U.S. Columbia River Power...\n",
"author United States. Bonneville Power Administration\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher U.S. Dept. of the Interior, Bonneville Power A...\n",
"subjects Hydroelectric power plants Oregon Periodicals,...\n",
"itemtype arbk\n",
"itemcollection cs7r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 357, dtype: object)\n",
"(358, bibnum 151098\n",
"title Elizabeth Appleton, a novel.\n",
"author O'Hara, John, 1905-1970\n",
"isbn NaN\n",
"publicationyear [1963]\n",
"publisher Random House\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection cs3fic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 358, dtype: object)\n",
"(359, bibnum 2564459\n",
"title Jesus is sending you this message : stories / ...\n",
"author Grimsley, Jim, 1955-\n",
"isbn 1593501005, 9781593501006\n",
"publicationyear 2008.\n",
"publisher Alyson Books,\n",
"subjects Science fiction American, Short stories\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 359, dtype: object)\n",
"(360, bibnum 2629791\n",
"title Approaching ice : poems / Elizabeth Bradfield.\n",
"author Bradfield, Elizabeth\n",
"isbn 0892553553, 9780892553556\n",
"publicationyear c2010.\n",
"publisher Persea Books,\n",
"subjects Arctic regions Poetry, Polar regions Poetry\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 360, dtype: object)\n",
"(361, bibnum 3084313\n",
"title A new history of life : the radical new discov...\n",
"author Ward, Peter Douglas, 1949-\n",
"isbn 160819907X, 160819910X, 9781608199075, 9781608...\n",
"publicationyear 2015.\n",
"publisher Bloomsbury Press,\n",
"subjects Evolution Biology, Life Origin\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 361, dtype: object)\n",
"(362, bibnum 3166607\n",
"title Shakespeare [videorecording] : the king's man ...\n",
"author NaN\n",
"isbn 1598289616, 9781598289619\n",
"publicationyear [2012]\n",
"publisher Athena,\n",
"subjects Shakespeare William 1564 1616, James I King of...\n",
"itemtype acdvd\n",
"itemcollection nadvdnf\n",
"floatingitem Floating\n",
"itemlocation hip\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 362, dtype: object)\n",
"(363, bibnum 2532915\n",
"title A bargain for Frances / by Russell Hoban ; pic...\n",
"author Hoban, Russell\n",
"isbn 0060223294, 0060223308, 006444001X, 9780060223...\n",
"publicationyear 1992, c1970.\n",
"publisher HarperCollins,\n",
"subjects Badgers Juvenile fiction, Friendship Fiction\n",
"itemtype jcbk\n",
"itemcollection ncrdr\n",
"floatingitem Floating\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 363, dtype: object)\n",
"(364, bibnum 3283435\n",
"title The solace of trees : a novel / Robert Madrygin.\n",
"author Madrygin, Robert,\n",
"isbn 099731690X, 9780997316902\n",
"publicationyear [2017]\n",
"publisher New Europe Books,\n",
"subjects Muslims United States Fiction, Yugoslav War 19...\n",
"itemtype acbk\n",
"itemcollection nanew\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 364, dtype: object)\n",
"(365, bibnum 1662177\n",
"title Atalanta, the fastest runner in the world / wr...\n",
"author Galloway, Priscilla, 1930-\n",
"isbn 155037401X\n",
"publicationyear c1995.\n",
"publisher Annick Press,\n",
"subjects Atalanta Greek mythology Juvenile literature\n",
"itemtype jcbk\n",
"itemcollection ccfft\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 365, dtype: object)\n",
"(366, bibnum 2813883\n",
"title Something rotten [sound recording] : [a Thursd...\n",
"author Fforde, Jasper\n",
"isbn 1402594305, 9781402594304\n",
"publicationyear p2004.\n",
"publisher Recorded Books,\n",
"subjects Characters and characteristics in literature J...\n",
"itemtype accd\n",
"itemcollection nabocd\n",
"floatingitem Floating\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 366, dtype: object)\n",
"(367, bibnum 2583837\n",
"title Guts : combat, hell-raising, cancer, business ...\n",
"author Nylen, Robert\n",
"isbn 1400067766, 9781400067763\n",
"publicationyear c2009.\n",
"publisher Random House,\n",
"subjects Nylen Robert, Journalists United States Biogra...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 367, dtype: object)\n",
"(368, bibnum 2939781\n",
"title The very fairy princess sparkles in the snow /...\n",
"author Andrews, Julie\n",
"isbn 0316219630, 9780316219631\n",
"publicationyear ©2013.\n",
"publisher Little, Brown and Company,\n",
"subjects Concerts Juvenile fiction, Singing Juvenile fi...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 368, dtype: object)\n",
"(369, bibnum 252392\n",
"title Max Ernst; oeuvres de 1919 à 1936.\n",
"author Ernst, Max, 1891-1976\n",
"isbn NaN\n",
"publicationyear c1937.\n",
"publisher Cahiers d'art,\n",
"subjects Surrealism\n",
"itemtype arbk\n",
"itemcollection cs8ro\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 369, dtype: object)\n",
"(370, bibnum 1749238\n",
"title Catalogue of choral music arranged in Biblical...\n",
"author Laster, James, 1934-\n",
"isbn 081083071X\n",
"publicationyear c1996.\n",
"publisher Scarecrow Press,\n",
"subjects Church music Bibliography, Choral music Biblio...\n",
"itemtype arbk\n",
"itemcollection caref8\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 370, dtype: object)\n",
"(371, bibnum 2869771\n",
"title Memphis [sound recording] / Boz Scaggs.\n",
"author Scaggs, Boz, 1944-\n",
"isbn NaN\n",
"publicationyear p2013.\n",
"publisher 429 Records,\n",
"subjects Popular music 2011 2020, Blues Music 2011 2020...\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 371, dtype: object)\n",
"(372, bibnum 3207017\n",
"title Hong bi zi da shen & bai bi zi da shen / Tangl...\n",
"author Li, Bofeng,\n",
"isbn 7541062545, 9787541062544\n",
"publicationyear 2015.\n",
"publisher Sichuan mei shu chu ban she,\n",
"subjects Aunts Juvenile fiction, Vegetable gardening Ju...\n",
"itemtype jcbk\n",
"itemcollection ccln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 372, dtype: object)\n",
"(373, bibnum 2088762\n",
"title The justice / Angela Hunt.\n",
"author Hunt, Angela Elwell, 1957-\n",
"isbn 0849916313\n",
"publicationyear 2002.\n",
"publisher W Pub.,\n",
"subjects Women presidents Fiction, Political fiction, R...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 373, dtype: object)\n",
"(374, bibnum 2792422\n",
"title Meltdown! : the nuclear disaster in Japan and ...\n",
"author Bortz, Fred, 1944-\n",
"isbn 0761386602, 9780761386605\n",
"publicationyear c2012.\n",
"publisher Twenty-First Century Books,\n",
"subjects Nuclear power plants Accidents Japan Fukushima...\n",
"itemtype jcbk\n",
"itemcollection ccnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 374, dtype: object)\n",
"(375, bibnum 3068666\n",
"title The sprouted kitchen bowl + spoon : simple and...\n",
"author Forte, Sara\n",
"isbn 1607746557, 9781607746553\n",
"publicationyear [2015]\n",
"publisher Ten Speed Press,\n",
"subjects Cooking Natural foods, Salads, Cookbooks\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation wal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 375, dtype: object)\n",
"(376, bibnum 3215622\n",
"title Microsoft Outlook 2016 step by step / Joan Lam...\n",
"author Lambert, Joan\n",
"isbn 0735697787, 9780735697782\n",
"publicationyear [2016]\n",
"publisher Microsoft Press,\n",
"subjects Microsoft Outlook, Business Computer programs,...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 376, dtype: object)\n",
"(377, bibnum 2532690\n",
"title Encounters at the end of the world [videorecor...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2008]\n",
"publisher Distributed by Image Entertainment,\n",
"subjects Antarctica Description and travel, Human being...\n",
"itemtype acdvd\n",
"itemcollection nadvdnf\n",
"floatingitem Floating\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 377, dtype: object)\n",
"(378, bibnum 2772459\n",
"title The Alan Bennett collection [videorecording] /...\n",
"author NaN\n",
"isbn 0780661613, 9780780661615\n",
"publicationyear [2011]\n",
"publisher 2 Entertain ; Distributed in USA and Canada by...\n",
"subjects Social classes Drama, Older people Social aspe...\n",
"itemtype acdvd\n",
"itemcollection cadvd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 378, dtype: object)\n",
"(379, bibnum 2995224\n",
"title Horn chamber music [sound recording] / Paul Hi...\n",
"author Hindemith, Paul, 1895-1963\n",
"isbn NaN\n",
"publicationyear p1993.\n",
"publisher CPO,\n",
"subjects Wind quintets Bassoon clarinet flute horn oboe...\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 379, dtype: object)\n",
"(380, bibnum 3184293\n",
"title Truyện cổ tích Việt Nam đặc sắc. 2 / lời, Than...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear 2011.\n",
"publisher Nhà Xuất Bản Dân Trí,\n",
"subjects Folklore Vietnam, Tales Vietnam, Folklore, Vie...\n",
"itemtype jcbk\n",
"itemcollection ccln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 380, dtype: object)\n",
"(381, bibnum 700400\n",
"title The fool of the world and the flying ship; a R...\n",
"author Ransome, Arthur, 1884-1967\n",
"isbn 0374324425\n",
"publicationyear [1968]\n",
"publisher Farrar, Straus and Giroux,\n",
"subjects Folklore Soviet Union Juvenile literature\n",
"itemtype jcbk\n",
"itemcollection ncaward\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 381, dtype: object)\n",
"(382, bibnum 629241\n",
"title Continuation of the national emergency with re...\n",
"author United States. President (1989-1993 : Bush)\n",
"isbn NaN\n",
"publicationyear 1991.\n",
"publisher U.S. G.P.O.,\n",
"subjects War and emergency legislation United States, U...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 382, dtype: object)\n",
"(383, bibnum 2574344\n",
"title The life a house built [videorecording] : the ...\n",
"author NaN\n",
"isbn 0793670314, 9780793670314\n",
"publicationyear c2009.\n",
"publisher Time Inc., : Distributed by PBS Home Video,\n",
"subjects Carter Jimmy 1924, Carter Rosalynn, Habitat fo...\n",
"itemtype acdvd\n",
"itemcollection nadvdnf\n",
"floatingitem Floating\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 383, dtype: object)\n",
"(384, bibnum 3127884\n",
"title Match [videorecording] / IFC Films presents a ...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2015]\n",
"publisher IFC Films,\n",
"subjects Ballet dancers Drama, Dance teachers Drama, Co...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation idc\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 384, dtype: object)\n",
"(385, bibnum 3081460\n",
"title Something sure smells around here : limericks ...\n",
"author Cleary, Brian P., 1959-\n",
"isbn 1467720445, 1467760358, 9781467720441, 9781467...\n",
"publicationyear [2015]\n",
"publisher Millbrook Press,\n",
"subjects Limericks Juvenile, Poetry Authorship, Limeric...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 385, dtype: object)\n",
"(386, bibnum 3222374\n",
"title The black key / Amy Ewing.\n",
"author Ewing, Amy\n",
"isbn 0062235842, 9780062235848\n",
"publicationyear [2016]\n",
"publisher HarperTeen, an imprint of HarperCollins Publis...\n",
"subjects Courts and courtiers Juvenile fiction, Slavery...\n",
"itemtype acbk\n",
"itemcollection nyfic\n",
"floatingitem NaN\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 386, dtype: object)\n",
"(387, bibnum 476857\n",
"title Machines at work / Byron Barton.\n",
"author Barton, Byron\n",
"isbn 0690045735, 0694001902\n",
"publicationyear c1987.\n",
"publisher Crowell,\n",
"subjects Building Juvenile literature, Construction equ...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 387, dtype: object)\n",
"(388, bibnum 256757\n",
"title Dictionnaire des biographies. Publié sous la d...\n",
"author Grimal, Pierre, 1912-1996\n",
"isbn NaN\n",
"publicationyear 1958.\n",
"publisher Presses universitaires de France,\n",
"subjects Biography Dictionaries\n",
"itemtype arbk\n",
"itemcollection cs1lewr\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 388, dtype: object)\n",
"(389, bibnum 3156538\n",
"title Blaze and the monster machines. Rev up and roa...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2016]\n",
"publisher Viacom International,\n",
"subjects Trucks Juvenile drama, Automobile racing Juven...\n",
"itemtype jcdvd\n",
"itemcollection ncdvd\n",
"floatingitem Floating\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 389, dtype: object)\n",
"(390, bibnum 3181608\n",
"title Mountains / Quinn M. Arnold.\n",
"author Arnold, Quinn M.,\n",
"isbn 160818742X, 9781608187423\n",
"publicationyear [2016]\n",
"publisher Creative Education,\n",
"subjects Mountains Juvenile literature, Mountain ecolog...\n",
"itemtype jcbk\n",
"itemcollection ncenf\n",
"floatingitem NaN\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 390, dtype: object)\n",
"(391, bibnum 435924\n",
"title NaN\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher NaN\n",
"subjects NaN\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 391, dtype: object)\n",
"(392, bibnum 3141535\n",
"title A new home for Truman / by Catherine Hapka ; i...\n",
"author Hapka, Cathy\n",
"isbn 079443312X, 0794433510, 9780794433123, 9780794...\n",
"publicationyear 2015.\n",
"publisher Studio Fun International, Inc.,\n",
"subjects Dogs Juvenile fiction, Pets Juvenile fiction, ...\n",
"itemtype jcbk\n",
"itemcollection ncef\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 392, dtype: object)\n",
"(393, bibnum 2400394\n",
"title Ask and it is given. Part II [sound recording]...\n",
"author Abraham (Spirit)\n",
"isbn 1401907350, 9781401907358\n",
"publicationyear c2005.\n",
"publisher Hay House,\n",
"subjects Spirit writings\n",
"itemtype accd\n",
"itemcollection nacdnf\n",
"floatingitem Floating\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 393, dtype: object)\n",
"(394, bibnum 3023581\n",
"title Big little lies / Liane Moriarty.\n",
"author Moriarty, Liane\n",
"isbn 0399167064, 9780399167065\n",
"publicationyear 2014.\n",
"publisher G.P. Putnam's Sons,\n",
"subjects Parents Fiction, Murder Fiction, Schools Ficti...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation fre\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 394, dtype: object)\n",
"(395, bibnum 2021880\n",
"title Global engagement : how American companies rea...\n",
"author Quinlan, Joseph P.\n",
"isbn 0809226707\n",
"publicationyear c2000.\n",
"publisher Contemporary Books,\n",
"subjects Investments American, Competition International\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 395, dtype: object)\n",
"(396, bibnum 3246805\n",
"title I decided / Big Sean.\n",
"author Big Sean, 1988-\n",
"isbn NaN\n",
"publicationyear [2017]\n",
"publisher Getting Out Our Dreams, Inc.,\n",
"subjects Rap Music, Popular music 2011 2020, Rap Music,...\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 396, dtype: object)\n",
"(397, bibnum 2881155\n",
"title Oz : the complete collection. Volume 3 / L. Fr...\n",
"author Baum, L. Frank (Lyman Frank), 1856-1919\n",
"isbn 1442485493, 1442488921, 9781442485495, 9781442...\n",
"publicationyear 2013.\n",
"publisher Aladdin,\n",
"subjects Oz Imaginary place Juvenile fiction, Scarecrow...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 397, dtype: object)\n",
"(398, bibnum 2983423\n",
"title Curious George. A home for honeybees / adaptat...\n",
"author Tibbott, Julie\n",
"isbn 0544237773, 0544237919, 9780544237773, 9780544...\n",
"publicationyear [2014]\n",
"publisher Houghton Mifflin Harcourt,\n",
"subjects Monkeys Juvenile fiction, Beehives Juvenile fi...\n",
"itemtype jcbk\n",
"itemcollection ncrdr\n",
"floatingitem Floating\n",
"itemlocation nhy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 398, dtype: object)\n",
"(399, bibnum 3105201\n",
"title The Helio Sequence [sound recording].\n",
"author Helio Sequence (Musical group)\n",
"isbn NaN\n",
"publicationyear [2015]\n",
"publisher Sub Pop,\n",
"subjects Rock music 2011 2020\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 399, dtype: object)\n",
"(400, bibnum 2734230\n",
"title Little Bunny and the magic Christmas tree / Da...\n",
"author Martin, David, 1944-\n",
"isbn 0763636932, 9780763636937\n",
"publicationyear 2011.\n",
"publisher Candlewick Press,\n",
"subjects Size Fiction, Christmas tree ornaments Juvenil...\n",
"itemtype jcbk\n",
"itemcollection nchol\n",
"floatingitem NaN\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 400, dtype: object)\n",
"(401, bibnum 1388811\n",
"title John Henry / by Julius Lester ; pictures by Je...\n",
"author Lester, Julius\n",
"isbn 0803716060, 0803716079\n",
"publicationyear 1994.\n",
"publisher Dial Books ,\n",
"subjects John Henry Legendary character Legends Juvenil...\n",
"itemtype jcbk\n",
"itemcollection ncfft\n",
"floatingitem NaN\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 401, dtype: object)\n",
"(402, bibnum 531807\n",
"title Love you forever / written by Robert Munsch ; ...\n",
"author Munsch, Robert N., 1945-\n",
"isbn 0920668372, 9780920668368\n",
"publicationyear 1986.\n",
"publisher Firefly Books,\n",
"subjects NaN\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 402, dtype: object)\n",
"(403, bibnum 3154586\n",
"title Shakespeare : the world as stage / Bill Bryson.\n",
"author Bryson, Bill\n",
"isbn 0061673692, 9780061673696\n",
"publicationyear 2008, ©2007.\n",
"publisher Atlas Books/Harper Perennial,\n",
"subjects Shakespeare William 1564 1616, Dramatists Engl...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation cap\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 403, dtype: object)\n",
"(404, bibnum 3102181\n",
"title 101 great science experiments / Neil Ardley.\n",
"author Ardley, Neil\n",
"isbn 1465428267, 1480673862, 9781465428264, 9781480...\n",
"publicationyear 2014.\n",
"publisher Dorling Kindersley Limited,\n",
"subjects Science Experiments Juvenile literature, Scien...\n",
"itemtype jcbk\n",
"itemcollection ccnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 404, dtype: object)\n",
"(405, bibnum 1311056\n",
"title 1990 census of population and housing. Populat...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [1993]\n",
"publisher U.S. Dept. of Commerce, Economics and Statisti...\n",
"subjects Housing California Modesto Metropolitan Area S...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 405, dtype: object)\n",
"(406, bibnum 1967734\n",
"title Death and the afterlife / Brian Innes.\n",
"author Innes, Brian, 1928-2014.\n",
"isbn 0312227051\n",
"publicationyear 1999.\n",
"publisher St. Martin's Press,\n",
"subjects Future life, Death\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 406, dtype: object)\n",
"(407, bibnum 3274855\n",
"title Adventures in Starry Kitchen : 88 Asian-inspir...\n",
"author Tran, Nguyen,\n",
"isbn 0062438549, 9780062438546\n",
"publicationyear [2017]\n",
"publisher HarperOne, an imprint of HarperCollinsPublishers,\n",
"subjects Cooking Asian, Cookbooks\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 407, dtype: object)\n",
"(408, bibnum 2239200\n",
"title The Sherlock Holmes feature film collection [v...\n",
"author NaN\n",
"isbn 0788604600, 9780788604607\n",
"publicationyear [2003]\n",
"publisher MPI Home Video,\n",
"subjects Holmes Sherlock Drama, Watson John H Fictitiou...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 408, dtype: object)\n",
"(409, bibnum 1847748\n",
"title Federal support for education.\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher U.S. Dept. of Education, Office of Educational...\n",
"subjects Federal aid to education United States Statist...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 409, dtype: object)\n",
"(410, bibnum 2844518\n",
"title Lunch in Provence / Rachael McKenna & Jean-And...\n",
"author McKenna, Rachael\n",
"isbn 208020128X, 9782080201287\n",
"publicationyear c2012.\n",
"publisher Flammarion,\n",
"subjects Food France Provence, Provence France Pictoria...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 410, dtype: object)\n",
"(411, bibnum 2603312\n",
"title Basilisk / Graham Masterton.\n",
"author Masterton, Graham\n",
"isbn 0727867679, 9780727867674\n",
"publicationyear c2009.\n",
"publisher Severn House,\n",
"subjects Stem cells Research Fiction, Animals Mythical ...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 411, dtype: object)\n",
"(412, bibnum 2502957\n",
"title Laugh for God's sake : where Jewish humor and ...\n",
"author Schachter, Stanley J.\n",
"isbn 1602800189, 9781602800182\n",
"publicationyear c2008.\n",
"publisher KTAV Pub. House, Inc.,\n",
"subjects Jewish wit and humor History and criticism, Je...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 412, dtype: object)\n",
"(413, bibnum 448088\n",
"title WSM Grand Ole Opry presents stars of the 70's ...\n",
"author NaN\n",
"isbn 0064683123\n",
"publicationyear [198-?].\n",
"publisher Chappell & Co.,\n",
"subjects Country music 1971 1980, Popular music United ...\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 413, dtype: object)\n",
"(414, bibnum 2870278\n",
"title Habits of the house [text (large print)] / Fay...\n",
"author Weldon, Fay\n",
"isbn 1410455939, 9781410455932\n",
"publicationyear 2013.\n",
"publisher Thorndike Press,\n",
"subjects Upper class England History 19th century Ficti...\n",
"itemtype acbk\n",
"itemcollection calpfic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 414, dtype: object)\n",
"(415, bibnum 1323079\n",
"title al-Dawlah fī al-Islām / Khālid Muḥammad Khālid.\n",
"author Khālid, Khālid Muḥammad\n",
"isbn NaN\n",
"publicationyear 1981.\n",
"publisher Dār Thābit,\n",
"subjects Islam and state\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 415, dtype: object)\n",
"(416, bibnum 2670389\n",
"title What I eat : around the world in 80 diets / ph...\n",
"author Menzel, Peter, 1948-\n",
"isbn 0984074406, 9780984074402\n",
"publicationyear c2010.\n",
"publisher Material World Books ; Ten Speed Press,\n",
"subjects Food Pictorial works, Diet Pictorial works, Fo...\n",
"itemtype acbk\n",
"itemcollection caover\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 416, dtype: object)\n",
"(417, bibnum 3233280\n",
"title The black book / James Patterson and David Ellis.\n",
"author Patterson, James, 1947-\n",
"isbn 0316273880, 9780316273886\n",
"publicationyear 2017.\n",
"publisher Little, Brown and Company,\n",
"subjects Police Family relationships Fiction, Murder In...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 4\n",
"Name: 417, dtype: object)\n",
"(418, bibnum 2284523\n",
"title Lakbay-diwa. aklat 10 : panananlig, pag-asa, p...\n",
"author Abangan, Bella Angeles, 1931-\n",
"isbn 9719028092\n",
"publicationyear 1986.\n",
"publisher Lakbay-Diwa Enterprises,\n",
"subjects Christian life\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 418, dtype: object)\n",
"(419, bibnum 2670331\n",
"title The shape of inner space : string theory and t...\n",
"author Yau, Shing-Tung, 1949-\n",
"isbn 0465020232, 9780465020232\n",
"publicationyear c2010.\n",
"publisher Basic Books,\n",
"subjects Hyperspace, String models, Fourth dimension\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 419, dtype: object)\n",
"(420, bibnum 3268926\n",
"title The last pilgrim : the Tommy Bergmann series /...\n",
"author Sveen, Gard, 1969-\n",
"isbn 1503937119, 9781503937116\n",
"publicationyear 2016.\n",
"publisher AmazonCrossing,\n",
"subjects Police Norway Oslo Fiction, Murder Investigati...\n",
"itemtype acbk\n",
"itemcollection namys\n",
"floatingitem Floating\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 420, dtype: object)\n",
"(421, bibnum 3225424\n",
"title A child's introduction to the night sky : the ...\n",
"author Driscoll, Michael, 1973-\n",
"isbn 157912366X, 9781579123666\n",
"publicationyear c2004.\n",
"publisher Black Dog & Leventhal Publishers : Distributed...\n",
"subjects Astronomy Juvenile literature, Stars Juvenile ...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 421, dtype: object)\n",
"(422, bibnum 294175\n",
"title The appreciation of ancient and medieval scien...\n",
"author Sarton, George, 1884-1956\n",
"isbn NaN\n",
"publicationyear 1955.\n",
"publisher University of Pennsylvania Press,\n",
"subjects Science Early works to 1800 Bibliography, Scie...\n",
"itemtype arbk\n",
"itemcollection cs7r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 422, dtype: object)\n",
"(423, bibnum 1909289\n",
"title India / Mike Hirst.\n",
"author Hirst, Mike\n",
"isbn 0817255516\n",
"publicationyear c1999.\n",
"publisher Raintree Steck-Vaughn,\n",
"subjects Cooking Indic Juvenile literature, Food habits...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 423, dtype: object)\n",
"(424, bibnum 730909\n",
"title Land Rover 1, 2, 1948-61 autobook : workshop m...\n",
"author Ball, Kenneth\n",
"isbn 0851471285\n",
"publicationyear 1970.\n",
"publisher Autopress,\n",
"subjects Land Rover truck Maintenance and repair Handbo...\n",
"itemtype arbk\n",
"itemcollection cs7r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 424, dtype: object)\n",
"(425, bibnum 2634944\n",
"title Harriet and the Promised Land [videorecording]...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear 1998.\n",
"publisher Spoken Arts,\n",
"subjects Tubman Harriet 1820 1913 Juvenile films, Slave...\n",
"itemtype jcdvd\n",
"itemcollection ncdvdnf\n",
"floatingitem Floating\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 425, dtype: object)\n",
"(426, bibnum 3225420\n",
"title Alex Morgan / Laura K. Murray.\n",
"author Murray, Laura K., 1989-\n",
"isbn 1608186679, 9781608186679\n",
"publicationyear [2016]\n",
"publisher Creative Education,\n",
"subjects Morgan Alex Alexandra Patricia 1989 Juvenile l...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 426, dtype: object)\n",
"(427, bibnum 3164370\n",
"title Cartel land [videorecording] / The Orchard and...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2016]\n",
"publisher Paramount Pictures,\n",
"subjects Organized crime Mexico, Vigilantes Mexico, Vig...\n",
"itemtype acdvd\n",
"itemcollection nadvdnf\n",
"floatingitem Floating\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 427, dtype: object)\n",
"(428, bibnum 3199566\n",
"title Street photography now / Sophie Howarth and St...\n",
"author Howarth, Sophie\n",
"isbn 0500289077, 9780500289075\n",
"publicationyear 2011.\n",
"publisher Thames & Hudson,\n",
"subjects Street photography, Photographers interview, P...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 428, dtype: object)\n",
"(429, bibnum 3238160\n",
"title Hunger : a memoir of (my) body / Roxane Gay.\n",
"author Gay, Roxane\n",
"isbn 0062362593, 0062569716, 9780062362599, 9780062...\n",
"publicationyear [2017]\n",
"publisher Harper, an imprint of HarperCollinsPublishers,\n",
"subjects Gay Roxane, Body image, Eating disorders, Auto...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 429, dtype: object)\n",
"(430, bibnum 2874099\n",
"title Space / James Harrison.\n",
"author Harrison, James\n",
"isbn 0753468832, 0753468840, 9780753468838, 9780753...\n",
"publicationyear c2012.\n",
"publisher Kingfisher : Distributed in the U.S. and Canad...\n",
"subjects Astronomy Juvenile literature, Solar system Ju...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation mon\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 430, dtype: object)\n",
"(431, bibnum 3044767\n",
"title No Seattle [sound recording] : forgotten sound...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear p2014.\n",
"publisher Soul Jazz Records,\n",
"subjects Grunge music, Rock music 1981 1990, Rock music...\n",
"itemtype accd\n",
"itemcollection naover\n",
"floatingitem NaN\n",
"itemlocation uni\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 431, dtype: object)\n",
"(432, bibnum 1292560\n",
"title Can the Social Security Administration accommo...\n",
"author United States. Congress. House. Select Committ...\n",
"isbn 0160394325\n",
"publicationyear 1993.\n",
"publisher U.S. G.P.O. : For sale by the U.S. G.P.O., Sup...\n",
"subjects United States Social Security Administration, ...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 432, dtype: object)\n",
"(433, bibnum 3243209\n",
"title Spook Street / Mick Herron.\n",
"author Herron, Mick\n",
"isbn 161695647X, 9781616956479\n",
"publicationyear [2017]\n",
"publisher Soho Crime,\n",
"subjects Great Britain MI5 Officials and employees Fict...\n",
"itemtype acbk\n",
"itemcollection nanew\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 433, dtype: object)\n",
"(434, bibnum 3208123\n",
"title Dog on board : the true story of Eclipse, the ...\n",
"author Patent, Dorothy Hinshaw\n",
"isbn 0399549889, 0399549897, 9780399549885, 9780399...\n",
"publicationyear [2016]\n",
"publisher Crown Books for Young Readers,\n",
"subjects Mixed breed dogs Washington State Seattle Juve...\n",
"itemtype jcbk\n",
"itemcollection ncenf\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 434, dtype: object)\n",
"(435, bibnum 3203911\n",
"title Labyrinths : Emma Jung, her marriage to Carl, ...\n",
"author Clay, Catrine\n",
"isbn 0062245120, 9780062245120, 9780062245151\n",
"publicationyear 2016.\n",
"publisher Harper,\n",
"subjects Jung Emma, Jung C G Carl Gustav 1875 1961 Marr...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 435, dtype: object)\n",
"(436, bibnum 2984025\n",
"title Impact : great leadership changes everything /...\n",
"author Irwin, Tim, 1949-\n",
"isbn 1939529042, 9781939529046\n",
"publicationyear [2014]\n",
"publisher BenBella Books,\n",
"subjects Leadership\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 436, dtype: object)\n",
"(437, bibnum 450215\n",
"title Apollon Musagète, [music] ballet in two scenes...\n",
"author Stravinsky, Igor, 1882-1971\n",
"isbn NaN\n",
"publicationyear [c1949]\n",
"publisher Boosey & Hawkes,\n",
"subjects Ballets Scores\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 437, dtype: object)\n",
"(438, bibnum 2843342\n",
"title Hanukkah sweets and treats / by Ronne Randall.\n",
"author Randall, Ronne\n",
"isbn 1448880831, 1448881307, 9781448880836, 9781448...\n",
"publicationyear 2013.\n",
"publisher Windmill Books,\n",
"subjects Hanukkah cooking Juvenile literature, Cookbooks\n",
"itemtype jcbk\n",
"itemcollection nchol\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 438, dtype: object)\n",
"(439, bibnum 3186289\n",
"title Aferim! [videorecording] / Big World Pictures ...\n",
"author NaN\n",
"isbn 1567305180, 9781567305180\n",
"publicationyear [2016]\n",
"publisher Big World Pictures,\n",
"subjects Fugitive slaves Romania Wallachia 19th century...\n",
"itemtype acdvd\n",
"itemcollection nalndvd\n",
"floatingitem Floating\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 439, dtype: object)\n",
"(440, bibnum 2675494\n",
"title Lester Higata's 20th century / Barbara Hamby.\n",
"author Hamby, Barbara, 1952-\n",
"isbn 1587299186, 9781587299186\n",
"publicationyear c2010.\n",
"publisher University of Iowa Press,\n",
"subjects Japanese American men Fiction, Japanese Americ...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 440, dtype: object)\n",
"(441, bibnum 3056034\n",
"title Sonic the hedgehog. [2], The chase / Ian Flynn...\n",
"author Flynn, Ian, 1982-\n",
"isbn 1627389288, 9781627389280\n",
"publicationyear 2014.\n",
"publisher Archie Comic Publications, Inc.,\n",
"subjects Cartoons and comics, Sonic the Hedgehog Fictit...\n",
"itemtype jcbk\n",
"itemcollection nccomic\n",
"floatingitem NaN\n",
"itemlocation mgm\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 441, dtype: object)\n",
"(442, bibnum 2675525\n",
"title Swift justice / Laura DiSilverio.\n",
"author DiSilverio, Laura A. H.\n",
"isbn 0312641508, 9780312641504\n",
"publicationyear 2010.\n",
"publisher Minotaur Books,\n",
"subjects Women private investigators Fiction, Abandoned...\n",
"itemtype acbk\n",
"itemcollection namys\n",
"floatingitem Floating\n",
"itemlocation fre\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 442, dtype: object)\n",
"(443, bibnum 2485366\n",
"title North & South Korea / Louise I. Gerdes, book e...\n",
"author NaN\n",
"isbn 0737737654, 0737737662, 9780737737653, 9780737...\n",
"publicationyear c2007.\n",
"publisher Greenhaven Press,\n",
"subjects United States Foreign relations Korea North Ju...\n",
"itemtype acbk\n",
"itemcollection nynf\n",
"floatingitem NaN\n",
"itemlocation uni\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 443, dtype: object)\n",
"(444, bibnum 2358862\n",
"title Peace one day / written by Jeremy Gilley ; ill...\n",
"author Gilley, Jeremy\n",
"isbn 0399243305, 9780399243301\n",
"publicationyear 2005.\n",
"publisher G.P. Putnam's Sons,\n",
"subjects International Day of Peace Juvenile literature...\n",
"itemtype jcbk\n",
"itemcollection ccnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 444, dtype: object)\n",
"(445, bibnum 3162871\n",
"title Adore life / Savages.\n",
"author Savages (Musical group : London, England)\n",
"isbn NaN\n",
"publicationyear [2015]\n",
"publisher Matador,\n",
"subjects Rock music 2011 2020, Rock music\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation cap\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 445, dtype: object)\n",
"(446, bibnum 2608108\n",
"title Pattern sourcebook : Japanese style : 250 patt...\n",
"author Nakamura, Shigeki\n",
"isbn 1592534988, 9781592534982\n",
"publicationyear c2008.\n",
"publisher Rockport Publishers,\n",
"subjects Decoration and ornament Japan, Repetitive patt...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 446, dtype: object)\n",
"(447, bibnum 3078922\n",
"title Living the farm sanctuary life : the ultimate ...\n",
"author Baur, Gene\n",
"isbn 1623364892, 9781623364892\n",
"publicationyear ©2015.\n",
"publisher Rodale,\n",
"subjects Natural foods Health aspects, Veganism Health ...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 447, dtype: object)\n",
"(448, bibnum 2518579\n",
"title Opportunities in forensic science careers / Bl...\n",
"author Camenson, Blythe\n",
"isbn 0071545336, 9780071545334\n",
"publicationyear c2009.\n",
"publisher McGraw-Hill,\n",
"subjects Forensic sciences Vocational guidance, Crimina...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 448, dtype: object)\n",
"(449, bibnum 2583256\n",
"title Broke down [sound recording] / Slaid Cleaves.\n",
"author Cleaves, Slaid\n",
"isbn NaN\n",
"publicationyear p2000.\n",
"publisher Philo Records,\n",
"subjects Popular music 1991 2000, Country music 1991 2000\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 449, dtype: object)\n",
"(450, bibnum 3019396\n",
"title Hurricane & tornado / written by Jack Challoner.\n",
"author Challoner, Jack\n",
"isbn 1465420533, 1465420959, 9781465420534, 9781465...\n",
"publicationyear 2014.\n",
"publisher DK Publishing,\n",
"subjects Hurricanes Juvenile literature, Tornadoes Juve...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation mgm\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 450, dtype: object)\n",
"(451, bibnum 2896036\n",
"title Burdens of the dead / Mercedes Lackey, Eric Fl...\n",
"author Lackey, Mercedes\n",
"isbn 1451638744, 9781451638745\n",
"publicationyear 2013.\n",
"publisher Baen,\n",
"subjects Occult fiction, Alternative histories Fiction\n",
"itemtype acbk\n",
"itemcollection casf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 451, dtype: object)\n",
"(452, bibnum 2377076\n",
"title Uzbekistan in pictures / Bella Waters.\n",
"author Waters, Bella\n",
"isbn 0822526735, 9780822526735\n",
"publicationyear 2007.\n",
"publisher Twenty-First Century Books,\n",
"subjects Uzbekistan Juvenile literature\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation cap\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 452, dtype: object)\n",
"(453, bibnum 466207\n",
"title NaN\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher NaN\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 453, dtype: object)\n",
"(454, bibnum 2639657\n",
"title Every man in this village is a liar : an educa...\n",
"author Stack, Megan K.\n",
"isbn 0385527160, 9780385527163\n",
"publicationyear c2010.\n",
"publisher Doubleday,\n",
"subjects Middle East History Military 21st century, War...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation uni\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 454, dtype: object)\n",
"(455, bibnum 3164802\n",
"title Foraging wild edible plants of North America :...\n",
"author Nyerges, Christopher\n",
"isbn 1493005189, 9781493005185\n",
"publicationyear c2016.\n",
"publisher FalconGuides,\n",
"subjects Cooking Wild foods, Natural foods, Wild plants...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 455, dtype: object)\n",
"(456, bibnum 2856426\n",
"title Krampus : the Yule Lord / Brom.\n",
"author Brom, 1965-\n",
"isbn 006209565X, 9780062095657\n",
"publicationyear c2012.\n",
"publisher Harper Voyager,\n",
"subjects Good and evil Fiction, Vendetta Fiction, Boone...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 456, dtype: object)\n",
"(457, bibnum 2668498\n",
"title The great ceviche book / Douglas Rodriguez wit...\n",
"author Rodriguez, Douglas\n",
"isbn 158008107X, 9781580081078\n",
"publicationyear c2010.\n",
"publisher Ten Speed Press,\n",
"subjects Cooking Seafood, Cold dishes Cooking, Cooking ...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 457, dtype: object)\n",
"(458, bibnum 2856350\n",
"title The Dust Bowl : an illustrated history / by Da...\n",
"author Duncan, Dayton\n",
"isbn 1452107947, 9781452107943\n",
"publicationyear 2012.\n",
"publisher Chronicle Books,\n",
"subjects Dust Bowl Era 1931 1939, Depressions 1929 Grea...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation dlr\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 458, dtype: object)\n",
"(459, bibnum 2412208\n",
"title Suzuki SV650 and SV650S : service & repair man...\n",
"author Coombs, Matthew\n",
"isbn 1844252612, 9781844252619\n",
"publicationyear c2006.\n",
"publisher Haynes Pub. ; Haynes North America,\n",
"subjects Suzuki motorcycle Maintenance and repair Handb...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 459, dtype: object)\n",
"(460, bibnum 2143650\n",
"title Thanksgiving on Thursday / by Mary Pope Osborn...\n",
"author Osborne, Mary Pope\n",
"isbn 0375806156, 0375906150\n",
"publicationyear c2002.\n",
"publisher Random House,\n",
"subjects Thanksgiving Day Juvenile fiction, Pilgrims Ne...\n",
"itemtype jcbk\n",
"itemcollection ncef\n",
"floatingitem NaN\n",
"itemlocation dlr\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 460, dtype: object)\n",
"(461, bibnum 2673180\n",
"title Operation dark heart : spycraft and special op...\n",
"author Shaffer, Anthony, 1962-\n",
"isbn 031260369X, 0312612176, 9780312603694, 9780312...\n",
"publicationyear 2010.\n",
"publisher Thomas Dunne Books,\n",
"subjects Shaffer Anthony 1962, Afghan War 2001 Personal...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation cap\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 461, dtype: object)\n",
"(462, bibnum 2985823\n",
"title Institutional time : a critique of studio art ...\n",
"author Chicago, Judy, 1939-\n",
"isbn 1580933661, 9781580933667\n",
"publicationyear [2014]\n",
"publisher The Monacelli Press,\n",
"subjects Art Study and teaching Higher United States, C...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 462, dtype: object)\n",
"(463, bibnum 2498762\n",
"title Holy smokes [text (large print)] / Katie MacAl...\n",
"author MacAlister, Katie\n",
"isbn 1410406407, 9781410406408\n",
"publicationyear 2008.\n",
"publisher Thorndike Press,\n",
"subjects Grey Aisling Fictitious character Fiction, Dra...\n",
"itemtype acbk\n",
"itemcollection cs1malf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 463, dtype: object)\n",
"(464, bibnum 3247034\n",
"title Who was Princess Diana? / by Ellen Labrecque ;...\n",
"author Labrecque, Ellen\n",
"isbn 0448488558, 045153364X, 9780448488554, 9780451...\n",
"publicationyear [2017]\n",
"publisher Grosset & Dunlap, an imprint of Penguin Random...\n",
"subjects Diana Princess of Wales 1961 1997 Juvenile lit...\n",
"itemtype jcbk\n",
"itemcollection ncnew\n",
"floatingitem NaN\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 464, dtype: object)\n",
"(465, bibnum 3024812\n",
"title Fun with fabric : sew, cut, print and stick wi...\n",
"author Foster, Jane\n",
"isbn 190844990X, 9781908449900\n",
"publicationyear NaN\n",
"publisher NaN\n",
"subjects Textile fabrics, Textile crafts\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 465, dtype: object)\n",
"(466, bibnum 2833147\n",
"title A bear and his boy / by Sean Bryan ; illustrat...\n",
"author Bryan, Sean\n",
"isbn 1611450276, 9781611450279\n",
"publicationyear 2011.\n",
"publisher Arcade Pub.,\n",
"subjects Stories in rhyme Juvenile fiction, Bears Juven...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 466, dtype: object)\n",
"(467, bibnum 2942780\n",
"title How dogs love us : a neuroscientist and his ad...\n",
"author Berns, Gregory\n",
"isbn 0544114515, 9780544114517\n",
"publicationyear 2013.\n",
"publisher Houghton Mifflin Harcourt,\n",
"subjects Dogs Psychology Research, Dogs Nervous system ...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 467, dtype: object)\n",
"(468, bibnum 439301\n",
"title NaN\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher NaN\n",
"subjects NaN\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 468, dtype: object)\n",
"(469, bibnum 2404689\n",
"title Explorer / [written and edited by Marie Greenw...\n",
"author Greenwood, Marie, 1961-\n",
"isbn 0756619785, 0756619793, 9780756619787, 9780756...\n",
"publicationyear c2006.\n",
"publisher DK Pub.,\n",
"subjects Explorers Juvenile literature, Discoveries in ...\n",
"itemtype jcbk\n",
"itemcollection ccnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 469, dtype: object)\n",
"(470, bibnum 3225448\n",
"title Kamov i Kaminka / Sasha Okunʹ.\n",
"author Okun, Sasha, 1949-\n",
"isbn 5386087193, 9785386087197\n",
"publicationyear 2015.\n",
"publisher Ripol klassik,\n",
"subjects Artists Russia Federation Saint Petersburg Fic...\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 470, dtype: object)\n",
"(471, bibnum 2618329\n",
"title Dispatches [sound recording] / by Michael Herr.\n",
"author Herr, Michael, 1940-2016\n",
"isbn 1433268159, 9781433268151\n",
"publicationyear p2009.\n",
"publisher Blackstone Audio,\n",
"subjects Vietnam War 1961 1975 Personal narratives Amer...\n",
"itemtype accd\n",
"itemcollection cacdnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 471, dtype: object)\n",
"(472, bibnum 2481541\n",
"title El libro peligroso para los chicos / Conn Iggu...\n",
"author Iggulden, Conn\n",
"isbn 0061562866, 9780061562860\n",
"publicationyear c2007.\n",
"publisher Rayo,\n",
"subjects Handbooks vade mecums etc Juvenile literature,...\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 472, dtype: object)\n",
"(473, bibnum 2336633\n",
"title Mindset : the new psychology of success / Caro...\n",
"author Dweck, Carol S., 1946-\n",
"isbn 9781400062751\n",
"publicationyear c2006.\n",
"publisher Random House,\n",
"subjects Belief and doubt, Success Psychological aspects\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation dlr\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 473, dtype: object)\n",
"(474, bibnum 251556\n",
"title Chelkash and other stories; tr. from the Russian.\n",
"author Gorky, Maksim, 1868-1936\n",
"isbn NaN\n",
"publicationyear 1927.\n",
"publisher Knopf,\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection cs3fic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 474, dtype: object)\n",
"(475, bibnum 2738956\n",
"title Have a new teenager by Friday : from mouthy an...\n",
"author Leman, Kevin\n",
"isbn 0800720210, 0800721101, 9780800720216, 9780800...\n",
"publicationyear c2011.\n",
"publisher Revell,\n",
"subjects Parent and teenager, Parenting, Parenting Reli...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 475, dtype: object)\n",
"(476, bibnum 3280166\n",
"title The Circle / STX Films ; EuropaCorp ; Image Na...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2017]\n",
"publisher Lionsgate,\n",
"subjects Social media Drama, High technology industries...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 476, dtype: object)\n",
"(477, bibnum 2568066\n",
"title The butterfly ball and the grasshopper's feast...\n",
"author Aldridge, Alan\n",
"isbn 0763644226, 9780763644222\n",
"publicationyear 2009.\n",
"publisher Templar Books,\n",
"subjects Insects Juvenile poetry, Animals Juvenile poet...\n",
"itemtype jcbk\n",
"itemcollection ccnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 477, dtype: object)\n",
"(478, bibnum 3213833\n",
"title Những câu chuyện giáng sinh vui nhộn dành cho ...\n",
"author Punter, Russell.\n",
"isbn 6041080764, 9786041080768\n",
"publicationyear 2016.\n",
"publisher Nhà xuất bản Trẻ,\n",
"subjects Christmas stories, Short stories, Santa Claus ...\n",
"itemtype jcbk\n",
"itemcollection ncln\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 478, dtype: object)\n",
"(479, bibnum 3086685\n",
"title Minnow / James E. McTeer II.\n",
"author McTeer, James E., II, 1983-\n",
"isbn 1938235118, 9781938235115\n",
"publicationyear [2015]\n",
"publisher Hub City Press,\n",
"subjects Fathers and sons Fiction, Witchcraft South Car...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 479, dtype: object)\n",
"(480, bibnum 2503777\n",
"title Yuck! / Mick Manning, Brita Granström.\n",
"author Manning, Mick\n",
"isbn 1845070887, 1845074238, 9781845070885, 9781845...\n",
"publicationyear 2005.\n",
"publisher Frances Lincoln Children's Books,\n",
"subjects Animals Infancy Juvenile fiction, Edible insec...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 480, dtype: object)\n",
"(481, bibnum 2208383\n",
"title Pocahontas / Joseph Bruchac.\n",
"author Bruchac, Joseph, 1942-\n",
"isbn 0152167374\n",
"publicationyear c2003.\n",
"publisher Silver Whistle,\n",
"subjects Pocahontas 1617 Juvenile literature, Powhatan ...\n",
"itemtype acbk\n",
"itemcollection cyb\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 481, dtype: object)\n",
"(482, bibnum 502000\n",
"title Dzelarhons : myths of the northwest coast / An...\n",
"author Cameron, Anne\n",
"isbn 0920080898\n",
"publicationyear 1986.\n",
"publisher Harbour,\n",
"subjects Indian mythology Northwest Pacific, Fantasy fi...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 482, dtype: object)\n",
"(483, bibnum 3136999\n",
"title Friendship games / by Perdita Finn.\n",
"author Finn, Perdita\n",
"isbn 0316410802, 9780316410809\n",
"publicationyear 2015.\n",
"publisher Little, Brown and Company,\n",
"subjects Ponies Juvenile fiction, Contests Juvenile fic...\n",
"itemtype jcbk\n",
"itemcollection ccser\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 483, dtype: object)\n",
"(484, bibnum 2060661\n",
"title Early learning : birth to age five / Governor'...\n",
"author Washington (State). Governor's Commission on E...\n",
"isbn NaN\n",
"publicationyear [2000]\n",
"publisher The Commission,\n",
"subjects Education Preschool Washington State, Child de...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 484, dtype: object)\n",
"(485, bibnum 2385001\n",
"title Wolfgang Amadeus Mozart : a biography / Piero ...\n",
"author Melograni, Piero.\n",
"isbn 0226519562, 9780226519562\n",
"publicationyear 2007.\n",
"publisher University of Chicago Press,\n",
"subjects Mozart Wolfgang Amadeus 1756 1791, Composers A...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 485, dtype: object)\n",
"(486, bibnum 2947343\n",
"title Little Frog's tadpole trouble / by Tatyana Fee...\n",
"author Feeney, Tatyana\n",
"isbn 0385753721, 038575373X, 9780385753722, 9780385...\n",
"publicationyear 2014.\n",
"publisher Alfred A. Knopf,\n",
"subjects Babies Fiction, Brothers and sisters Fiction, ...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 486, dtype: object)\n",
"(487, bibnum 2834122\n",
"title Burnin' [sound recording] / Bob Marley & the W...\n",
"author Marley, Bob\n",
"isbn NaN\n",
"publicationyear p2001.\n",
"publisher Tuff Gong/Island,\n",
"subjects Reggae music\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 487, dtype: object)\n",
"(488, bibnum 3164370\n",
"title Cartel land [videorecording] / The Orchard and...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2016]\n",
"publisher Paramount Pictures,\n",
"subjects Organized crime Mexico, Vigilantes Mexico, Vig...\n",
"itemtype acdvd\n",
"itemcollection nadvdnf\n",
"floatingitem Floating\n",
"itemlocation cap\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 3\n",
"Name: 488, dtype: object)\n",
"(489, bibnum 2901601\n",
"title Someone / Alice McDermott.\n",
"author McDermott, Alice\n",
"isbn 0374281092, 9780374281090\n",
"publicationyear 2013.\n",
"publisher Farrar, Straus and Giroux,\n",
"subjects Irish American women Fiction, Brooklyn New Yor...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation mon\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 489, dtype: object)\n",
"(490, bibnum 1727511\n",
"title The turn to the native : studies in criticism ...\n",
"author Krupat, Arnold\n",
"isbn 0803227353\n",
"publicationyear c1996.\n",
"publisher University of Nebraska Press,\n",
"subjects Vizenor Gerald Robert 1934 Criticism and inter...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 490, dtype: object)\n",
"(491, bibnum 3142973\n",
"title Dukes are forever / Anna Harrington.\n",
"author Harrington, Anna.\n",
"isbn 145553403X, 9781455534036\n",
"publicationyear 2015.\n",
"publisher Forever,\n",
"subjects Guardian and ward Fiction, Love stories, Histo...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation fre\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 491, dtype: object)\n",
"(492, bibnum 2947459\n",
"title Carnage. Minimum Carnage / [various writers an...\n",
"author NaN\n",
"isbn 0785167269, 9780785167266\n",
"publicationyear c2013.\n",
"publisher Marvel Enterprises,\n",
"subjects Superheroes Comic books strips etc, Supervilla...\n",
"itemtype acbk\n",
"itemcollection nycomic\n",
"floatingitem NaN\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 492, dtype: object)\n",
"(493, bibnum 2494468\n",
"title Garfield worldwide / by Jim Davis.\n",
"author Davis, Jim, 1945 July 28-\n",
"isbn 0345917545, 9780345917546\n",
"publicationyear 2007.\n",
"publisher Ballantine Books,\n",
"subjects Comic books strips etc, Garfield Fictitious ch...\n",
"itemtype jcbk\n",
"itemcollection nccomic\n",
"floatingitem NaN\n",
"itemlocation spa\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 493, dtype: object)\n",
"(494, bibnum 3027924\n",
"title Blue horses : poems / Mary Oliver.\n",
"author Oliver, Mary, 1935-\n",
"isbn 1594204799, 9781594204791\n",
"publicationyear 2014.\n",
"publisher The Penguin Press,\n",
"subjects American poetry 21st century, Poetry\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 494, dtype: object)\n",
"(495, bibnum 250829\n",
"title The bijou biography of the world: a reference ...\n",
"author Gordon, W. J. (William John)\n",
"isbn NaN\n",
"publicationyear [1881]\n",
"publisher F. Warne & Co.\n",
"subjects Biography Dictionaries\n",
"itemtype arbk\n",
"itemcollection cs9r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 495, dtype: object)\n",
"(496, bibnum 3144505\n",
"title Lab girl / Hope Jahren.\n",
"author Jahren, Hope.\n",
"isbn 1101874937, 9781101874936\n",
"publicationyear 2016.\n",
"publisher Alfred A. Knopf,\n",
"subjects Jahren Hope, Biologists United States Biograph...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 496, dtype: object)\n",
"(497, bibnum 2743260\n",
"title Lie to me. The complete third and final season...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear c2011.\n",
"publisher 20th Century Fox Home Entertainment,\n",
"subjects Deception Drama, Truthfulness and falsehood Dr...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation mgm\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 497, dtype: object)\n",
"(498, bibnum 3277568\n",
"title Sir! No sir! / a Displaced Films production in...\n",
"author NaN\n",
"isbn 0767091930, 9780767091930\n",
"publicationyear c2006.\n",
"publisher Distributed in the U.S. by New Video,\n",
"subjects Smith Billy Dean 1948, Vietnam Veterans Agains...\n",
"itemtype acdvd\n",
"itemcollection nadvdnf\n",
"floatingitem Floating\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 498, dtype: object)\n",
"(499, bibnum 3165870\n",
"title Eco living Japan : sustainable ideas for livin...\n",
"author MacDonald, Deanna\n",
"isbn 4805312831, 9784805312834\n",
"publicationyear [2015]\n",
"publisher Tuttle Publishing, an imprint of Periplus Edit...\n",
"subjects Sustainable architecture Japan 21st century, S...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 499, dtype: object)\n",
"(500, bibnum 3166862\n",
"title Night of the ninth dragon / by Mary Pope Osbor...\n",
"author Osborne, Mary Pope\n",
"isbn 0553510894, 0553510908, 9780553510898, 9780553...\n",
"publicationyear [2016]\n",
"publisher Random House,\n",
"subjects Time travel Juvenile fiction, Magic Juvenile f...\n",
"itemtype jcbk\n",
"itemcollection ncef\n",
"floatingitem NaN\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 500, dtype: object)\n",
"(501, bibnum 1823748\n",
"title A historical guide to the U.S. government / ed...\n",
"author NaN\n",
"isbn 0195102304\n",
"publicationyear 1998.\n",
"publisher Oxford University Press,\n",
"subjects Administrative agencies United States Encyclop...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 501, dtype: object)\n",
"(502, bibnum 2640931\n",
"title Push button / Aliki.\n",
"author Aliki\n",
"isbn 0061673080, 0061673099, 9780061673085, 9780061...\n",
"publicationyear 2010.\n",
"publisher Greenwillow Books,\n",
"subjects Play Fiction\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation spa\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 502, dtype: object)\n",
"(503, bibnum 3243958\n",
"title Brighter than the sun / Maya Banks.\n",
"author Banks, Maya\n",
"isbn 0425277003, 9780425277003\n",
"publicationyear 2017.\n",
"publisher Jove Publications,\n",
"subjects Intelligence service Fiction, Man woman relati...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 503, dtype: object)\n",
"(504, bibnum 2940505\n",
"title 3chordfold [sound recording] / Terrace Martin.\n",
"author Martin, Terrace.\n",
"isbn NaN\n",
"publicationyear [2013]\n",
"publisher Empire,\n",
"subjects Rap Music, Popular music 2011 2020\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 504, dtype: object)\n",
"(505, bibnum 3113672\n",
"title Being peace / Thich Nhat Hanh ; introduction b...\n",
"author Nhất Hạnh, Thích\n",
"isbn 188837540X, 9781888375404\n",
"publicationyear ©2005.\n",
"publisher Parallax Press,\n",
"subjects Religious life Buddhism, Buddhism Doctrines\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 505, dtype: object)\n",
"(506, bibnum 3125002\n",
"title Disrupt yourself : putting the power of disrup...\n",
"author Johnson, Whitney (Whitney W.)\n",
"isbn 1629560529, 9781629560526\n",
"publicationyear [2015]\n",
"publisher Bibliomotion, Inc.,\n",
"subjects Success in business, Disruptive technologies, ...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 506, dtype: object)\n",
"(507, bibnum 2638404\n",
"title Gumption! / by Elise Broach ; with pictures by...\n",
"author Broach, Elise\n",
"isbn 1416916288, 9781416916284\n",
"publicationyear 2010.\n",
"publisher Atheneum Books for Young Readers,\n",
"subjects Perseverance Ethics Fiction, Adventure stories...\n",
"itemtype jcbk\n",
"itemcollection ccpic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 507, dtype: object)\n",
"(508, bibnum 1714825\n",
"title Current housing reports. H-151, American housi...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear 1996.\n",
"publisher U.S. Dept. of Commerce, Bureau of the Census :\n",
"subjects Housing United States Statistics Periodicals\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 508, dtype: object)\n",
"(509, bibnum 2696877\n",
"title Play basketball like a pro : key skills and ti...\n",
"author LeBoutillier, Nate\n",
"isbn 1429648260, 142965645X, 9781429648264, 9781429...\n",
"publicationyear 2011.\n",
"publisher Capstone Press,\n",
"subjects Basketball Juvenile literature, Basketball Tra...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 509, dtype: object)\n",
"(510, bibnum 1396705\n",
"title Brotherman : the odyssey of black men in Ameri...\n",
"author NaN\n",
"isbn 0345376706\n",
"publicationyear 1995.\n",
"publisher One World,\n",
"subjects American literature African American authors, ...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 510, dtype: object)\n",
"(511, bibnum 2193051\n",
"title A fashionable history of dresses & skirts / [a...\n",
"author Reynolds, Helen, 1956-\n",
"isbn 1410900312\n",
"publicationyear c2003.\n",
"publisher Raintree,\n",
"subjects Dresses Juvenile literature, Skirts Juvenile l...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 511, dtype: object)\n",
"(512, bibnum 3295811\n",
"title Harley Quinn's crazy creeper caper / by Louise...\n",
"author Simonson, Louise\n",
"isbn 1496553470, 149655356X, 9781496553478, 9781496...\n",
"publicationyear 2017.\n",
"publisher Stone Arch Books, a Capstone imprint,\n",
"subjects Harley Quinn Fictitious character Juvenile fic...\n",
"itemtype jcbk\n",
"itemcollection ncef\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 512, dtype: object)\n",
"(513, bibnum 2101609\n",
"title Making elegant custom tables / Doug stowe\n",
"author Stowe, Doug\n",
"isbn 1558705651\n",
"publicationyear c2001.\n",
"publisher Popular Woodworking Books,\n",
"subjects Tables Design and construction, Woodwork\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 513, dtype: object)\n",
"(514, bibnum 3263841\n",
"title The cook, the thief, his wife & her lover / Un...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2017]\n",
"publisher [Allarts],\n",
"subjects Man woman relationships Drama, Adultery Drama,...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation wal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 514, dtype: object)\n",
"(515, bibnum 3274570\n",
"title Gregor and the curse of the warmbloods / Suzan...\n",
"author Collins, Suzanne\n",
"isbn 0439656249, 9780439656245\n",
"publicationyear [2013]\n",
"publisher Scholastic Inc.,\n",
"subjects Brothers and sisters Juvenile fiction, Plague ...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 515, dtype: object)\n",
"(516, bibnum 2930144\n",
"title The Saturdays : a Melendy quartet book / writt...\n",
"author Enright, Elizabeth, 1909-1968\n",
"isbn 0312375980, 0329686658, 9780312375980, 9780329...\n",
"publicationyear 2008.\n",
"publisher Square Fish,\n",
"subjects Brothers and sisters Fiction, New York N Y Fic...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 516, dtype: object)\n",
"(517, bibnum 3267661\n",
"title Lessons in leadership / Steve Adubato, Ph. D.\n",
"author Adubato, Steve\n",
"isbn 0813580552, 9780813580555\n",
"publicationyear [2016]\n",
"publisher Rutgers University Press,\n",
"subjects Leadership\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation uni\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 517, dtype: object)\n",
"(518, bibnum 2974022\n",
"title Only the valiant [videorecording] / Warner Bro...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2013]\n",
"publisher Olive Films,\n",
"subjects Frontier and pioneer life New Mexico Drama, In...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 518, dtype: object)\n",
"(519, bibnum 2369374\n",
"title An island grows / by Lola M. Schaefer ; illust...\n",
"author Schaefer, Lola M., 1950-\n",
"isbn 0066239303, 9780066239309\n",
"publicationyear 2006.\n",
"publisher Greenwillow,\n",
"subjects Islands Juvenile literature\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 519, dtype: object)\n",
"(520, bibnum 2739533\n",
"title The rescue / by Nicholas Edwards.\n",
"author Edwards, Nicholas, 1961-\n",
"isbn 0312367686, 9780312367688\n",
"publicationyear 2010, c2009.\n",
"publisher Square Fish,\n",
"subjects Human animal communication Juvenile fiction, A...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 520, dtype: object)\n",
"(521, bibnum 2994958\n",
"title Dogs : Facts at your fingertips.\n",
"author NaN\n",
"isbn 1465420142, 9781465420145\n",
"publicationyear 2014.\n",
"publisher Dk Publishing,\n",
"subjects Dogs Juvenile literature, Dogs\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation spa\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 521, dtype: object)\n",
"(522, bibnum 1722112\n",
"title Amazons, bluestockings and crones : a feminist...\n",
"author Kramarae, Cheris\n",
"isbn 0044408633\n",
"publicationyear 1992.\n",
"publisher Pandora,\n",
"subjects Feminism Dictionaries\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 522, dtype: object)\n",
"(523, bibnum 3209845\n",
"title Fail safe [videorecording] / CBS ; Maysville P...\n",
"author NaN\n",
"isbn 0790752360, 9780790752365\n",
"publicationyear [2007]\n",
"publisher Distributed by Warner Home Video,\n",
"subjects Nuclear warfare Drama, Nuclear weapons Drama, ...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 523, dtype: object)\n",
"(524, bibnum 2482528\n",
"title Continental drift / Russell Banks.\n",
"author Banks, Russell, 1940-\n",
"isbn 0060854944, 9780060854942\n",
"publicationyear 2007.\n",
"publisher HarperPerennial,\n",
"subjects Haitian Americans Fiction, Drug traffic Florid...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 524, dtype: object)\n",
"(525, bibnum 2455864\n",
"title Olivia helps with Christmas / by Ian Falconer.\n",
"author Falconer, Ian, 1959-\n",
"isbn 1416907866, 9781416907862\n",
"publicationyear 2007.\n",
"publisher Atheneum Books for Young Readers,\n",
"subjects Christmas Fiction, Pigs Fiction\n",
"itemtype jcbk\n",
"itemcollection nchol\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 525, dtype: object)\n",
"(526, bibnum 2316776\n",
"title Charlie and the chocolate factory [videorecord...\n",
"author NaN\n",
"isbn 1419802305\n",
"publicationyear c2005.\n",
"publisher Warner Home Video,\n",
"subjects Wonka Willy Fictitious character Juvenile dram...\n",
"itemtype jcdvd\n",
"itemcollection ncdvd\n",
"floatingitem Floating\n",
"itemlocation dlr\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 526, dtype: object)\n",
"(527, bibnum 2505960\n",
"title Havana before Castro : when Cuba was a tropica...\n",
"author Moruzzi, Peter\n",
"isbn 1423603672, 9781423603672\n",
"publicationyear c2008.\n",
"publisher Gibbs Smith,\n",
"subjects Havana Cuba Description and travel, Havana Cub...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 527, dtype: object)\n",
"(528, bibnum 2507881\n",
"title Please don't tease Tootsie / Margaret Chamberl...\n",
"author Chamberlain, Margaret\n",
"isbn 0525479821, 9780525479826\n",
"publicationyear c2008.\n",
"publisher Dutton Children's Books,\n",
"subjects Pets Fiction, Kindness Juvenile fiction, Anima...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 528, dtype: object)\n",
"(529, bibnum 2900820\n",
"title Accused / Lisa Scottoline.\n",
"author Scottoline, Lisa\n",
"isbn 1250027659, 9781250027658\n",
"publicationyear 2013.\n",
"publisher St. Martin's Press,\n",
"subjects Rosato Associates Imaginary organization Ficti...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 529, dtype: object)\n",
"(530, bibnum 2706617\n",
"title Monday is one day / by Arthur A. Levine ; illu...\n",
"author Levine, Arthur A., 1962-\n",
"isbn 0439789249, 9780439789240\n",
"publicationyear 2011.\n",
"publisher Scholastic Press,\n",
"subjects Stories in rhyme Juvenile fiction, Days Juveni...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation mon\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 530, dtype: object)\n",
"(531, bibnum 3217244\n",
"title The shadow rising / Robert Jordan.\n",
"author Jordan, Robert, 1948-2007\n",
"isbn 0312854307, 0312854315, 9780312854300, 9780312...\n",
"publicationyear 1992.\n",
"publisher Tor Fantasy,\n",
"subjects Rand alThor Fictitious character Fiction, Good...\n",
"itemtype acbk\n",
"itemcollection nasf\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 531, dtype: object)\n",
"(532, bibnum 2374094\n",
"title Refuge denied : the St. Louis passengers and t...\n",
"author Ogilvie, Sarah A.\n",
"isbn 0299219801\n",
"publicationyear c2006.\n",
"publisher University of Wisconsin Press,\n",
"subjects Jews Germany Biography, St Louis Ship, Holocau...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 532, dtype: object)\n",
"(533, bibnum 2737699\n",
"title A perfect Halloween / written and illustrated ...\n",
"author Yee, Wong Herbert\n",
"isbn 0547551525, 9780547551524\n",
"publicationyear 2011.\n",
"publisher Houghton Mifflin Books for Children,\n",
"subjects Best friends Fiction, Friendship Fiction, Hall...\n",
"itemtype jcbk\n",
"itemcollection nchol\n",
"floatingitem NaN\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 533, dtype: object)\n",
"(534, bibnum 2290648\n",
"title Lady in the briars [text (large print)] / Caro...\n",
"author Dunn, Carola\n",
"isbn 0786275219\n",
"publicationyear 2005, c1990.\n",
"publisher Thorndike Press,\n",
"subjects Saint Petersburg Russia Fiction, Espionage Bri...\n",
"itemtype acbk\n",
"itemcollection cs1malf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 534, dtype: object)\n",
"(535, bibnum 2740832\n",
"title Track and field / Jenny MacKay.\n",
"author MacKay, Jenny, 1978-\n",
"isbn 1420507079, 9781420507072\n",
"publicationyear 2012.\n",
"publisher Lucent Books,\n",
"subjects Track and field Juvenile literature, Sports sc...\n",
"itemtype acbk\n",
"itemcollection nynf\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 535, dtype: object)\n",
"(536, bibnum 381878\n",
"title Westward bound : some stories about descendant...\n",
"author Diehl, Orval W.\n",
"isbn NaN\n",
"publicationyear [1983]\n",
"publisher Orval W. Diehl,\n",
"subjects Wagner family, Diehl family\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 536, dtype: object)\n",
"(537, bibnum 2875927\n",
"title El tango de la guardia vieja / Arturo Pérez-Re...\n",
"author Pérez-Reverte, Arturo\n",
"isbn 6071121655, 9786071121653\n",
"publicationyear c2012.\n",
"publisher Alfaguara,\n",
"subjects Man woman relationships Fiction, Tango Dance F...\n",
"itemtype acbk\n",
"itemcollection naln\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 537, dtype: object)\n",
"(538, bibnum 3065179\n",
"title Punto lejano [sound recording] / Gustavo Alons...\n",
"author López, Gustavo Alonso.\n",
"isbn NaN\n",
"publicationyear p2014.\n",
"publisher Gustavo Alonso López,\n",
"subjects Jazz 2011 2020, Guitar music Jazz, Flamenco mu...\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 538, dtype: object)\n",
"(539, bibnum 2716944\n",
"title Deadpool. [Vol. 6], I rule, you suck / writer,...\n",
"author Way, Daniel, 1974-\n",
"isbn 0785151354, 0785151362, 9780785151357, 9780785...\n",
"publicationyear 2011.\n",
"publisher Marvel Worldwide, Inc.,\n",
"subjects Deadpool Fictitious character Comic books stri...\n",
"itemtype acbk\n",
"itemcollection cycomic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 539, dtype: object)\n",
"(540, bibnum 226239\n",
"title Designs on prehistoric Hopi pottery, by Jesse ...\n",
"author Fewkes, Jesse Walter, 1850-1930\n",
"isbn NaN\n",
"publicationyear 1919.\n",
"publisher U.S. Bureau of American Ethnology,\n",
"subjects Hopi pottery\n",
"itemtype arbk\n",
"itemcollection cs7r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 540, dtype: object)\n",
"(541, bibnum 2184320\n",
"title Bombing incidents.\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [1995?]-\n",
"publisher U.S. Dept. of Justice, Federal Bureau of Inves...\n",
"subjects Bombings United States Statistics Periodicals,...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 541, dtype: object)\n",
"(542, bibnum 541787\n",
"title Freedom and the end of reason : on the moral f...\n",
"author Velkley, Richard L.\n",
"isbn 0226852601\n",
"publicationyear c1989.\n",
"publisher University of Chicago Press,\n",
"subjects Kant Immanuel 1724 1804, Rousseau Jean Jacques...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 542, dtype: object)\n",
"(543, bibnum 2704545\n",
"title El ABC del inglés : método básico para aprende...\n",
"author Ituarte, Jesse\n",
"isbn 9706661506, 9789706661500\n",
"publicationyear 2004.\n",
"publisher Groupo Editorial Tomo,\n",
"subjects English language Study and teaching Spanish sp...\n",
"itemtype acbk\n",
"itemcollection naln\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 543, dtype: object)\n",
"(544, bibnum 3255431\n",
"title Mini hacks for Pokémon go players : secret tip...\n",
"author Ryan, Justin,\n",
"isbn 151072155X, 1510722491, 9781510721555, 9781510...\n",
"publicationyear [2016]\n",
"publisher Sky Pony Press,\n",
"subjects Pok‚mon Game Handbooks manuals etc Juvenile li...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 544, dtype: object)\n",
"(545, bibnum 3126058\n",
"title Triple pet trouble / Megan McDonald ; illustra...\n",
"author McDonald, Megan\n",
"isbn 0763674435, 9780763674434\n",
"publicationyear 2015.\n",
"publisher Candlewick Press,\n",
"subjects Moody Judy Fictitious character Juvenile ficti...\n",
"itemtype jcbk\n",
"itemcollection ncrdr\n",
"floatingitem Floating\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 545, dtype: object)\n",
"(546, bibnum 3211205\n",
"title Let my people go surfing : the education of a ...\n",
"author Chouinard, Yvon, 1938-\n",
"isbn 0143109677, 9780143109679\n",
"publicationyear [2016]\n",
"publisher Penguin Books,\n",
"subjects Chouinard Yvon 1938, Businesspeople United Sta...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 546, dtype: object)\n",
"(547, bibnum 2206028\n",
"title The road to Delphi : the life and afterlife of...\n",
"author Wood, Michael, 1936-\n",
"isbn 0374526109\n",
"publicationyear 2003.\n",
"publisher Farrar, Straus, and Giroux,\n",
"subjects Oracles in literature, Divination in literatur...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 547, dtype: object)\n",
"(548, bibnum 977730\n",
"title Datsun owners workshop manual : models covered...\n",
"author Haynes, John H. (John Harold)\n",
"isbn 0856964301\n",
"publicationyear c1979.\n",
"publisher Haynes Pub. Group ; distributed in the USA by ...\n",
"subjects Datsun automobile Maintenance and repair Handb...\n",
"itemtype arbk\n",
"itemcollection cs7r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 548, dtype: object)\n",
"(549, bibnum 3184178\n",
"title By the numbers / Jen Lancaster.\n",
"author Lancaster, Jen, 1967-\n",
"isbn 0451471113, 9780451471116\n",
"publicationyear [2016]\n",
"publisher New American Library,\n",
"subjects Sandwich generation Fiction, Divorced women Fi...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 549, dtype: object)\n",
"(550, bibnum 258494\n",
"title Three comedies.\n",
"author Goldoni, Carlo, 1707-1793\n",
"isbn NaN\n",
"publicationyear 1961.\n",
"publisher Oxford University Press,\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 550, dtype: object)\n",
"(551, bibnum 2559411\n",
"title Purr and pounce : bringing home a cat / by Ama...\n",
"author Tourville, Amanda Doering, 1980-\n",
"isbn 1404848568, 9781404848566\n",
"publicationyear c2009.\n",
"publisher Picture Window Books,\n",
"subjects Cats Juvenile literature\n",
"itemtype jcbk\n",
"itemcollection ccnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 551, dtype: object)\n",
"(552, bibnum 2846111\n",
"title Driving the Saudis : a chauffeur's tale of the...\n",
"author Larson, Jayne A.\n",
"isbn 1451640013, 9781451640014\n",
"publicationyear 2012.\n",
"publisher Free Press,\n",
"subjects Al Saud House of Anecdotes, Saudi Arabians Cal...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation hip\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 552, dtype: object)\n",
"(553, bibnum 3160626\n",
"title Because of Miss Bridgerton / Julia Quinn.\n",
"author Quinn, Julia, 1970-\n",
"isbn 0062388142, 0062465821, 9780062388148, 9780062...\n",
"publicationyear [2016]\n",
"publisher Avon Books, an imprint of HarperCollinsPublish...\n",
"subjects Regency England Fiction, England 19th century ...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation mgm\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 553, dtype: object)\n",
"(554, bibnum 3014868\n",
"title The homemade flour cookbook : the home cook's ...\n",
"author Alderson, Erin (Food writer)\n",
"isbn 1592336000, 9781592336005\n",
"publicationyear 2014.\n",
"publisher Fair Winds Press,\n",
"subjects Flour, Flour as food, Grain Milling\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 554, dtype: object)\n",
"(555, bibnum 3023025\n",
"title Manhunt / Kate Messner.\n",
"author Messner, Kate\n",
"isbn 0545419778, 0545419786, 9780545419772, 9780545...\n",
"publicationyear 2014.\n",
"publisher Scholastic Press,\n",
"subjects Art thefts Juvenile fiction, Hostages Juvenile...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation mon\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 555, dtype: object)\n",
"(556, bibnum 3195564\n",
"title The wizard's wand : the ninth adventure in the...\n",
"author Stilton, Geronimo\n",
"isbn 1338032917, 9781338032918\n",
"publicationyear 2016.\n",
"publisher Scholastic Inc.,\n",
"subjects Stilton Geronimo Juvenile fiction, Mice Juveni...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 556, dtype: object)\n",
"(557, bibnum 3046449\n",
"title The worst witch / Jill Murphy.\n",
"author Murphy, Jill, 1949-\n",
"isbn 0763672602, 9780763672607\n",
"publicationyear 2014.\n",
"publisher Candlewick Press,\n",
"subjects Hubble Mildred Fictitious character Juvenile f...\n",
"itemtype jcbk\n",
"itemcollection ccfic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 557, dtype: object)\n",
"(558, bibnum 3271800\n",
"title Inside V / Paula Priamos.\n",
"author Priamos, Paula\n",
"isbn 1945572078, 9781945572074\n",
"publicationyear [2017].\n",
"publisher Rare Bird Books,\n",
"subjects Marriage Fiction, Thrillers Fiction\n",
"itemtype acbk\n",
"itemcollection nanew\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 558, dtype: object)\n",
"(559, bibnum 2985315\n",
"title Big bad wolves [videorecording] / Magnet ; UCM...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2014]\n",
"publisher Magnolia Home Entertainment,\n",
"subjects Serial murderers Drama, Vigilantes Drama, Feat...\n",
"itemtype acdvd\n",
"itemcollection nalndvd\n",
"floatingitem Floating\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 559, dtype: object)\n",
"(560, bibnum 3130033\n",
"title The last laugh [videorecording] / Transit Film...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear 2008.\n",
"publisher Kino,\n",
"subjects Hotel doorkeepers Drama, Older men Drama, Sile...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 560, dtype: object)\n",
"(561, bibnum 2758203\n",
"title Hawaii Five-O. The 12th & final season [videor...\n",
"author NaN\n",
"isbn 1415758670\n",
"publicationyear [2012]\n",
"publisher CBS Paramount Network Television,\n",
"subjects Honolulu Hawaii Police Department Drama, Polic...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 561, dtype: object)\n",
"(562, bibnum 1333829\n",
"title Mudhakkirāt al-Imām Muḥammad ʻAbduh.\n",
"author Muḥammad ʻAbduh, 1849-1905\n",
"isbn NaN\n",
"publicationyear [1963?]\n",
"publisher NaN\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 562, dtype: object)\n",
"(563, bibnum 716596\n",
"title A catalogue of British Columbia sea-bird colon...\n",
"author Drent, R. H.\n",
"isbn NaN\n",
"publicationyear 1961.\n",
"publisher NaN\n",
"subjects Birds British Columbia\n",
"itemtype arbk\n",
"itemcollection cs7r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 563, dtype: object)\n",
"(564, bibnum 2463968\n",
"title Happiness is an inside job : practicing for a ...\n",
"author Boorstein, Sylvia\n",
"isbn 0345481313, 9780345481313\n",
"publicationyear c2007.\n",
"publisher Ballantine Books,\n",
"subjects Religious life Buddhism, Happiness Religious a...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 564, dtype: object)\n",
"(565, bibnum 2851008\n",
"title The Chopin album [sound recording].\n",
"author Chopin, Frédéric, 1810-1849\n",
"isbn NaN\n",
"publicationyear p2012.\n",
"publisher Sony Classical,\n",
"subjects Piano music, Waltzes, Polonaises\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 565, dtype: object)\n",
"(566, bibnum 2566684\n",
"title Art of field recording. Volume II [sound recor...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear p2008.\n",
"publisher Dust-to-Digital,\n",
"subjects Folk music United States, Folk songs English U...\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 566, dtype: object)\n",
"(567, bibnum 3109601\n",
"title Baba Yaga's assistant / Marika McCoola ; illus...\n",
"author McCoola, Marika,\n",
"isbn 076366961X, 9780763669614\n",
"publicationyear 2015.\n",
"publisher Candlewick Press,\n",
"subjects Baba Yaga Legendary character Comic books stri...\n",
"itemtype jcbk\n",
"itemcollection nccomic\n",
"floatingitem NaN\n",
"itemlocation hip\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 567, dtype: object)\n",
"(568, bibnum 65674\n",
"title Rubaiyat of Omar Khayyam, rendered into Englis...\n",
"author Omar Khayyam\n",
"isbn NaN\n",
"publicationyear [1946]\n",
"publisher Grosset & Dunlap\n",
"subjects NaN\n",
"itemtype arbk\n",
"itemcollection cs8r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 568, dtype: object)\n",
"(569, bibnum 3129775\n",
"title Girl singer / Mick Carlon.\n",
"author Carlon, Mick\n",
"isbn 1935248731, 9781935248736\n",
"publicationyear 2015.\n",
"publisher Leapfrog Press,\n",
"subjects Singers Juvenile fiction, Musicians Juvenile f...\n",
"itemtype acbk\n",
"itemcollection nyfic\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 569, dtype: object)\n",
"(570, bibnum 3065639\n",
"title The patient will see you now : the future of m...\n",
"author Topol, Eric J., 1954-\n",
"isbn 0465054749, 9780465054749\n",
"publicationyear [2015]\n",
"publisher Basic Books,\n",
"subjects Medicine Data processing Social aspects, Medic...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 570, dtype: object)\n",
"(571, bibnum 2717767\n",
"title The night circus : a novel / Erin Morgenstern.\n",
"author Morgenstern, Erin\n",
"isbn 0385534639, 9780385534635\n",
"publicationyear c2011.\n",
"publisher Doubleday,\n",
"subjects Magicians Fiction, Circus performers Fiction, ...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation mgm\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 571, dtype: object)\n",
"(572, bibnum 86115\n",
"title Nonviolence in America; a documentary history.\n",
"author Lynd, Staughton\n",
"isbn NaN\n",
"publicationyear [1966]\n",
"publisher Bobbs-Merrill\n",
"subjects Passive resistance United States\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 572, dtype: object)\n",
"(573, bibnum 3181879\n",
"title Nancy Drew diaries. #7, \"Doggone town\" and \"Sl...\n",
"author Petrucha, Stefan\n",
"isbn 1629914622, 9781629914626\n",
"publicationyear 2016.\n",
"publisher Papercutz,\n",
"subjects Drew Nancy Fictitious character Comic books st...\n",
"itemtype jcbk\n",
"itemcollection cccomic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 573, dtype: object)\n",
"(574, bibnum 2202982\n",
"title Femme fatale : an Irene Adler novel / Carole N...\n",
"author Douglas, Carole Nelson\n",
"isbn 0765306824\n",
"publicationyear 2003.\n",
"publisher Forge,\n",
"subjects Adler Irene Fictitious character Fiction, Holm...\n",
"itemtype acbk\n",
"itemcollection camys\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 574, dtype: object)\n",
"(575, bibnum 3135950\n",
"title Quilt local : finding inspiration in the every...\n",
"author Jones, Heather\n",
"isbn 1617691763, 9781617691768\n",
"publicationyear 2015.\n",
"publisher STC Craft,\n",
"subjects Quilting Technique, Quilting Patterns, Quiltin...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 575, dtype: object)\n",
"(576, bibnum 2954461\n",
"title Falling out of time / David Grossman ; transla...\n",
"author Grossman, David\n",
"isbn 0345805852, 0385350139, 9780345805850, 9780385...\n",
"publicationyear 2014.\n",
"publisher Alfred A. Knopf,\n",
"subjects Bereavement Fiction\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation fre\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 576, dtype: object)\n",
"(577, bibnum 3207151\n",
"title Illuminate / Shawn Mendes.\n",
"author Mendes, Shawn, 1998-\n",
"isbn NaN\n",
"publicationyear [2016]\n",
"publisher Island,\n",
"subjects Popular music 2011 2020\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 577, dtype: object)\n",
"(578, bibnum 2561460\n",
"title Nature's great events / general editor, Karen ...\n",
"author NaN\n",
"isbn 0226471543, 9780226471549\n",
"publicationyear c2009.\n",
"publisher University of Chicago Press,\n",
"subjects Natural history, Animal migration, Biological ...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 578, dtype: object)\n",
"(579, bibnum 492898\n",
"title Masquerade suite [music] [From the incidental ...\n",
"author Khachatur︠i︡an, Aram, 1903-1978\n",
"isbn NaN\n",
"publicationyear [1950]\n",
"publisher Leeds\n",
"subjects Suites Orchestra Scores\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 579, dtype: object)\n",
"(580, bibnum 2730340\n",
"title Balzac's omelette : a delicious tour of French...\n",
"author Muhlstein, Anka\n",
"isbn 1590514734, 9781590514733\n",
"publicationyear c2011.\n",
"publisher Other Press,\n",
"subjects Balzac Honor‚ de 1799 1850 Criticism and inter...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 580, dtype: object)\n",
"(581, bibnum 3183654\n",
"title Herobrine saves Christmas / Zack Zombie Books.\n",
"author NaN\n",
"isbn 1943330255, 9781943330256\n",
"publicationyear [2015]\n",
"publisher Zack Zombie Publishing LLC,\n",
"subjects Minecraft Game Juvenile fiction, Video game ch...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 581, dtype: object)\n",
"(582, bibnum 3229847\n",
"title V is for virgin / Kelly Oram.\n",
"author Oram, Kelly\n",
"isbn 0991457927, 9780991457922\n",
"publicationyear ©2012.\n",
"publisher Bluefields,\n",
"subjects Virginity Teen fiction, Young adult fiction\n",
"itemtype acbk\n",
"itemcollection cyfic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 582, dtype: object)\n",
"(583, bibnum 395043\n",
"title Exile and return : selected poems, 1967-74 / Y...\n",
"author Ritsos, Giannēs, 1909-1990\n",
"isbn 0880010177\n",
"publicationyear 1985.\n",
"publisher Ecco Press,\n",
"subjects Ritsos Giannes 1909 1990 Translations into Eng...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 583, dtype: object)\n",
"(584, bibnum 3136024\n",
"title Adam's apple [sound recording] / Wayne Shorter.\n",
"author Shorter, Wayne\n",
"isbn NaN\n",
"publicationyear p2003.\n",
"publisher Blue Note,\n",
"subjects Jazz 1961 1970, Saxophone music Jazz\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 584, dtype: object)\n",
"(585, bibnum 2480256\n",
"title Face to face with lions / by Beverly and Derec...\n",
"author Joubert, Beverly\n",
"isbn 142630207X, 1426302088, 9781426302077, 9781426...\n",
"publicationyear 2008.\n",
"publisher National Geographic,\n",
"subjects Lion Africa Juvenile literature, Lion Juvenile...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation spa\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 585, dtype: object)\n",
"(586, bibnum 28310\n",
"title The Lorax / by Dr. Seuss.\n",
"author Seuss, Dr.\n",
"isbn 0394823370, 0394923375, 9780394823379\n",
"publicationyear [1971]\n",
"publisher Random House,\n",
"subjects Stories in rhyme\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation uni\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 586, dtype: object)\n",
"(587, bibnum 2994581\n",
"title FaceOff / edited by David Baldacci.\n",
"author NaN\n",
"isbn 1476762066, 1476762074, 9781476762067, 9781476...\n",
"publicationyear 2014.\n",
"publisher Simon & Schuster,\n",
"subjects Suspense fiction American, Suspense fiction, S...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 587, dtype: object)\n",
"(588, bibnum 3107587\n",
"title Bright lines : a novel / Tanwi Nandini Islam.\n",
"author Islam, Tanwi Nandini.\n",
"isbn 0143123130, 9780143123132\n",
"publicationyear [2015]\n",
"publisher Penguin Books,\n",
"subjects Young women Fiction, Families Fiction, Psychol...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 588, dtype: object)\n",
"(589, bibnum 3170801\n",
"title Eat your drink : culinary cocktails / Matthew ...\n",
"author Biancaniello, Matthew,\n",
"isbn 0062391283, 9780062391285\n",
"publicationyear [2016]\n",
"publisher Dey St., an imprint of William Morrow Publishers,\n",
"subjects Cocktails, Smoothies Beverages, Cookbooks\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation cap\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 589, dtype: object)\n",
"(590, bibnum 3008593\n",
"title Lisette's list : a novel / Susan Vreeland.\n",
"author Vreeland, Susan\n",
"isbn 1400068177, 9781400068173\n",
"publicationyear [2014]\n",
"publisher Random House,\n",
"subjects Young women Fiction, Art Psychological aspects...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 590, dtype: object)\n",
"(591, bibnum 3144393\n",
"title Before I leave / Jessixa Bagley.\n",
"author Bagley, Jessixa\n",
"isbn 1626720401, 9781626720404\n",
"publicationyear [2016]\n",
"publisher Roaring Brook Press,\n",
"subjects Hedgehogs Juvenile fiction, Moving Household J...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation uni\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 591, dtype: object)\n",
"(592, bibnum 1323611\n",
"title I'm a believer : my life of Monkees, music, an...\n",
"author Dolenz, Micky\n",
"isbn 1562828479\n",
"publicationyear 1993.\n",
"publisher Hyperion,\n",
"subjects Dolenz Micky, Monkees Musical group, Rock musi...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 592, dtype: object)\n",
"(593, bibnum 3276719\n",
"title Matchup / edited by Lee Child.\n",
"author NaN\n",
"isbn 1508233888, 9781508233886\n",
"publicationyear [2017]\n",
"publisher Audioworks / Simon & Schuster Audio,\n",
"subjects Pickett Joe Fictitious character Fiction, Hill...\n",
"itemtype accd\n",
"itemcollection nabocd\n",
"floatingitem Floating\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 593, dtype: object)\n",
"(594, bibnum 3197709\n",
"title In such good company : eleven years of laughte...\n",
"author Burnett, Carol\n",
"isbn 1101904658, 9781101904657\n",
"publicationyear [2016]\n",
"publisher Crown Archetype,\n",
"subjects Carol Burnett show\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation dlr\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 594, dtype: object)\n",
"(595, bibnum 2845447\n",
"title Red car, red bus / Susan Steggall.\n",
"author Steggall, Susan\n",
"isbn 1847801846, 9781847801845\n",
"publicationyear c2011.\n",
"publisher Frances Lincoln Children's Books,\n",
"subjects Transportation Juvenile fiction, Color Fiction...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 595, dtype: object)\n",
"(596, bibnum 2680720\n",
"title Whiskypedia : a compendium of Scottish whisky ...\n",
"author MacLean, Charles, 1951-\n",
"isbn 1616080760, 9781616080761\n",
"publicationyear c2010.\n",
"publisher Skyhorse Pub.,\n",
"subjects Whiskey\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 596, dtype: object)\n",
"(597, bibnum 3081386\n",
"title The game of Love and Death / Martha Brockenbro...\n",
"author Brockenbrough, Martha\n",
"isbn 0545668344, 9780545668347, 9780545924221\n",
"publicationyear 2015.\n",
"publisher Arthur A. Levine Books, an imprint of Scholast...\n",
"subjects Teenage boys Washington State Seattle Juvenile...\n",
"itemtype acbk\n",
"itemcollection nyfic\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 597, dtype: object)\n",
"(598, bibnum 3229112\n",
"title Dark age America : climate change, cultural co...\n",
"author Greer, John Michael\n",
"isbn 0865718334, 9780865718333\n",
"publicationyear c2016.\n",
"publisher New Society Publishers,\n",
"subjects United States Civilization 21st century Foreca...\n",
"itemtype acbk\n",
"itemcollection canew\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 598, dtype: object)\n",
"(599, bibnum 2139612\n",
"title Mollie Katzen's sunlight cafe / Mollie Katzen ...\n",
"author Katzen, Mollie, 1950-\n",
"isbn 0786862696\n",
"publicationyear 2002.\n",
"publisher Hyperion,\n",
"subjects Breakfasts\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 599, dtype: object)\n",
"(600, bibnum 2466851\n",
"title Encyclopedia of exotic plants for temperate cl...\n",
"author Giles, Will\n",
"isbn 0881927856, 9780881927856\n",
"publicationyear 2007.\n",
"publisher Timber Press,\n",
"subjects Gardening Encyclopedias, Exotic plants Encyclo...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 600, dtype: object)\n",
"(601, bibnum 2909989\n",
"title Wild Bill [videorecording] / a 20Ten Media pro...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear 2013.\n",
"publisher Flat Iron Film Co.,\n",
"subjects Ex convicts Drama, Fathers and sons Drama, Gre...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 601, dtype: object)\n",
"(602, bibnum 2873569\n",
"title Abandoned! : a lion called Kiki / by Wendy Orr...\n",
"author Orr, Wendy, 1953-\n",
"isbn 0805095012, 0805095020, 9780805095012, 9780805...\n",
"publicationyear 2012.\n",
"publisher Henry Holt,\n",
"subjects Lions as pets Juvenile fiction, Lion Juvenile ...\n",
"itemtype jcbk\n",
"itemcollection ncef\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 602, dtype: object)\n",
"(603, bibnum 3084635\n",
"title Trompe l'oeil / Nancy Reisman.\n",
"author Reisman, Nancy, 1961-\n",
"isbn 1941040039, 9781941040034\n",
"publicationyear 2015.\n",
"publisher Tin House Books,\n",
"subjects Dysfunctional families Fiction, Loss Psycholog...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 603, dtype: object)\n",
"(604, bibnum 700340\n",
"title Mówimy po polsku. A beginner's course of Polis...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear 1966.\n",
"publisher Wiedza Powszechna,\n",
"subjects Polish language Self instruction, Polish langu...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 604, dtype: object)\n",
"(605, bibnum 124973\n",
"title Ein fliehendes Pferd : Novelle / Martin Walser.\n",
"author Walser, Martin, 1927-\n",
"isbn 3518042696\n",
"publicationyear 1978.\n",
"publisher Suhrkamp,\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 605, dtype: object)\n",
"(606, bibnum 2905758\n",
"title Our lost border : essays on life amid the narc...\n",
"author NaN\n",
"isbn 1558857524, 9781558857520\n",
"publicationyear [2013]\n",
"publisher Arte Público Press,\n",
"subjects Mexican American Border Region Civilization, D...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 606, dtype: object)\n",
"(607, bibnum 550004\n",
"title Celebrate citizenship : Constitution Week, Sep...\n",
"author Commission on the Bicentennial of the United S...\n",
"isbn NaN\n",
"publicationyear 1990.\n",
"publisher U.S. Commission on the Bicentennial of the Uni...\n",
"subjects NaN\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 607, dtype: object)\n",
"(608, bibnum 3045510\n",
"title An Americana Christmas [sound recording].\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2014]\n",
"publisher New West Records,\n",
"subjects Christmas music\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 608, dtype: object)\n",
"(609, bibnum 2946332\n",
"title Wolf children [videorecording] / Toho ; Nippon...\n",
"author NaN\n",
"isbn 1421027542, 9781421027548\n",
"publicationyear [2013]\n",
"publisher Funimation,\n",
"subjects Mother and child Drama, Human animal relations...\n",
"itemtype acdvd\n",
"itemcollection nalndvd\n",
"floatingitem Floating\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 609, dtype: object)\n",
"(610, bibnum 2709453\n",
"title You're finally here! / written and illustrated...\n",
"author Watt, Mélanie, 1975-\n",
"isbn 1423134869, 9781423134862\n",
"publicationyear c2011.\n",
"publisher Disney/Hyperion Books,\n",
"subjects Rabbits Juvenile fiction, Patience Juvenile fi...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation mon\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 610, dtype: object)\n",
"(611, bibnum 2473811\n",
"title Things we lost in the fire [videorecording] / ...\n",
"author NaN\n",
"isbn 1415732523\n",
"publicationyear [2008]\n",
"publisher DreamWorks Home Entertainment,\n",
"subjects Victims of violent crimes Drama, Friendship Dr...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 611, dtype: object)\n",
"(612, bibnum 3149293\n",
"title The blood strand / Chris Ould.\n",
"author Ould, Chris,\n",
"isbn 1783297042, 9781783297047\n",
"publicationyear 2016.\n",
"publisher Titan Books,\n",
"subjects Faroe Islands Fiction, Mystery fiction\n",
"itemtype acbk\n",
"itemcollection namys\n",
"floatingitem Floating\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 612, dtype: object)\n",
"(613, bibnum 2163724\n",
"title How Groundhog's garden grew / by Lynne Cherry.\n",
"author Cherry, Lynne\n",
"isbn 0439323711\n",
"publicationyear 2003.\n",
"publisher Blue Sky Press,\n",
"subjects Woodchuck Juvenile fiction, Squirrels Juvenile...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 613, dtype: object)\n",
"(614, bibnum 2740949\n",
"title When the snow fell [sound recording] / Henning...\n",
"author Mankell, Henning, 1948-2015\n",
"isbn 1743100876, 9781743100875\n",
"publicationyear p2011.\n",
"publisher Bolinda Audio,\n",
"subjects Single parent families Juvenile fiction, Fathe...\n",
"itemtype accd\n",
"itemcollection nybocd\n",
"floatingitem Floating\n",
"itemlocation uni\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 614, dtype: object)\n",
"(615, bibnum 2363418\n",
"title The age of war : the United States confronts t...\n",
"author Kolko, Gabriel\n",
"isbn 1588264149, 1588264394\n",
"publicationyear 2006.\n",
"publisher Lynne Rienner Publishers,\n",
"subjects United States Foreign relations 1989, United S...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 615, dtype: object)\n",
"(616, bibnum 3272632\n",
"title An awfully big adventure / Fine Line Features ...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2017]\n",
"publisher Warner Bros. Home Entertainment,\n",
"subjects Theatrical companies Drama, Teenage girls Dram...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 616, dtype: object)\n",
"(617, bibnum 2525992\n",
"title The eagle of the Ninth [sound recording] / Ros...\n",
"author Sutcliff, Rosemary\n",
"isbn 9626344237, 9789626344231\n",
"publicationyear p2006.\n",
"publisher Naxos AudioBooks,\n",
"subjects Great Britain History Roman period 55 B C 449 ...\n",
"itemtype jccd\n",
"itemcollection ccbocd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 617, dtype: object)\n",
"(618, bibnum 3262926\n",
"title All the queen's men / Ethan J. Wolfe.\n",
"author Wolfe, Ethan J.\n",
"isbn 1432833022, 9781432833022\n",
"publicationyear [2017]\n",
"publisher Five Star Publishing,\n",
"subjects United States History Civil War 1861 1865 Vete...\n",
"itemtype acbk\n",
"itemcollection cawest\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 618, dtype: object)\n",
"(619, bibnum 626607\n",
"title Houghton Mifflin unified mathematics / coordin...\n",
"author NaN\n",
"isbn 0395550637\n",
"publicationyear c1991.\n",
"publisher Houghton Mifflin,\n",
"subjects Mathematics\n",
"itemtype arbk\n",
"itemcollection naref\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 5\n",
"Name: 619, dtype: object)\n",
"(620, bibnum 2251883\n",
"title North Fork Palouse River fecal coliform bacter...\n",
"author Ahmed, Anise\n",
"isbn NaN\n",
"publicationyear [2004]\n",
"publisher Washington State Dept. of Ecology,\n",
"subjects Water Pollution Total maximum daily load Palou...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 620, dtype: object)\n",
"(621, bibnum 2745451\n",
"title King Solomon's mines / H. Rider Haggard ; edit...\n",
"author Haggard, H. Rider (Henry Rider), 1856-1925\n",
"isbn 0199536414, 9780199536412\n",
"publicationyear 2008.\n",
"publisher Oxford University Press,\n",
"subjects Quatermain Allan Fictitious character Fiction,...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 621, dtype: object)\n",
"(622, bibnum 2741663\n",
"title Now that's what I call music! 40 [sound record...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear p2011.\n",
"publisher EMI,\n",
"subjects Rock music 2011 2020, Popular music 2011 2020\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 622, dtype: object)\n",
"(623, bibnum 2856545\n",
"title Merry Christmas, baby [sound recording] / Rod ...\n",
"author Stewart, Rod\n",
"isbn NaN\n",
"publicationyear p2012.\n",
"publisher Verve,\n",
"subjects Christmas music, Carols English\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 623, dtype: object)\n",
"(624, bibnum 3164969\n",
"title A brave bear / Sean Taylor ; illustrated by Em...\n",
"author Taylor, Sean, 1965-\n",
"isbn 0763682241, 9780763682248\n",
"publicationyear 2016.\n",
"publisher Candlewick Press,\n",
"subjects Fathers and sons Juvenile fiction, Bears Juven...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 624, dtype: object)\n",
"(625, bibnum 3020129\n",
"title Peedie / Olivier Dunrea.\n",
"author Dunrea, Olivier\n",
"isbn 0544323556, 0544323564, 0544506413, 9780544323...\n",
"publicationyear [2015],\n",
"publisher Houghton Mifflin Harcourt,\n",
"subjects Memory Juvenile fiction, Baseball caps Juvenil...\n",
"itemtype jcbk\n",
"itemcollection ccrdr\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 625, dtype: object)\n",
"(626, bibnum 3042846\n",
"title The kind worth killing : a novel / Peter Swanson.\n",
"author Swanson, Peter, 1968-\n",
"isbn 0062267523, 0062267531, 9780062267528, 9780062...\n",
"publicationyear [2015]\n",
"publisher William Morrow, an imprint of HarperCollinsPub...\n",
"subjects Serendipity Fiction, Murder Fiction, Boston Ma...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation hip\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 626, dtype: object)\n",
"(627, bibnum 3284215\n",
"title Kid's guitar course complete : the easiest gui...\n",
"author Manus, Ron\n",
"isbn 1470632020, 9781470632021\n",
"publicationyear [2015].\n",
"publisher Alfred Music,\n",
"subjects Guitar Instruction and study Juvenile literatu...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 627, dtype: object)\n",
"(628, bibnum 3106250\n",
"title Geek heresy [sound recording] rescuing social...\n",
"author Toyama, Kentaro,\n",
"isbn 11348742, 9781494514587\n",
"publicationyear 2015.\n",
"publisher Tantor Media, Inc.,\n",
"subjects Technological innovations Economic aspects, Te...\n",
"itemtype accd\n",
"itemcollection nacdnf\n",
"floatingitem Floating\n",
"itemlocation fre\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 628, dtype: object)\n",
"(629, bibnum 1257755\n",
"title Acting gay : male homosexuality in modern dram...\n",
"author Clum, John M.\n",
"isbn 0231075103\n",
"publicationyear 1992.\n",
"publisher Columbia University Press,\n",
"subjects American drama 20th century History and critic...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 629, dtype: object)\n",
"(630, bibnum 443226\n",
"title NaN\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher NaN\n",
"subjects NaN\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 630, dtype: object)\n",
"(631, bibnum 2843515\n",
"title Lit from within : contemporary masters on the ...\n",
"author NaN\n",
"isbn 082141948X, 9780821419489\n",
"publicationyear c2011.\n",
"publisher Ohio University Press,\n",
"subjects Authorship\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 631, dtype: object)\n",
"(632, bibnum 2746620\n",
"title All access : the rock 'n' roll photography of ...\n",
"author Regan, Ken\n",
"isbn 1608870332, 9781608870332\n",
"publicationyear c2011.\n",
"publisher Insight Editions,\n",
"subjects Rock groups Portraits, Rock groups Pictorial w...\n",
"itemtype acbk\n",
"itemcollection naover\n",
"floatingitem NaN\n",
"itemlocation fre\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 632, dtype: object)\n",
"(633, bibnum 2830603\n",
"title The gospel according to the Fix : an insider's...\n",
"author Cillizza, Chris (Christopher Michael), 1976-\n",
"isbn 0307987094, 9780307987099\n",
"publicationyear c2012.\n",
"publisher Broadway Books,\n",
"subjects Elections United States, Political campaigns U...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 633, dtype: object)\n",
"(634, bibnum 2969813\n",
"title I always loved you [text (large print)] : a st...\n",
"author Oliveira, Robin\n",
"isbn 1410466051, 9781410466051\n",
"publicationyear 2014.\n",
"publisher Thorndike Press,\n",
"subjects Cassatt Mary 1844 1926 Fiction, Degas Edgar 18...\n",
"itemtype acbk\n",
"itemcollection nalpfic\n",
"floatingitem Floating\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 634, dtype: object)\n",
"(635, bibnum 2589698\n",
"title S is for save the planet : a how-to-be green a...\n",
"author Herzog, Brad\n",
"isbn 1585364282, 9781585364282\n",
"publicationyear 2009.\n",
"publisher Sleeping Bear Press,\n",
"subjects Environmental protection Citizen participation...\n",
"itemtype jcbk\n",
"itemcollection ncenf\n",
"floatingitem NaN\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 635, dtype: object)\n",
"(636, bibnum 3155194\n",
"title Withering-by-Sea / Judith Rossell.\n",
"author Rossell, Judith\n",
"isbn 1481443674, 1481443682, 9781481443678, 9781481...\n",
"publicationyear 2016.\n",
"publisher Atheneum Books for Young Readers,\n",
"subjects Magic Juvenile fiction, Identity Philosophical...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 636, dtype: object)\n",
"(637, bibnum 2805003\n",
"title George Bellows : painter with a punch! / Rober...\n",
"author Burleigh, Robert\n",
"isbn 1419701665, 9781419701665\n",
"publicationyear 2012.\n",
"publisher Published in association with the National Gal...\n",
"subjects Bellows George 1882 1925 Juvenile literature, ...\n",
"itemtype jcbk\n",
"itemcollection ccnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 637, dtype: object)\n",
"(638, bibnum 2811712\n",
"title The dead family Diaz / by P.J. Bracegirdle ; p...\n",
"author Bracegirdle, P. J.\n",
"isbn 0803733267, 9780803733268\n",
"publicationyear 2012.\n",
"publisher Dial Books for Young Readers,\n",
"subjects All Souls Day Juvenile fiction, Dead Juvenile ...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 638, dtype: object)\n",
"(639, bibnum 3284973\n",
"title Transcendent : the year's best transgender spe...\n",
"author NaN\n",
"isbn 1590216172, 9781590216170\n",
"publicationyear [2016]\n",
"publisher Lethe Press,\n",
"subjects Short stories, Fantasy fiction, Science fiction\n",
"itemtype acbk\n",
"itemcollection nasf\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 639, dtype: object)\n",
"(640, bibnum 2845857\n",
"title Princess in training / Tammi Sauer ; pictures ...\n",
"author Sauer, Tammi\n",
"isbn 0152065997, 9780152065997\n",
"publicationyear 2012.\n",
"publisher Harcourt Children's Books,\n",
"subjects Princesses Juvenile fiction, Individuality Juv...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 640, dtype: object)\n",
"(641, bibnum 2092082\n",
"title Facts about the presidents : a compilation of ...\n",
"author Kane, Joseph Nathan, 1899-2002\n",
"isbn 0824210077\n",
"publicationyear 2001.\n",
"publisher H.W. Wilson,\n",
"subjects Presidents United States History Miscellanea, ...\n",
"itemtype arbk\n",
"itemcollection naref\n",
"floatingitem NaN\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 641, dtype: object)\n",
"(642, bibnum 2738833\n",
"title Cabin fever / by Jeff Kinney.\n",
"author Kinney, Jeff\n",
"isbn 1419702238, 9781419702235\n",
"publicationyear 2011.\n",
"publisher Amulet Books,\n",
"subjects Diaries Fiction, Humorous stories\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 642, dtype: object)\n",
"(643, bibnum 1586841\n",
"title Cowgirl legends from the Cowgirl Hall of Fame ...\n",
"author Wills, Kathy Lynn\n",
"isbn 087905624X\n",
"publicationyear c1995.\n",
"publisher Gibbs Smith Publisher,\n",
"subjects Cowgirl Hall of Fame Western Heritage Center, ...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 643, dtype: object)\n",
"(644, bibnum 3184743\n",
"title Rhino rescue! : and more true stories of savin...\n",
"author Meeker, Clare Hodgson\n",
"isbn 1426323115, 1426323123, 9781426323119, 9781426...\n",
"publicationyear 2016.\n",
"publisher National Geographic,\n",
"subjects White rhinoceros Conservation South Africa Juv...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 644, dtype: object)\n",
"(645, bibnum 3275638\n",
"title The bank robber : a Wilson Young western / Gil...\n",
"author Tippette, Giles\n",
"isbn 1432838350, 9781432838355\n",
"publicationyear 2017.\n",
"publisher Thorndike Press,\n",
"subjects Outlaws West U S Fiction, Large type books, We...\n",
"itemtype acbk\n",
"itemcollection calpfic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 645, dtype: object)\n",
"(646, bibnum 2843268\n",
"title Dare! / by Erin Frankel ; illustrated by Paula...\n",
"author Frankel, Erin\n",
"isbn 1575423995, 9781575423999\n",
"publicationyear c2012.\n",
"publisher Free Spirit Pub.,\n",
"subjects Bullying Juvenile literature, Bullying in scho...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 646, dtype: object)\n",
"(647, bibnum 1883171\n",
"title Full moon / Michael Light ; essay by Andrew Ch...\n",
"author Light, Michael\n",
"isbn 0375406344\n",
"publicationyear 1999.\n",
"publisher Knopf,\n",
"subjects Project Apollo U S, Space flight to the moon P...\n",
"itemtype acbk\n",
"itemcollection caover\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 647, dtype: object)\n",
"(648, bibnum 3038689\n",
"title Truth be told / Hank Phillippi Ryan.\n",
"author Ryan, Hank Phillippi\n",
"isbn 0765374935, 9780765374936\n",
"publicationyear 2014.\n",
"publisher Forge,\n",
"subjects Women journalists Fiction, Police Massachusett...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 648, dtype: object)\n",
"(649, bibnum 526723\n",
"title The Heliand. Translated from the Old Saxon by ...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [1966].\n",
"publisher University of North Carolina Press\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 649, dtype: object)\n",
"(650, bibnum 2986008\n",
"title Operation blue dragon / Stephen Dando-Collins.\n",
"author Dando-Collins, Stephen\n",
"isbn 085798053X, 9780857980533\n",
"publicationyear 2013.\n",
"publisher Random House Australia,\n",
"subjects Dogs Juvenile fiction, Detector dogs Afghanist...\n",
"itemtype jcbk\n",
"itemcollection ccfic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 650, dtype: object)\n",
"(651, bibnum 2097250\n",
"title The World Trade Center remembered / photograph...\n",
"author Bullaty, Sonja\n",
"isbn 0789207648\n",
"publicationyear c2001.\n",
"publisher Abbeville Press,\n",
"subjects World Trade Center New York N Y Pictorial work...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 651, dtype: object)\n",
"(652, bibnum 2987844\n",
"title The first fifteen lives of Harry August / Clai...\n",
"author North, Claire\n",
"isbn 0316399612, 9780316399616\n",
"publicationyear 2014.\n",
"publisher Redhook,\n",
"subjects Reincarnation Fiction, End of the world Fictio...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 652, dtype: object)\n",
"(653, bibnum 2705466\n",
"title Babymouse. [14], Mad scientist / by Jennifer L...\n",
"author Holm, Jennifer L.\n",
"isbn 0375865748, 0375965742, 9780375865749, 9780375...\n",
"publicationyear 2011.\n",
"publisher Random House,\n",
"subjects Babymouse Fictitious character Comic books str...\n",
"itemtype jcbk\n",
"itemcollection nccomic\n",
"floatingitem NaN\n",
"itemlocation mon\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 653, dtype: object)\n",
"(654, bibnum 2808464\n",
"title Wolves / by Charnan Simon.\n",
"author Simon, Charnan\n",
"isbn 0329917315, 0531209091, 0531210847, 9780329917...\n",
"publicationyear 2012.\n",
"publisher Children's Press,\n",
"subjects Wolves Juvenile literature\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation nhy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 654, dtype: object)\n",
"(655, bibnum 712612\n",
"title Alaska sourdough / Ruth Allman.\n",
"author Allman, Ruth, 1905-\n",
"isbn 0882400851\n",
"publicationyear [c1976]\n",
"publisher Alaska Northwest Pub. Co.,\n",
"subjects Cooking Sourdough\n",
"itemtype arbk\n",
"itemcollection cs7r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 655, dtype: object)\n",
"(656, bibnum 3162891\n",
"title Jet plane and oxbow / Shearwater.\n",
"author Shearwater (Musical group)\n",
"isbn NaN\n",
"publicationyear [2016]\n",
"publisher Sub Pop,\n",
"subjects Rock music 2011 2020\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 656, dtype: object)\n",
"(657, bibnum 3269776\n",
"title Run program / Scott Meyer.\n",
"author Meyer, Scott, 1971-\n",
"isbn 1477848738, 9781477848739\n",
"publicationyear [2017]\n",
"publisher 47North\n",
"subjects Artificial intelligence Fiction, Science ficti...\n",
"itemtype acbk\n",
"itemcollection nanew\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 657, dtype: object)\n",
"(658, bibnum 297000\n",
"title Everybody's aviation guide; a complete, simpli...\n",
"author Pagé, Victor Wilfred, 1885-1947\n",
"isbn NaN\n",
"publicationyear 1928.\n",
"publisher Henley,\n",
"subjects Aeronautics\n",
"itemtype arbk\n",
"itemcollection caaero\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 658, dtype: object)\n",
"(659, bibnum 2906245\n",
"title Haengbok i mŏmunŭn Kanghwa iyagi / Im T'ae-sun...\n",
"author Im, T'ae-sun, 1959-\n",
"isbn 8926830071, 9788926830079\n",
"publicationyear 2012.\n",
"publisher Idam Books,\n",
"subjects Country life Korea South Kanghwa gun, Kanghwa ...\n",
"itemtype acbk\n",
"itemcollection naln\n",
"floatingitem NaN\n",
"itemlocation idc\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 659, dtype: object)\n",
"(660, bibnum 2731100\n",
"title Project Rebirth : survival and the strength of...\n",
"author Stern, Robin\n",
"isbn 0525952268, 9780525952268\n",
"publicationyear c2011.\n",
"publisher Dutton,\n",
"subjects Resilience Personality trait Case studies, Psy...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 660, dtype: object)\n",
"(661, bibnum 3174948\n",
"title Peppermint Patty goes to camp! / by Charles M....\n",
"author Testa, Maggie\n",
"isbn 1481462628, 1481462636, 9781481462624, 9781481...\n",
"publicationyear 2016.\n",
"publisher Simon Spotlight,\n",
"subjects Camps Juvenile fiction, Camps Fiction\n",
"itemtype jcbk\n",
"itemcollection ncrdr\n",
"floatingitem Floating\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 661, dtype: object)\n",
"(662, bibnum 716633\n",
"title The fabulous Roza. A proud history of the Roza...\n",
"author Sheller, Roscoe\n",
"isbn NaN\n",
"publicationyear [1962]\n",
"publisher NaN\n",
"subjects Irrigation Washington State, Irrigation canals...\n",
"itemtype arbk\n",
"itemcollection cs7r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 662, dtype: object)\n",
"(663, bibnum 2609646\n",
"title Panda kindergarten / by Joanne Ryder ; photogr...\n",
"author Ryder, Joanne\n",
"isbn 0060578505, 0060578513, 9780060578503, 9780060...\n",
"publicationyear c2009.\n",
"publisher Collins,\n",
"subjects Giant panda Anecdotes Juvenile literature, Gia...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 663, dtype: object)\n",
"(664, bibnum 3206650\n",
"title Sebastian Bergman. The cursed one [videorecord...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2013]\n",
"publisher [publisher not identified],\n",
"subjects Police Sweden Drama, Criminal behavior Predict...\n",
"itemtype acdvd\n",
"itemcollection nalndvd\n",
"floatingitem Floating\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 664, dtype: object)\n",
"(665, bibnum 2882938\n",
"title Homeskills. Plumbing : install & repair your o...\n",
"author NaN\n",
"isbn 1591865832, 9781591865834\n",
"publicationyear [2013]\n",
"publisher Cool Springs Press,\n",
"subjects Plumbing Amateurs manuals\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 665, dtype: object)\n",
"(666, bibnum 2844291\n",
"title Lace up [sound recording] / MGK.\n",
"author MGK, 1990-\n",
"isbn NaN\n",
"publicationyear p2012.\n",
"publisher Bad Boy/Interscope,\n",
"subjects Rap Music, Popular music 2011 2020\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation mon\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 666, dtype: object)\n",
"(667, bibnum 2986437\n",
"title George Washington [videorecording] / Free Coun...\n",
"author NaN\n",
"isbn 1604658290, 9781604658293\n",
"publicationyear [2014]\n",
"publisher [Publisher not identified],\n",
"subjects Children Southern States Drama, Adolescence No...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 667, dtype: object)\n",
"(668, bibnum 2930579\n",
"title Drifters. 1 / story and art by Kohta Hirano ; ...\n",
"author Hirano, Kōta\n",
"isbn 1595827692, 9781595827692\n",
"publicationyear 2011.\n",
"publisher Dark Horse Manga,\n",
"subjects Magic Comic books strips etc, Battles Comic bo...\n",
"itemtype acbk\n",
"itemcollection nycomic\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 668, dtype: object)\n",
"(669, bibnum 3079803\n",
"title Arrête ou je continue [videorecording] = If yo...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2015]\n",
"publisher [Publisher not identified],\n",
"subjects Married people Drama, Feature films, Comedy fi...\n",
"itemtype acdvd\n",
"itemcollection nalndvd\n",
"floatingitem Floating\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 669, dtype: object)\n",
"(670, bibnum 3122646\n",
"title Benjamin Franklin huge pain in my / by Adam Ma...\n",
"author Mansbach, Adam, 1976-\n",
"isbn 1484713044, 9781484713044\n",
"publicationyear 2015.\n",
"publisher Disney/Hyperion,\n",
"subjects Middle schools Juvenile fiction, Schools Juven...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation fre\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 670, dtype: object)\n",
"(671, bibnum 2712959\n",
"title Children and fire : a novel / Ursula Hegi.\n",
"author Hegi, Ursula\n",
"isbn 1451608292, 1451608306, 9781451608298, 9781451...\n",
"publicationyear 2011.\n",
"publisher Scribner,\n",
"subjects Women teachers Fiction, Schoolboys Fiction, Vi...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 671, dtype: object)\n",
"(672, bibnum 1921068\n",
"title Remembering Woolworth's : a nostalgic history ...\n",
"author Plunkett-Powell, Karen\n",
"isbn 0312206704\n",
"publicationyear 1999.\n",
"publisher St. Martin's Press,\n",
"subjects Woolworth Frank Winfield 1852 1919, Woolworth ...\n",
"itemtype arbk\n",
"itemcollection cs6r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 672, dtype: object)\n",
"(673, bibnum 2333971\n",
"title Great tales from English history. Volume II [s...\n",
"author Lacey, Robert\n",
"isbn 1419353802, 9781419353802\n",
"publicationyear p2005.\n",
"publisher W.F. Howes ; Distributed by Recorded Books,\n",
"subjects Great Britain History Medieval period 1066 148...\n",
"itemtype accd\n",
"itemcollection cacdnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 673, dtype: object)\n",
"(674, bibnum 2235265\n",
"title Lifesaving letters : a child's flight from the...\n",
"author Roth, Milena\n",
"isbn 0295983779\n",
"publicationyear c2004.\n",
"publisher University of Washington Press,\n",
"subjects Kindertransports Rescue operations, Jewish chi...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 674, dtype: object)\n",
"(675, bibnum 3208228\n",
"title The strays : a novel / Emily Bitto.\n",
"author Bitto, Emily\n",
"isbn 1455537721, 9781455537723\n",
"publicationyear 2017.\n",
"publisher Twelve,\n",
"subjects Children of artists Fiction, Communal living A...\n",
"itemtype acbk\n",
"itemcollection nanew\n",
"floatingitem NaN\n",
"itemlocation hip\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 675, dtype: object)\n",
"(676, bibnum 1903272\n",
"title al-Tābiʻ : qiṣaṣ / ʻImād ʻAbd Allāh.\n",
"author ʻAbd Allāh, ʻImād\n",
"isbn 1855131463\n",
"publicationyear 1992.\n",
"publisher Riyāḍ al-Rayyis,\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 676, dtype: object)\n",
"(677, bibnum 3084385\n",
"title Kiss me hello / Grace Burrowes.\n",
"author Burrowes, Grace\n",
"isbn 1402278845, 9781402278846\n",
"publicationyear [2015]\n",
"publisher Sourcebooks Casblanca,\n",
"subjects Man woman relationships Fiction, Single mother...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 677, dtype: object)\n",
"(678, bibnum 2801523\n",
"title Rad times xpress IV [sound recording] / Black ...\n",
"author Black Bananas (Musical group)\n",
"isbn NaN\n",
"publicationyear p2012.\n",
"publisher Drag City,\n",
"subjects Rock music 2011 2020\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 678, dtype: object)\n",
"(679, bibnum 2522703\n",
"title Signing time! Series 2, volume 13, Who has the...\n",
"author NaN\n",
"isbn 1933543485, 9781933543482\n",
"publicationyear c2007.\n",
"publisher Two Little Hands Productions,\n",
"subjects American Sign Language Juvenile films, Childre...\n",
"itemtype jcdvd\n",
"itemcollection ncdvdnf\n",
"floatingitem Floating\n",
"itemlocation fre\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 679, dtype: object)\n",
"(680, bibnum 3101457\n",
"title Life's greatest secret : the race to crack the...\n",
"author Cobb, Matthew\n",
"isbn 0465062679, 9780465062676\n",
"publicationyear 2015.\n",
"publisher Basic Books,\n",
"subjects Genetic code, DNA\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 680, dtype: object)\n",
"(681, bibnum 3043055\n",
"title Real life paleo : 175 gluten-free recipes, mea...\n",
"author Toth, Stacy (Nutritionist)\n",
"isbn 1628600454, 9781628600452\n",
"publicationyear 2014.\n",
"publisher Victory Belt Publishing Inc.,\n",
"subjects High protein diet Recipes, Gluten free diet Re...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation fre\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 681, dtype: object)\n",
"(682, bibnum 2672758\n",
"title Who wants pizza? : the kids' guide to the hist...\n",
"author Thornhill, Jan\n",
"isbn 1897349963, 1897349971, 9781897349960, 9781897...\n",
"publicationyear c2010.\n",
"publisher Maple Tree Press,\n",
"subjects Food Juvenile literature\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 682, dtype: object)\n",
"(683, bibnum 2863355\n",
"title The LEGO adventure book. [1], Cars, castles, d...\n",
"author Rothrock, Megan\n",
"isbn 1593274424, 9781593274429\n",
"publicationyear c2013.\n",
"publisher No Starch Press,\n",
"subjects LEGO toys Juvenile literature, Models and mode...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 683, dtype: object)\n",
"(684, bibnum 227099\n",
"title Obras completas.\n",
"author Bello, Andrés, 1781-1865\n",
"isbn NaN\n",
"publicationyear 1951-\n",
"publisher Ministerio de Educación,\n",
"subjects NaN\n",
"itemtype arbk\n",
"itemcollection cs1lewr\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 684, dtype: object)\n",
"(685, bibnum 3023669\n",
"title Psychology for screenwriters : building confli...\n",
"author Indick, William, 1971-\n",
"isbn 0941188876, 9780941188876\n",
"publicationyear c2004.\n",
"publisher Michael Wiese Productions,\n",
"subjects Motion picture authorship, Motion picture auth...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 685, dtype: object)\n",
"(686, bibnum 2559019\n",
"title The gift of adult ADD : how to transform your ...\n",
"author Honos-Webb, Lara\n",
"isbn 1572245654, 9781572245655\n",
"publicationyear c2008.\n",
"publisher New Harbinger Publications,\n",
"subjects Attention deficit disorder in adults Popular w...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 686, dtype: object)\n",
"(687, bibnum 342913\n",
"title The Aboriginal Tasmanians / Lyndall Ryan.\n",
"author Ryan, Lyndall, 1943-\n",
"isbn 0702215449\n",
"publicationyear c1981.\n",
"publisher University of Queensland Press,\n",
"subjects Aboriginal Tasmanians\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 687, dtype: object)\n",
"(688, bibnum 1289412\n",
"title Education first : employer's guide.\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear c1992.\n",
"publisher Restaurant Association of the State of Washing...\n",
"subjects Employer supported education Washington State,...\n",
"itemtype arbk\n",
"itemcollection cs6r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 688, dtype: object)\n",
"(689, bibnum 2983140\n",
"title Plastic, ahoy! : investigating the great Pacif...\n",
"author Newman, Patricia, 1958-\n",
"isbn 1467712833, 9781467712835\n",
"publicationyear [2014]\n",
"publisher Millbrook Press,\n",
"subjects Marine pollution Juvenile literature, Marine p...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 689, dtype: object)\n",
"(690, bibnum 308301\n",
"title Proceedings of the second National Peace Congr...\n",
"author American Peace Congress (2nd : 1909 : Chicago,...\n",
"isbn NaN\n",
"publicationyear [1909]\n",
"publisher [Peterson Linotype Co.],\n",
"subjects Peace Congresses\n",
"itemtype arbk\n",
"itemcollection cs6r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 690, dtype: object)\n",
"(691, bibnum 2667234\n",
"title Your brain on food : how chemicals control you...\n",
"author Wenk, Gary Lee\n",
"isbn 0195388542, 9780195388541\n",
"publicationyear 2010.\n",
"publisher Oxford University Press,\n",
"subjects Psychopharmacology, Neuropsychology, Neurochem...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 691, dtype: object)\n",
"(692, bibnum 3255235\n",
"title The souls of China : the return of religion af...\n",
"author Johnson, Ian, 1962 July 27-\n",
"isbn 1101870052, 9781101870051\n",
"publicationyear [2017]\n",
"publisher Pantheon Books,\n",
"subjects China Religion 20th century, China Religion 21...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 692, dtype: object)\n",
"(693, bibnum 2927419\n",
"title Father knows death / Jeffrey Allen.\n",
"author Allen, Jeffrey, 1970-\n",
"isbn 075826691X, 9780758266910, 9780758289032\n",
"publicationyear 2013.\n",
"publisher Kensington Publishing Corp.,\n",
"subjects Stay at home fathers Fiction, Murder Investiga...\n",
"itemtype acbk\n",
"itemcollection camys\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 693, dtype: object)\n",
"(694, bibnum 3176630\n",
"title The perfect dog / by Kevin O'Malley.\n",
"author O'Malley, Kevin, 1961-\n",
"isbn 1101934417, 1101934425, 9781101934418, 9781101...\n",
"publicationyear [2016]\n",
"publisher Crown Books for Young Readers,\n",
"subjects Dogs Juvenile fiction, Dogs Fiction\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 694, dtype: object)\n",
"(695, bibnum 3223276\n",
"title You are special, Daniel Tiger! / adapted by An...\n",
"author Santomero, Angela C.\n",
"isbn 1480679119, 1481438387, 9781480679115, 9781481...\n",
"publicationyear 2015.\n",
"publisher Simon Spotlight,\n",
"subjects Tiger Juvenile fiction, Friendship Juvenile fi...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 695, dtype: object)\n",
"(696, bibnum 1639416\n",
"title The symphony : a listener's guide / Michael St...\n",
"author Steinberg, Michael, 1928-2009.\n",
"isbn 0195061772, 0195126653\n",
"publicationyear 1995.\n",
"publisher Oxford University Press,\n",
"subjects Symphonies Analysis appreciation\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 696, dtype: object)\n",
"(697, bibnum 2641784\n",
"title Best easy day hikes. Boise / Natalie L. Bartley.\n",
"author Bartley, Natalie L.\n",
"isbn 0762752718, 9780762752713\n",
"publicationyear c2010.\n",
"publisher Falcon,\n",
"subjects Hiking Idaho Boise Guidebooks, Trails Idaho Bo...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 697, dtype: object)\n",
"(698, bibnum 3037973\n",
"title What if [videorecording] / CBS Films ; E One ;...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [2014]\n",
"publisher [Publisher not identified],\n",
"subjects Man woman relationships Drama, Triangles Inter...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 698, dtype: object)\n",
"(699, bibnum 3213499\n",
"title Child of the river / Irma Joubert ; [translati...\n",
"author Joubert, Irma,\n",
"isbn 0718083105, 9780718083106\n",
"publicationyear [2016]\n",
"publisher Thomas Nelson,\n",
"subjects Young women South Africa Fiction, Women White ...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 699, dtype: object)\n",
"(700, bibnum 3163685\n",
"title Off the menu. Asian America [videorecording] /...\n",
"author NaN\n",
"isbn 1627895817, 9781627895811\n",
"publicationyear c2016.\n",
"publisher Distributed by PBS Distribution,\n",
"subjects Food habits Social aspects United States, Food...\n",
"itemtype acdvd\n",
"itemcollection nadvdnf\n",
"floatingitem Floating\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 700, dtype: object)\n",
"(701, bibnum 484674\n",
"title The Trademark renewal register.\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear 1964-\n",
"publisher Patent Searching Service,\n",
"subjects NaN\n",
"itemtype arbk\n",
"itemcollection cs7r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 701, dtype: object)\n",
"(702, bibnum 2876810\n",
"title Charlie Joe Jackson's guide to summer vacation...\n",
"author Greenwald, Tom, 1962-\n",
"isbn 159643757X, 9781596437579\n",
"publicationyear 2013.\n",
"publisher Roaring Brook Press,\n",
"subjects Camps Juvenile fiction, Interpersonal relation...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 702, dtype: object)\n",
"(703, bibnum 2623906\n",
"title Rush hour 2 [videorecording] / New Line Cinema...\n",
"author NaN\n",
"isbn 0780657497, 9780780657496\n",
"publicationyear [2007]\n",
"publisher New Line Home Entertainment,\n",
"subjects Police China Hong Kong Drama, Criminal investi...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 703, dtype: object)\n",
"(704, bibnum 3219307\n",
"title Bee and PuppyCat. Volume two / created by Nata...\n",
"author Allegri, Natasha, 1986-\n",
"isbn 1608867765, 9781608867769\n",
"publicationyear 2016.\n",
"publisher Published by Ka-BOOM!, a division of Boom Ente...\n",
"subjects Single women Comic books strips etc, Roommates...\n",
"itemtype jcbk\n",
"itemcollection nccomic\n",
"floatingitem NaN\n",
"itemlocation dlr\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 704, dtype: object)\n",
"(705, bibnum 3120701\n",
"title Lang Xianping shuo : Zhongguo jing ji de jiu z...\n",
"author Lang, Larry H. P.,\n",
"isbn 7506079038, 9787506079037\n",
"publicationyear 2015.\n",
"publisher Dong fang chu ban she,\n",
"subjects China Economic conditions 2000, China Economic...\n",
"itemtype acbk\n",
"itemcollection naln\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 705, dtype: object)\n",
"(706, bibnum 34565\n",
"title Memoirs of Montparnasse. With an introd. by Le...\n",
"author Glassco, John\n",
"isbn 0195401689\n",
"publicationyear 1970.\n",
"publisher Oxford University Press,\n",
"subjects Glassco John\n",
"itemtype acbk\n",
"itemcollection cab\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 706, dtype: object)\n",
"(707, bibnum 2688060\n",
"title 101 ways to do more with your dog! : make your...\n",
"author Sundance, Kyra\n",
"isbn 1592536425, 9781592536429\n",
"publicationyear c2010.\n",
"publisher Quarry Books,\n",
"subjects Dogs Training\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 707, dtype: object)\n",
"(708, bibnum 2921538\n",
"title Pokémon adventures. Diamond and Pearl platinum...\n",
"author Kusaka, Hidenori\n",
"isbn 1421554046, 9781421554044\n",
"publicationyear c2013.\n",
"publisher Viz Media,\n",
"subjects Pok‚mon Fictitious characters Comic books stri...\n",
"itemtype jcbk\n",
"itemcollection nccomic\n",
"floatingitem NaN\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 708, dtype: object)\n",
"(709, bibnum 3215744\n",
"title We're only in it for the money / Zappa/Mothers...\n",
"author Zappa, Frank\n",
"isbn NaN\n",
"publicationyear ℗2012.\n",
"publisher Zappa Records : Distributed by Universal Music...\n",
"subjects Rock music 1961 1970, Rock music\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 709, dtype: object)\n",
"(710, bibnum 2581081\n",
"title Dreaming in Hindi : coming awake in another la...\n",
"author Rich, Katherine Russell\n",
"isbn 0618155457, 9780618155453\n",
"publicationyear 2009.\n",
"publisher Houghton Mifflin Harcourt,\n",
"subjects India Description and travel, Udaipur Rajastha...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation fre\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 710, dtype: object)\n",
"(711, bibnum 3195138\n",
"title It's too late to stop now -- / Van Morrison.\n",
"author Morrison, Van, 1945-\n",
"isbn NaN\n",
"publicationyear p2016.\n",
"publisher Exile/Legacy,\n",
"subjects Rock music 1971 1980, Rock music\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 711, dtype: object)\n",
"(712, bibnum 3256018\n",
"title Love, Africa : a memoir of romance, love, and ...\n",
"author Gettleman, Jeffrey, 1971-\n",
"isbn 0062284096, 9780062284099\n",
"publicationyear [2017]\n",
"publisher Harper, an imprint of HarperCollinsPublishers,\n",
"subjects Gettleman Jeffrey 1971, War correspondents Uni...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 712, dtype: object)\n",
"(713, bibnum 2309106\n",
"title The rough guide to Shakespeare : the plays, th...\n",
"author Dickson, Andrew, 1979-\n",
"isbn 1843535181\n",
"publicationyear 2005.\n",
"publisher Rough Guides ,\n",
"subjects Shakespeare William 1564 1616 Criticism and in...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 713, dtype: object)\n",
"(714, bibnum 2844358\n",
"title The brief. Series two [videorecording] / a Gra...\n",
"author NaN\n",
"isbn 1598287435, 1598288377, 9781598287431, 9781598...\n",
"publicationyear 2011.\n",
"publisher Acorn Media : ITV Studios Home Entertainment,\n",
"subjects England Drama, Man woman relationships Drama, ...\n",
"itemtype acdvd\n",
"itemcollection cadvd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 714, dtype: object)\n",
"(715, bibnum 1860732\n",
"title Snowflake Bentley / Jacqueline Briggs Martin ;...\n",
"author Martin, Jacqueline Briggs\n",
"isbn 0395861624\n",
"publicationyear 1998.\n",
"publisher Houghton Mifflin,\n",
"subjects Bentley W A Wilson Alwyn 1865 1931 Juvenile li...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 715, dtype: object)\n",
"(716, bibnum 426362\n",
"title Josiah Quincy, 1772-1864; the last Federalist ...\n",
"author McCaughey, Robert A.\n",
"isbn 0674483758\n",
"publicationyear 1974.\n",
"publisher Harvard University Press,\n",
"subjects Quincy Josiah 1772 1864\n",
"itemtype acbk\n",
"itemcollection cab\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 716, dtype: object)\n",
"(717, bibnum 2603275\n",
"title Man's search for meaning / Viktor E. Frankl ; ...\n",
"author Frankl, Viktor E. (Viktor Emil), 1905-1997\n",
"isbn 0807014265, 0807014273, 9780807014264, 9780807...\n",
"publicationyear c2006.\n",
"publisher Beacon Press,\n",
"subjects Frankl Viktor E Viktor Emil 1905 1997, Holocau...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 717, dtype: object)\n",
"(718, bibnum 123911\n",
"title Boy at the window, a novel.\n",
"author Dodson, Owen, 1914-1983\n",
"isbn NaN\n",
"publicationyear [1951]\n",
"publisher Farrar, Straus and Young\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection cs3fic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 718, dtype: object)\n",
"(719, bibnum 2637988\n",
"title Broken glass park / Alina Bronsky ; translated...\n",
"author Bronsky, Alina, 1978-\n",
"isbn 1933372966, 9781933372969\n",
"publicationyear c2010.\n",
"publisher Europa Editions,\n",
"subjects Teenage girls Germany Fiction, Immigrants Germ...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 719, dtype: object)\n",
"(720, bibnum 2473717\n",
"title Frogs / Nic Bishop.\n",
"author Bishop, Nic, 1955-\n",
"isbn 0439877555, 9780439877558\n",
"publicationyear 2008.\n",
"publisher Scholastic Nonfiction,\n",
"subjects Frogs Juvenile literature\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 720, dtype: object)\n",
"(721, bibnum 2512971\n",
"title Goosebumps. One day at HorrorLand [videorecord...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear 2008.\n",
"publisher 20th Century Fox Home Entertainment,\n",
"subjects Amusement parks Juvenile drama, Amusement ride...\n",
"itemtype jcdvd\n",
"itemcollection ncdvd\n",
"floatingitem Floating\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 721, dtype: object)\n",
"(722, bibnum 3069990\n",
"title The treasure of Easter Island / Geronimo Stilt...\n",
"author Stilton, Geronimo\n",
"isbn 0545746140, 9780545746144\n",
"publicationyear 2015.\n",
"publisher Scholastic Inc.,\n",
"subjects Stilton Geronimo Juvenile fiction, Mice Juveni...\n",
"itemtype jcbk\n",
"itemcollection ncser\n",
"floatingitem NaN\n",
"itemlocation fre\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 722, dtype: object)\n",
"(723, bibnum 2709291\n",
"title Learning to care for small mammals / Felicia L...\n",
"author Niven, Felicia Lowenstein\n",
"isbn 0766031950, 9780766031951\n",
"publicationyear 2011.\n",
"publisher Bailey Books,\n",
"subjects Rabbits Juvenile literature, Rodents as pets J...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 723, dtype: object)\n",
"(724, bibnum 3225898\n",
"title Enter the faun [videorecording] / Tamar Rogoff...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear c2015.\n",
"publisher First Run Features,\n",
"subjects Dance for people with disabilities, Dancers wi...\n",
"itemtype acdvd\n",
"itemcollection nadvdnf\n",
"floatingitem Floating\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 724, dtype: object)\n",
"(725, bibnum 522043\n",
"title The maintenance mechanic's/machinist's toolbox...\n",
"author Bies, John D., 1946-\n",
"isbn 0135456665\n",
"publicationyear c1989.\n",
"publisher Arco : Distributed by Prentice Hall Trade,\n",
"subjects Tools Handbooks manuals etc, Maintenance Handb...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 725, dtype: object)\n",
"(726, bibnum 3287260\n",
"title Madame Zero : 9 stories / Sarah Hall.\n",
"author Hall, Sarah, 1974-\n",
"isbn 0062657062, 9780062657060\n",
"publicationyear [2017]\n",
"publisher Custom House,\n",
"subjects Short stories\n",
"itemtype acbk\n",
"itemcollection nanew\n",
"floatingitem NaN\n",
"itemlocation uni\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 726, dtype: object)\n",
"(727, bibnum 3278114\n",
"title Gravity Falls : cinestory comic Volume 2.\n",
"author NaN\n",
"isbn 1988032911, 9781988032917\n",
"publicationyear 2016.\n",
"publisher Joe Books Ltd.,\n",
"subjects Summer Comic books strips etc, Vacations Comic...\n",
"itemtype jcbk\n",
"itemcollection nccomic\n",
"floatingitem NaN\n",
"itemlocation hip\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 727, dtype: object)\n",
"(728, bibnum 2365605\n",
"title Post-bellum, pre-Harlem : African American lit...\n",
"author NaN\n",
"isbn 0814731678, 0814731686, 9780814731673, 9780814...\n",
"publicationyear c2006.\n",
"publisher New York University Press,\n",
"subjects African American arts 19th century, African Am...\n",
"itemtype acbk\n",
"itemcollection naaanf\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 728, dtype: object)\n",
"(729, bibnum 1761181\n",
"title Access to health care. Part 1, Children.\n",
"author NaN\n",
"isbn 0160491231, 0840605277\n",
"publicationyear [1997]\n",
"publisher U.S. Dept. of Health and Human Services, Cente...\n",
"subjects Child health services United States Statistics...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 729, dtype: object)\n",
"(730, bibnum 3182153\n",
"title Every kind of wanting : a novel / Gina Frangello.\n",
"author Frangello, Gina\n",
"isbn 1619027224, 9781619027220\n",
"publicationyear [2016]\n",
"publisher Counterpoint Press,\n",
"subjects Interpersonal relations Fiction, Married peopl...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 730, dtype: object)\n",
"(731, bibnum 3255547\n",
"title The complete guide to garages : design, build,...\n",
"author NaN\n",
"isbn 1591866847, 9781591866848\n",
"publicationyear 2017.\n",
"publisher Cool Spring Press, an imprint of Quarto Publis...\n",
"subjects Garages Design and construction Amateurs manua...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation uni\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 731, dtype: object)\n",
"(732, bibnum 2745116\n",
"title The food52 cookbook : 140 winning recipes from...\n",
"author Hesser, Amanda\n",
"isbn 006188720X, 9780061887208\n",
"publicationyear c2011.\n",
"publisher William Morrow,\n",
"subjects Cooking, Cookbooks\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 732, dtype: object)\n",
"(733, bibnum 2902035\n",
"title My weird writing tips / Dan Gutman ; pictures ...\n",
"author Gutman, Dan\n",
"isbn 0062091069, 0062091077, 9780062091062, 9780062...\n",
"publicationyear c2013.\n",
"publisher Harper,\n",
"subjects English language Composition and exercises Juv...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation lcy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 733, dtype: object)\n",
"(734, bibnum 1268318\n",
"title 62 sonnets and definitions : poems and prosepo...\n",
"author Tanikawa, Shuntarō, 1931-\n",
"isbn 0942668359\n",
"publicationyear c1992.\n",
"publisher Katydid Books ; Distributed by University of H...\n",
"subjects Tanikawa Shuntaro 1931 Translations into English\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 734, dtype: object)\n",
"(735, bibnum 752875\n",
"title Drury Lane calendar, 1747-1776, compiled from ...\n",
"author MacMillan, Dougald, 1897-1975.\n",
"isbn NaN\n",
"publicationyear 1938.\n",
"publisher The Clarendon Press,\n",
"subjects Theatre Royal Drury Lane London England, Theat...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 735, dtype: object)\n",
"(736, bibnum 3270054\n",
"title Batman-Detective Comics. Volume 9, Gordon at w...\n",
"author Tomasi, Peter\n",
"isbn 1401274110, 9781401274115\n",
"publicationyear [2017]\n",
"publisher DC Comics,\n",
"subjects Batman Fictitious character Comic books strips...\n",
"itemtype acbk\n",
"itemcollection nycomic\n",
"floatingitem NaN\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 736, dtype: object)\n",
"(737, bibnum 3123582\n",
"title B'lieve I'm goin down [sound recording] / Kurt...\n",
"author Vile, Kurt\n",
"isbn NaN\n",
"publicationyear [2015]\n",
"publisher Matador,\n",
"subjects Rock music 2011 2020\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 737, dtype: object)\n",
"(738, bibnum 3127126\n",
"title The jinx [videorecording] : the life and death...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear c2015.\n",
"publisher Distributed by Warner Home Video,\n",
"subjects Durst Robert, Missing persons New York State C...\n",
"itemtype acdvd\n",
"itemcollection nadvdnf\n",
"floatingitem Floating\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 738, dtype: object)\n",
"(739, bibnum 3115925\n",
"title Easter mice! / by Bethany Roberts ; illustrate...\n",
"author Roberts, Bethany\n",
"isbn 0544555449, 9780544555440\n",
"publicationyear 2015.\n",
"publisher Houghton Mifflin Harcourt,\n",
"subjects Mice Juvenile fiction, Easter egg hunts Juveni...\n",
"itemtype jcbk\n",
"itemcollection nchol\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 739, dtype: object)\n",
"(740, bibnum 1879806\n",
"title Fishes of the central United States / Joseph R...\n",
"author Tomelleri, Joseph R.\n",
"isbn 070060457X, 0700604588\n",
"publicationyear c1990.\n",
"publisher University Press of Kansas,\n",
"subjects Freshwater fishes Middle West, Freshwater fish...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 740, dtype: object)\n",
"(741, bibnum 1282148\n",
"title Beatrice Webb : a life / Carole Seymour-Jones.\n",
"author Seymour-Jones, Carole\n",
"isbn 1566630010\n",
"publicationyear c1992.\n",
"publisher Ivan R. Dee,\n",
"subjects Webb Beatrice 1858 1943, Fabian Society Great ...\n",
"itemtype acbk\n",
"itemcollection cab\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 741, dtype: object)\n",
"(742, bibnum 3081849\n",
"title Some like it witchy / Heather Blake.\n",
"author Blake, Heather\n",
"isbn 0451465881, 9780451465887\n",
"publicationyear 2015.\n",
"publisher Obsidian,\n",
"subjects Witches Fiction, Magic Fiction, Murder Investi...\n",
"itemtype acbk\n",
"itemcollection camys\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 742, dtype: object)\n",
"(743, bibnum 2715943\n",
"title The preacher / Camilla Läckberg ; translated b...\n",
"author Läckberg, Camilla, 1974-\n",
"isbn 1605981737, 9781605981734\n",
"publicationyear 2011.\n",
"publisher Pegasus Crime,\n",
"subjects Hedstr”m Patrik Fictitious character Fiction, ...\n",
"itemtype acbk\n",
"itemcollection namys\n",
"floatingitem Floating\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 743, dtype: object)\n",
"(744, bibnum 539163\n",
"title The abduction from the seraglio [music] / Wolf...\n",
"author Mozart, Wolfgang Amadeus, 1756-1791\n",
"isbn 0486260046\n",
"publicationyear 1989.\n",
"publisher Dover,\n",
"subjects Operas Scores\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 744, dtype: object)\n",
"(745, bibnum 2088152\n",
"title Gochisōsama ga kikitakute : kazoku no suki na ...\n",
"author Kurihara, Harumi.\n",
"isbn 4579204212\n",
"publicationyear 1992\n",
"publisher Bunka Shuppankyoku,\n",
"subjects Cooking Japanese, International cooking\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 3\n",
"Name: 745, dtype: object)\n",
"(746, bibnum 2982143\n",
"title Canyon Ranch's 30 days to a better brain / by ...\n",
"author Carmona, Richard H.\n",
"isbn 1451643802, 1451643810, 9781451643800, 9781451...\n",
"publicationyear 2014.\n",
"publisher Atria Books,\n",
"subjects Brain Popular works, Brain Aging Prevention Po...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 746, dtype: object)\n",
"(747, bibnum 2796086\n",
"title Night sky / Giles Sparrow.\n",
"author Sparrow, Giles, 1970-\n",
"isbn 0545383749, 9780545383745\n",
"publicationyear 2012.\n",
"publisher Scholastic,\n",
"subjects Constellations Juvenile literature, Planets Ju...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 747, dtype: object)\n",
"(748, bibnum 412042\n",
"title Babes in Toyland / by James Howe ; illustrated...\n",
"author Howe, James, 1946-\n",
"isbn 0152004114\n",
"publicationyear c1986.\n",
"publisher Harcourt Brace Jovanovich,\n",
"subjects Fantasy Fiction, Toys Juvenile fiction, Operas...\n",
"itemtype jcbk\n",
"itemcollection cchol\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 748, dtype: object)\n",
"(749, bibnum 3265125\n",
"title Tyger / Julian Stockwin.\n",
"author Stockwin, Julian\n",
"isbn 1590137000, 9781590137000\n",
"publicationyear [2015]\n",
"publisher McBooks Press, Inc.,\n",
"subjects Kydd Thomas Fictitious character Fiction, Seaf...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 749, dtype: object)\n",
"(750, bibnum 2702335\n",
"title Urban beekeeping : a guide to keeping bees in ...\n",
"author Hughes, Craig\n",
"isbn 1904871690, 9781904871699\n",
"publicationyear [2010]\n",
"publisher Good Life Press,\n",
"subjects Bee culture Great Britain\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 750, dtype: object)\n",
"(751, bibnum 3156037\n",
"title The name of God is mercy : a conversation with...\n",
"author Francis, Pope, 1936-\n",
"isbn 0399588639, 9780399588631\n",
"publicationyear [2016]\n",
"publisher Random House,\n",
"subjects Francis Pope 1936 Interviews, Mercy, Catholic ...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 751, dtype: object)\n",
"(752, bibnum 2713123\n",
"title The ultimate guide to the Daniel fast / Kriste...\n",
"author Feola, Kristen\n",
"isbn 031033117X, 9780310331179\n",
"publicationyear c2010.\n",
"publisher Zondervan,\n",
"subjects Fasting Religious aspects Christianity, Cookin...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 752, dtype: object)\n",
"(753, bibnum 2792347\n",
"title The wild book / Margarita Engle.\n",
"author Engle, Margarita\n",
"isbn 0547581319, 9780547581316\n",
"publicationyear 2012.\n",
"publisher Harcourt Children's Books,\n",
"subjects Novels in verse Juvenile fiction, Dyslexia Juv...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 753, dtype: object)\n",
"(754, bibnum 2480691\n",
"title Répertoire des mariages de la paroisse Saint-M...\n",
"author NaN\n",
"isbn 2920545221, 9782920545229\n",
"publicationyear [1985]\n",
"publisher Société de généalogie de la Mauricie et des Bo...\n",
"subjects Paroisse Saint Marc Shawinigan Qu‚bec Register...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 754, dtype: object)\n",
"(755, bibnum 1770737\n",
"title The horse and his boy / C.S. Lewis ; illustrat...\n",
"author Lewis, C. S. (Clive Staples), 1898-1963\n",
"isbn 0060234881, 006023489X, 9780060234881\n",
"publicationyear 1994.\n",
"publisher HarperCollins,\n",
"subjects Fantasy Fiction\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 755, dtype: object)\n",
"(756, bibnum 66609\n",
"title North Norway, a history. With a foreword by A....\n",
"author Stagg, Frank Noel\n",
"isbn NaN\n",
"publicationyear [1952]\n",
"publisher Allen & Unwin\n",
"subjects Norway History\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 756, dtype: object)\n",
"(757, bibnum 2834287\n",
"title Super-scary mochimochi : 20+ cute & creepy cre...\n",
"author Hrachovec, Anna\n",
"isbn 0307965767, 9780307965769\n",
"publicationyear [2012]\n",
"publisher Potter Craft,\n",
"subjects Amigurumi Patterns Juvenile literature, Soft t...\n",
"itemtype acbk\n",
"itemcollection nynf\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 757, dtype: object)\n",
"(758, bibnum 2928162\n",
"title A seaside Christmas [sound recording] / Sherry...\n",
"author Woods, Sherryl\n",
"isbn 1480539260, 9781480539266\n",
"publicationyear p2013.\n",
"publisher Brilliance Audio,\n",
"subjects Stepfamilies Fiction, Women composers Fiction,...\n",
"itemtype accd\n",
"itemcollection cabocd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 758, dtype: object)\n",
"(759, bibnum 2863707\n",
"title Penny and her marble / Kevin Henkes.\n",
"author Henkes, Kevin\n",
"isbn 0062082035, 0062082043, 9780062082039, 9780062...\n",
"publicationyear c2013.\n",
"publisher Greenwillow Books,\n",
"subjects Lost and found possessions Fiction, Marbles Ga...\n",
"itemtype jcbk\n",
"itemcollection ncrdr\n",
"floatingitem Floating\n",
"itemlocation mon\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 759, dtype: object)\n",
"(760, bibnum 3285103\n",
"title Connie Francis.\n",
"author Francis, Connie\n",
"isbn NaN\n",
"publicationyear ℗1999.\n",
"publisher Polydor,\n",
"subjects Popular music 1951 1960, Popular music 1961 1970\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 760, dtype: object)\n",
"(761, bibnum 3256462\n",
"title Full moon suppers at Salt Water Farm : recipes...\n",
"author Ahearn, Annemarie,\n",
"isbn 1611803322, 9781611803327\n",
"publicationyear c2017.\n",
"publisher Roost Books,\n",
"subjects Seasonal cooking, Cooking American New England...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 761, dtype: object)\n",
"(762, bibnum 2970502\n",
"title The hotel on Place Vendôme : life, death, and ...\n",
"author Mazzeo, Tilar J.\n",
"isbn 0061791083, 9780061791086, 9780062323347\n",
"publicationyear [2014]\n",
"publisher Harper,\n",
"subjects Ritz Hotel Paris France History, France Histor...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 762, dtype: object)\n",
"(763, bibnum 2872918\n",
"title Let's meet a dentist / Bridget Heos ; illustra...\n",
"author Heos, Bridget\n",
"isbn 0761390294, 9780761390299\n",
"publicationyear c2013.\n",
"publisher Millbrook Press,\n",
"subjects Dentists Juvenile literature, Dentistry Juveni...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 763, dtype: object)\n",
"(764, bibnum 2554504\n",
"title Old time radio shows. Amos n' Andy [sound reco...\n",
"author NaN\n",
"isbn 1932806083, 9781932806083\n",
"publicationyear [2004]\n",
"publisher Nostalgic Ventures,\n",
"subjects Radio comedies United States\n",
"itemtype accd\n",
"itemcollection cacdnf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 764, dtype: object)\n",
"(765, bibnum 2115676\n",
"title Henry and Mudge in the green time : the third ...\n",
"author Rylant, Cynthia\n",
"isbn 0689810008\n",
"publicationyear 1992.\n",
"publisher Simon & Schuster Books for Young Readers,\n",
"subjects Dogs Juvenile fiction, Summer Juvenile fiction\n",
"itemtype jcbk\n",
"itemcollection ccrdr\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 765, dtype: object)\n",
"(766, bibnum 3021768\n",
"title An indomitable beast : the remarkable journey ...\n",
"author Rabinowitz, Alan, 1953-\n",
"isbn 1597269964, 9781597269964\n",
"publicationyear [2014]\n",
"publisher Island Press,\n",
"subjects Jaguar, Jaguar Social aspects, Jaguar Conserva...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 766, dtype: object)\n",
"(767, bibnum 2690515\n",
"title Drawing down the moon [sound recording] / Azur...\n",
"author Azure Ray (Musical group)\n",
"isbn NaN\n",
"publicationyear p2010.\n",
"publisher Saddle Creek,\n",
"subjects Popular music 2001 2010, Rock music 2001 2010\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 767, dtype: object)\n",
"(768, bibnum 2238575\n",
"title Where the sidewalk ends : the poems & drawings...\n",
"author Silverstein, Shel\n",
"isbn 0060572345, 0060586532, 9780060572341\n",
"publicationyear c2004.\n",
"publisher HarperCollins,\n",
"subjects Humorous poetry American Juvenile literature, ...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 768, dtype: object)\n",
"(769, bibnum 456873\n",
"title The Confederate image : prints of the lost cau...\n",
"author Neely, Mark E.\n",
"isbn 0807817422, 0807841978\n",
"publicationyear c1987.\n",
"publisher University of North Carolina Press,\n",
"subjects Confederate States of America in art, Portrait...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 769, dtype: object)\n",
"(770, bibnum 1602741\n",
"title Biggest, strongest, fastest / by Steve Jenkins.\n",
"author Jenkins, Steve, 1952-\n",
"isbn 0395697018, 9780395697016\n",
"publicationyear 1995.\n",
"publisher Ticknor & Fields,\n",
"subjects Animals Miscellanea Juvenile literature, Anima...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 770, dtype: object)\n",
"(771, bibnum 3213807\n",
"title Lonely Planet's best in travel 2017 / written ...\n",
"author NaN\n",
"isbn 1786571153, 9781786571151\n",
"publicationyear 2016.\n",
"publisher Lonely Planet,\n",
"subjects Travel Guidebooks\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 771, dtype: object)\n",
"(772, bibnum 3224306\n",
"title The two horses of Genghis Khan [videorecording...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear c2015.\n",
"publisher Distributed exclusively by Corinth Films,\n",
"subjects Genghis Khan 1162 1227, Songs Mongolian, Mongo...\n",
"itemtype acdvd\n",
"itemcollection nalndvd\n",
"floatingitem Floating\n",
"itemlocation spa\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 772, dtype: object)\n",
"(773, bibnum 3079798\n",
"title The dark valley [videorecording] / Film Moveme...\n",
"author NaN\n",
"isbn 1490679804, 9781490679808\n",
"publicationyear [2015]\n",
"publisher Film Movement,\n",
"subjects Strangers Drama, Fathers and sons Drama, Photo...\n",
"itemtype acdvd\n",
"itemcollection nalndvd\n",
"floatingitem Floating\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 773, dtype: object)\n",
"(774, bibnum 2708555\n",
"title How to make money using Etsy : a guide to the ...\n",
"author Adam, Tim, 1979-\n",
"isbn 0470944560, 9780470944561\n",
"publicationyear c2011.\n",
"publisher Wiley,\n",
"subjects Etsy Firm, Handicraft industries Management, H...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 774, dtype: object)\n",
"(775, bibnum 3195149\n",
"title Beyond the bloodhounds / Adia Victoria.\n",
"author Victoria, Adia.\n",
"isbn NaN\n",
"publicationyear p2016.\n",
"publisher Atlantic,\n",
"subjects Rock music 2011 2020\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 775, dtype: object)\n",
"(776, bibnum 245320\n",
"title Four new brittlestars from Puerto Rico (with t...\n",
"author Clark, Austin Hobart, 1880-1954.\n",
"isbn NaN\n",
"publicationyear 1936.\n",
"publisher Smithsonian Institutuion,\n",
"subjects Ophiuroidea, Echinodermata Puerto Rico\n",
"itemtype arbk\n",
"itemcollection cs7r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 776, dtype: object)\n",
"(777, bibnum 1784573\n",
"title Death, lies, and apple pies : a Tori Miracle m...\n",
"author Malmont, Valerie S.\n",
"isbn 0783883331\n",
"publicationyear 1997.\n",
"publisher G.K. Hall,\n",
"subjects Women novelists Fiction, Large type books, Pen...\n",
"itemtype acbk\n",
"itemcollection cs1malf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 777, dtype: object)\n",
"(778, bibnum 2144713\n",
"title A Day in the life of Africa / photographed by ...\n",
"author NaN\n",
"isbn 0971802106\n",
"publicationyear c2002.\n",
"publisher Tides Foundation,\n",
"subjects Africa Pictorial works, Africa Social life and...\n",
"itemtype acbk\n",
"itemcollection naover\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 778, dtype: object)\n",
"(779, bibnum 3226676\n",
"title Click, clack, peep! / Dreamscape ; written by ...\n",
"author NaN\n",
"isbn 152006621X, 9781520066219\n",
"publicationyear [2017]\n",
"publisher Dreamscape Media,\n",
"subjects Domestic animals Juvenile films, Ducks Juvenil...\n",
"itemtype jcdvd\n",
"itemcollection ncdvd\n",
"floatingitem Floating\n",
"itemlocation mon\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 779, dtype: object)\n",
"(780, bibnum 3230473\n",
"title The book of mirrors : a novel / E.O. Chirovici.\n",
"author Chirovici, Eugen-Ovidiu\n",
"isbn 1501141546, 9781501141546\n",
"publicationyear 2017.\n",
"publisher Emily Bestler Books/Atria,\n",
"subjects Authors Fiction, Manuscripts Fiction, Criminal...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 780, dtype: object)\n",
"(781, bibnum 3263223\n",
"title Xander and the dream thief / Margaret Dilloway...\n",
"author Dilloway, Margaret\n",
"isbn 1484724887, 9781484724880\n",
"publicationyear 2017.\n",
"publisher Disney-Hyperion,\n",
"subjects Dreams Juvenile fiction, Monsters Juvenile fic...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 781, dtype: object)\n",
"(782, bibnum 2880636\n",
"title Celebrating Florida / written by Marion Dane B...\n",
"author Bauer, Marion Dane\n",
"isbn 0547896980, 0547896999, 9780547896984, 9780547...\n",
"publicationyear 2013.\n",
"publisher Houghton Mifflin Harcourt,\n",
"subjects Florida Juvenile literature, Florida\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 782, dtype: object)\n",
"(783, bibnum 3053085\n",
"title Cartwheel Katie / by Fran Manushkin ; illustra...\n",
"author Manushkin, Fran\n",
"isbn 147955894X, 1479558966, 9781479558940, 9781479...\n",
"publicationyear [2015]\n",
"publisher Picture Window Books, a Capstone imprint,\n",
"subjects Woo Katie Fictitious character Juvenile fictio...\n",
"itemtype jcbk\n",
"itemcollection ncrdr\n",
"floatingitem Floating\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 783, dtype: object)\n",
"(784, bibnum 2970689\n",
"title Croz [sound recording].\n",
"author Crosby, David, 1941-\n",
"isbn NaN\n",
"publicationyear p2014.\n",
"publisher Blue Castle Records,\n",
"subjects Popular music 2011 2020, Rock music 2011 2020\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation fre\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 784, dtype: object)\n",
"(785, bibnum 3123983\n",
"title The readers of Broken Wheel recommend / Katari...\n",
"author Bivald, Katarina, 1983-\n",
"isbn 149262344X, 9781492623441\n",
"publicationyear [2016]\n",
"publisher Sourcebooks Landmark,\n",
"subjects Pen pals Fiction, Women booksellers Fiction, B...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 785, dtype: object)\n",
"(786, bibnum 2654406\n",
"title Marcus of Umbria : what an Italian dog taught ...\n",
"author Van der Leun, Justine\n",
"isbn 160529960X, 9781605299600\n",
"publicationyear c2010.\n",
"publisher Rodale,\n",
"subjects Van der Leun Justine, Van der Leun Justine Rel...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 786, dtype: object)\n",
"(787, bibnum 2877497\n",
"title Fu wen mi ma / Chenzhe, zhu.\n",
"author Chenzhe\n",
"isbn 7219080492, 9787219080498\n",
"publicationyear 2013.\n",
"publisher Guangxi ren min chu ban she,\n",
"subjects Suspense fiction, Occult fiction\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 787, dtype: object)\n",
"(788, bibnum 3206619\n",
"title All the way [videorecording] / HBO Films ; an ...\n",
"author NaN\n",
"isbn 6316576897, 9786316576897\n",
"publicationyear [2016]\n",
"publisher HBO Home Box Office,\n",
"subjects Johnson Lyndon B Lyndon Baines 1908 1973 Drama...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation rbe\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 788, dtype: object)\n",
"(789, bibnum 446599\n",
"title NaN\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher NaN\n",
"subjects NaN\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 789, dtype: object)\n",
"(790, bibnum 3045390\n",
"title Alex as well / Alyssa Brugman.\n",
"author Brugman, Alyssa, 1974-\n",
"isbn 1627790144, 9781627790147\n",
"publicationyear 2015.\n",
"publisher Henry Holt and Company,\n",
"subjects Identity Psychology Juvenile fiction, Intersex...\n",
"itemtype acbk\n",
"itemcollection cyfic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 790, dtype: object)\n",
"(791, bibnum 3259613\n",
"title Lifer / MercyMe.\n",
"author MercyMe (Musical group)\n",
"isbn NaN\n",
"publicationyear [2017]\n",
"publisher Fair Trade,\n",
"subjects Christian rock music, Contemporary Christian m...\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 791, dtype: object)\n",
"(792, bibnum 2756570\n",
"title Lola reads to Leo / Anna McQuinn ; illustrated...\n",
"author McQuinn, Anna\n",
"isbn 1580894038, 1580894046, 9781580894036, 9781580...\n",
"publicationyear 2012.\n",
"publisher Charlesbridge,\n",
"subjects Babies Fiction, Books and reading Juvenile fic...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation dlr\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 792, dtype: object)\n",
"(793, bibnum 2285156\n",
"title The passion of Ayn Rand [videorecording] / Sho...\n",
"author NaN\n",
"isbn 1929732848\n",
"publicationyear c2000.\n",
"publisher Showtime Entertainment,\n",
"subjects Rand Ayn Drama, Novelists American 20th centur...\n",
"itemtype acdvd\n",
"itemcollection cadvd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 793, dtype: object)\n",
"(794, bibnum 2456879\n",
"title The lonely moose / written & illustrated by Jo...\n",
"author Segal, John\n",
"isbn 1423101731, 9781423101734\n",
"publicationyear 2007.\n",
"publisher Hyperion Books for Children,\n",
"subjects Moose Juvenile fiction, Birds Fiction, Friends...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 794, dtype: object)\n",
"(795, bibnum 1973188\n",
"title Ward's motor vehicle facts & figures.\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear c1999-\n",
"publisher Ward's Communications,\n",
"subjects Automobile industry and trade United States St...\n",
"itemtype arbk\n",
"itemcollection cadesk7\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 795, dtype: object)\n",
"(796, bibnum 3011434\n",
"title Investing for dummies / by Eric Tyson, financi...\n",
"author Tyson, Eric (Eric Kevin)\n",
"isbn 1118884922, 1119175704, 9781118884928, 9781119...\n",
"publicationyear [2014]\n",
"publisher John Wiley & Sons, Inc.,\n",
"subjects Finance Personal, Finance, Investments\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 796, dtype: object)\n",
"(797, bibnum 1604965\n",
"title French masterworks for organ [music] / [collec...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear [1970?], c1963.\n",
"publisher J. Fischer,\n",
"subjects Organ music 19th century, Music France 19th ce...\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 797, dtype: object)\n",
"(798, bibnum 3129807\n",
"title Night music / John Connolly.\n",
"author Connolly, John, 1968-\n",
"isbn 1501118366, 9781501118364\n",
"publicationyear 2015.\n",
"publisher Emily Bestler Books/Atria,\n",
"subjects Horror fiction, Short stories\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 798, dtype: object)\n",
"(799, bibnum 3077640\n",
"title Topsy-turvy : how the Civil War turned the wor...\n",
"author Jabour, Anya\n",
"isbn 1442249080, 9781442249080\n",
"publicationyear 2015.\n",
"publisher Rowman & Littlefield,\n",
"subjects Children Confederate States of America History...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 799, dtype: object)\n",
"(800, bibnum 440630\n",
"title NaN\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher NaN\n",
"subjects NaN\n",
"itemtype acmus\n",
"itemcollection camus\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 800, dtype: object)\n",
"(801, bibnum 126470\n",
"title The Brooks legend.\n",
"author Ellis, William Donohue\n",
"isbn NaN\n",
"publicationyear [1958]\n",
"publisher Crowell\n",
"subjects NaN\n",
"itemtype acbk\n",
"itemcollection cs3fic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 801, dtype: object)\n",
"(802, bibnum 2596426\n",
"title The human stain / Philip Roth.\n",
"author Roth, Philip\n",
"isbn 0375726349, 9780375726347\n",
"publicationyear 2001.\n",
"publisher Vintage International,\n",
"subjects Passing Identity Fiction, African American men...\n",
"itemtype acbk\n",
"itemcollection cafic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 802, dtype: object)\n",
"(803, bibnum 2612027\n",
"title The caveman's valentine / George Dawes Green.\n",
"author Green, George Dawes\n",
"isbn 0446671517, 9780446671514\n",
"publicationyear 2009.\n",
"publisher Grand Central Publishing,\n",
"subjects Homeless persons New York State New York Ficti...\n",
"itemtype acbk\n",
"itemcollection camys\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 803, dtype: object)\n",
"(804, bibnum 2586868\n",
"title Path of miracles : the seven life-changing pri...\n",
"author Rodriguez, Sammy\n",
"isbn 0451226445, 9780451226440\n",
"publicationyear c2009.\n",
"publisher Celebra,\n",
"subjects Success Religious aspects Christianity\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 804, dtype: object)\n",
"(805, bibnum 3078322\n",
"title More amazing vehicles / Nathanaël Kuipers, Mat...\n",
"author Kuipers, Nathanaël\n",
"isbn 1593275137, 9781593275136\n",
"publicationyear [2013]\n",
"publisher No Starch Press, Inc.,\n",
"subjects Motor vehicles Models, LEGO toys, Motor vehicl...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 805, dtype: object)\n",
"(806, bibnum 244829\n",
"title Journal.\n",
"author American Chamber of Commerce of Mexico\n",
"isbn NaN\n",
"publicationyear NaN\n",
"publisher NaN\n",
"subjects Mexico Commerce United States Periodicals, Uni...\n",
"itemtype arbk\n",
"itemcollection cs6r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 4\n",
"Name: 806, dtype: object)\n",
"(807, bibnum 2902790\n",
"title In the arms of angels : messages from the ange...\n",
"author Nahmad, Claire\n",
"isbn 1780283792, 9781780283791\n",
"publicationyear 2012.\n",
"publisher Watkins,\n",
"subjects Angels\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 807, dtype: object)\n",
"(808, bibnum 1741125\n",
"title In-flight icing encounter and loss of control,...\n",
"author United States. National Transportation Safety ...\n",
"isbn NaN\n",
"publicationyear [1996-]\n",
"publisher The Board ; National Technical Information Ser...\n",
"subjects Aircraft accidents Indiana Roselawn, Airplanes...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 808, dtype: object)\n",
"(809, bibnum 3184599\n",
"title Ngẫu hứng nướng / Phan Thắng Thái Hòa.\n",
"author Phan, Thắng Thái Hòa,\n",
"isbn 6045630270, 9786045630273\n",
"publicationyear 2016.\n",
"publisher Nhà xuất bản Phụ nữ,\n",
"subjects Roasting Cooking, Barbecuing\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 809, dtype: object)\n",
"(810, bibnum 2523833\n",
"title If you give a cat a cupcake / written by Laura...\n",
"author Numeroff, Laura Joffe\n",
"isbn 0060283246, 0060283254, 9780060283247, 9780060...\n",
"publicationyear 2008.\n",
"publisher Laura Geringer Books,\n",
"subjects Cats Juvenile fiction\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation fre\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 810, dtype: object)\n",
"(811, bibnum 2491759\n",
"title Australia, Hawaii, and the Pacific / Deborah U...\n",
"author Underwood, Deborah\n",
"isbn 1403498946, 9781403498946\n",
"publicationyear c2008.\n",
"publisher Heinemann Library,\n",
"subjects Music Australia History and criticism Juvenile...\n",
"itemtype jcbk\n",
"itemcollection ncnf\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 811, dtype: object)\n",
"(812, bibnum 3065496\n",
"title Veep. The complete third season [videorecordin...\n",
"author NaN\n",
"isbn 0111822084, 9780111822081\n",
"publicationyear [2015]\n",
"publisher HBO Home Video ; distributed by Warner Home Vi...\n",
"subjects Vice Presidents Drama, Women politicians Drama...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 812, dtype: object)\n",
"(813, bibnum 315776\n",
"title An artist in Egypt.\n",
"author Tyndale, Walter, 1855-1943\n",
"isbn NaN\n",
"publicationyear [1912]\n",
"publisher Hodder\n",
"subjects Egypt Pictorial works\n",
"itemtype arbk\n",
"itemcollection cs8r\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 813, dtype: object)\n",
"(814, bibnum 2617596\n",
"title Pigs make me sneeze! / by Mo Willems.\n",
"author Willems, Mo\n",
"isbn 1423114116, 9781423114116\n",
"publicationyear c2009.\n",
"publisher Hyperion Books for Children,\n",
"subjects Piggie Fictitious character Willems Juvenile f...\n",
"itemtype jcbk\n",
"itemcollection ncrdr\n",
"floatingitem Floating\n",
"itemlocation mon\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 814, dtype: object)\n",
"(815, bibnum 3253672\n",
"title Found / S. A. Bodeen.\n",
"author Bodeen, S. A. (Stephanie A.), 1965-\n",
"isbn 1250027837, 1250027845, 9781250027832, 9781250...\n",
"publicationyear 2017.\n",
"publisher Feiwel & Friends,\n",
"subjects Shipwrecks Juvenile fiction, Survival Juvenile...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 815, dtype: object)\n",
"(816, bibnum 1931230\n",
"title Encyclopedia of American industries / Scott He...\n",
"author NaN\n",
"isbn 0787601462, 0787601470, 0787627321\n",
"publicationyear c1998.\n",
"publisher Gale,\n",
"subjects Industries United States Encyclopedias, Indust...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 816, dtype: object)\n",
"(817, bibnum 2166830\n",
"title Loch [sound recording] / by Paul Zindel.\n",
"author Zindel, Paul\n",
"isbn 1402523157\n",
"publicationyear p1995.\n",
"publisher Recorded Books,\n",
"subjects Underwater exploration Fiction, Monsters Ficti...\n",
"itemtype jccd\n",
"itemcollection ncbocd\n",
"floatingitem Floating\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 817, dtype: object)\n",
"(818, bibnum 3270220\n",
"title Hyacinth and the secrets beneath / Jacob Sager...\n",
"author Sager Weinstein, Jacob\n",
"isbn 0399553177, 0399553185, 0399553193, 9780399553...\n",
"publicationyear [2017]\n",
"publisher Random House,\n",
"subjects Magic Fiction, Secrets Fiction, Underground ar...\n",
"itemtype jcbk\n",
"itemcollection ccfic\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 818, dtype: object)\n",
"(819, bibnum 518907\n",
"title A collector's guide to nesting dolls : histori...\n",
"author Lefkovitz, Michele Lyons\n",
"isbn 0896890694\n",
"publicationyear c1989.\n",
"publisher Books Americana,\n",
"subjects Nesting dolls Collectors and collecting Catalogs\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 819, dtype: object)\n",
"(820, bibnum 3225668\n",
"title The cyclist who went out in the cold : adventu...\n",
"author Moore, Tim, 1964-\n",
"isbn 168177299X, 9781681772998\n",
"publicationyear c2017.\n",
"publisher Pegasus Books,\n",
"subjects Moore Tim 1964 Travel Communist countries, Bic...\n",
"itemtype acbk\n",
"itemcollection nanew\n",
"floatingitem NaN\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 820, dtype: object)\n",
"(821, bibnum 2603347\n",
"title Locked in / Marcia Muller.\n",
"author Muller, Marcia\n",
"isbn 0446581054, 9780446581059\n",
"publicationyear 2009.\n",
"publisher Grand Central Pub.,\n",
"subjects McCone Sharon Fictitious character Fiction, Wo...\n",
"itemtype acbk\n",
"itemcollection camys\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 821, dtype: object)\n",
"(822, bibnum 178088\n",
"title Sixteen years in the Indian country; the journ...\n",
"author Harmon, Daniel Williams, 1778-1843\n",
"isbn NaN\n",
"publicationyear 1957.\n",
"publisher Macmillan Co. of Canada,\n",
"subjects Indians of North America Canada, Northwest Can...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 822, dtype: object)\n",
"(823, bibnum 3080496\n",
"title Sombrero / Paul Hoppe.\n",
"author Hoppe, Paul\n",
"isbn 8493782564, 9788493782566\n",
"publicationyear 2011.\n",
"publisher Flamboyant,\n",
"subjects Hats Juvenile fiction, Lost and found possessi...\n",
"itemtype jcbk\n",
"itemcollection ncln\n",
"floatingitem NaN\n",
"itemlocation col\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 823, dtype: object)\n",
"(824, bibnum 3111259\n",
"title Disrupt you! : master personal transformation,...\n",
"author Samit, Jay.\n",
"isbn 1250059372, 9781250059376\n",
"publicationyear 2015.\n",
"publisher Flatiron Books,\n",
"subjects Creative ability in business, Decision making,...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 824, dtype: object)\n",
"(825, bibnum 3062309\n",
"title Finding your roots. Season 2 [videorecording] ...\n",
"author NaN\n",
"isbn 9781627890946\n",
"publicationyear c2014.\n",
"publisher Distributed by PBS Distribution,\n",
"subjects Genealogy, Celebrities Genealogy, United State...\n",
"itemtype acdvd\n",
"itemcollection nadvdnf\n",
"floatingitem Floating\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 825, dtype: object)\n",
"(826, bibnum 2470531\n",
"title Danny Diamondback / by Barry E. Jackson.\n",
"author Jackson, Barry (Barry E.)\n",
"isbn 0061131849, 0061131857, 9780061131844, 9780061...\n",
"publicationyear 2008.\n",
"publisher HarperCollins,\n",
"subjects Rattlesnakes Juvenile fiction, Snakes Fiction,...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 826, dtype: object)\n",
"(827, bibnum 76162\n",
"title Indians of the North Pacific Coast, edited and...\n",
"author McFeat, Tom\n",
"isbn NaN\n",
"publicationyear [1967, c1966]\n",
"publisher University of Washington Press\n",
"subjects Indians of North America Northwest Coast of No...\n",
"itemtype arbk\n",
"itemcollection caref\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 827, dtype: object)\n",
"(828, bibnum 525776\n",
"title The end of white world supremacy : four speech...\n",
"author X, Malcolm, 1925-1965\n",
"isbn 1559700068\n",
"publicationyear c1971.\n",
"publisher Arcade Publishing,\n",
"subjects African Americans Civil rights, African Americ...\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation bro\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 828, dtype: object)\n",
"(829, bibnum 2586766\n",
"title Magic box : a magical story / by Katie Cleminson.\n",
"author Cleminson, Katie\n",
"isbn 1423121090, 9781423121091\n",
"publicationyear 2009.\n",
"publisher Disney/Hyperion,\n",
"subjects Magic Fiction, Magic tricks Juvenile fiction, ...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 829, dtype: object)\n",
"(830, bibnum 2004517\n",
"title Textile style : the art of using antique and e...\n",
"author Clifton-Mogg, Caroline\n",
"isbn 0821226843\n",
"publicationyear c2000.\n",
"publisher Little, Brown and Co.,\n",
"subjects Textile fabrics in interior decoration\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 830, dtype: object)\n",
"(831, bibnum 2692644\n",
"title Melodies & harmonies [sound recording] / John ...\n",
"author Cage, John\n",
"isbn 9120031340645\n",
"publicationyear p2010.\n",
"publisher Col Legno,\n",
"subjects Violin and piano music, Violin and piano music...\n",
"itemtype accd\n",
"itemcollection cacd\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 831, dtype: object)\n",
"(832, bibnum 3202684\n",
"title Double down / by Jeff Kinney.\n",
"author Kinney, Jeff\n",
"isbn 1419723448, 1419725939, 9781419723445, 9781419...\n",
"publicationyear [2016]\n",
"publisher Amulet Books, an imprint of Abrams,\n",
"subjects Halloween Juvenile fiction, Video games Juveni...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 832, dtype: object)\n",
"(833, bibnum 2583838\n",
"title Right time, right place : coming of age with W...\n",
"author Brookhiser, Richard\n",
"isbn 0465013554, 9780465013555\n",
"publicationyear c2009.\n",
"publisher Basic Books,\n",
"subjects Brookhiser Richard, Buckley William F William ...\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 833, dtype: object)\n",
"(834, bibnum 3198482\n",
"title Paris for one and other stories / Jojo Moyes.\n",
"author Moyes, Jojo, 1969-\n",
"isbn 0735221073, 9780735221079\n",
"publicationyear [2016]\n",
"publisher Pamela Dorman Books/Viking,\n",
"subjects Young women Fiction, Paris France Fiction, Sho...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation glk\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 834, dtype: object)\n",
"(835, bibnum 2858848\n",
"title Twilight's last gleaming [videorecording] / Ba...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear 2012.\n",
"publisher Olive Films,\n",
"subjects Military prisons Drama, Prisons Drama, Hostage...\n",
"itemtype acdvd\n",
"itemcollection nadvd\n",
"floatingitem Floating\n",
"itemlocation nga\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 835, dtype: object)\n",
"(836, bibnum 731670\n",
"title Days of trial and triumph; a pictorial history...\n",
"author Lockheed Aircraft Corporation\n",
"isbn NaN\n",
"publicationyear 1969.\n",
"publisher Corporate Publications, Lockheed Aircraft Corp.,\n",
"subjects Lockheed aircraft\n",
"itemtype arbk\n",
"itemcollection caaero\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 836, dtype: object)\n",
"(837, bibnum 2902851\n",
"title Barron's 1100 words you need to know / Murray ...\n",
"author Bromberg, Murray\n",
"isbn 1438001665, 9781438001661\n",
"publicationyear c2013.\n",
"publisher Barron's Educational Series,\n",
"subjects Vocabulary\n",
"itemtype acbk\n",
"itemcollection nanf\n",
"floatingitem NaN\n",
"itemlocation qna\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 837, dtype: object)\n",
"(838, bibnum 2719901\n",
"title Rogue / Mark Walden.\n",
"author Walden, Mark\n",
"isbn 1442421878, 9781442421875\n",
"publicationyear 2011.\n",
"publisher Simon & Schuster Books for Young Readers,\n",
"subjects H I V E Imaginary organization Fiction, Artifi...\n",
"itemtype jcbk\n",
"itemcollection ncfic\n",
"floatingitem NaN\n",
"itemlocation hip\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 838, dtype: object)\n",
"(839, bibnum 3236886\n",
"title Run, ride, sink or swim : a rookie's year in w...\n",
"author Fry, Lucy,\n",
"isbn 0571313159, 9780571313150\n",
"publicationyear 2017.\n",
"publisher Faber & Faber,\n",
"subjects Fry Lucy, Triathlon, Triathletes\n",
"itemtype acbk\n",
"itemcollection canew\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 839, dtype: object)\n",
"(840, bibnum 3296542\n",
"title The summer that made us / Robyn Carr.\n",
"author Carr, Robyn\n",
"isbn 0778330869, 0778331040, 9780778330868, 9780778...\n",
"publicationyear [2017].\n",
"publisher Mira Books,\n",
"subjects Sisters Fiction, Domestic fiction\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 840, dtype: object)\n",
"(841, bibnum 2706479\n",
"title Chronicles of Narnia. The voyage of the dawn t...\n",
"author NaN\n",
"isbn NaN\n",
"publicationyear 2011.\n",
"publisher 20th Century Fox,\n",
"subjects Narnia Imaginary place Juvenile drama, Brother...\n",
"itemtype jcdvd\n",
"itemcollection ncdvd\n",
"floatingitem Floating\n",
"itemlocation dth\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 841, dtype: object)\n",
"(842, bibnum 3256498\n",
"title Three minutes to doomsday : an agent, a traito...\n",
"author Navarro, Joe, 1953-\n",
"isbn 1501128272, 9781501128271\n",
"publicationyear 2017.\n",
"publisher Scribner,\n",
"subjects Ramsay Rod, Navarro Joe 1953, Espionage Soviet...\n",
"itemtype acbk\n",
"itemcollection nanew\n",
"floatingitem NaN\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 842, dtype: object)\n",
"(843, bibnum 3037069\n",
"title Zadie the sewing fairy / by Daisy Meadows.\n",
"author Meadows, Daisy\n",
"isbn 0545708311, 9780545708319\n",
"publicationyear [2015]\n",
"publisher Scholastic Inc.,\n",
"subjects Fairies Juvenile fiction, Magic Juvenile ficti...\n",
"itemtype jcbk\n",
"itemcollection ncef\n",
"floatingitem NaN\n",
"itemlocation nhy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 843, dtype: object)\n",
"(844, bibnum 2972608\n",
"title Tian kong diao xia lai le / wen, Awan Jimeizi ...\n",
"author Aman, Kimiko, 1931-\n",
"isbn 9789865925307, 9865925303\n",
"publicationyear 2013.\n",
"publisher Da ying wen hua shi ye gu fen you xian gong si,\n",
"subjects Rabbits Juvenile fiction, Sharing Juvenile fic...\n",
"itemtype jcbk\n",
"itemcollection ccln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 844, dtype: object)\n",
"(845, bibnum 2690553\n",
"title Tiny Little Fly / words by Michael Rosen ; pic...\n",
"author Rosen, Michael, 1946-\n",
"isbn 0763646814, 9780763646813\n",
"publicationyear 2010.\n",
"publisher Candlewick Press,\n",
"subjects Flies Juvenile fiction, Jungle animals Juvenil...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 845, dtype: object)\n",
"(846, bibnum 724214\n",
"title Albert Schweitzer in Selbstzeugnissen und Bild...\n",
"author Steffahn, Harald\n",
"isbn 3499502631\n",
"publicationyear 1979.\n",
"publisher Rowohlt,\n",
"subjects Schweitzer Albert 1875 1965, Missionaries Medi...\n",
"itemtype acbk\n",
"itemcollection caln\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 846, dtype: object)\n",
"(847, bibnum 2884470\n",
"title Everyone can learn to ride a bicycle / Chris R...\n",
"author Raschka, Christopher\n",
"isbn 0375870075, 037597007X, 9780375870071, 9780375...\n",
"publicationyear ©2013.\n",
"publisher Schwartz & Wade Books,\n",
"subjects Bicycles Juvenile fiction, Fathers and daughte...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 847, dtype: object)\n",
"(848, bibnum 3035537\n",
"title Alone together / Suzanne Bloom.\n",
"author Bloom, Suzanne, 1950-\n",
"isbn 162091736X, 9781620917367\n",
"publicationyear [2014]\n",
"publisher Boyds Mills Press, an imprint of Highlights,\n",
"subjects Geese Juvenile fiction, Foxes Juvenile fiction...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation net\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 848, dtype: object)\n",
"(849, bibnum 3155302\n",
"title 99¢ / Santigold.\n",
"author Santigold, 1976-\n",
"isbn NaN\n",
"publicationyear [2016]\n",
"publisher Atlantic,\n",
"subjects Popular music 2011 2020, Electronic dance musi...\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation mon\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 849, dtype: object)\n",
"(850, bibnum 3220882\n",
"title Chance encounters / Rosie Harris.\n",
"author Harris, Rosie, 1925-\n",
"isbn 0727886401, 9780727886408\n",
"publicationyear 2016.\n",
"publisher Severn House Publishers,\n",
"subjects World War 1939 1945 Great Britain Fiction, Wom...\n",
"itemtype acbk\n",
"itemcollection nafic\n",
"floatingitem NaN\n",
"itemlocation mag\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 850, dtype: object)\n",
"(851, bibnum 3255639\n",
"title 50 song memoir / the Magnetic Fields.\n",
"author Magnetic Fields (Musical group)\n",
"isbn NaN\n",
"publicationyear ℗2017.\n",
"publisher Nonesuch,\n",
"subjects Popular music 2011 2020, Rock music 2011 2020\n",
"itemtype accd\n",
"itemcollection naover\n",
"floatingitem NaN\n",
"itemlocation gwd\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 851, dtype: object)\n",
"(852, bibnum 3141511\n",
"title Dora goes to school = Dora va a la escuela / a...\n",
"author Valdes, Leslie\n",
"isbn 0385374968, 1480636479, 9780385374965, 9781480...\n",
"publicationyear [2014]\n",
"publisher Random House Children's Books,\n",
"subjects Dora the Explorer Fictitious character Juvenil...\n",
"itemtype jcbk\n",
"itemcollection ccser\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 3\n",
"Name: 852, dtype: object)\n",
"(853, bibnum 2883931\n",
"title Squish. [No. 5], Game on! / by Jennifer L. Hol...\n",
"author Holm, Jennifer L.\n",
"isbn 0307982998, 0307983005, 0307983013, 9780307982...\n",
"publicationyear [2013]\n",
"publisher Random House,\n",
"subjects Amoeba Comic books strips etc, Video games Com...\n",
"itemtype jcbk\n",
"itemcollection nccomic\n",
"floatingitem NaN\n",
"itemlocation wts\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 2\n",
"Name: 853, dtype: object)\n",
"(854, bibnum 3064831\n",
"title Red : a crayon's story / Michael Hall.\n",
"author Hall, Michael, 1954-\n",
"isbn 0062252070, 0062252097, 9780062252074, 9780062...\n",
"publicationyear [2015]\n",
"publisher Greenwillow Books, an imprint of HarperCollins...\n",
"subjects Colors Juvenile fiction, Identity Psychology J...\n",
"itemtype jcbk\n",
"itemcollection ncpic\n",
"floatingitem NaN\n",
"itemlocation nhy\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 854, dtype: object)\n",
"(855, bibnum 3067676\n",
"title Mahler 7 [sound recording].\n",
"author Mahler, Gustav, 1860-1911\n",
"isbn NaN\n",
"publicationyear [2014]\n",
"publisher Deutsche Grammophon,\n",
"subjects Symphonies\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation bal\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 855, dtype: object)\n",
"(856, bibnum 2587263\n",
"title Fables. [12], The dark ages / Bill Willingham,...\n",
"author Willingham, Bill\n",
"isbn 1401223168, 9781401223168\n",
"publicationyear 2009.\n",
"publisher Vertigo,\n",
"subjects Fictitious characters Comic books strips etc, ...\n",
"itemtype acbk\n",
"itemcollection nacomic\n",
"floatingitem NaN\n",
"itemlocation swt\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 856, dtype: object)\n",
"(857, bibnum 3052546\n",
"title Ruins [sound recording] / Grouper.\n",
"author Grouper (Musician)\n",
"isbn NaN\n",
"publicationyear [2014]\n",
"publisher Kranky,\n",
"subjects Popular music 2011 2020, Ambient music\n",
"itemtype accd\n",
"itemcollection nacd\n",
"floatingitem Floating\n",
"itemlocation bea\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
"Name: 857, dtype: object)\n",
"(858, bibnum 6222\n",
"title The plastic age (1917-1930). Edited, with intr...\n",
"author Sklar, Robert\n",
"isbn 0807605719\n",
"publicationyear [1970]\n",
"publisher G. Braziller\n",
"subjects United States Civilization 1918 1945\n",
"itemtype acbk\n",
"itemcollection canf\n",
"floatingitem NaN\n",
"itemlocation cen\n",
"reportdate 2017-09-01T00:00:00.000\n",
"itemcount 1\n",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment