From ad7d4ef1964b5230b8d84e1460c551e8a3b208ad Mon Sep 17 00:00:00 2001 From: Dolsy Smith Date: Wed, 27 Dec 2023 12:58:30 -0500 Subject: [PATCH] Dec 2023 update (#59) --- .gitmodules | 13 +- course_utils/autograder.py | 29 +- course_utils/dataset_prep.py | 90 + homework-modules/python-camp-hw-2-gr | 1 - homework-modules/python-camp-hw-3-gr | 1 - homework-modules/python-camp-hw-4-gr | 1 - homework-modules/python-camp-hw-final-gr | 1 + textbook/_toc.yml | 34 +- textbook/glossary.md | 54 +- textbook/guidelines.md | 25 +- textbook/homework.md | 26 +- textbook/intro.md | 2 +- .../homework/HW_1_from_code_to_data.ipynb | 725 +- textbook/notebooks/homework/HW_2_GR.ipynb | 162 - .../HW_2_programming_techniques.ipynb | 508 +- textbook/notebooks/homework/HW_3_GR.ipynb | 278 - .../homework/HW_3_error_stories.ipynb | 372 +- textbook/notebooks/homework/HW_4_GR.ipynb | 214 - textbook/notebooks/homework/HW_Final_GR.ipynb | 473 + ...ing_code.ipynb => 1_1_modeling_code.ipynb} | 57 +- .../lessons/1_2_from_data_to_code.ipynb | 346 +- .../lessons/2_1_describing_the_team.ipynb | 405 +- .../lessons/2_2_programming_with_data.ipynb | 881 + .../notebooks/lessons/2_2_querying_data.ipynb | 629 - .../lessons/3_1_from_story_to_code.ipynb | 144 +- .../parsons-problems/html/homework-1-1.html | 34 +- .../parsons-problems/html/homework-1-2.html | 10 +- .../parsons-problems/html/homework-2-GR.html | 39 +- .../parsons-problems/html/lessons-2-1-1.html | 30 +- textbook/parsons-yaml/homework-1-1.yml | 3 +- textbook/parsons-yaml/homework-2-GR.yml | 10 +- textbook/parsons-yaml/lessons-2-1-1.yml | 3 +- .../data/bookstore-data-fall-2023.json | 118883 +++++++++++++++ .../data/reserves-data-fall-2023.csv | 381 + textbook/static-assets/data/team-dataset.json | 1 + .../img/homework/download-notebook.png | Bin 135511 -> 81306 bytes textbook/static-assets/img/list-to-dict.png | Bin 0 -> 87316 bytes textbook/static-assets/img/nested-data.png | Bin 0 -> 74018 bytes .../static-assets/img/schedule-of-classes.png | Bin 0 -> 129995 bytes .../img/string-indexing-table.png | Bin 0 -> 25090 bytes .../img/string-negative-indexing-table.png | Bin 0 -> 24777 bytes 41 files changed, 122290 insertions(+), 2575 deletions(-) create mode 100644 course_utils/dataset_prep.py delete mode 160000 homework-modules/python-camp-hw-2-gr delete mode 160000 homework-modules/python-camp-hw-3-gr delete mode 160000 homework-modules/python-camp-hw-4-gr create mode 160000 homework-modules/python-camp-hw-final-gr delete mode 100644 textbook/notebooks/homework/HW_2_GR.ipynb delete mode 100644 textbook/notebooks/homework/HW_3_GR.ipynb delete mode 100644 textbook/notebooks/homework/HW_4_GR.ipynb create mode 100644 textbook/notebooks/homework/HW_Final_GR.ipynb rename textbook/notebooks/lessons/{1_1_choreographing_code.ipynb => 1_1_modeling_code.ipynb} (83%) create mode 100644 textbook/notebooks/lessons/2_2_programming_with_data.ipynb delete mode 100644 textbook/notebooks/lessons/2_2_querying_data.ipynb create mode 100644 textbook/static-assets/data/bookstore-data-fall-2023.json create mode 100644 textbook/static-assets/data/reserves-data-fall-2023.csv create mode 100644 textbook/static-assets/data/team-dataset.json create mode 100644 textbook/static-assets/img/list-to-dict.png create mode 100644 textbook/static-assets/img/nested-data.png create mode 100644 textbook/static-assets/img/schedule-of-classes.png create mode 100644 textbook/static-assets/img/string-indexing-table.png create mode 100644 textbook/static-assets/img/string-negative-indexing-table.png diff --git a/.gitmodules b/.gitmodules index 7023910..c25f49f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,10 +1,3 @@ -[submodule "python-camp-hw-2-gr"] - path = homework-modules/python-camp-hw-2-gr - url = https://github.com/gwu-libraries/python-camp-hw-2-gr.git - ignore = dirty -[submodule "homework-modules/python-camp-hw-4-gr"] - path = homework-modules/python-camp-hw-4-gr - url = https://github.com/gwu-libraries/python-camp-hw-4-gr.git -[submodule "homework-modules/python-camp-hw-3-gr"] - path = homework-modules/python-camp-hw-3-gr - url = https://github.com/gwu-libraries/python-camp-hw-3-gr.git +[submodule "homework-modules/python-camp-hw-final-gr"] + path = homework-modules/python-camp-hw-final-gr + url = https://github.com/gwu-libraries/python-camp-hw-final-gr.git diff --git a/course_utils/autograder.py b/course_utils/autograder.py index 89b9992..4b8f152 100644 --- a/course_utils/autograder.py +++ b/course_utils/autograder.py @@ -19,18 +19,26 @@ def extract_nb_code(nb_json): Expect each relevant metadata tag to follow the above format. ''' code = [] + ex_idx = 1 for cell in nb_json['cells']: # Filter for code cells if cell['cell_type'] == 'code': # Filter for the right kind of metadata tags = [t for t in cell['metadata'].get('tags', []) - if t.startswith('setup') or t.startswith('solution') or t.startswith('test-case')] + if t.startswith('setup') or t.startswith('test-case')] if tags: # Assume only one relevant tag per cell tag_type, tag_idx = tags[0].split(':') code.append({'code': cell['source'], 'type': tag_type, 'index': tag_idx}) + if tag_type == 'test-case': + # Increment at every test case + ex_idx += 1 + elif cell['source'] and cell['source'][0].startswith('#Your code below'): + code.append({'code': cell['source'], + 'type': 'solution', + 'index': str(ex_idx)}) # This supports proper indexing of exercises without setup cells # Group code cells according to their index (so that the setup, solution and test code for each exercise will be in the same dict) groups = [list(g) for k, g in groupby(code, lambda x: x['index'])] # Create one dict per exercise, containing setup, solution, and test code @@ -51,17 +59,18 @@ def setUp(self): self.hw_code = extract_nb_code(homework_nb) def test_homework(self): + test_vars = {} for i, ex in enumerate(self.hw_code): with self.subTest(exercise=i+1): - # Pass this as the "locals" param to the first two exec statements to store variables set by the code - test_vars = {} - # Run setup code, if it exists - exec(ex.get('setup', ''), None, test_vars) - # Run solution code - exec(ex['solution'], None, test_vars) - # Run test code as assertion - # Pass our local vars dict as globals so that it can be accessed at compile time by exec() - exec(ex['test-case'], test_vars) + # Pass this as the "locals" param to the first two exec statements to store variables set by the code + # Run setup code, if it exists + exec(ex.get('setup', ''), None, test_vars) + # Run solution code + exec(ex['solution'], None, test_vars) + # Run test code as assertion + # Pass our local vars dict as globals so that it can be accessed at compile time by exec() + exec(ex['test-case'], test_vars) + if __name__ == '__main__': diff --git a/course_utils/dataset_prep.py b/course_utils/dataset_prep.py new file mode 100644 index 0000000..fc0f315 --- /dev/null +++ b/course_utils/dataset_prep.py @@ -0,0 +1,90 @@ +# coding: utf-8 + +import json +from random import sample +from itertools import tee, filterfalse +import click +import re + +COURSE_META = 'courseSectionDTO' +COURSE_KEYS = ['department', 'course', 'section', 'instructor', 'termName'] +TEXT_META = 'courseMaterialResultsList' +TEXT_KEYS = ['title', 'edition', 'author', 'isbn', 'materialType', 'requirementType', 'copyRightYear', 'publisher'] +PRINT_INVENTORY = 'printItemDTOs' +E_INVENTORY = 'digitalItemDTOs' +INVENTORY_KEYS = ['typeCondition', 'priceDisplay', 'binding',] + +def extract_print_inventory(course_dict): + for record in course_dict.get(PRINT_INVENTORY, {}).values(): + yield dict([(transform_keys(k), course_dict.get(k)) for k in TEXT_KEYS] + [(transform_keys(k), record[k]) for k in INVENTORY_KEYS if record.get(k)] + [('item_type', 'print')]) + +def extract_e_inventory(course_dict): + for record in course_dict.get(E_INVENTORY, []): + yield dict([(transform_keys(k), course_dict.get(k)) for k in TEXT_KEYS] + [(transform_keys(k), record[k]) for k in INVENTORY_KEYS if record.get(k)] + [('item_type', 'digital')]) + +def transform_keys(key): + # Transform key from camel case to snake case + if key == 'course': + return 'course_num' + return re.sub(r'([A-Z])', r'_\1', key).lower() + +def extract_data(bkst_data): + cleaned_data = [] + for course in bkst_data: + course_dict = {transform_keys(k): course[COURSE_META][0].get(k) for k in COURSE_KEYS} + course_dict['texts'] = [] + for text in course[COURSE_META][0].get(TEXT_META, []): + for i in extract_print_inventory(text): + course_dict['texts'].append(i) + for i in extract_e_inventory(text): + course_dict['texts'].append(i) + cleaned_data.append(course_dict) + return cleaned_data + + +def dedupe_courses(data): + courses_seen = [] + for course in data: + course_key = " ".join([course[transform_keys(k)] for k in COURSE_KEYS if course[transform_keys(k)]]) + if not course_key in courses_seen: + courses_seen.append(course_key) + yield course + +def partition(pred, iterable): + """Partition entries into false entries and true entries. + + If *pred* is slow, consider wrapping it with functools.lru_cache(). + """ + # partition(is_odd, range(10)) --> 0 2 4 6 8 and 1 3 5 7 9 + t1, t2 = tee(iterable) + return list(filterfalse(pred, t1)), list(filter(pred, t2)) + + +def reshuffle_data(data, key, factor=2): + # weighted shuffle: ensures that elements with the key are distributed more toward the beginning of the dataset + # factor is the proportion of elements with the key to weight, i.e., 2 = 1/2 + without, with_key = partition(lambda x: x.get(key), data) + n = len(with_key) // factor + front_list = with_key[:n] + without[:n] + back_list = with_key[n:] + without[n:] + return sample(front_list, k=len(front_list)) + sample(back_list, k=len(back_list)) + +@click.command() +@click.option('--infile', default='../data/bookstore-data.json') +@click.option('--outfile', default='../textbook/static-assets/data/bookstore-data.json') +def main(infile, outfile): + with open(infile) as f: + bkst_data = json.load(f) + cleaned_data = extract_data(bkst_data) + + if len({" ".join([course[transform_keys(k)] for k in COURSE_KEYS if course[transform_keys(k)]]) for course in cleaned_data}) != len(cleaned_data): + cleaned_data = [c for c in dedupe_courses(cleaned_data)] + + with open(outfile, 'w') as f: + json.dump(reshuffle_data(cleaned_data, 'texts'), f, indent=4) + +if __name__ == '__main__': + main() + + + diff --git a/homework-modules/python-camp-hw-2-gr b/homework-modules/python-camp-hw-2-gr deleted file mode 160000 index 37e0fe1..0000000 --- a/homework-modules/python-camp-hw-2-gr +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 37e0fe1cc3ea21a041604a45fa653739558c206e diff --git a/homework-modules/python-camp-hw-3-gr b/homework-modules/python-camp-hw-3-gr deleted file mode 160000 index 865c82b..0000000 --- a/homework-modules/python-camp-hw-3-gr +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 865c82b411d09a427e27e36a9b822435f9bbae31 diff --git a/homework-modules/python-camp-hw-4-gr b/homework-modules/python-camp-hw-4-gr deleted file mode 160000 index 3ef3785..0000000 --- a/homework-modules/python-camp-hw-4-gr +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 3ef3785405a38c9d244505eeab1f0e6518b578e9 diff --git a/homework-modules/python-camp-hw-final-gr b/homework-modules/python-camp-hw-final-gr new file mode 160000 index 0000000..7c8e71b --- /dev/null +++ b/homework-modules/python-camp-hw-final-gr @@ -0,0 +1 @@ +Subproject commit 7c8e71bf4d89d90e36370b27aeb9e1f8a88a0844 diff --git a/textbook/_toc.yml b/textbook/_toc.yml index 2f80a2f..5dd61f0 100644 --- a/textbook/_toc.yml +++ b/textbook/_toc.yml @@ -12,10 +12,12 @@ parts: title: "Homework for Python Camp" - caption: Day 1 chapters: - - file: notebooks/lessons/1_1_choreographing_code - title: Choreographing Code - - file: notebooks/lessons/1_2_from_data_to_code - title: From Data to Code + - file: notebooks/lessons/1_1_modeling_code + title: Modeling Code +- caption: Day 1-2 + chapters: + - file: notebooks/lessons/1_2_from_data_to_code + title: From Data to Code - caption: Day 1 Homework chapters: - file: notebooks/homework/HW_1_from_code_to_data @@ -24,32 +26,26 @@ parts: chapters: - file: notebooks/lessons/2_1_describing_the_team title: Describing the Team - - file: notebooks/lessons/2_2_querying_data - title: Querying Data - caption: Day 2 Homework chapters: - file: notebooks/homework/HW_2_programming_techniques title: Programming Techniques - - file: notebooks/homework/HW_2_GR - title: "Graded Homework: Day 2" -- caption: Days 3-4 +- caption: Day 3 chapters: - - file: notebooks/lessons/3_1_from_story_to_code - title: From Story to Code + - file: notebooks/lessons/2_2_programming_with_data + title: Programming with Data - caption: Day 3 Homework chapters: - file: notebooks/homework/HW_3_error_stories title: Error Stories - - file: notebooks/homework/HW_3_GR - title: "Graded Homework: Day 3" -- caption: Day 4 (SUPPLEMENTAL) +- caption: Day 4 chapters: - - file: notebooks/lessons/4_1_modeling_the_world - title: Modeling the World -- caption: Bonus Homework + - file: notebooks/lessons/3_1_from_story_to_code + title: From Story to Code +- caption: Final Homework chapters: - - file: notebooks/homework/HW_4_GR - title: "Bonus Homework: Day 4" + - file: notebooks/homework/HW_Final_GR + title: "Final Homework (Graded)" - caption: Python Reference chapters: - file: keep_learning diff --git a/textbook/glossary.md b/textbook/glossary.md index d568d96..2608bda 100644 --- a/textbook/glossary.md +++ b/textbook/glossary.md @@ -96,6 +96,10 @@ Boolean value if x: print(2/x) +call + + To call a method or function is to instruct Python to execute the function or method's predefined behavior. And a function or method is really just a kind of shortcut: instead of our having to type out the same code whenever we want to perform a certain task (like splitting a string, for instance), we call the function or method in which that behavior has been defined. It's sort of like using the address book on your phone: you can tap `Mom` in order to call or text Mom, instead of having to enter her number every time. + character A character is the basic unit of a Python {term}`string`. In Python, characters are defined according to the [Unicode standard](https://home.unicode.org/) by default. Unicode characters comprise the following (and more): @@ -151,7 +155,15 @@ comment We use comments to document our code for ourselves and for others. +conditional logic + + A general term for the set of operations that allow computers to behave differently based on different inputs or conditions. At the most fundamental level, all other mathematical operations in a computer (addition, multiplication, etc.) are implemented using combinations of {term}`Boolean operator`s implemented in electronic circuits. + + In higher-level languages like Python, when we speak of conditional logic, we're often referring to {term}`if statement`s. +CSV + + An acronym for "comma-separated values," CSV is a data format compatible with spreadsheet applications like Excel. It is also a format widely used for storing tabular data: data structured in rows and columns. Unlike {term}`JSON`, CSV format does not generally work well with nested data. curly braces @@ -169,10 +181,17 @@ dictionary print(my_info['job_title']) # Prints "Librarian" +documentation + + Human-readable text that explains how a program or a part of a program is intended to work and/or the rationale for a particular choice made by the programmer. Some documentation resides in separate files from the program itself; an example of this kind of documentation is found on Python docs [website](https://docs.python.org/3/). Other documentation is mixed in with the program code. Such documentation is usually offset by particular characters that tell the computer running this code to ignore the documentation itself. In Python, to include documentation within our code we either prefix a line with a hashtag (`#`) or enclose multiple lines within triple quotes (`'''`). + dot notation When an {term}`instance` of a Python {term}`type` (or {term}`class`) has {term}`attributes` or {term}`method`s, we use dot notation to access the attributes/methods. For instance, a {term}`list` has an `append()` method, so for a given list `my_list`, we can write `my_list.append(3)` (to add the integer `3` to the end of the list). +exception + + An error message in Python arising from a problem in the logic of the code or its inputs. As opposed to a syntax error, which will always cause code to fail, an exception is Python's way of saying, "this code might run, EXCEPT not in this case." double equals sign @@ -265,7 +284,7 @@ indented block index - The position of an element in a {term}`list` or a {term}`character` in a {term}`string`. We can use the index to extract a single element/character, or we can use a range of indices to extract a {term}`slice` (a subset of the string or list). + The position of an element in a {term}`list`, or of a {term}`character` in a {term}`string`. We can use the index to extract a single element/character, or we can use a range of indices to extract a {term}`slice` (a subset of the string or list). Indices in Python start at `0` (meaning, the first element or character is considered to have an index of 0, not 1) and increase from left to right. @@ -347,6 +366,10 @@ list It's more common to use a {term}`dictionary` to represent complex data of multiple types, since each element in a dictionary has a {term}`key` that can be more descriptive. For example, if our dictionary has an `age` key, we might guess that this key will correspond to a numeric type, not a string. +list of dictionaries + + A common approach to representing data that consist of multiple elements (like books or university courses or people in a class) where each element has more or less the same set of attributes. (For books, those attributes might be `title`, `author`,` publisher`, etc. For people, `name`, `age`, `email address`, etc.) Each element in the list is a dictionary with the same set of keys; only the values are different. + loop variable The {term}`variable` in a {term}`for loop` that assumes the value of each element in the {term}`collection` over which the loop runs. @@ -418,6 +441,12 @@ return See {term}`function` for more information. +set + + A Python data type that is like a {term}`list` but that can contain only unique elements. Use the `set()` function to create a set from a list: `set([1,2,1,3,2,4,3,5])` returns `{1, 2, 3, 4, 5}`. (Note that the curly braces are used to delimit sets as well as dictionaries; unlike dictionaries, sets do not have key/value pairs, only single elements separated by commas.) + + Only certain Python types can be used to create sets. You can't, for instance, convert a list of dictionaries into a set. Sets are mostly useful when dealing with numeric values and/or strings. + slice A slice is a subset of a Python {term}`list` or {term}`string`. To create a slice, we use {term}`square brackets` around a pair of numbers separated by a {term}`colon`, where the first number is the position of the first element we want to include, and the last element is **one plus** the position of the last element to include. @@ -434,6 +463,12 @@ slice `my_list[3:5]` is the same as `my_list[3:]`. +source code + + Refers to the code (in Python or any other language) of which a piece of software (application, library, module, or script) consists. The Python community is very committed to [open source](https://en.wikipedia.org/wiki/Open_source) software; this commitment, coupled with the nature of the Python language itself, means that for virtually any Python {term}`library` that you might use, it's possible to inspect the source code to see how it was written. This fact can be very useful, especially for libraries lacking good documentation. + + The [source code](https://github.com/python/cpython) for the core of the Python language is also open source. However, a lot of it is implemented in C (or another low-level language, depending on the flavor of Python). + square brackets Square brackets (`[]`) are used in a few different ways in Python: @@ -442,6 +477,11 @@ square brackets - In creating a {term}`slice` of a string or list: `my_list[0:2]` - In accessing the value in a dictionary by its {term}`key`: `print(my_dict['name'])` prints the value associated with the key `name` in `my_dict`. + +standard library + + The set of functions, data types, methods, and other tools that are available with the basic installation of Python. + string A basic Python {term}`type` comprising a {term}`collection` of {term}`character`s. We can create a sting by enclosing any text (really, anything you can type on your keyboard) between quotation marks. @@ -450,6 +490,10 @@ string Strings have {term}`method`s, such as `split()`. See the [Python documentation](https://docs.python.org/3/library/stdtypes.html#text-sequence-type-str) for a complete list. +test + + A test in the context of programming is typically some code designed to check the functionality of other code. For instance, when developing an application, programmers will typically write multiple tests that can be used to confirm that various parts of the application work as intended. This approach is particularly helpful when the application goes through multiple development cycles, receiving bug fixes and enhancements. In such situations, having a suite of tests ensures that changes to one part of the application don't break other parts of the application. + type A Python type is, in essence, a set of behaviors associated with a certain way of representing data. Let's unpack this a bit. @@ -468,6 +512,10 @@ type Just as cooks choose the right appliance for the task at hand, so programmers choose the kind of `type` to use depending on goals and context. +Unicode + + A system for representing characters from the world's many languages along with other symbols (mathematical symbols, emojis, etc.). Python handles Unicode by default, which means that you can use Python to work with text in languages other than English. See {term}`character` for more information. + value The word _value_ is ambiguous when talking about Python. On the one hand, we can talk about any occurence of data as a _value_, as when we say that in defining a {term}`variable`, the value goes on the right of the equals sign. @@ -492,10 +540,6 @@ variable In creating variables, we assign a name to a value with the single equals sign. The names goes on the left of the equals sign, the value on the right. -Unicode - - A system for representing characters from the world's many languages along with other symbols (mathematical symbols, emojis, etc.). Python handles Unicode by default, which means that you can use Python to work with text in languages other than English. See {term}`character` for more information. - white space The phrase _white space_ refers to characters created by the spacebar, the tab key, and/or the return/enter key on your keyboard. diff --git a/textbook/guidelines.md b/textbook/guidelines.md index 1dde436..bb8e409 100644 --- a/textbook/guidelines.md +++ b/textbook/guidelines.md @@ -1,12 +1,12 @@ # Collaborating on Code: Guidelines for a Good Experience -Python Camp takes a team-based approach to teaching and learning. Python Camp instructors work as a team and represent a range of coding experience, from folks who have written code almost daily for years, to folks to who do so more sporadically, to folks who only recently embarked on their coding journeys. +Python Camp takes a team-based approach to teaching and learning. Python Camp facilitators work as a team and represent a range of coding experience, from folks who have written code almost daily for years, to folks to who do so more sporadically, to folks who only recently embarked on their coding journeys. As a Python Camp participant, you'll also be asked to work in a team. This document outlines the rationale for our team-based approach and offers guidelines and suggestions for making the most of this experience. ## Why Work in Teams? -Over the years of teaching Python Camp, we've found that the most effective environments are those where the learners interact not only with the instructors but with each other: asking a neighbor or friend for help with the lesson, talking through an exercise together, or even just sharing their goals for learning Python and their broader academic interests. In order to cultivate this kind of interaction, we have restructured Python Camp around a series of team-based, in-class activities. +Over the years of teaching Python Camp, we've found that the most effective environments are those where the learners interact not only with the facilitators but with each other: asking a neighbor or friend for help with the lesson, talking through an exercise together, or even just sharing their goals for learning Python and their broader academic interests. In order to cultivate this kind of interaction, we have restructured Python Camp around a series of team-based, in-class activities. Moreover, we believe that working in teams fosters the following outcomes: @@ -41,23 +41,24 @@ For the last two kinds of prompt, teams should feel free to explore different st - For instance, a team of four _may_ prefer to work on the larger coding problems in pairs, to facilitate sharing screens. - Or the team may decide to give everyone a chance to try the problem individually before comparing their proposed solutions. -Finding what works best for your team is part of the process of teamwork. And your Python Camp instructors/facilitators are there to help! +Finding what works best for your team is part of the process of teamwork. And your Python Camp facilitators are there to help! But whatever method(s) you choose, **please ensure that everyone on the team has a chance to enter the team's solution into their own notebook.** Besides practicing Python syntax, by keeping your notebook up to date you will create a useful artefact you can refer to later. ### Team roles -#### Rotating notetaker +To support a productive and equitable experience, each team will assign someone to each of the following roles. It is recommended that teams rotate these roles, perhaps at the start of each day, so that everyone gets to try out all the roles, even those they may feel less comfortable with. -For the prompts that ask you to write code, everyone should be doing so in parallel in their own notebooks, even when that involves some duplication of effort: the point of these team activities is not to demonstrate your efficiency but your shared understanding. +- **Notetaker**: Everyone on the team should write code during the hands-on exercises around which we have structured Python Camp. The notetaker, however, is responsible for **documenting** other aspects of the programming process. These include: + - Jotting down questions that arise while trying to solve a problem; + - Recording team decisions and documenting project plans; + - Taking notes on team discussions in response to discussion prompts. +- **Reporter**: The reporter is the team's designated spokesperson. Everyone on the team should feel free to ask questions or share ideas with the larger group at any time. However, when teams are asked to share the outcome of group discussions, it helps to have someone delegated to this task. And rotating the reporter role gives everyone on the team a chance to share out. +- **Advocate**: The advocate has a very important role: to make sure that everyone has a chance to contribute to the work of the team, and that no one is getting left behind. It's perfectly okay -- and probably inevitable -- that members of the team will contribute in different ways. For instance, some people might have a better eye for detail, while others are more focused on the big picture. But here are some ways in which the advocate can help ensure equity and inclusion: + - During group discussions, if situations arise where one or two team members are doing all the talking, the advocate might say something like, "I see that we haven't heard from __________ in a while. Let's make space for anything they'd like to share." + - During hands-on exercises/problem-solving, the advocate might check in with team members to see if they're lost, feeling confused, or frustrated. In these situations, the advocate might suggest that the team take a pause to bring everyone up to speed, or the advocate might suggest flagging a Python Camp facilitator to provide more guidance. + - The advocate can advocate for themselves as well other team members. But some people feel more comfortable advocating on behalf of others, which is why it's especially useful to rotate this role. -For the prompts that involve planning, design and discussion, it will be useful to designate a single person as notetaker for that activity. **Please do rotate the role between activities** so that everyone on the team shares the responsibility. Taking notes is a useful way to reinforce your learning. But it can also prevent the notetaker from engaging fully in the discussion, so it's important to distribute the task equitably. - -Your Python Camp facilitators will remind you to rotate the notetaking task at the start of each major team activity. - -#### Team facilitator - -It's not necessary to delegate a leader for your team, given the highly structured activities of Python Camp. But if the team would be more comfortable choosing one member to moderate the discussion and keep things on track, you're welcome to do so. You might also consider rotating this role, so that everyone has a chance to contribute in every way. ## How Can I Make the Most of This Experience? diff --git a/textbook/homework.md b/textbook/homework.md index 1f13850..1453696 100644 --- a/textbook/homework.md +++ b/textbook/homework.md @@ -6,34 +6,30 @@ The homeworks are designed to be completed individually, but you are also free t ## Homework Format -Each day's homework lesson consists of one or two parts. Please do the parts in order as linked from the daily schedule on the left panel of this screen. - 1. With the exception of Day 4, the first part consists of a Python motebook with documentation, examples of code, and exercises that ask you to write code yourself. Hints and/or hidden solutions are provided for the latter, but you are strongly encouraged to try each exercise on your own before looking at the solution. +Each day's homework lesson consists of a Python motebook with documentation, examples of code, and exercises that ask you to write code yourself. Hints and/or hidden solutions are provided for the latter, but you are strongly encouraged to try each exercise on your own before looking at the solution. - Just as we did for the in-class activities, you should open each homework notebook in JupyterHub (using the rocket icon at the top of the screen) and execute the code cells in order as you read through the notebook. Any changes you make to the notebook in JupyterHub will be saved to your JupyterHub account. - **Please try your best to complete these notebooks on the day they are assigned**; we'll build on the concepts and practices they introduce in our team activities on the following day. - 2. With the exception of Day 1, the second part of each homework consists of a notebook with one or more exercises that you should complete and upload to GitHub Classroom. These notebooks are called "Graded Homework: Day ____" (followed by the day, either 2, 3, or 4). - - You don't need to complete these exercises on the day they are assigned, though you may. - - In addition to attendance for the duration of Python Camp, successful completion and submission of these notebooks is a requirement for the Python Camp Certificate of Completion. - - Please see the instructions for uploading graded notebooks below. + 2. You must submit the **final homework notebook** for grading in order to receive the Python Camp Certificate of Completion. The grading is done automatically on GitHub Classroom, and you will have an opportunity to ensure that your work is correct before submitting. Please see the instructions for submitting the graded notebook below. ## Submitting Graded Notebooks -We're using GitHub Classroom to track submission of these notebooks. Please read the following instructions carefully, and let us know if you have any questions. +We're using GitHub Classroom to track submission of this notebook. Please read the following instructions carefully, and let us know if you have any questions. -1. To complete each notebook, open it in JupyterHub (using the rocket icon in the upper left) and follow the instructions included with the notebook. +1. To complete the notebook, open it in JupyterHub (using the rocket icon in the upper left) and follow the instructions included with the notebook. 2. When you've successfully completed each exercise, the code cell in the `Tests` section should run without any errors or other output. If you see an `AssertionError`, it will indicate the part of your code that is not behaving as expected. -3. WHen you've finished your work, don't forget to save your notebook in JupyterHub! -4. Download your notebook from JupyterHub to your own computer, using the `File -> Download as -> Notebook` command from the menu at the top. +3. When you've finished your work, don't forget to save your notebook in JupyterHub! +4. Download your notebook from JupyterHub to your own computer, using the `File -> Download` command from the menu at the top. ````{image} img/homework/download-notebook.png - :alt: Download as notebook option from File menu + :alt: Dropdown menu showing download option from File menu :width: 500px :align: center ```` -5. Depending on your computer setup, the downloaded notebook may be located in your `Downloads` folder, on your desktop, or elsewhere. It should have the name `HW_n_GR.ipynb` (where `n` is the number of the homework day, e.g., 2, 3, or 4). If you have downloaded this file before, the latest version may have a different name. In this case, you should delete the old file and **rename the newly downloaded file** so that it has the same name as the original. +5. Depending on your computer setup, the downloaded notebook may be located in your `Downloads` folder, on your desktop, or elsewhere. It should have the name `HW_Final_GR.ipynb`. If you have downloaded this file before, the latest version may have a different name. In this case, you should delete the old file and **rename the newly downloaded file** so that it has the same name as the original. 5. In the Python Camp roster, copy the link in the column associated with this homework assignment and paste it into a new tab on your web browser. 6. If you don't have a GitHub account, you'll need to create one. (GitHub is a widely used platform for sharing and collaborating on code.) You don't need to use the same email address on your GitHub account as you are using for Python Camp, so if you already have a GitHub account under a different email address, feel free to use that one. 7. Once you've logged into GitHub, and if this is your first time submitting an assignment, you'll be asked to select your email address from the GitHub Classroom roster. **Please make sure you select the correct email address**. This will link your GitHub account to that email address in our GitHub Classroom instance. -8. At this point, you should see a screen asking you to "Accept" the assignment in GitHub Classroom. Accepting the assignment will create a new GitHub repository under your GitHub account; that repository is where you'll submit your completed notebook for grading. +8. At this point, you should see a screen asking you to `Accept the assignment` in GitHub Classroom. Accepting the assignment will create a new GitHub repository under your GitHub account; that repository is where you'll submit your completed notebook for grading. ````{image} img/homework/accept-assignment.png :alt: Screen showing a GitHub message with the assignment name and a green button to accept the assignment. @@ -48,7 +44,7 @@ We're using GitHub Classroom to track submission of these notebooks. Please read :width: 500px :align: center ```` -11. You'll also see some files listed in your repo, including one with the name of the homework notebook you're submitting, e.g., `HW_GR_2.ipynb`. At this point, all you need to do is upload the new version of this notebook that you downloaded from JupyterHub in step 4. To upload the file, click the `Add file` button next to the green `Code` button at the top, and then select `Upload file`. +11. You'll also see some files listed in your repo, including one with the name of the homework notebook you're submitting, e.g., `HW_Final_GR.ipynb`. At this point, all you need to do is upload the new version of this notebook that you downloaded from JupyterHub in step 4. To upload the file, click the `Add file` button next to the green `Code` button at the top, and then select `Upload file`. ````{image} img/homework/assignment-repo-2.png :alt: Screen showing the GitHub dropdown button to upload files. @@ -56,7 +52,7 @@ We're using GitHub Classroom to track submission of these notebooks. Please read :align: center ```` 12. Drag the notebook file from its location on your computer into the provided space (or click `Choose files` and select the file from the file navigator). **Make sure the file has the exact same name as in the list of files on the previous GitHub repo screen.** -13. Click the green `Commit` button at the bottom of the screen to complete the upload. +13. Click the green `Commit Changes` button at the bottom of the screen to complete the upload. ````{image} img/homework/assignment-repo-3.png :alt: GitHub screen with a green button that reads "Commit." diff --git a/textbook/intro.md b/textbook/intro.md index 865a7db..369e4ad 100644 --- a/textbook/intro.md +++ b/textbook/intro.md @@ -23,7 +23,7 @@ then Python Camp may be for you! Over the course of **four days**, participants will spend approximately **four hours a day** together, working in small teams on activities facilitated by Python Camp instructors. -In addition, participants will complete approximately **one to two hours** of self-guided homework lessons each day. These lessons are intended to be done individually and serve to prepare participants for the team-based learning on the following day. The homework includes a handful of shorter exercises to test participants' knowledge, which will be graded. +In addition, participants will complete approximately **one to three hours** of self-guided homework lessons each day. These lessons are intended to be done individually and serve to prepare participants for the team-based learning on the following day. The homework includes a handful of shorter exercises to test participants' knowledge, which will be graded. Successful completion of these exercises, as well as attendance and participation during all four days of Python Camp, will confer a certificate of achievement. diff --git a/textbook/notebooks/homework/HW_1_from_code_to_data.ipynb b/textbook/notebooks/homework/HW_1_from_code_to_data.ipynb index 1a1bf29..fe37b99 100644 --- a/textbook/notebooks/homework/HW_1_from_code_to_data.ipynb +++ b/textbook/notebooks/homework/HW_1_from_code_to_data.ipynb @@ -15,8 +15,7 @@ "\n", "- To review the basic data types and syntactic patterns of Python.\n", "- To build more complex structures out of these basic data types.\n", - "- To explore tools for cleaning and transforming data\n", - "- To use control structures to clean and transform data in an automated way" + "- To explore tools for cleaning and transforming data" ] }, { @@ -27,13 +26,12 @@ "\n", "This notebook is intended for you to work through independently, in order to review and clarify the concepts introduced on Python Camp Day 1, and to lay the groundwork for the activities on Python Camp Day 2. However, feel free to collaborate with others in working through it. It is also intended to serve as a resource you can return to review as necessary.\n", "\n", - "In this homework, you will cover most of the fundamental tools of the Python programming language that you need to work with data. You've already encountered these tools in today's team activities: _Choreographing Code_ and _From Data to Code_. But these homework exercises will unpack their syntax and explain how to use them. Along the way, you'll cover the following concepts:\n", + "In this homework, you will cover most of the fundamental tools of the Python programming language that you need to work with data. You've already encountered these tools in today's team activities: _Modeling Code_ and _From Data to Code_. But these homework exercises will unpack their syntax and explain how to use them. Along the way, you'll cover the following concepts:\n", "\n", "- Working with numbers in Python\n", "- Working with text (strings) in Python\n", "- Slicing and splitting strings to extract textual data\n", "- Working with lists of numbers or strings\n", - "- Using loops to process data in lists\n", "\n", "If you have little or no prior programming experience, you may find this homework challenging. But please try to work through all the exercises, even if you lose the thread or can't make sense of the provided sample solutions. Just make a note of where you got stuck: we will review the homework and address your questions tomorrow in class." ] @@ -86,8 +84,14 @@ }, { "cell_type": "code", - "execution_count": 9, - "metadata": {}, + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, "outputs": [], "source": [ "book_price = 99.95\n", @@ -96,7 +100,13 @@ }, { "cell_type": "markdown", - "metadata": {}, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, "source": [ "````{admonition} Try it out!\n", ":class: try-it-out\n", @@ -108,7 +118,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -127,22 +137,18 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": null, "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, "solution2": "hidden", "tags": [ "hide-cell" ] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "5497.25\n" - ] - } - ], + "outputs": [], "source": [ "total_cost = book_price * num_students\n", "print(total_cost)" @@ -154,45 +160,23 @@ "source": [ "### I.2 Flavors of numbers\n", "\n", - "In Python, numbers come in two main flavors: **integers** and **floats**. We can use Python's `type()` function to expose the {term}`type` of any value or {term}`variable`." + "In Python, numbers come in two main flavors: integers and floats. We can use Python's `type()` function to expose the {term}`type` of any value or {term}`variable`." ] }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "float" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "type(book_price)" ] }, { "cell_type": "code", - "execution_count": 6, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "int" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "type(num_students)" ] @@ -201,7 +185,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "A **float** is any number that contains a decimal point. An **integer** (`int`) is what we call a whole number. \n", + "A {term}`float` is any number that contains a decimal point. An {term}`integer` (`int`) is what we call a whole number. \n", "\n", "Unlike some programming languages, Python handles the conversion between these two types automatically. " ] @@ -221,7 +205,13 @@ { "cell_type": "code", "execution_count": null, - "metadata": {}, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, "outputs": [], "source": [ "type(total_cost)" @@ -229,7 +219,13 @@ }, { "cell_type": "markdown", - "metadata": {}, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, "source": [ "````{admonition} For the curious\n", ":class: dropdown\n", @@ -271,7 +267,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "The `TypeError` informs us that we can't perform multiplication in this instance because `book_price` is not of the right {term}`type`. " + "The `TypeError` informs us that we can't perform multiplication in this instance because `book_price` is not of the right type. " ] }, { @@ -281,7 +277,7 @@ "````{admonition} Notes\n", ":class: notes\n", "\n", - "We saw prices represented this way -- `\"$99.95\"` -- in the bookstore dataset. The quotation marks indicate that this value is a **string**. As far as Python is concerned, *anything* between quotation marks is a string. \n", + "We saw prices represented this way -- `\"$99.95\"` -- in the bookstore dataset. The quotation marks indicate that this value is a {term}`string`. As far as Python is concerned, *anything* between quotation marks is a string. \n", "\n", "You can think of the quotation marks as a container: whatever you put into the container will be treated as an instance of the `str` type. \n", "\n", @@ -310,7 +306,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -329,7 +325,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "metadata": { "editable": true, "slideshow": { @@ -348,7 +344,13 @@ }, { "cell_type": "markdown", - "metadata": {}, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, "source": [ "### I.4 Strings vs. variable names\n", "\n", @@ -366,7 +368,7 @@ "| -----|--------|--------- |\n", "|`my_name` | Yes | |\n", "|`book_title_2` | Yes | |\n", - "|`$price` | No | Uses punctuation not allowed |\n", + "|`price$` | No | Uses punctuation not allowed |\n", "| `2nd_book` | No | Begins with a number |\n", "| `course year` | No | Spaces not allowed |\n", "\n" @@ -380,16 +382,16 @@ "\n", "When working with textual data, keep in mind that Python _doesn't know anything_ about the meaning of what's inside the quotes. It has no concept of words, punctuation, etc. -- all the stuff that we as humans rely on to communicate effectively (elements of so-called _natural languages_). \n", "\n", - "A Python string is just a **collection** of **characters**. Imagine spelling out words in Scrabble, or with wooden alphabet blocks. \n", + "A Python string is just a {term}`collection` of {term}`character`s. Imagine spelling out words in Scrabble, or with wooden alphabet blocks. \n", "\n", - "That said, Python strings are also suprisingly flexible. Python provides a lot of tools to make working with them easy, starting with the fact that each character in the string has a well-defined position, which we call the **index**. We can use the indices of characters to extract information from parts of a string.\n", + "That said, Python strings are also suprisingly flexible. Python provides a lot of tools to make working with them easy, starting with the fact that each character in the string has a well-defined position, which we call the {term}`index`. We can use the indices of characters to extract information from parts of a string.\n", "\n", "The following code defines two string variables that hold information about a course and a term." ] }, { "cell_type": "code", - "execution_count": 14, + "execution_count": null, "metadata": { "editable": true, "slideshow": { @@ -417,19 +419,42 @@ "\n", "By counting characters, we can see the following:\n", "- The department code occupies the first four (4) index positions. With strings, the first position is labeled `0`, not `1`, so the first 4 characters would fall in positions `0`, `1`, `2`, and `3`.\n", - "- The course number occupies four more positions, but we also have to account for the intervening space: `4` (the space), then `5`, `6`, `7`, `8`.\n", - "\n", - "\n", - "|0|1|2|3|4|5|6|7|8|9|10|11|\n", - "|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|\n", - "|C|H|E|M| |1|0|0|2| |1|0|\n", - "\n", - "We can use this information to **slice** our `course` variable as follows:" + "- The course number occupies four more positions, but we also have to account for the intervening space: `4` (the space), then `5`, `6`, `7`, `8`." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "````{image} https://gwu-libraries.github.io/python-camp/img/string-indexing-table.png\n", + ":alt: Table showing the characters in the string \"CHEM 1002 10\" arranged in sequence on one row, with the numbers 0 through 11 on the row above. \n", + ":width: 500px\n", + ":align: center\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "We can use this information to {term}`slice` our `course` variable as follows:" ] }, { "cell_type": "code", - "execution_count": 24, + "execution_count": null, "metadata": { "editable": true, "slideshow": { @@ -437,16 +462,7 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "CHEM\n", - "1002\n" - ] - } - ], + "outputs": [], "source": [ "dept_code = course[0:4] # Positions 0 through 3\n", "course_num = course[5:9] # Positions 5 through 8\n", @@ -505,22 +521,14 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": null, "metadata": { "solution2": "hidden", "tags": [ "hide-cell" ] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "10\n" - ] - } - ], + "outputs": [], "source": [ "section_num = course[10:12]\n", "print(section_num)" @@ -559,34 +567,48 @@ "term = 'Summer 2023'\n", "```\n", "\n", - "Let's say that we expect the term data to consist of the name for a particular semester -- `Summer`, `Spring`, or `Fall` -- plus a 4-digit year. \n", - "\n", - "Do you see the problem here? The name of the term can be either 4 characters long (`Fall`) or 6 (`Summer`, `Spring`). \n", - "\n", - "Fortunately, Python has us covered, because it lets us _count backwards_ as well as forwards when slicing a string. We just use negative numbers! Since there's no such number as `-0`, the last characer in a string has the position `-1`. \n", - "\n", - "|-11|-10|-9|-8|-7|-6|-5|-4|-3|-2|-1|\n", - "|-|-|-|-|-|-|-|-|-|-|-|\n", - "|S|u|m|m|e|r| |2|0|2|3|\n", - "\n", + "Let's say that we expect the term data to consist of the name for a particular semester -- Summer, Spring, or Fall -- plus a 4-digit year. \n", "\n", + "Do you see the problem here? The name of the term can be either 4 characters long (`\"Fall\"`) or 6 (`\"Summer\"`, `\"Spring\"`). \n", "\n", + "Fortunately, Python has us covered, because it lets us _count backwards_ as well as forwards when slicing a string. We just use negative numbers! Since there's no such number as `-0`, the last characer in a string has the position `-1`. " + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "````{image} https://gwu-libraries.github.io/python-camp/img/string-negative-indexing-table.png\n", + ":alt: Table showing the characters in the string \"Summer 2023\" arranged in sequence on one row, with the numbers -11 through -1 on the row above. \n", + ":width: 500px\n", + ":align: center\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ "To extract the last 4 characters (the year) from the `term` variable, we can use this slice:" ] }, { "cell_type": "code", - "execution_count": 34, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2023\n" - ] - } - ], + "outputs": [], "source": [ "term_year = term[-4:]\n", "print(term_year)" @@ -596,24 +618,20 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "The colon with no number after it means \"slice up to and _including_ the end of the string.\" It's useful in cases where we don't know (in advance) how long the string will actually be. (In this case, with our three different terms, the string could be either 9 or 11 characters long.) \n", - "\n", "We can also mix negative and positive positions in slicing. To start from the first character and slice **up to** (but not including) the fifth character from the end, we could use the following slice:" ] }, { "cell_type": "code", - "execution_count": 35, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Summer\n" - ] - } - ], + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], "source": [ "term_name = term[0:-5]\n", "print(term_name)" @@ -621,50 +639,59 @@ }, { "cell_type": "markdown", - "metadata": {}, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, "source": [ "### I.6 How to do things with strings: Splitting\n", "\n", - "Strings in Python come with a lot of built-in functionality. One of the most useful is a {term}`method` caled `split()`. \n", + "Strings in Python come with a lot of built-in functionality. One of the most useful is a string method caled `split()`. \n", + "\n", + "In Python, a {term}`method` is a set of predefined behaviors associated with a particular data type. We refer to `split()` as a \"string method\" because it's available on anything that Python recognizes as a string. \n", + "\n", + "You can think of a method as an appliance attachment: a vaccuum cleaner and a kitchen stand mixer can both come with various attachments; the vaccuum attachments help you use your vaccuum better, and your mixer attachments expand the functionality of the mixer. The same can be said of Python methods: they help us make better use of their associated data types.\n", "\n", - "Take a look at what happens when we call the `split()` method on our `course` variable." + "Take a look at what happens when we {term}`call` the `split()` method on our `course` variable." ] }, { "cell_type": "code", - "execution_count": 41, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['CHEM', '1002', '10']" - ] - }, - "execution_count": 41, - "metadata": {}, - "output_type": "execute_result" - } - ], + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], "source": [ "course.split()" ] }, { "cell_type": "markdown", - "metadata": {}, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, "source": [ "Let's pause here and note a few things:\n", "\n", "1. There is a **period** (`.`) between `course` and `split()`. This indicates that the `split()` method belongs to our `course` variable. We get access to this method whenever we use a string value. \n", "\n", - " And we can call it on string values directly: `'CHEM 1002 10'.split()` produces the same output.\n", - " \n", "\n", "2. The **parentheses** after the word `split` are required. We've seen parentheses in calling the `print()` and `type()` functions, too. Here the parens are empty because we're not providing any {term}`arguments` to `split()`. (Python knows what we want to split because of the period attaching the method to the `course` variable.)\n", "\n", "\n", - "3. The output from `course.split()` is a **list** of three separate strings. A Python list is enclosed with {term}`square brackets` and contains items separated by {term}`comma`s." + "3. The output from `course.split()` is a {term}`list` of three separate strings. A Python list is enclosed with {term}`square brackets` and contains items separated by {term}`comma`s." ] }, { @@ -723,7 +750,7 @@ "\n", "`['Summer', '2023']`\n", "\n", - "As you might have guessed, `split()` separates a string on the **white space** (which can be a regular space, a tab, or a line break). \n", + "As you might have guessed, `split()` separates a string on the {term}`white space` (which can be a regular space, a tab, or a line break). \n", "\n", "If you imagine a string as a six-pack of some canned beverage, the spaces are like the plastic rings holding the six-pack together. When we call `split()` on the string, that's like pulling each can out of the six-pack and discarding the plastic rings: you are left with six individual cans (a list of strings without spaces).\n", "\n", @@ -735,7 +762,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## II. Loops and lists\n", + "## II. Strings & lists\n", "\n", "We have seen that when we call the `split()` method on a string, Python turns the string into a list of strings. \n", "\n", @@ -750,22 +777,14 @@ "source": [ "### II.1 Accessing items\n", "\n", - "We can use an {term}`integer` inside square brackets to access the item at single position ({term}`index`) within a list." + "We can use an integer inside square brackets to access the item at single position ({term}`index`) within a list." ] }, { "cell_type": "code", - "execution_count": 48, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "CHEM\n" - ] - } - ], + "outputs": [], "source": [ "course_info = course.split()\n", "print(course_info[0])" @@ -780,17 +799,9 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "10\n" - ] - } - ], + "outputs": [], "source": [ "print(course_info[-1])" ] @@ -831,7 +842,7 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": null, "metadata": { "editable": true, "slideshow": { @@ -842,15 +853,7 @@ "hide-cell" ] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['CHEM', '1002']\n" - ] - } - ], + "outputs": [], "source": [ "print(course_info[0:2])" ] @@ -867,389 +870,19 @@ "````" ] }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### II.2 Doing things with strings & lists\n", - "\n", - "The real power of lists enters when we can use them to automate a lot of repetitive tasks.\n", - "\n", - "In \"Choreographing Code,\" we used what's called a `for` loop to adjust a list of prices with sales tax. Here we'll work up to the same task, step by step, but we'll add a couple of enhancements. \n", - "\n", - "For this example, we'll start with a list of strings representing book prices." - ] - }, - { - "cell_type": "code", - "execution_count": 51, - "metadata": {}, - "outputs": [], - "source": [ - "book_prices = ['$55.99', '$119.95', '$13.95', '$250.67', '$99.99']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "First, let's just print each price from the list on its own line." - ] - }, - { - "cell_type": "code", - "execution_count": 52, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "$55.99\n", - "$119.95\n", - "$13.95\n", - "$250.67\n", - "$99.99\n" - ] - } - ], - "source": [ - "for price in book_prices:\n", - " print(price)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{admonition} Notes\n", - ":class: notes\n", - "\n", - "1. Our loop begins with the Python {term}`keyword` `for`. This is not a function -- like `len()` or `print()` -- but part of the Python syntax itself (like the quotation marks around strings or the square brackets around lists). \n", - "\n", - "\n", - "2. `for` always goes with `in`; they make a pair. \n", - "\n", - "\n", - "3. The variable `price`, immediately following `for`, is being created here. (It was not previously defined in our code.) Its role is to hold -- in sequence -- each item in the {term}`collection` following `in`.\n", - "\n", - "\n", - "4. `book_prices` _was_ defined before the loop. The variable following `in` should always be some sort of collection type -- a string, a list, a dictionary, etc. -- or else a {term}`function` that returns a collection. We cannot write `for x in 10`, for instance, because the integer `10` is not a collection; it holds no items within itself. (For the same reason, we can't take a slice of `10`).\n", - "\n", - "\n", - "5. The first line of the `for` loop ends in a {term}`colon`, and the line or lines underneath it are **indented** (separated from the left margin by the same number of tabs or spaces). We call these indented lines in Python a {term}`block`.\n", - "\n", - "````" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{admonition} Try it out!\n", - ":class: try-it-out\n", - "\n", - "\n", - "All of the prices follow the same format, beginning with the dollar sign. To calculate the sales tax, we need to multiply each price by a fixed percentage -- let's say 110%, or 1.1, to reflect a sales tax of 10% on the dollar.\n", - "\n", - "But as we saw above, we can't perform math with strings, and `book_prices` is a list of strings. To convert our strings to numbers, we first need to remove the dollar sign from each price. \n", - "\n", - "Modify the `for` loop above so that it prints each price _without_ the dollar sign. For a hint, consult the example above where we created the variable `course_section`.\n", - "\n", - "````\n" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "solution2": "hidden", - "solution2_first": true - }, - "source": [ - "Now check your answer by expanding the hidden solution cell below." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "solution2": "hidden", - "tags": [ - "hide-cell" - ] - }, - "outputs": [], - "source": [ - "for price in book_prices:\n", - " print(price[1:])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{admonition} Try it out!\n", - ":class: try-it-out\n", - "\n", - "Now that we have extracted the numeric part of the string (the part after the dollar sign), we can **convert** this string to a float in order to do math with it. \n", - "\n", - "Modify the `for` loop again to do the following:\n", - "\n", - "1. Assign the slice of the price (without the dollar sign) to a new variable called `price_num`.\n", - "\n", - "2. Use the `float()` function to convert `price_num` to a float, and multiply the result by `1.1`. \n", - "\n", - " For instance, to convert the string `'1.5'` (notice the quotations marks!) to its float representation, we would write `float('1.5')`.\n", - "\n", - "3. Assign the result of this calculation to `price_num` and print it.\n", - "\n", - "If the foregoing feels intimidating, try this [Parsons Problem](https://gwu-libraries.github.io/python-camp/parsons-problems/html/homework-1-1.html) first. It allows you to focus on the logical order of the actions to be performed, rather than on the syntax of the commands.\n", - "\n", - "````" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "solution2": "hidden", - "solution2_first": true - }, - "source": [ - "Now check your answer by expanding the hidden solution cell below." - ] - }, - { - "cell_type": "code", - "execution_count": 56, - "metadata": { - "solution2": "hidden", - "tags": [ - "hide-cell" - ] - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "61.589000000000006\n", - "131.94500000000002\n", - "15.345\n", - "275.737\n", - "109.989\n" - ] - } - ], - "source": [ - "for price in book_prices:\n", - " price_num = price[1:]\n", - " price_num = float(price_num) * 1.1\n", - " print(price_num)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### II.3 From one list to another\n", - "\n", - "If you didn't get the intended answer, don't worry! You'll get the hang of it. The most important thing for now is to understand that we used a `for` loop because we wanted to repeat a certain set of actions for all the items in a list. \n", - "\n", - "For now, let's add one enhancement to our loop: instead of just printing the new price (with the added sales tax), we'll store it in a separate list. \n", - "\n", - "To do this, we need to use a {term}`method` of Python lists called `append()`. This method adds a new item to the end of a list.\n", - "\n", - "Much like the `split()` method we used on strings, the `append()` method can be called from any Python list by writing the name of the list plus `.append(item)`, where `item` is the value we want to add to the list. \n", - "\n", - "See the code below and the explanation that follows." - ] - }, - { - "cell_type": "code", - "execution_count": 57, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[61.589000000000006, 131.94500000000002, 15.345, 275.737, 109.989]\n" - ] - } - ], - "source": [ - "prices_with_tax = []\n", - "for price in book_prices:\n", - " price_num = price[1:]\n", - " price_num = float(price_num) * 1.1\n", - " prices_with_tax.append(price_num)\n", - "print(prices_with_tax)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{admonition} Notes\n", - ":class: notes\n", - "\n", - "This loop achieves the same thing as the previous, with this difference: the adjusted prices are now stored in the `prices_with_tax` variable, which is another list. This is a fairly common Python pattern; when using this pattern, here are a few rules of thumb to keep in mind:\n", - "\n", - "\n", - "1. We need to create the new list _outside_ of the `for` loop. The line `prices_with_tax = []` creates a new variable that consists of an **empty list**. \n", - "\n", - "\n", - "2. As before, we use the {term}`loop variable` `price` to work with each item in the `book_prices` list.\n", - "\n", - "\n", - "3. The variable `price_num` is temporary, in the sense that, like the `price` loop variable, it will change (be reassigned to a new value) with every iteration of the loop.\n", - "\n", - "\n", - "3. The line `prices_with_tax.append(price_num)` stores the value in `price_num` to our list. **Without this step, we could not \"save\" the results of our calculations.** It's like performing a series of steps on a calculator: if you don't write down your answer before moving onto the next problem, you will lose all your hard work!\n", - "\n", - "\n", - "4. Steps 2, 3, and 4 are all indented underneath the line that kicks off the `for` loop. Visually, this tells you that all of these steps happen on each iteration of the loop (once for every item in the `book_prices` lists.\n", - "\n", - "\n", - "5. The line `print(prices_with_tax)` happens _outside_ the `for` loop, so it's not indented. That's because we only want to print our new list when it's finished, not every time we add a new item to it. \n", - "\n", - "\n", - "6. Note that our `book_prices` list still holds the original strings: our code made a new, second list. \n", - "\n", - "````" - ] - }, - { - "cell_type": "code", - "execution_count": 58, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['$55.99', '$119.95', '$13.95', '$250.67', '$99.99']\n" - ] - } - ], - "source": [ - "print(book_prices)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{admonition} Try it out!\n", - ":class: try-it-out\n", - "\n", - "We have a list of strings that represent courses, where each string (as in the example above) consists of a department code, a course number, and a section number:\n", - "\n", - "```\n", - "courses = ['CHEM 1001 10', 'CHEM 1001 11' ...]\n", - "```\n", - "\n", - "Using a `for` loop, transform this list into three separate lists: one to hold the department codes, one to hold the course numbers, and one to hold the section numbers.\n", - "\n", - "The cells below will get you started. For more help, check out this [Parsons Problem](https://gwu-libraries.github.io/python-camp/parsons-problems/html/homework-1-2.html).\n", - "\n", - "````" - ] - }, - { - "cell_type": "code", - "execution_count": 60, - "metadata": {}, - "outputs": [], - "source": [ - "courses = ['CHEM 1001 10', 'CHEM 1001 11', 'BISC 1111 10', 'BISC 2207 10', 'PSC 1001 10',\n", - " 'PSC 1001 11', 'PSC 1001 12', 'ANTH 3808 10', 'AMST 2071 80']" - ] - }, - { - "cell_type": "code", - "execution_count": 61, - "metadata": {}, - "outputs": [], - "source": [ - "depts = []\n", - "course_nums = []\n", - "sections = []" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "solution2": "hidden", - "solution2_first": true - }, - "source": [ - "Now check your answer by expanding the hidden solution cell below." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "solution2": "hidden", - "tags": [ - "hide-cell" - ] - }, - "outputs": [], - "source": [ - "for course in courses:\n", - " course_info = course.split()\n", - " depts.append(course_info[0])\n", - " course_nums.append(course_info[1])\n", - " sections.append(course_info[2])\n", - "print(depts)\n", - "print(course_nums)\n", - "print(sections)" - ] - }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Wrapping up\n", "\n", - "Congratulations! This homework covered _a lot_ of material. (Subsequent homework notebooks will not be as extensive.) \n", + "Congratulations! This homework covered _a lot_ of material. \n", "\n", "1. We learned about various Python **types**, which allow us to represent (computationally) raw data in various ways.\n", "\n", - "2. We saw that different types have different uses -- or we might say, different behaviors: we can do addition and multiplication with integers and floats, we can **split** and **slice** strings, we can **append** items to lists.\n", - "\n", - "3. With **integers**, **floats**, **strings**, and **lists**, we can capture complex data using the tools of the Python language. In the team exercise _From Data to Code_, we saw how a dataset in the {term}`JSON` format translates into these Python types (along with one additional type, the **dictionary**, which you will meet in tomorrow's activity.)\n", + "2. We saw that different types have different uses -- or we might say, different behaviors: we can do addition and multiplication with integers and floats, we can **split** and **slice** strings, and we can also slice lists.\n", "\n", - "4. And with **for loops**, we can _automate_ actions that would otherwise be tedious, like calculating the sales tax of a (long) list of prices. And that's one of the main reasons for learning to program: as the title of one popular book on Python puts it, [\"to automate the boring stuff\"](https://wrlc-gwu.primo.exlibrisgroup.com/discovery/fulldisplay?docid=alma99185917215304107&context=L&vid=01WRLC_GWA:live&lang=en&search_scope=WRLC_P_MyInst_All&adaptor=Local%20Search%20Engine&tab=WRLC&query=any,contains,automate%20the%20boring%20stuff). " + "3. With **integers**, **floats**, **strings**, and **lists**, we can capture complex data using the tools of the Python language. In the team exercise _From Data to Code_, we saw how a dataset in the {term}`JSON` format translates into these Python types (along with one additional type, the **dictionary**, which you will meet in tomorrow's activity.)" ] } ], diff --git a/textbook/notebooks/homework/HW_2_GR.ipynb b/textbook/notebooks/homework/HW_2_GR.ipynb deleted file mode 100644 index b8a5a1d..0000000 --- a/textbook/notebooks/homework/HW_2_GR.ipynb +++ /dev/null @@ -1,162 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Graded Homework: Day 2\n", - "\n", - "This notebook should be completed *after* the exercises in the [Programming Techniques](./HW_2_programming_techniques.ipynb) notebook." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Instructions\n", - "\n", - "Below you will find one or more exercises. For each exercise, do the following:\n", - "\n", - "1. Run the first code cell under the exercise heading. This will execute some code needed to set up the problem.\n", - "2. Reading the instructions and write code in the empty code cell (labeled with the comment `Your code here`). Run this code.\n", - "3. Assuming your code does not produce any errors, run the code in the cell below the `Tests` heading. Each line of this code consists of a Python {term}`assert statement`. \n", - " - If you see an `AssertionError`, don't panic! The error is written so as to help you pinpoint the part of your code that's not working as expected. After making a change in your code, re-run **both** the cell with your code and the cell with the tests. Repeat until you see no errors.\n", - " - If you run the cell with the test code and you see no output, congratulations! That means that your code has passed all the tests and works as expected. Go to step 4 to submit.\n", - "4. Submit your code by downloading this notebook from JupyterHub and uploading it to the GitHub repository for this assignment. See [the documentation](https://gwu-libraries.github.io/python-camp/homework.html) for detailed instructions." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Exercise 1\n", - "\n", - "The following code defines a list of strings that represent courses. Each string consists of a department code, a course number, and a section number." - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": { - "tags": [ - "setup:ex1" - ] - }, - "outputs": [], - "source": [ - "courses = ['CHEM 1001 10',\n", - " 'CHEM 1002, 10',\n", - " 'CHEM 1002 11',\n", - " 'BISC 1100 10',\n", - " 'BISC 1102 10',\n", - " 'PSC 2001 10',\n", - " 'PSC 2001 11',\n", - " 'PSC 2001 12',\n", - " 'WSTU 6999 10',\n", - " 'WSTU 6999 11']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In the cell below, write some code that will transform the data in the `courses` list into a list of dictionaries. Each dictionary should be structured as follows:\n", - "```\n", - "{'dept': 'CHEM',\n", - " 'course': '1001',\n", - " 'section': '10'} \n", - "```\n", - "In other words, each dictionary should have the same three keys: `dept`, `course`, and `section`. And there should be one dictionary for each of the courses in the `courses` list.\n", - "\n", - "Call this new list `courses_db` (for \"courses database\"). \n", - "\n", - "If you get stuck, try solving this [Parsons Problem](https://gwu-libraries.github.io/python-camp/parsons-problems/html/homework-2-GR.html), which will help you focus on the logic without worrying too much about the syntax." - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": { - "tags": [ - "solution:ex1" - ] - }, - "outputs": [], - "source": [ - "#Your code here" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{hint}\n", - "\n", - "Make sure you create each course dictionary **inside** the `for` loop, like so:\n", - "```\n", - "for course in courses:\n", - " course_dict = {}\n", - " ...\n", - "```\n", - "\n", - "````" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Tests\n", - "\n", - "The cell below defines various tests that will be run to check your code. \n", - "\n", - "Once you have completed your answer, run the cell above. If you don't get any errors, you can check to see if your code produces the correct output by running the code cell below. \n", - "\n", - "If you run the cell below and you see no output, then contratulations, your code has passed the tests!\n", - "\n", - "If, on the other hand, you see an `AssertionError`, it means that one of the tests has failed. Look at the error message for a hint as to where the problem lies. " - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": { - "tags": [ - "test-case:ex1" - ] - }, - "outputs": [], - "source": [ - "assert 'courses_db' in globals(), 'courses_db is not defined'\n", - "assert isinstance(courses_db, list), 'courses_db is not a list.'\n", - "assert isinstance(courses_db[0], dict), 'courses_db does not contain a dict as its first element.'\n", - "assert len(courses_db) == len(courses), 'courses_db is the wrong length.'\n", - "assert set(courses_db[0].keys()) == {'dept', 'course', 'section'}, 'The first element of courses_db does not have the right keys.'\n", - "assert set(courses_db[0].values()) == {'CHEM', '1001', '10'}, 'The first element of courses_db does not have the right values.'\n", - "assert set(courses_db[-1].values()) == {'WSTU', '6999', '11'}, 'The last element of courses_db does not have the right values.'" - ] - } - ], - "metadata": { - "celltoolbar": "Tags", - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.4" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/textbook/notebooks/homework/HW_2_programming_techniques.ipynb b/textbook/notebooks/homework/HW_2_programming_techniques.ipynb index a249caa..276b8a5 100644 --- a/textbook/notebooks/homework/HW_2_programming_techniques.ipynb +++ b/textbook/notebooks/homework/HW_2_programming_techniques.ipynb @@ -13,7 +13,7 @@ "source": [ "## Objectives\n", "\n", - "- To practice documenting code for clarity and reuse\n", + "- To use control structures to clean and transform data in an automated way\n", "- To write basic functions to reduce redundancy\n", "- To interpret Python exceptions (error messages) in order to fix bugs" ] @@ -24,11 +24,7 @@ "source": [ "## Introduction\n", "\n", - "By now, you have written Python code to solve various problems. Some problems could be solved in one or two lines; others (like finding the most expensive textbook in our dataset) required several lines of code. \n", - "\n", - "Given all that you have learned so far, you could go on to solve many, many more problems using Python. In other words, we've covered the bare essentials; it's one of the main advantages of Python (as a programming language) that these essentials can be covered in just a couple of days.\n", - "\n", - "But the Python language offers many other tools and techniques to make code more robust, reusable, and efficient. One way to think about these tools and techniques is that they help us write _programs_ as opposed to writing code, a **program** being some code that is designed for use by different users in different contexts. Even if you are the only user of your code, applying these programming techniques can make your work more productive and your code more effective.\n", + "The Python language offers many other tools and techniques to make code more robust, reusable, and efficient. One way to think about these tools and techniques is that they help us write _programs_ as opposed to writing code, a program being some code that is designed for use by different users in different contexts. Even if you are the only user of your code, applying these programming techniques can make your work more productive and your code more effective.\n", "\n", "This notebook is intended for you to work through independently, in order to review and clarify the concepts introduced on Python Camp Day 2, and to lay the groundwork for the activities on Python Camp Day 3. However, feel free to collaborate with others in working through it. It is also intended to serve as a resource you can return to review as necessary." ] @@ -53,9 +49,6 @@ "\n", "\n", "5. Optional annotations (labeled `For the curious...`) provide additional explanation and/or context for those who want them. Feel free to skip these sections if you like. As a beginner, it's important to maintain a balanced cognitive load: taking in too much information all at once can impede your progress toward understanding. This balance looks different for everyone, but we have tried to keep the main content focused on a few key concepts, tools, and techniques, while providing that additional context for those who might benefit from it.\n", - "\n", - "6. Follow the instructions at the end to complete and submit a short, autograded assignment to test your knowledge. (You may submit the assignment as many times as you like.)\n", - "\n", "````" ] }, @@ -63,39 +56,83 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## I. Writing & Reading Documentation\n", - "\n", - "One of the most important techniques doesn't involve writing code at all! But while good documentation won't technically make your code work better, it can make _you_ work better. Good documentation makes clear -- to you or anyone else who might want to use your code -- how code is intended to be used. \n", + "## I. Loops & lists" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### I.1 Doing things with strings & lists\n", "\n", - "Conversely, not having documentation in your code is a recipe for frustration. Writing code is always a matter of choosing one path over many other possible paths, and your future self is not likely to remember why you chose a particular path in every case (nor even necessarily what you were trying to accomplish). \n", + "The real power of lists enters when we can use them to automate repetitive tasks.\n", "\n", - "In the exercise below, you'll practice documenting some code that has already been written. The code uses a logical pattern that we've seen before but in a novel way.\n", + "In \"Modeling Code\" and \"Describing the Team\" we used what's called a {term}`for loop` to adjust items in a list. Here we'll work up to the same sort of task, step by step, but we'll add a couple of enhancements. \n", "\n", - "For this exercise, we're using the bookstore dataset, so the first step is to load it from disk." + "For this example, we'll start with a {term}`list` of strings representing book prices." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "book_prices = ['$55.99', '$119.95', '$13.95', '$250.67', '$99.99']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "First, let's just print each price from the list on its own line." ] }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ - "from urllib.request import urlretrieve\n", - "import json\n", - "urlretrieve('https://go.gwu.edu/pythoncampdata', 'bookstore-data.json')\n", - "with open('bookstore-data.json') as f:\n", - " bkst_data = json.load(f)" + "for price in book_prices:\n", + " print(price)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "### I.1 Commenting on Code\n", + "````{admonition} Notes\n", + ":class: notes\n", + "\n", + "1. Our loop begins with the Python {term}`keyword` `for`. This is not a function -- like `len()` or `print()` -- but part of the Python syntax itself (like the quotation marks around strings or the square brackets around lists). \n", "\n", - "The code below loops through the bookstore data and counts the total number of textbooks where the type of the text is digital (as opposed to print). \n", "\n", - "Above each line of code is a blank line beginning with the hash symbol (`#`). This is a Python {term}`comment`. The Python interpreter ignores comments when executing code, so they are present purely for the programmer's benefit." + "2. `for` always goes with `in`; they make a pair. \n", + "\n", + "\n", + "3. The variable `price`, immediately following `for`, is being created here. (It was not previously defined in our code.) Its role is to hold -- in sequence -- each item in the {term}`collection` following `in`.\n", + "\n", + "\n", + "4. `book_prices` _was_ defined before the loop. The variable following `in` should always be some sort of collection type -- a string, a list, a dictionary, etc. -- or else a {term}`function` that returns a collection. We cannot write `for x in 10`, for instance, because the integer `10` is not a collection; it holds no items within itself. (For the same reason, we can't take a slice of `10`.)\n", + "\n", + "\n", + "5. The first line of the `for` loop ends in a {term}`colon`, and the line or lines underneath it are **indented** (separated from the left margin by the same number of tabs or spaces). We call these indented lines in Python a {term}`block`.\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Animation\n", + ":class: animation\n", + "\n", + "To help you visualize what's happening inside `for` loop, here's an [animation](https://gwu-libraries.github.io/python-camp/img/gifs-lg/looping-over-a-list.gif) of looping over a list of float values. \n", + "\n", + "As this animation demonstrates, the loop variable, `price`, holds the last value in the list once the loop has finished. \n", + "````" ] }, { @@ -105,36 +142,81 @@ "````{admonition} Try it out!\n", ":class: try-it-out\n", "\n", - "For each comment, write (in your own words) an explanation of what the line of code below the comment is doing. Your comment text can be anything that makes sense to you. Just make sure that your text follows the hash symbol. (If you want to make a comment that spans multiple lines, just create an extra line below the first and begin that new line with the hash symbol.)\n", + "\n", + "All of the prices follow the same format, beginning with the dollar sign. To calculate the sales tax, we need to multiply each price by a fixed percentage -- let's say 110%, or 1.1, to reflect a sales tax of 10% on the dollar.\n", + "\n", + "But as we saw above, we can't perform math with strings, and `book_prices` is a list of strings. To convert our strings to numbers, we first need to remove the dollar sign from each price. \n", + "\n", + "Modify the `for` loop above so that it prints each price _without_ the dollar sign. For a hint, consult [the example](https://gwu-libraries.github.io/python-camp/notebooks/homework/HW_1_from_code_to_data.html#i-5-how-to-do-things-with-strings-slicing) from yesterday's homework where we created the variable `course_section`.\n", + "\n", + "````\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "solution2": "hidden", + "solution2_first": true + }, + "source": [ + "Now check your answer by expanding the hidden solution cell below." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "solution2": "hidden", + "tags": [ + "hide-cell" + ] + }, + "outputs": [], + "source": [ + "for price in book_prices:\n", + " print(price[1:])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Try it out!\n", + ":class: try-it-out\n", + "\n", + "Now that we have extracted the numeric part of the string (the part after the dollar sign), we can convert this string to a float in order to do math with it. \n", + "\n", + "Modify the for loop again to do the following:\n", + "\n", + "1. Assign the slice of the price (without the dollar sign) to a new variable called `price_num`.\n", + "\n", + "2. Use the `float()` function to convert `price_num` to a float, and multiply the result by `1.1`. \n", + "\n", + " For instance, to convert the string `\"1.5\"` (notice the quotations marks!) to its float representation, we would write `float(\"1.5\")`.\n", + "\n", + "3. Assign the result of this calculation to `price_num` and print it.\n", + "\n", + "If the foregoing feels intimidating, try this [Parsons Problem](https://gwu-libraries.github.io/python-camp/parsons-problems/html/homework-1-1.html) first. It allows you to focus on the logical order of the actions to be performed, rather than on the syntax of the commands.\n", + "\n", "````" ] }, { "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Number of digital textbooks: 94\n" - ] - } - ], - "source": [ - "#\n", - "digital_count = 0\n", - "#\n", - "for course in bkst_data:\n", - " #\n", - " for text in course['texts']:\n", - " #\n", - " if text['item_type'] == 'digital':\n", - " #\n", - " digital_count += 1\n", - "#\n", - "print('Number of digital textbooks:', digital_count)" + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here" ] }, { @@ -144,7 +226,7 @@ "solution2_first": true }, "source": [ - "Expand the cell below to see one possible way of documenting this code." + "Now check your answer by expanding the hidden solution cell below." ] }, { @@ -158,66 +240,72 @@ }, "outputs": [], "source": [ - "# Initialize the counter \n", - "digital_count = 0\n", - "# Loop over each course in the bkst_data list\n", - "for course in bkst_data:\n", - " # Loop over each text in the course dictionary\n", - " for text in course['texts']:\n", - " # Check the value of the item_type key: is it a digital book?\n", - " if text['item_type'] == 'digital':\n", - " # If so, increment the counter\n", - " digital_count += 1\n", - "# Print the total number of digital texts\n", - "print('Number of digital textbooks:', digital_count)" + "for price in book_prices:\n", + " price_num = price[1:]\n", + " price_num = float(price_num) * 1.1\n", + " print(price_num)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "### I.2 Using the Python documentation\n", + "### II.2 From one list to another\n", "\n", - "Lucky for us, documentation consists of much more than lines of comments on code. Both the Python **standard library** (the set of functions, data types, methods, and other tools that are available with the basic installation of Python) and a wide array of third-party Python libraries come with extensive documentation. \n", + "If you didn't get the intended answer, don't worry! You'll get the hang of it. The most important thing for now is to understand that we used a for loop because we wanted to repeat a certain set of actions for all the items in a list. \n", "\n", - "Learning how to read and navigate this documentation is a skill in itself. \n", + "For now, let's add one enhancement to our loop: instead of just printing the new price (with the added sales tax), we'll store it in a separate list. \n", "\n", - "The official Python documentation -- for the core language and the standard library -- resides at https://docs.python.org/3/. This site will often appear in Google results when searching for documentation on specific functions, methods, etc." + "To do this, we need to use a {term}`method` of Python lists called `append()`. This method adds a new item to the end of a list.\n", + "\n", + "Much like the `split()` method we used on strings, the `append()` method can be called from any Python list by writing the name of the list plus `.append(item)`, where `item` is the value we want to add to the list. \n", + "\n", + "See the code below and the explanation that follows." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "prices_with_tax = []\n", + "for price in book_prices:\n", + " price_num = price[1:]\n", + " price_num = float(price_num) * 1.1\n", + " prices_with_tax.append(price_num)\n", + "print(prices_with_tax)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "````{admonition} Try it out!\n", - ":class: try-it-out\n", + "````{admonition} Notes\n", + ":class: notes\n", "\n", + "This loop achieves the same thing as the previous, with this difference: the adjusted prices are now stored in the `prices_with_tax` variable, which is another list. This is a fairly common Python pattern; when using this pattern, here are a few rules of thumb to keep in mind:\n", + "\n", + "\n", + "1. We need to create the new list _outside_ of the loop. The line `prices_with_tax = []` creates a new variable that consists of an **empty list**. \n", + "\n", + "\n", + "2. As before, we use the {term}`loop variable` `price` to work with each item in the `book_prices` list.\n", "\n", - "In the previous homework, we used the `str.split()` {term}`method` to separate a single {term}`string` on its {term}`white space` into a {term}`list` of substrings.\n", - "The code\n", - "```\n", - "'CHEM 1001 10'.split()\n", - "```\n", - "yields the output\n", - "```\n", - "['CHEM', '1001', '10']\n", - "```\n", - "(The method is referred to as `str.split()` in the docs because it can be used on any value of the string {term}`type`.)\n", "\n", - "Here is the [documentation](https://docs.python.org/3/library/stdtypes.html#str.split) for `str.split()`. \n", + "3. The variable `price_num` is temporary, in the sense that, like the `price` loop variable, it will change (be reassigned to a new value) with every iteration of the loop.\n", "\n", - "Reading that documentation, can you tell how to use the `str.split()` method to separate a string on _something other_ than white space? \n", "\n", - "For example, our bookstore dataset indicates whether a text is for sale or rental, new or used, by the following strings:\n", + "3. The line `prices_with_tax.append(price_num)` stores the value in `price_num` to our list. **Without this step, we could not \"save\" the results of our calculations.** It's like performing a series of steps on a calculator: if you don't write down your answer before moving onto the next problem, you will lose all your hard work!\n", "\n", - " - `BUY_NEW`\n", - " - `BUY_USED`\n", - " - `RENTAL_NEW`\n", - " - `RENTAL_USED`\n", "\n", - "Write some code that will split such a string on the underscore character (`_`), so that we can separate each of these strings into two data points. \n", + "4. Steps 2, 3, and 4 are all indented underneath the line that kicks off the for loop. Visually, this tells you that all of these steps happen on each iteration of the loop (once for every item in the `book_prices` lists.\n", "\n", - "Expand the hidden cell below to see an explanation and a solution.\n", + "\n", + "5. The line `print(prices_with_tax)` is **not** indented, meaning that it will be executed **after** the for loop completes. That's because we only want to print our new list when it's finished, not every time we add a new item to it. \n", + "\n", + "\n", + "6. Note that our `book_prices` list still holds the original strings: our code made a new, second list. \n", "\n", "````" ] @@ -225,66 +313,134 @@ { "cell_type": "code", "execution_count": null, - "metadata": { - "solution2": "shown", - "solution2_first": true - }, + "metadata": {}, "outputs": [], "source": [ - "# Your code here" + "print(book_prices)" ] }, { "cell_type": "markdown", - "metadata": { - "solution2": "shown" - }, + "metadata": {}, "source": [ - "````{hint}\n", - ":class: dropdown\n", - "The crucial line of the Python documentation for methods is the first, called the **method signature**. For `str.split()` the method signature looks like this:\n", - "```\n", - "str.split(sep=None, maxsplit=-1)\n", - "```\n", - "- As mentioned above, the `str` here refers to any Python value of type string (`str`). In other words, you can call the `split` method on anything between single or double quotes, or on any variable that has been assigned to a value surrounded by single or double quotes.\n", - "\n", - "- The part between {term}`parentheses` defines the method's **arguments**. \n", - "\n", - "- Each argument is given a **default value**, meaning that (in this case), these arguments are optional.\n", - " - The `sep` argument defaults to `None`. \n", - " - The `maxsplit` argument defaults to `-1`.\n", - "\n", - "If the user of the method does not supply a given argument, the default value will be used. Reading the documentation below, we see that \n", - "\n", - "> If sep is not specified or is None, a different splitting algorithm is applied: runs of consecutive whitespace are regarded as a single separator, and the result will contain no empty strings at the start or end if the string has leading or trailing whitespace.\n", - "\n", - "That's a little dense, but basically, it describes the behavior we've seen when using `str.split()` (with nothing between the parentheses): the string is split on the white space.\n", + "````{admonition} Try it out!\n", + ":class: try-it-out\n", "\n", - "To split on something else, we need to provide a value for the `sep` argument. We can do that in one of two ways:\n", + "We have a list of strings that represent courses, where each string (as in the example above) consists of a department code, a course number, and a section number:\n", "\n", "```\n", - "'RENTAL_NEW'.split(sep='_')\n", + "courses = ['CHEM 1001 10', 'CHEM 1001 11' ...]\n", "```\n", - "or \n", - "```\n", - "'RENTAL_NEW'.split('_')\n", - "```\n", - "Either of those will yield the result we want: `['RENTAL', 'NEW']`. Note that the underscore character is _enclosed in quotation marks_ when passing it as an argument to `str.split()`. \n", + "\n", + "Using a for loop, transform this list into three separate lists: \n", + " - one to hold the department codes, \n", + " - one to hold the course numbers, \n", + " - and one to hold the section numbers.\n", + "\n", + "The cells below will get you started. For more help, check out this [Parsons Problem](https://gwu-libraries.github.io/python-camp/parsons-problems/html/homework-1-2.html).\n", "\n", "````" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "courses = ['CHEM 1001 10', 'CHEM 1001 11', 'BISC 1111 10', 'BISC 2207 10', 'PSC 1001 10',\n", + " 'PSC 1001 11', 'PSC 1001 12', 'ANTH 3808 10', 'AMST 2071 80']" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "depts = []\n", + "course_nums = []\n", + "sections = []" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "solution2": "hidden", + "solution2_first": true + }, + "source": [ + "Now check your answer by expanding the hidden solution cell below." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "solution2": "hidden", + "tags": [ + "hide-cell" + ] + }, + "outputs": [], + "source": [ + "for course in courses:\n", + " course_info = course.split()\n", + " depts.append(course_info[0])\n", + " course_nums.append(course_info[1])\n", + " sections.append(course_info[2])\n", + "print(depts)\n", + "print(course_nums)\n", + "print(sections)" + ] + }, { "cell_type": "markdown", "metadata": {}, "source": [ "## II. Writing Functions\n", "\n", - "**Functions** and **methods** may feel pretty inscrutable. Unlike lists and dictionaries, we can't \"look inside\" them to see what they consist of, the way we examined `bkst_data` to determine its structure. (We _can_ read the source code for functions and methods, but unless you know what you're looking for, that's not always helpful.) That's one reason documentation is so important; reading the documentation is usually the best way to understand what a function or method does.\n", + "We've met a number of functions and methods so far on our journey through the Python language. See how many you can name before expanding the cell below." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{hint}\n", + ":class: dropdown\n", + "- `print()`: Displays one or more values on the screen.\n", + "- `type()`: Returns the data type of a value.\n", + "- `len()`: Returns the length (as an integer) of a list or string.\n", + "- `float()`: Converts a string or integer to a float.\n", + "- `open()`: Opens a file for reading or writing.\n", + "- `str.split()`: A string method, it returns a list of strings derived by separating a string on some character ({term}`white space` by default).\n", + "- `list.append()`: A list method, adds an element to the end of a list.\n", + "- `json.load()`, `json.dump()`: Methods defined in the `json` Python module, which format Python data types for storage in the {term}`JSON` format.\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Functions and methods may feel pretty inscrutable. Unlike lists and dictionaries, we can't \"look inside\" them to see what they consist of, the way we examined `bkst_data` to determine its structure. (We _can_ read the {term}`source code` for functions and methods, but unless you know what you're looking for, that's not always helpful.) \n", "\n", "But in what follows, we'll demystify functions a bit by writing our own. \n", "\n", - "Practically, a function is just a way of _encapsulating_ code. It's like a shortcut on your computer: in many apps, you can type `Ctrl+S` (or `Cmd+S`) in order to save the current document, page, etc. Those keystrokes are shorthand for the series of operations involved in doing a save. " + "A function (or a method) is just a way of _encapsulating_ code. It's like a shortcut on your computer (e.g., like hitting `Ctrl+S` or `Cmd+S` in order to save the current document, etc.). Functions make it easier to do the same thing multiple times without having to repeat yourself. \n", + "\n", + "They can also help make your code more legible and easier to reason about." ] }, { @@ -298,7 +454,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -313,7 +469,7 @@ "````{admonition} Notes\n", ":class: notes\n", "\n", - "When you run the above cell, you shouldn't see any output. That's because **defining a function** and using the function are two separate operations. \n", + "When you run the above cell, you shouldn't see any output. That's because **defining** a function and using the function are two separate operations. \n", "\n", "Let's unpack our function definition, piece by piece:\n", " - The `def` {term}`keyword` tells Python that we're defining a function.\n", @@ -325,30 +481,22 @@ " - As with variables, our function names should be unique. We _don't_ want to give a function the same name as an existing Python function. For instance, calling this function `print` would overwrite the built-in Python `print()` function, which would mean that we could no longer use the latter.\n", " \n", " \n", - " - Immediately after the function name, we need **parentheses**. Here the parentheses are empty because this function takes no **arguments**. We'll look at arguments later.\n", + " - Immediately after the function name, we need {term}`parentheses`. Here the parentheses are empty because this function takes no {term}`arguments`. We'll look at arguments later.\n", " \n", " \n", - " - Then there's a **colon**, followed by an indented {term}`block` (as in the `for` and `if` statements you wrote today). \n", + " - Then there's a {term}`colon` (`:`), followed by an indented {term}`block` (as in the for loops you wrote today). \n", " \n", " \n", - " - The code in the indented block is the **body** of the function. The function body is what will be executed when we **call** the function\n", + " - The code in the indented block is the body of the function. The function body is what will be executed when we {term}`call` the function\n", " \n", "````" ] }, { "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Hello from my function!\n" - ] - } - ], + "execution_count": null, + "metadata": {}, + "outputs": [], "source": [ "print_message()" ] @@ -357,7 +505,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "In the cell above, we **call**ed the `print_message()` function. Calling a function, like defining a function, requires the parentheses, even when there are no arguments. The presence of the parentheses lets Python know that it should execute the code within the body of the function." + "In the cell above, we called the `print_message()` function. Calling a function, like defining a function, requires the parentheses, even when there are no arguments. The presence of the parentheses lets Python know that it should execute the code within the body of the function." ] }, { @@ -374,21 +522,21 @@ "\n", "| function name | input | output |\n", "| :- | :- | :- |\n", - "|`str.split()` | a string, and optionally, a separator | a list of strings |\n", - "| `open()` | the name of a file | a file handle (for working with the file's contents) |\n", + "|`len` | a string or a list | an integer |\n", + "| `open()` | the name of a file as a string | a file handle (for working with the file's contents) |\n", "| `float()`| a string | a float |\n", "| `print()`| one or more values of any Python type | those values, displayed on the screen |\n", "\n", - "The **arguments** in the function definition are variables that hold the input. These variables are used within the body of the function (in the block of code that comes after the `def` line). \n", + "The {term}`arguments` in the function definition are variables that hold the input. These variables are used within the body of the function (in the block of code that comes after the `def` line). \n", "\n", - "In order to produce output, a function will usually **return** a value, using the `return` keyword. `return` will usually start the last line of the function. \n", + "In order to produce output, a function will usually {term}`return` a value, using the `return` keyword. `return` will usually start the last line of the function. \n", "\n", "For instance, the function below calculates sales tax on a given price." ] }, { "cell_type": "code", - "execution_count": 19, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -408,29 +556,15 @@ }, { "cell_type": "code", - "execution_count": 21, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Price is 9.99\n", - "Price with tax is 10.989\n", - "Price is 11.99\n", - "Price with tax is 13.189000000000002\n", - "Price is 55.95\n", - "Price with tax is 61.54500000000001\n", - "Price is 100.19\n", - "Price with tax is 110.209\n" - ] - } - ], + "execution_count": null, + "metadata": {}, + "outputs": [], "source": [ "prices = [9.99, 11.99, 55.95, 100.19]\n", "for p in prices:\n", " print('Price is', p)\n", - " print('Price with tax is', add_sales_tax(p))" + " price_with_tax = add_sales_tax(p)\n", + " print('Price with tax is', price_with_tax)" ] }, { @@ -440,20 +574,13 @@ "````{admonition} Notes\n", ":class: notes\n", "\n", - "- In the code above, we called `add_sales_tax` inside a `for` loop, passing it the {term}`loop variable` `p` in parentheses.\n", + "- In the code above, we called `add_sales_tax` inside a for loop, passing it the {term}`loop variable` `p` in parentheses.\n", "\n", "\n", "- During the execution of the function, the value of `p` is copied into to the `price` variable (which is internal to the function). \n", "\n", "\n", - "- We are calling `add_sales_tax()` _inside_ our call to the `print()` function.\n", - "```\n", - "print('Price with tax is', add_sales_tax(p))\n", - "```\n", - " Note the nested parentheses. Python will execute `add_sales_tax(p)` first, get the returned value, and then pass that as the second argument to `print()`. \n", - " \n", - " \n", - "- Note that we documented our function inside its definition, so that others would understand how to use it.\n", + "- We are calling `add_sales_tax()` _inside_ our loop, and assigning the result to the `price_with_tax` variable. Like the loop variable `p`, `price_with_tax` receives a new value on each iteration of the loop.\n", "\n", "````" ] @@ -493,7 +620,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": null, "metadata": { "solution2": "hidden", "tags": [ @@ -519,22 +646,9 @@ }, { "cell_type": "code", - "execution_count": 27, - "metadata": {}, - "outputs": [ - { - "ename": "ValueError", - "evalue": "could not convert string to float: '10,000.00'", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mdollars_to_float\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'$10,000.00'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[0;32m\u001b[0m in \u001b[0;36mdollars_to_float\u001b[0;34m(dollar_amt)\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[0;31m# Converts a string prefixed with a dollar sign to a float\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0mamt\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mdollar_amt\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 4\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mfloat\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mamt\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[0;31mValueError\u001b[0m: could not convert string to float: '10,000.00'" - ] - } - ], + "execution_count": null, + "metadata": {}, + "outputs": [], "source": [ "dollars_to_float('$10,000.00')" ] @@ -549,7 +663,7 @@ "\n", "Learning to program (in virtually any language) involves learning how to deal with errors. There's no such thing as a piece of software without \"bugs,\" if only because for any given piece of software, someone can find a way to use it for which it was not intended.\n", "\n", - "In the example above, we didn't design the function specifically to work for strings with commas, and indeed, it doesn't. The `ValueError` -- technically, this kind of error is called an **exception** -- means simply that the Python interpreter encountered a kind of value it didn't expect and doesn't know what to do with. \n", + "In the example above, we didn't design the function specifically to work for strings with commas, and indeed, it doesn't. The `ValueError` -- technically, this kind of error is called an {term}`exception` -- means simply that the Python interpreter encountered a kind of value it didn't expect and doesn't know what to do with. \n", "\n", "Such errors/exceptions are valuable (no pun intended) to the programmer; they tell us where the bugs are (or might be) in our programs. Python even provides mechanisms for checking for errors proactively, so that our code doesn't grind to a halt whenever it encounters one.\n", "\n", @@ -586,13 +700,17 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Wrap up / Final exercise\n", + "## Wrap up \n", "\n", - "In this homework, you practiced writing documenting code with **comments**. You used the official Python documentation to learn more about the `str.split()` **method**. And you wrote your first Python **function**, `dollars_to_float`. You also encountered some Python error messages, which we'll learn more about tomorrow.\n", + "With **for loops**, we can _automate_ actions that would otherwise be tedious, like calculating the sales tax of a (long) list of prices. And that's one of the main reasons for learning to program: as the title of one popular book on Python puts it, [\"to automate the boring stuff\"](https://wrlc-gwu.primo.exlibrisgroup.com/discovery/fulldisplay?docid=alma99185917215304107&context=L&vid=01WRLC_GWA:live&lang=en&search_scope=WRLC_P_MyInst_All&adaptor=Local%20Search%20Engine&tab=WRLC&query=any,contains,automate%20the%20boring%20stuff). \n", "\n", - "You'll use your `dollars_to_float` function, as well as the skills covered in this homework, in the team exercises tomorrow.\n", + "You wrote your first Python **function**, `dollars_to_float`. You also encountered some Python error messages, which we'll learn more about on Day 3.\n", + "\n", + "You'll use your `dollars_to_float` function, as well as the skills covered in this homework, in the team exercises ahead.\n", + "\n", + "By now, you have written Python code to solve various problems. Some problems could be solved in one or two lines; others (like finding the most expensive textbook in our dataset) required several lines of code. \n", "\n", - "The final part of the homework or today is an [autograded exercise](./HW_2_GR.ipynb), designed to test your grasp of the concepts covered on Days 1 and 2. " + "Given all that you have learned so far, you could go on to solve many, many more problems using Python. In other words, we've covered the bare essentials; it's one of the main advantages of Python (as a programming language) that these essentials can be covered in just a couple of days." ] } ], diff --git a/textbook/notebooks/homework/HW_3_GR.ipynb b/textbook/notebooks/homework/HW_3_GR.ipynb deleted file mode 100644 index a4c1920..0000000 --- a/textbook/notebooks/homework/HW_3_GR.ipynb +++ /dev/null @@ -1,278 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Graded Homework: Day 3\n", - "\n", - "This homework should be completed after the [Error Stories](https://gwu-libraries.github.io/python-camp/notebooks/homework/HW_3_error_stories.html) notebook.\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Instructions\n", - "\n", - "Below you will find one or more exercises. For each exercise, do the following:\n", - "\n", - "1. Run the first code cell under the exercise heading. This will execute some code needed to set up the problem.\n", - "2. Reading the instructions and write code in the code cell labeled with the comment `Your code here`. Run this code.\n", - "3. Assuming your code does not produce any errors, run the code in the cell below the `Tests` heading. Each line of this code consists of a Python {term}`assert statement`. \n", - " - If you see an `AssertionError`, don't panic! The error is written so as to help you pinpoint the part of your code that's not working as expected. After making a change in your code, re-run **both** the cell with your code and the cell with the tests. Repeat until you see no errors.\n", - " - If you run the cell with the test code and you see no output, congratulations! That means that your code has passed all the tests and works as expected. Go to step 4 to submit.\n", - "4. Submit your code by downloading this notebook from JupyterHub and uploading it to the GitHub repository for this assignment. See [the documentation](https://gwu-libraries.github.io/python-camp/homework.html) for detailed instructions." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Exercise 1\n", - "\n", - "The following sample contains metadata about some course texts." - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": { - "editable": true, - "slideshow": { - "slide_type": "" - }, - "tags": [ - "setup:ex1" - ] - }, - "outputs": [], - "source": [ - "books = [{'title': 'Crack-Up Capitalism', 'isbn': '9781250753892', 'price': '$29.99'},\n", - " {'title': 'Crack-Up Capitalism', 'isbn': '9781250753892', 'price': '$22.50'},\n", - " {'title': 'Loaded', 'isbn': '9780872867239', 'price': '$16.95'},\n", - " {'title': 'Loaded', 'isbn': '9780872867239', 'price': '$12.71'},\n", - " {'title': 'Loaded', 'isbn': '9780872867239', 'price': '$12.75'},\n", - " {'title': \"Handmaid's Tale\", 'isbn': '9780385490818', 'price': '$17.00'},\n", - " {'title': \"Handmaid's Tale\", 'isbn': '9780385490818', 'price': '$12.75'},\n", - " {'title': \"Handmaid's Tale\", 'isbn': '9780385490818', 'price': '$7.48'},\n", - " {'title': \"Handmaid's Tale\", 'isbn': '9780385490818', 'price': '$12.75'},\n", - " {'title': \"Billy Lynn's Long Halftime Walk\", 'isbn': '9780060885618', 'price': '$16.99'}]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The following function, `create_isbn_dict`, converts a list like the above to a dictionary, according to the following requirements:\n", - "\n", - "- The dictionary should associate each ISBN with the price of the text.\n", - "- When duplicate ISBNs exist, the function should assign the lowest price to the ISBN.\n", - "- The function should return the dictionary of ISBNs & prices.\n", - "\n", - "The function is currently failing a couple of tests. Can you fix the code so that it passes the tests?" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": { - "editable": true, - "slideshow": { - "slide_type": "" - }, - "tags": [ - "solution:ex1" - ] - }, - "outputs": [], - "source": [ - "# Your code here\n", - "def create_isbn_dict(book_list):\n", - " isbn_dict = {}\n", - " for book in book_list:\n", - " isbn = book['isbn']\n", - " price = book['price']\n", - " if (isbn not in isbn_dict) or (isbn_dict[isbn] > price):\n", - " isbn_dict[isbn] = price" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Run the following cell to see which tests the `create_isbn_dict` function is failing. Your work is complete when all tests pass (do not produce any errors)." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "editable": true, - "slideshow": { - "slide_type": "" - }, - "tags": [ - "test-case:ex1" - ] - }, - "outputs": [], - "source": [ - "# Tests\n", - "test_phrase = 'Testing: create_isbn_dict'\n", - "print(test_phrase, 'is a function')\n", - "assert callable(create_isbn_dict), 'create_isbn_dict is not a function'\n", - "print(test_phrase, 'returns a dictionary')\n", - "assert isinstance(create_isbn_dict(books), dict), 'create_isbn_dict should return a dictionary.'\n", - "print(test_phrase, 'contains specific key') \n", - "assert '9781250753892' in create_isbn_dict(books), '9781250753892 missing from returned dictionary.'\n", - "print(test_phrase, 'uses floats for values')\n", - "assert isinstance(create_isbn_dict(books)['9780385490818'], float), 'Dictionary values should be floats.'\n", - "print(test_phrase, 'assigns lowest value for each key')\n", - "assert create_isbn_dict(books)['9780385490818'] == 7.48, 'ISBN 9780385490818 should correspond to 7.48.'" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Exercise 2\n", - "\n", - "The following code creates another sample, similar to the `books` variable above." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "editable": true, - "slideshow": { - "slide_type": "" - }, - "tags": [ - "setup:ex2" - ] - }, - "outputs": [], - "source": [ - "more_books = [{'title': 'Critical Social Theories & Education',\n", - " 'isbn': '9781594518577',\n", - " 'price': '$127.50'},\n", - " {'title': 'Critical Approaches to the Study of Higher Education',\n", - " 'isbn': '9781421416663',\n", - " 'price': '$34.75'},\n", - " {'title': 'Rethinking College Student Development Theory Using Critical Frameworks',\n", - " 'isbn': '9781620367667',\n", - " 'price': '$36.95'},\n", - " {'title': 'Critical Theory and Qualitative Data Analysis in Education',\n", - " 'isbn': '9781351657846',\n", - " 'price': '$56.95'},\n", - " {'title': 'Rethinking College Student Development Theory Using Critical Frameworks',\n", - " 'price': '$39.95'}]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "However, if you run `create_isbn_dict` on `more_books` -- assuming you have fixed it to satisfy the tests in exercise 1 -- you will see a `KeyError`. Try it below." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "editable": true, - "slideshow": { - "slide_type": "" - }, - "tags": [] - }, - "outputs": [], - "source": [ - "create_isbn_dict(more_books)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Your task now: modify `create_isbn_dict` so that it works on `more_books` as well as `books`. Enter your new version of the function in the cell below. " - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{hint}\n", - "For books without an ISBN, the function should simply skip them. \n", - "````" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "editable": true, - "slideshow": { - "slide_type": "" - }, - "tags": [ - "solution:ex2" - ] - }, - "outputs": [], - "source": [ - "# Your code here" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can run the following test cell to confirm that your new code works with both kinds of data." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "tags": [ - "test-case:ex2" - ] - }, - "outputs": [], - "source": [ - "test_phrase = 'Testing: create_isbn_dict'\n", - "print(test_phrase, 'handles missing data')\n", - "assert create_isbn_dict([{'title': 'Test', \n", - " 'price': '39.99'},\n", - " {'title': 'Test2', \n", - " 'isbn': '9782441757935', \n", - " 'price': '$19.99'}]) == {'9782441757935': 19.99}, 'Should return dictionary with one element.'" - ] - } - ], - "metadata": { - "celltoolbar": "Tags", - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.4" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/textbook/notebooks/homework/HW_3_error_stories.ipynb b/textbook/notebooks/homework/HW_3_error_stories.ipynb index 3a1858c..9b1f368 100644 --- a/textbook/notebooks/homework/HW_3_error_stories.ipynb +++ b/textbook/notebooks/homework/HW_3_error_stories.ipynb @@ -13,6 +13,7 @@ "source": [ "## Objectives\n", "\n", + "- To practice documenting code for clarity and reuse\n", "- To troubleshoot Python errors/exceptions\n", "- To use conditional logic to prevent errors\n", "- To write code to test Python code" @@ -24,13 +25,15 @@ "source": [ "## Introduction\n", "\n", - "To err is human. And since writing code is a human activity, it's no less error-prone than anything else. Just as human stories tend to dramatize the protagonists' mishaps, misteps, and mistakes en route to their triumphs and successes, the stories we tell in code necessarily traffic in errors. \n", + "To err is human. And since programming is a human activity, it's no less error-prone than anything else. Just as human stories tend to dramatize the protagonists' mishaps, misteps, and mistakes en route to their triumphs and successes, the stories we tell in code necessarily traffic in errors. \n", "\n", "Of course, we want our code to work, which usually means \"to work without obvious errors or bugs.\" But the important word there is _obvious_. A lot of work goes into making code appear free from errors. \n", "\n", - "Part of that work involves writing code in such a way that it can respond to errors, and/or respond to situations that might cause errors and avert them.\n", + "An important part of that work doesn't actually involve writing code. It involves writing {term}`documentation` to communicate to others -- including our future selves -- the intentions behind a given piece of code: how it's supposed to work and why.\n", "\n", - "Another part of that work involves testing code to confirm that it works as intended in a variety of scenarios.\n", + "Another part involves writing code in such a way that it can respond to errors, and/or respond to situations that might cause errors and avert them.\n", + "\n", + "A third part involves testing code to confirm that it works as intended in a variety of scenarios.\n", "\n", "We'll look at each of these strategies below." ] @@ -58,9 +61,6 @@ "\n", "5. Optional annotations (labeled `For the curious...`) provide additional explanation and/or context for those who want them. Feel free to skip these sections if you like. As a beginner, it's important to maintain a balanced cognitive load: taking in too much information all at once can impede your progress toward understanding. This balance looks different for everyone, but we have tried to keep the main content focused on a few key concepts, tools, and techniques, while providing that additional context for those who might benefit from it.\n", "\n", - "\n", - "6. Follow the instructions at the end to complete and submit a short, autograded assignment to test your knowledge. (You may submit the assignment as many times as you like.)\n", - "\n", "````" ] }, @@ -68,18 +68,20 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## I. Debugging\n", + "## I. Writing & Reading Documentation\n", "\n", - "**Debugging** is the process of troubleshooting errors in code.\n", + "While good documentation won't technically make your code work better, it can make _you_ work better. Good documentation makes clear -- to you or anyone else who might want to use your code -- how code is intended to be used. \n", "\n", - "Apart from syntax errors, the frequency of which will decrease as you become more comfortable with Python's syntactic rules, most errors in Python arise from a mismatch between the logic of the code, and the structure of the data or environment on which the code is being run.\n", + "Conversely, not having documentation in your code is a recipe for frustration. Writing code is always a matter of choosing one path over many other possible paths, and your future self is not likely to remember why you chose a particular path in every case (nor even necessarily what you were trying to accomplish). \n", "\n", - "A common source of errors lies in inconsistencies or unexpected elements within a dataset. In the code below, we'll attempt to modify our bookstore data by separating the name in the `instructor` field into a first name and last name. (That could make it easier to look up a given course by instructor, for instance.) " + "In the exercise below, you'll practice documenting some code that has already been written. The code uses a logical pattern that we've seen before but in a novel way.\n", + "\n", + "For this exercise, we're using the bookstore dataset, so the first step is to load it from disk." ] }, { "cell_type": "code", - "execution_count": 14, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -90,6 +92,197 @@ " bkst_data = json.load(f)" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### I.1 Commenting on Code\n", + "\n", + "The code below loops through the bookstore data and counts the total number of textbooks where the type of the text is digital (as opposed to print). \n", + "\n", + "Above each line of code is a blank line beginning with the hash symbol (`#`). This is a Python {term}`comment`. The Python interpreter ignores comments when executing code, so they are present purely for the programmer's benefit." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Try it out!\n", + ":class: try-it-out\n", + "\n", + "For each comment, write (in your own words) an explanation of what the line of code below the comment is doing. Your comment text can be anything that makes sense to you. Just make sure that your text follows the hash symbol. (If you want to make a comment that spans multiple lines, just create an extra line below the first and begin that new line with the hash symbol.)\n", + "````" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#\n", + "digital_count = 0\n", + "#\n", + "for course in bkst_data:\n", + " #\n", + " for text in course['texts']:\n", + " #\n", + " if text['item_type'] == 'digital':\n", + " #\n", + " digital_count += 1\n", + "#\n", + "print('Number of digital textbooks:', digital_count)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "solution2": "hidden", + "solution2_first": true + }, + "source": [ + "Expand the cell below to see one possible way of documenting this code." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "solution2": "hidden", + "tags": [ + "hide-cell" + ] + }, + "outputs": [], + "source": [ + "# Initialize the counter \n", + "digital_count = 0\n", + "# Loop over each course in the bkst_data list\n", + "for course in bkst_data:\n", + " # Loop over each text in the course dictionary\n", + " for text in course['texts']:\n", + " # Check the value of the item_type key: is it a digital book?\n", + " if text['item_type'] == 'digital':\n", + " # If so, increment the counter\n", + " digital_count += 1\n", + "# Print the total number of digital texts\n", + "print('Number of digital textbooks:', digital_count)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### I.2 Using the Python documentation\n", + "\n", + "Lucky for us, documentation consists of much more than lines of comments on code. Both the Python {term}`standard library` and a wide array of third-party Python libraries come with extensive documentation. \n", + "\n", + "Learning how to read and navigate this documentation is a skill in itself. \n", + "\n", + "The official Python documentation -- for the core language and the standard library -- resides at [docs.python.org/3](https://docs.python.org/3/). This site will often appear in Google results when searching for documentation on specific functions, methods, etc." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Try it out!\n", + ":class: try-it-out\n", + "\n", + "\n", + "In a previous homework, we used the `str.split()` {term}`method` to separate a single string on its {term}`white space` into a list of substrings.\n", + "\n", + "The code\n", + "```\n", + "'CHEM 1001 10'.split()\n", + "```\n", + "returns the output\n", + "```\n", + "['CHEM', '1001', '10']\n", + "```\n", + "Here is the [documentation](https://docs.python.org/3/library/stdtypes.html#str.split) for `str.split()`. \n", + "\n", + "Reading that documentation, can you tell how to use the `str.split()` method to separate a string on _something other_ than white space? \n", + "\n", + "For example, our bookstore dataset indicates whether a text is for sale or rental, new or used, by the following strings:\n", + "\n", + " - `BUY_NEW`\n", + " - `BUY_USED`\n", + " - `RENTAL_NEW`\n", + " - `RENTAL_USED`\n", + "\n", + "Write some code that will split such a string on the underscore character (`_`), so that we can separate each of these strings into two data points. \n", + "\n", + "Expand the hidden cell below to see an explanation and a solution.\n", + "\n", + "````" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "solution2": "shown", + "solution2_first": true + }, + "outputs": [], + "source": [ + "# Your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "solution2": "shown" + }, + "source": [ + "````{hint}\n", + ":class: dropdown\n", + "The crucial line of the Python documentation for methods is the first, called the **method signature**. For `str.split()` the method signature looks like this:\n", + "```\n", + "str.split(sep=None, maxsplit=-1)\n", + "```\n", + "- As mentioned above, the `str` here refers to any Python value of type string (`str`). In other words, you can call the `split` method on anything between single or double quotes, or on any variable that has been assigned to a value surrounded by single or double quotes.\n", + "\n", + "- The part between {term}`parentheses` defines the method's {term}`arguments`. \n", + "\n", + "- Each argument is given a **default value**, meaning that (in this case), these arguments are optional.\n", + " - The `sep` argument defaults to `None`. \n", + " - The `maxsplit` argument defaults to `-1`.\n", + "\n", + "If the user of the method does not supply a given argument, the default value will be used. Reading the documentation below, we see that \n", + "\n", + "> If sep is not specified or is None, a different splitting algorithm is applied: runs of consecutive whitespace are regarded as a single separator, and the result will contain no empty strings at the start or end if the string has leading or trailing whitespace.\n", + "\n", + "That's a little dense, but basically, it describes the behavior we've seen when using `str.split()` (with nothing between the parentheses): the string is split on the {term}`white space`.\n", + "\n", + "To split on something else, we need to provide a value for the `sep` argument. We can do that in one of two ways:\n", + "\n", + "```\n", + "\"RENTAL_NEW\".split(sep=\"_\")\n", + "```\n", + "or \n", + "```\n", + "\"RENTAL_NEW\".split('_')\n", + "```\n", + "Either of those will yield the result we want: `[\"RENTAL\", \"NEW\"]`. Note that the underscore character is _enclosed in quotation marks_ when passing it as an argument to `str.split()`. \n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## II. Debugging\n", + "\n", + "Debugging is the process of troubleshooting errors in code.\n", + "\n", + "Apart from syntax errors, the frequency of which will decrease as you become more comfortable with Python's syntactic rules, most errors in Python arise from a mismatch between the logic of the code, and the structure of the data or environment on which the code is being run.\n", + "\n", + "A common source of errors lies in inconsistencies or unexpected elements within a dataset. In the code below, we'll attempt to modify our bookstore data by separating the name in the `instructor` field into a first name and last name. (That could make it easier to look up a given course by instructor, for instance.) " + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -106,10 +299,10 @@ "# Loop over courses in the dataset\n", "for course in bkst_data:\n", " # Split each instructor name on white space\n", - " first_name, last_name = course['instructor'].split()\n", + " first_name, last_name = course[\"instructor\"].split()\n", " # Assign each part of the name to a new key in the dictionary course\n", - " course['first_name'] = first_name\n", - " course['last_name'] = last_name" + " course[\"first_name\"] = first_name\n", + " course[\"last_name\"] = last_name" ] }, { @@ -119,7 +312,7 @@ "````{admonition} Notes\n", ":class: notes\n", "\n", - "Running this code produces an `AttributeError`. Until you gain some familiarity with Python exceptions, the name of the exception will be less useful than the message that follows it:\n", + "Running this code produces an `AttributeError`. Until you gain some familiarity with Python exceptions, the name of the {term}`exception` will be less useful than the message that follows it:\n", "\n", "```\n", "'NoneType' object has no attribute 'split'\n", @@ -128,12 +321,12 @@ "Note also the green arrow pointing to the line of code that reads\n", "\n", "```\n", - "first_name, last_name = course['instructor'].split()\n", + "first_name, last_name = course[\"instructor\"].split()\n", "```\n", "\n", "The `AttributeError` tells that something went wrong with the call to the `split()` method. The phrase `'NoneType object'` may seem opaque. But recall what we've learned about the `split()` method: that it's [defined](https://docs.python.org/3/library/stdtypes.html#str.split) to work with strings. That's the meaning of the \"str\" when we write it as `str.split()`: it tells us that Python _strings_ have access to this method. Other Python types do not.\n", "\n", - "An `AttributeError` occurs when we try to use a {term}`method` on a {term}`type` that doesn't \"have\" that method. We'll learn more about the concept of **attributes** on Day 4. For now, the important thing is to find out when and why the value of `course['instructor']` might _not_ be a string.\n", + "An `AttributeError` occurs when we try to use a method on a type that doesn't \"have\" that method. But the important thing is to find out when and why the value of `course[\"instructor\"]` might _not_ be a string.\n", "\n", "````" ] @@ -142,11 +335,11 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### I.1 Debugging with `print()`\n", + "### II.1 Debugging with `print()`\n", "\n", "One of the best ways to debug code is also one of the simplest: using the `print()` function.\n", "\n", - "If we know that an error is ocurring inside a {term}`for loop`, but we don't know what data element triggered the error, we can take advantage of the fact that the loop will be **interrupted** when the error occurs. \n", + "If we know that an error is ocurring inside a {term}`for loop`, but we don't know what data element triggered the error, we can take advantage of the fact that the loop will stop as soon as the error occurs. \n", "\n", "By using `print()` to display the element we're interested in each time through the loop, we can observe where the loop stops: if we've put our `print()` in the right place, the last value printed should be one that triggered the error." ] @@ -189,12 +382,12 @@ "```\n", "# Loop over courses in the dataset\n", "for course in bkst_data:\n", - " print(course['instructor'])\n", + " print(course[\"instructor\"])\n", " # Split each instructor name on white space\n", - " first_name, last_name = course['instructor'].split()\n", + " first_name, last_name = course[\"instructor\"].split()\n", " # Assign each part of the name to a new key in the dictionary course\n", - " course['first_name'] = first_name\n", - " course['last_name'] = last_name\n", + " course[\"first_name\"] = first_name\n", + " course[\"last_name\"] = last_name\n", "```\n", "Doing so reveals that the last value printed before the error is not a name but `None`. \n", "\n", @@ -209,11 +402,11 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### I.2 Preventing errors with `if`\n", + "### II.2 Preventing errors with `if`\n", "\n", - "There are more sophisticated ways of handling errors in Python, but one of the most straightforward is to include an `if` statement to check for the condition that causes the error.\n", + "There are more sophisticated ways of handling errors in Python, but one of the most straightforward is to include an {term}`if statement` to check for the condition that causes the error.\n", "\n", - "In this case, the error is caused when `course['instructor']` is `None`. Python provides a concise way to check whether a value is `None`. We can simply write `if value_to_test:`, where `value_to_test` is a variable or other name that may or may not be null. \n", + "In this case, the error is caused when `course[\"instructor\"]` is `None`. Python provides a concise way to check whether a value is `None`. We can simply write `if value_to_test:`, where `value_to_test` is a variable or other name that may or may not be null. \n", "\n", "In the code below, we've incorporated this check into our code. \n", "\n", @@ -229,12 +422,12 @@ "# Loop over courses in the dataset\n", "for course in bkst_data:\n", " # Check for null values\n", - " if course['instructor']:\n", + " if course[\"instructor\"]:\n", " # Split each instructor name on white space\n", - " first_name, last_name = course['instructor'].split()\n", + " first_name, last_name = course[\"instructor\"].split()\n", " # Assign each part of the name to a new key in the dictionary course\n", - " course['first_name'] = first_name\n", - " course['last_name'] = last_name" + " course[\"first_name\"] = first_name\n", + " course[\"last_name\"] = last_name" ] }, { @@ -251,7 +444,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -268,9 +461,9 @@ "The line \n", "\n", "```\n", - "first_name, last_name = course['instructor'].split()\n", + "first_name, last_name = course[\"instructor\"].split()\n", "```\n", - "expects a string for the value of `course['instructor']`that follows a familiar pattern: `'first_name last_name'`, where white space separates the first and last name.\n", + "expects a string for the value of `course[\"instructor\"]`that follows a familiar pattern: `\"first_name last_name\"`, where white space separates the first and last name.\n", "\n", "\n", "In other words, this code works only if the result of the `split()` method is a list with two elements. And `str.split()` will produce a list with two elements _only if_ the string has a _single_ instance of white space. \n", @@ -311,7 +504,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": null, "metadata": { "solution2": "hidden", "tags": [ @@ -323,13 +516,13 @@ "# Loop over courses in the dataset\n", "for course in bkst_data:\n", " # Check for null values\n", - " if course['instructor']:\n", + " if course[\"instructor\"]:\n", " # Split each instructor name on white space\n", " # Only split on the first occurence of white space\n", - " first_name, last_name = course['instructor'].split(maxsplit=1)\n", + " first_name, last_name = course[\"instructor\"].split(maxsplit=1)\n", " # Assign each part of the name to a new key in the dictionary course\n", - " course['first_name'] = first_name\n", - " course['last_name'] = last_name" + " course[\"first_name\"] = first_name\n", + " course[\"last_name\"] = last_name" ] }, { @@ -339,9 +532,9 @@ "````{admonition} Notes\n", ":class: notes\n", "\n", - "Note that the code in the provided solutione runs without errors, but it doesn't necessarily solve the problem posed by the instructors' names in our dataset.\n", + "Note that the code in the provided solution runs without errors, but it doesn't necessarily solve the problem posed by the instructors' names in our dataset.\n", "\n", - "This code will handle names where the _last name_ (surname) contains spaces. But where a middle name or middle initial is given, or where the _first name_ (the given name) contains spaces, it will assign the wrong values to the `'last_name'` key. \n", + "This code will handle names where the _last name_ (surname) contains spaces. But where a middle name or middle initial is given, or where the _first name_ (the given name) contains spaces, it will assign the wrong values to the `\"last_name\"` key. \n", "\n", "This fact illustrates an important point. \n", "\n", @@ -356,9 +549,11 @@ "source": [ "## II. Testing code\n", "\n", - "Because of that fact, it's useful to create **tests** that can confirm that our code works as intended. We obviously can't test for every eventuality. But when developing our user stories, we can identify **test cases** that represent how our code should run under optimal conditions or in optimal scenarios.\n", + "Because of that fact, it's useful to create {term}`test`s that can confirm that our code works as intended. We obviously can't test for every eventuality. But we can identify test cases that represent how our code should run under optimal conditions or in optimal scenarios.\n", + "\n", + "Identifying the test cases allows us to specify with confidence the kinds of situations for which our code _is_ expected to work, as well as to flag conditions where it doesn't work (and that we might want to address in future work).\n", "\n", - "In what follows, we'll write some tests for our name-parsing code above. Note that as of now, not all of our tests will succeed, because we haven't solved the problem of instructors with multiple first names or where first and middle names/initials are given. But identifying the test cases allows us to specify with confidence the kinds of situations for which our code _is_ expected to work, as well as to flag conditions where it doesn't work (and that we might want to address in future work)." + "In what follows, we'll write a test for our name-parsing code above. You'll see tests of this sort in the final, submitted homework for Python Camp." ] }, { @@ -367,7 +562,7 @@ "source": [ "### II.1 Writing testable code\n", "\n", - "Code tends to be easier to test when it's organized into discrete units. Writing **functions** is a great way to organize code in units that can be easily tested. (Functions also make our code more readable and easier to modify in response to new user stories, new datasets, etc.)" + "Code tends to be easier to test when it's organized into discrete units. Writing {term}`function`s is a great way to organize code in units that can be easily tested. (Functions also make our code more readable and easier to modify in response to new user stories, new datasets, etc.)" ] }, { @@ -379,9 +574,9 @@ "\n", "The following cell contains the function signature (the `def` line) and the `return` statement for a function called `extract_instructor_names`. \n", "\n", - "This function takes as argument a single dictionary, checks for the presence of a key called `instructor`, and if the latter is present, adds `first_name` and `last_name` entries to the dictionary. \n", + "This function takes as argument a single dictionary, checks for the presence of a key called `\"instructor\"`, and if the latter is present, adds `\"first_name\"` and `\"last_name\"` entries to the dictionary. \n", "\n", - "The function should do the same thing as the body of the `for` loop above, but without the loop: in other words, we want to be able to use our function to process a single course (not a list of courses).\n", + "The function should do the same thing as the body of the for loop above, but without the loop: in other words, we want to be able to use our function to process a single course (not a list of courses).\n", "\n", "See if you can fill out the body of the function below. \n", "\n", @@ -390,7 +585,7 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": null, "metadata": { "solution2": "hidden", "solution2_first": true @@ -409,7 +604,7 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": null, "metadata": { "solution2": "hidden", "tags": [ @@ -422,11 +617,11 @@ " # Given a dictionary with an 'instructor' entry, \n", " # splits the associated string into two parts\n", " # and assigns them as separate entries to the dictionary\n", - " if course_dict['instructor']:\n", - " first_name, last_name = course_dict['instructor'].split(maxsplit=1)\n", + " if course_dict[\"instructor\"]:\n", + " first_name, last_name = course_dict[\"instructor\"].split(maxsplit=1)\n", " # Assign each part of the name to a new key in the dictionary course\n", - " course_dict['first_name'] = first_name\n", - " course_dict['last_name'] = last_name\n", + " course_dict[\"first_name\"] = first_name\n", + " course_dict[\"last_name\"] = last_name\n", " \n", " return course_dict" ] @@ -439,9 +634,7 @@ "\n", "Now that we have a function that works for a single course dictionary, we can write some tests.\n", "\n", - "We'll be using the `assert` {term}`keyword`, which you might have noticed in yesterday's autograded homework exercise.\n", - "\n", - "`assert` is used almost exclusively in writing tests. Like an {term}`if statement`, an `assert` statement evaluates a given condition. But instead of being followed by a block of code to execute if the condition is `True`, `assert` does nothing if the condition is true. However, if the condition is `False`, it causes an `AssertionError`. " + "We'll be using the `assert` {term}`keyword`, which is used almost exclusively in writing tests. Like an {term}`if statement`, an `assert` statement evaluates a given condition. But instead of being followed by a block of code to execute if the condition is `True`, `assert` does nothing if the condition is true. However, if the condition is `False`, it raises an `AssertionError`. " ] }, { @@ -458,7 +651,7 @@ }, { "cell_type": "code", - "execution_count": 36, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -477,17 +670,17 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Define some test data\n", - "test_data = {'instructor': 'Dolsy Smith'}\n", + "test_data = {\"instructor\": \"Dolsy Smith\"}\n", "# Obtain a result by running the function\n", "test_result = extract_instructor_names(test_data)\n", "# Test the result against a condition\n", - "assert test_result['first_name'] == 'Dolsy', 'first_name should be \"Dolsy\"'\n", - "assert test_result['last_name'] == 'Smith', 'last_name should be \"Smith\"'" + "assert test_result[\"first_name\"] == \"Dolsy\", \"first_name should be 'Dolsy'\"\n", + "assert test_result[\"last_name\"] == \"Smith\", \"last_name should be 'Smith'\"" ] }, { @@ -496,78 +689,31 @@ "source": [ "Here's another test, to make sure our function works when the value for `instructor` is `None`.\n", "\n", - "Note that our test data is not an example of a full course as represented in the `bkst_data` dataset. Our function only deals with the value of the `instructor` key, so that's the only key our `test_data` dictionary needs to contain. (We could add other keys, like `department` and `course` and `section`, but in this case they would not add anything to the test.)" - ] - }, - { - "cell_type": "code", - "execution_count": 42, - "metadata": {}, - "outputs": [], - "source": [ - "# Define some test data\n", - "test_data = {'instructor': None}\n", - "# Obtain a result by running the function\n", - "test_result = extract_instructor_names(test_data)\n", - "# Test the result against a condition\n", - "assert 'first_name' not in test_result, 'first_name should not be present'\n", - "assert 'last_name' not in test_result, 'last_name should not be present'" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{admonition} Try it out!\n", - ":class: try-it-out\n", - "\n", - "Write a test for our function to verify it's behavior on a name with three parts.\n", - "\n", - "````" + "Note that our test data is not an example of a full course as represented in the `bkst_data` dataset. Our function only deals with the value of the `\"instructor\"` key, so that's the only key our `test_data` dictionary needs to contain. (We could add other keys, like `\"department\"` and `\"course_num\"` and `\"section\"`, but in this case they would not add anything to the test.)" ] }, { "cell_type": "code", "execution_count": null, - "metadata": { - "solution2": "hidden", - "solution2_first": true - }, - "outputs": [], - "source": [ - "# Your code here" - ] - }, - { - "cell_type": "code", - "execution_count": 44, - "metadata": { - "solution2": "hidden", - "tags": [ - "hide-cell" - ] - }, + "metadata": {}, "outputs": [], "source": [ "# Define some test data\n", - "test_data = {'instructor': 'Guido van Rossum'}\n", + "test_data = {\"instructor\": None}\n", "# Obtain a result by running the function\n", "test_result = extract_instructor_names(test_data)\n", "# Test the result against a condition\n", - "assert test_result['first_name'] == 'Guido', 'first_name should be \"Guido\"'\n", - "assert test_result['last_name'] == 'van Rossum', 'last_name should be \"van Rossum\"'" + "assert \"first_name\" not in test_result, 'first_name should not be present'\n", + "assert \"last_name\" not in test_result, 'last_name should not be present'" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "## Wrap up / Final exercise\n", - "\n", - "In this homework, you practiced debugging errors with the `print()` function, and you used `if` statements to avert possible errors due to inconsistencies in the data. Finally, you worked with the `assert` keyword to construct tests for code (to ensure that your code is working as expected).\n", - "\n", + "## Wrap up\n", "\n", - "The final part of the homework or today is an [autograded exercise](./HW_3_GR.ipynb), designed to test your grasp of the concepts covered on Days 1, 2, and 3. " + "In this homework, you practiced debugging errors with the `print()` function, and you used if statements to avert possible errors due to inconsistencies in the data. Finally, you worked with the `assert` keyword to construct tests for code (to ensure that your code is working as expected)." ] } ], diff --git a/textbook/notebooks/homework/HW_4_GR.ipynb b/textbook/notebooks/homework/HW_4_GR.ipynb deleted file mode 100644 index 886acc7..0000000 --- a/textbook/notebooks/homework/HW_4_GR.ipynb +++ /dev/null @@ -1,214 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Graded Homework: Day 4" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Instructions\n", - "\n", - "Below you will find one or more exercises. For each exercise, do the following:\n", - "\n", - "1. Run the first code cell under the exercise heading. This will execute some code needed to set up the problem.\n", - "2. Reading the instructions and write code in the code cell labeled with the comment `Your code here`. Run this code.\n", - "3. Assuming your code does not produce any errors, run the code in the cell below the `Tests` heading. Each line of this code consists of a Python {term}`assert statement`. \n", - " - If you see an `AssertionError`, don't panic! The error is written so as to help you pinpoint the part of your code that's not working as expected. After making a change in your code, re-run **both** the cell with your code and the cell with the tests. Repeat until you see no errors.\n", - " - If you run the cell with the test code and you see no output, congratulations! That means that your code has passed all the tests and works as expected. Go to step 4 to submit.\n", - "4. Submit your code by downloading this notebook from JupyterHub and uploading it to the GitHub repository for this assignment. See [the documentation](https://gwu-libraries.github.io/python-camp/homework.html) for detailed instructions." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Exercise 1\n", - "\n", - "The following cell contains metadata for a course and its textbooks, as well as the definition of a `Text` class." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "tags": [ - "setup:ex1" - ] - }, - "outputs": [], - "source": [ - "my_course = {'department': 'AMST',\n", - " 'course': '6190',\n", - " 'section': '10',\n", - " 'instructor': 'Elisabeth Anker',\n", - " 'term_name': 'Summer 2023',\n", - " 'texts':[\n", - " {\n", - " \"isbn\": \"9781250753892\",\n", - " \"item_type\": \"print\",\n", - " \"price_display\": \"$29.99\",\n", - " \"type_condition\": \"BUY_NEW\"\n", - " },\n", - " {\n", - " \"isbn\": \"9780872867239\",\n", - " \"item_type\": \"print\",\n", - " \"price_display\": \"$16.95\",\n", - " \"type_condition\": \"BUY_NEW\"\n", - " \n", - " },\n", - " {\n", - " \"isbn\": \"9780385490818\",\n", - " \"item_type\": \"digital\",\n", - " \"price_display\": \"$17.00\",\n", - " \"type_condition\": \"BUY_NEW\"\n", - " }]}\n", - "\n", - "class Text:\n", - "\n", - " def __init__(self, isbn, item_type, price, type_condition):\n", - " '''\n", - " All arguments should be of type str.\n", - " '''\n", - " self.isbn = isbn\n", - " self.item_type = item_type\n", - " self.price = price\n", - " self.type_condition = type_condition\n", - " \n", - " def convert_price(self):\n", - " '''\n", - " Convert the str representation of a price (with dollar sign) to a float\n", - " '''\n", - " return float(self.price[1:])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Below is a version of our class definition for a `Course`.\n", - "\n", - "Add behavior to `Course` so that it will calculate **and return** the average price of the texts associated with a course. Fill out the definition for the `get_average_price()` method, which takes one argument, `item_type`, a string. \n", - "\n", - "If provided, the `item_type` argument should either be `print` or `digital`, and the average will be computed for just texts of that type. Otherwise, if the argument is missing (is `None`), then the average for all texts will be computed. \n", - "\n", - "Note that the `pass` keyword is a placeholder for an empty method body. Delete this line when adding your own code.\n", - "\n", - "The builtin Python function `sum()` can be helpful for this exercise. Review the [Python documentation](https://docs.python.org/3/library/functions.html?highlight=sum#sum) for help." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "tags": [ - "solution:ex1" - ] - }, - "outputs": [], - "source": [ - "# Your code here\n", - "class Course:\n", - " \n", - " def __init__(self, dept, course_number, section, instructor, term):\n", - " '''\n", - " Creates an instance of a course.\n", - " dept, course_number, section, instructor, term: should be of type str\n", - " '''\n", - " self.dept = dept\n", - " self.course_number = course_number\n", - " self.section = section\n", - " self.instructor = instructor\n", - " self.term = term\n", - " self.texts = [] \n", - " \n", - " def get_average_price(self, item_type=None):\n", - " '''\n", - " Returns the average price of the texts associated with the course. \n", - " item_type should be either None (default), or a string equal to 'digital' or 'print'\n", - " '''\n", - " pass # Your code here" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "solution2": "hidden", - "solution2_first": true - }, - "source": [ - "Expand the cell below for some hints." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "solution2": "hidden" - }, - "source": [ - "````{hint}\n", - ":class: dropdown\n", - "\n", - "There are two different values that the `item_type` dictionary {term}`key` can have in the `my_course` dataset defined above. The `Course.get_average_price()` method should filter the `Course.texts` list to identify just those texts where the attribute `Text.item_type` is equal to the `item_type` argument provided to the `Course.get_average_price()` method. If no `item_type` has been provided, the variable in the method will have the `None` {term}`null value`, in which case the method should just compute the average price of all the texts.\n", - "\n", - "Here's a line-by-line description of one possible implementation of the `Course.get_average_price()` method in English. Your task is to translate it into Python.\n", - "\n", - "1. Define an empty {term}`list` to hold the prices.\n", - "2. Write a {term}`for loop` to loop over the items in the `self.texts` attribute. (Note that we use `self` here, not `Course`, because each {term}`instance` of the `Course` class will have its own list of texts.) Within the loop,\n", - " a. Check whether the `item_type` argument has been provided (is not `None`), using an `if statement`.\n", - " b. If it has been provided, you need to check whether the value of the `item_type` argument matches the `item_type` attribute of the current text (using the {term}`loop variable`).\n", - " c. If it matches, then add the price to the list of prices. To get the price in a format suitable for calculation, you can use the `convert_price()` method defined on the `Text` class. So if `text` is your loop variable, you could call `text.convert_price()` to get the price as a {term}`float`.\n", - " d. If, on the other hand, the `item_type` argument is `None`, add the price (converted) to the list, regardless of its type.\n", - "3. Use the `sum` function to find the total value of the price values in your list, and divide it by the length of the list. (Remember that the `len` function will provide the length of a list.)\n", - "4. Return the result obtained in step 3.\n", - "````" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "tags": [ - "test-case:ex1" - ] - }, - "outputs": [], - "source": [ - "course = Course('AMST', '6190', '10', 'Elisabeth Anker', 'Summer 2023')\n", - "for text_dict in my_course['texts']:\n", - " text = Text(text_dict['isbn'], text_dict['item_type'], text_dict['price_display'],\n", - " text_dict['type_condition'])\n", - " course.texts.append(text)\n", - "assert course.get_average_price() == 21.313333333333333, 'Average price, all items, should equal 21.32'\n", - "assert course.get_average_price('digital') == 17.0, 'Average price, digital items, should equal 17'\n", - "assert course.get_average_price('print') == 23.47, 'Average price, print items, should equal 23.47'" - ] - } - ], - "metadata": { - "celltoolbar": "Tags", - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.4" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/textbook/notebooks/homework/HW_Final_GR.ipynb b/textbook/notebooks/homework/HW_Final_GR.ipynb new file mode 100644 index 0000000..9171dc9 --- /dev/null +++ b/textbook/notebooks/homework/HW_Final_GR.ipynb @@ -0,0 +1,473 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "# Python Camp: Final Homework\n", + "\n", + "This notebook should be completed *after* the exercises in the [Programming Techniques](./HW_2_programming_techniques.ipynb) notebook." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} How to Approach This Homework\n", + "\n", + "Unlike the previous homework notebooks you completed, this notebook does not introduce new concepts or syntax. Instead, it offers you an opportunity to put into practice what you've learned throughout Python Camp. The exercises build toward a more complex solution, but we have tried to make each step explicit, so as to give you occasion to reflect on many of the concepts you have learned and how they fit together. \n", + "\n", + "It's quite possible that you can find hints to the solutions of these exercises in previous Python Camp homeworks, in code you wrote during in-class activities, and/or by Googling or using ChatGPT. You're welcome to use any and all sources of information to complete these exercises. You're also encouraged to ask your Python-Camp colleagues and facilitators for help! \n", + "\n", + "At the same time, you might get the most out of these final exercises if you try to solve each one from memory before turning to other sources. Fluency in Python is like fluency in any other language: it comes with practice, and every mistake is itself instructive!\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "## Instructions\n", + "\n", + "Below you will find a series of exercises. For each exercise, do the following:\n", + "\n", + "1. **Run the first code cell under the exercise heading**. This will execute some code needed to set up the problem.\n", + "2. Reading the instructions and write code in the empty code cell (labeled with the comment `Your code here`). Run this code.\n", + "3. Your code cell should include the comment line `#Your code below`. **Please do not delete this comment**, and if you accidentally delete the cell and have to recreate it, please insert that comment line at the top of the cell before entering your code.\n", + "4. Assuming your code does not produce any errors, run the code in the cell below the `Tests` heading. Each line of this code consists of a Python {term}`assert statement`. \n", + " - If you see an `AssertionError`, don't panic! The error is written so as to help you pinpoint the part of your code that's not working as expected. After making a change in your code, re-run **both** the cell with your code and the cell with the tests. Repeat until you see no errors.\n", + " - If you run the cell with the test code and you see no output, congratulations! That means that your code has passed all the tests and works as expected. Go to step 5 to submit.\n", + "5. Submit your code by downloading this notebook from JupyterHub and uploading it to the GitHub repository for this assignment. See [the documentation](https://gwu-libraries.github.io/python-camp/homework.html) for detailed instructions." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} How to Get Help\n", + "\n", + "If you get stuck on any of these exercises, don't hesitate to ask for help! Asking for help is not only part of the learning process; it's part of nearly every programmer's professional practice. \n", + "\n", + "- Post a question on the Python Camp Slack channel. Make sure you spell out both what you're expecting your code to do, and what your code is actually doing. That way others can identify the problem right away. Including code snippets and/or screenshots from the notebook is usually a good idea.\n", + "- Email the facilitators (PYTHON_CAMP@groups.gwu.edu). We're happy to schedule a time to meet, either in person or via Zoom, and walk through your questions together.\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "## Exercise 1\n", + "\n", + "The following code creates a variable, `my_course`, from a string describing a GW course, with a course code, number, and section. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": false, + "slideshow": { + "slide_type": "" + }, + "tags": [ + "setup:1" + ] + }, + "outputs": [], + "source": [ + "my_course = 'WSTU 6566 10'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, write some Python code that creates three new variables, `my_dept_code`, `my_course_num`, and `my_section`. Assign to each of those variables the portions of the string corresponding, respectively, to the department code (`WSTU`), the course number (`6566`), and the section (`10`). All three elements should be strings.\n", + "\n", + "Note that it's possible to accomplish this with a literal assignment, e.g., `my_dept_code = 'WSTU'`, but doing so won't help you solve the later problems that build on this one. Can you use one of Python's string {term}`method`s to accomplish this?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#Your code below\n", + "# ---- Do not delete this cell! ---- " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Tests for Exercise 1\n", + "\n", + "The cell below defines one or more tests that will be run to check your code. \n", + "\n", + "Once you have completed your answer, run the cell. If you see no output, then contratulations, your code has passed the tests!\n", + "\n", + "If, on the other hand, you see an `AssertionError`, it means that one of the tests has failed. Look at the error message for a hint as to where the problem lies. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": false, + "slideshow": { + "slide_type": "" + }, + "tags": [ + "test-case:1" + ] + }, + "outputs": [], + "source": [ + "assert my_dept_code == 'WSTU', f'Variable my_dept_code has the wrong value. Should be \"WSTU\" but is \"{my_dept_code}\".'\n", + "assert my_course_num == '6566', f'Variable my_course_num has the wrong value. Should be \"6566\" but is \"{my_course_num}\".'\n", + "assert my_section == '10', f'Variable my_section has the wrong value. Should be \"10\", but is \"{my_section}\".'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Exercise 2" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The following code reassigns the variable `my_course` to a new string with the same elements as above, except that here the name of the instructor follows the section number (separated by a space)." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": false, + "slideshow": { + "slide_type": "" + }, + "tags": [ + "setup:2" + ] + }, + "outputs": [], + "source": [ + "my_course = 'BSCI 1333 15 Thomson'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, write some Python code that will create a {term}`dictionary` called `my_course_dict`. \n", + "\n", + "It should have the following keys: \n", + "- `dept_code`\n", + "- `course_num`\n", + "- `section`\n", + "- `instructor`\n", + "\n", + "The keys should be assigned the appropriate values from the string `my_course` (as assigned in the cell above)." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#Your code below\n", + "# ---- Do not delete this cell! -----" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Tests for Exercise 2" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": false, + "slideshow": { + "slide_type": "" + }, + "tags": [ + "test-case:2" + ] + }, + "outputs": [], + "source": [ + "keys = ['dept_code', 'course_num', 'section', 'instructor']\n", + "values = ['BSCI', '1333', '15', 'Thomson']\n", + "assert 'my_course_dict' in locals() and isinstance(my_course_dict, dict), 'Variable my_course_dict has not been defined as a dictionary.'\n", + "for k in keys:\n", + " assert k in my_course_dict, f'Key \"{k}\" was not found in my_course_dict'\n", + "for k,v in zip(keys, values):\n", + " assert my_course_dict[k] == v, f'Value for my_course_dict[\"{k}\"] should be \"{v}\", not \"{my_course_dict[k]}\".'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Exercise 3" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The following code defines a list of strings that represent courses. Each string consists of a department code, a course number, a section number, and an instructor's name." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": false, + "slideshow": { + "slide_type": "" + }, + "tags": [ + "setup:3" + ] + }, + "outputs": [], + "source": [ + "courses = ['CHEM 1001 10 Mack',\n", + " 'CHEM 1002, 10 Srinivasan',\n", + " 'CHEM 1002 11 Mack',\n", + " 'BISC 1100 10 Liu',\n", + " 'BISC 1102 10 Thomson',\n", + " 'PSC 2001 10 Wolters',\n", + " 'PSC 2001 11 Rath',\n", + " 'PSC 2001 12 Cho',\n", + " 'WSTU 6999 10 Cho',\n", + " 'WSTU 6999 11 Delaney']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, write some code that will transform the data in the `courses` list into a list of dictionaries. Each dictionary should be structured as follows:\n", + "```\n", + "{'dept_code': 'CHEM',\n", + " 'course_num': '1001',\n", + " 'section': '10',\n", + " 'instructor': 'Mack'} \n", + "```\n", + "In other words, each dictionary should have the same four keys, and there should be one dictionary for each of the courses in the `courses` list.\n", + "\n", + "Call this new list `courses_db` (for \"courses database\"). " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{hint}\n", + ":class: dropdown \n", + "\n", + "Make sure you create each course dictionary **inside** the `for` loop, like so:\n", + "```\n", + "for course in courses:\n", + " course_dict = {}\n", + " ...\n", + "```\n", + "\n", + "If you get stuck, try solving this [Parsons Problem](https://gwu-libraries.github.io/python-camp/parsons-problems/html/homework-2-GR.html), which will help you focus on the logic without worrying too much about the syntax.\n", + "\n", + "````" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#Your code below\n", + "# ---- Do not delete this cell! -----" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Tests for Exercise 3" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": false, + "slideshow": { + "slide_type": "" + }, + "tags": [ + "test-case:3" + ] + }, + "outputs": [], + "source": [ + "keys = {'dept_code', 'course_num', 'section', 'instructor'}\n", + "values = {'CHEM', '1001', '10', 'Mack'}\n", + "assert 'courses_db' in globals(), 'Variable courses_db is not defined'\n", + "assert isinstance(courses_db, list), 'Variable courses_db is not a list.'\n", + "assert isinstance(courses_db[0], dict), 'List courses_db does not contain a dictionary as its first element.'\n", + "assert len(courses_db) == len(courses), 'List courses_db is the wrong length.'\n", + "assert set(courses_db[0].keys()) == keys, 'The first dictionary in courses_db does not have the right keys.'\n", + "assert set(courses_db[0].values()) == values, 'The first dictionary in courses_db does not have the right values.'\n", + "assert set(courses_db[-1].values()) == {'WSTU', '6999', '11', 'Delaney'}, 'The last element of courses_db does not have the right values.'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Exercise 4" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Using the `courses_db` variable defined in Exercise 3, write a function, `count_courses`, to count how many courses a given instructor is teaching. The function should accept an argument corresponding to an instructor's name, and it should return the number of courses in `courses_db` associated with that name. If the instructor is not in the database, your function should return `0`. \n", + "\n", + "For instance, if `my_instructor` is `\"Liu\"`, your function would return `1`. If `my_instructor` is `\"Cho\"`, your function would return `2`.\n", + "\n", + "A skeleton for the function is defined in the cell below. Fill it in with your code." + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#Your code below\n", + "# ---- Do not delete this cell! -----\n", + "def count_courses(instructor_name, courses_db):\n", + " \n", + " return course_count" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Tests for Exercise 4" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": false, + "slideshow": { + "slide_type": "" + }, + "tags": [ + "test-case:4" + ] + }, + "outputs": [], + "source": [ + "assert count_courses('Rath', courses_db) == 1, f'Rath is teaching one course, but count_courses returns {count_courses(\"Rath\", courses_db)}.'\n", + "assert count_courses('Mack', courses_db) == 2, f'Mack is teaching two courses, but count_courses returns {count_courses(\"Mack\", courses_db)}.'\n", + "assert count_courses('Smith', courses_db) == 0, f'Smith is not teaching any courses, but count_courses returns {count_courses(\"Smith\", courses_db)}.'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Submitting your homework\n", + "\n", + "If you've run all 4 code cells under the `Tests` headings, and if you see no error, congratulations! That means you've successfully completed this homework and are ready to submit it.\n", + "\n", + "You will submit your homework via GitHub, which will simply run the same tests that you have run above, record any errors, and alert the Python Camp facilitators that you have made a submission.\n", + "\n", + "Submitting this homework notebook (with no errors in the code) and attendance for all four days of Python Camp satisfy the requirements to receive the certificate of completion." + ] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.4" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/textbook/notebooks/lessons/1_1_choreographing_code.ipynb b/textbook/notebooks/lessons/1_1_modeling_code.ipynb similarity index 83% rename from textbook/notebooks/lessons/1_1_choreographing_code.ipynb rename to textbook/notebooks/lessons/1_1_modeling_code.ipynb index 9038f18..0d256c4 100644 --- a/textbook/notebooks/lessons/1_1_choreographing_code.ipynb +++ b/textbook/notebooks/lessons/1_1_modeling_code.ipynb @@ -6,7 +6,7 @@ "id": "XvIHpi-hG-uT" }, "source": [ - "# Choreographing Code" + "# Modeling Code" ] }, { @@ -15,8 +15,8 @@ "source": [ "## Objectives\n", "\n", - "- To interact with bits of Python code as *actions* (which transform *inputs* to *outputs*). \n", - "- To develop a conceptual model of basic elements of programming (variables, data structures, loops), with an emphasis on action over syntax.\n", + "- To interact with bits of Python code as *commands* that transform *inputs* to *outputs*. \n", + "- To develop a conceptual model of basic elements of programming (variables, data structures, loops).\n", "- To collaborate in understanding code.\n" ] }, @@ -35,15 +35,12 @@ "\n", "### Set up\n", " \n", - "- Acknowledge that this exercise will introduce Python syntax and programming concepts in an experiential way, before defining them, and that the purpose is to develop our attention to Python commands as **actions** that produce certain kinds of **effects.** The goal is to reason about the action on the basis of the effect. \n", + "- Acknowledge that this exercise will introduce Python syntax and programming concepts in an experiential way, before defining them. \n", " - Try not to focus too much on the syntax itself -- you will learn it in time.\n", "- Instructors should model the first Action:\n", " - Show how to execute a cell of code in the notebook.\n", " - Explain that a given cell can be re-executed any number of times.\n", - " - Model the action by writing the message on a piece of paper and displaying it.\n", - " - Note that `print()` instructs Python to take an action on what is provided between quotation marks and parentheses.\n", - " - The effect is to display something on the screen. \n", - " - Change the part between quotation marks to demonstrate that this changes what is displayed.\n", + " - Model the action by drawing the variable `num` as a box for a value and a label. Write `3` in the box, then erase it and write `4` to model incrementing a variable.\n", "- Pause to take any questions about the activity.\n", "- Divide the remaining actions among the teams. Each team will work with three different activities of increasing complexity. A suggested distribution is as follows:\n", " - A Teams: actions 2a, 3a, 4a \n", @@ -64,34 +61,56 @@ "" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} What is a model?\n", + ":class: notes\n", + "\n", + "A model is a way of representing something. In writing code, we are often engaged in the act of modeling, in the sense that we are creating representations of aspects of the world for use by a computer. In our next activity, you'll work through an example of modeling information about GW courses and textbooks.\n", + "\n", + "In this activity, the goal is to model -- by drawing on paper -- what you think is happening inside the computer when you run a given bit of Python code. We obviously haven't explained what the code _means_, but don't worry -- we will cover that later. For now, we just want to get used to running Python code, and to practice paying attention to the effects that the code produces on the computer. \n", + "\n", + "A line of Python is an instruction or command issued to the computer, directing it to take some action. In what follows, see if you can model the actions by drawing on paper what you think might be happening when you run the code.\n", + "````" + ] + }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Instructions\n", "\n", - "This notebook contains a few cells of Python code. These are labeled **Actions** and numbered 1 through 5. Each team will be assigned three actions.\n", + "This notebook contains a few cells of Python code. These are labeled **Action** and numbered 1 through 5. Each team will be assigned three actions.\n", "\n", "Your task, as a team, is as follows:\n", "\n", "1. Run the cell of code corresponding to the action. \n", "2. Examine the output.\n", - "3. Model the action that the code performs, using pen, paper, and sticky notes.\n", + "3. Model the action that the code performs, using pen, paper, and (if you like) sticky notes.\n", + "4. Below each cell is a hidden cell containing some hints. Click the green `Hint` panel to reveal them.\n", + "5. Some actions are also followed by a cell linking to an animation that presents one possible way of modeling the action. But try to come up with your own model **before** watching the animation.\n", "\n", - "**The objective is to represent, as best you can, your intuition about what might be happening in the computer when Python runs each of these bits of code.**\n", + "Once all teams have worked through their actions, we'll share our models for discussion in the larger group." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Running code in the notebook\n", + ":class: notes\n", "\n", "To run each cell, place your cursor in the cell and press `Control` + `Enter` (or `Command` + `Return` on a Mac). The output of running the code will appear below the cell.\n", - "\n", - "Below each cell is a hidden cell containing some hints. Click the `Show Solution` button to reveal the hints.\n", - "\n", - "Once all teams have worked through their actions, we'll share our models for discussion in the larger group." + "````" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "## Action 1: Printing a value" + "## Action 1: Assigning and modifying a variable" ] }, { @@ -100,7 +119,9 @@ "metadata": {}, "outputs": [], "source": [ - "print(\"Welcome to Python Camp!\")" + "num = 3\n", + "num = num + 1\n", + "print(num)" ] }, { @@ -234,7 +255,7 @@ "````{hint}\n", ":class: dropdown\n", "- Variables in programming are similar to variables in algebra. \n", - "- But whereas algebraic variables represent unknown values in equations to be solved, in programming, we use variables for many different reasons. \n", + "- Whereas algebraic variables represent unknown values in equations to be solved, in programming, we use variables for many different reasons. \n", "- One important use for variables is simply to make our code more readable: e.g., to assign names to quantities.\n", "- What happens if you put the numbers in the code above inside quotation marks? \n", "````" diff --git a/textbook/notebooks/lessons/1_2_from_data_to_code.ipynb b/textbook/notebooks/lessons/1_2_from_data_to_code.ipynb index dd4b71a..990bcc2 100644 --- a/textbook/notebooks/lessons/1_2_from_data_to_code.ipynb +++ b/textbook/notebooks/lessons/1_2_from_data_to_code.ipynb @@ -34,24 +34,24 @@ "\n", "### Setup and goals\n", "\n", - "1. Explain that we will encounter a lot of unfamiliar syntax in this lesson, but that as in the previous lesson, the goal is to see code in action **before** we spend time learning why the code is written as it is (syntax). \n", - " - Define **syntax** as the way code is written in a particular language.\n", - " - Emphasize that the syntax will be covered in depth in the homework, and that there will be ample time to clarify and solidify understanding over the course of Python Camp.\n", - "\n", - "2. Introduce the idea that we will be working with a single dataset throughout the four days of Python Camp.\n", + "1. Introduce the idea that we will be working with a single dataset throughout the four days of Python Camp.\n", " - Explain the dataset and its relevance.\n", " - Note that in this exercise, teams will be getting acquainted with the dataset by using some Python commands.\n", " - The data is _represented_ by Python **types**. To start to understand how types work, teams should attend both to the _content_ of the data and how it is _represented_ (the syntax).\n", " - Teams should designate a notetaker to jot down questions and observations that arise in team discussion. \n", " - Remind teams to rotate the notetaker's role.\n", "\n", + "2. Explain that we will encounter a lot of unfamiliar syntax in this lesson, but that as in the previous lesson, the goal is to see code in action **before** we spend time learning why the code is written as it is (syntax). \n", + " - Define **syntax** as the way code is written in a particular language.\n", + " - Emphasize that the syntax will be covered in depth in the homework, and that there will be ample time to clarify and solidify understanding over the course of Python Camp.\n", + "\n", + "\n", + "\n", "------------------\n", "### The dataset\n", " \n", "Introduce the dataset and JSON format, and ensure everyone can open the JSON file in a notebook.\n", " \n", - "Note that the path given is relative to the notebook in the `/textbook/_build/html/_sources/notebooks/lessons` folder.\n", - "\n", "------------------\n", "\n", "### Navigating lists \n", @@ -128,39 +128,99 @@ "\n", "The following notebook has cells containing Python code for interacting with an external data file. \n", "\n", - "1. Before you begin, each team should designate a note taker to record answers to the questions for discussion (see below).\n", - "2. Read the section below, `Introducing the dataset`, and as a team, record any questions you have about it.\n", - "3. Run each cell of code in this notebook (by pressing `Control` + `Enter` on a PC, `Command` + `Return` on a Mac). The output of running the code will appear below the cell.\n", - "4. Each cell is accompanied by annotations, and in some cases, questions for discussion. Discuss your responses to these questions with your team. The note taker should brielfy document the conversation (including any further questions or points of confusion that arise).\n", - "5. Blank cells labeled `Try it out!` invite you to write your own code based on the provided examples. Run your code and discuss the output with your team.\n", - "6. Once everyone has worked through the notebook, we'll review the questions and your responses in the larger group.\n" + "1. Before you begin, each team should assign the following [roles](https://gwu-libraries.github.io/python-camp/guidelines.html#team-roles):\n", + " - **Notetaker** (records the outcome of team discussions)\n", + " - **Reporter** (speaks for the team when sharing out)\n", + " - **Advocate** (makes sure everyone has a chance to contribute)\n", + "2. Read the section below, [Getting to Know Your Data](i-getting-to-know-your-data), and as a team, do the exercises marked `Try it out!` and `For discussion`.\n", + "3. Teams will report out to the larger group.\n", + "4. You'll work through the code in the notebook as a team.\n", + " - Run each cell of code in this notebook (by pressing `Control` + `Enter` on a PC, `Command` + `Return` on a Mac). The output of running the code will appear below the cell.\n", + " - Each cell is accompanied by annotations, and in some cases, questions for discussion. Discuss your responses to these questions with your team. The note taker should brielfy document the conversation (including any further questions or points of confusion that arise).\n", + " - Blank cells labeled `Try it out!` invite you to write your own code based on the provided examples. Run your code and discuss the output with your team.\n", + "5. Once everyone has worked through the notebook, we'll review the questions and your responses in the larger group.\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## I. Getting to Know Your Data\n", + "\n", + "### I.1 Data have structure" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} About the Data\n", + ":class: notes\n", + "\n", + "Over the next few days, we'll be working together on a dataset containing information about textbooks assigned by courses at GW for the Fall 2023 semester. \n", + "\n", + "Textbooks are linked from GW's [Schedule of Classes](https://my.gwu.edu/mod/pws/subjects.cfm?campId=1&termId=202303). (Note that we're using data for courses taught on the Foggy Bottom campus only.)\n", + "\n", + "The `Find Books` link under each course entry (see image below) leads to a page on the website of the GW Campus Store which contains a listing of textbooks for the course, along with the price of each book (through the GW Campus Store).\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{image} https://gwu-libraries.github.io/python-camp/img/schedule-of-classes.png\n", + ":alt: Screenshot of a row from the GW Schedule of Classes table, showing information for the course Consuming Asian America. The link with text \"Find Books\" is highlighted by a red box.\n", + ":width: 500px\n", + ":align: center\n", + "````" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "## The dataset\n", + "````{admonition} Try it out!\n", + ":class: try-it-out\n", "\n", - "Over the next few days, we'll be working together on a dataset containing information about textbooks assigned by courses at GW for the Summer 2023 semester. \n", + "1. Take a moment to look at the [Schedule of Classes](https://my.gwu.edu/mod/pws/subjects.cfm?campId=1&termId=202303) and the linked textbook data.\n", "\n", - "This dataset might lend itself to uses like the following:\n", - " - Identifying courses with particularly high-cost textbooks\n", - " - Calculating the average cost of textbooks by instructor, department, etc.\n", - " - Identifying the publishers that supply the majority of textbooks used at GW\n", - " - Identifying instructors who assign textbooks they themselves have authored\n", + "2. As a team, discuss possible uses for data about courses and textbooks. Who are the potential users, and what purposes might they have for these data? Make notes on your answers. (We call these scenarios _user stories_.)\n", "\n", - "As you work through this exercise, make a note of any additional uses you can imagine for this data. These notes will come in handy later!\n", + "3. After generating a few user stories, discuss how you might organize such a dataset. Try not to focus too much on how the data is presented on the GW or GW Campus Store websites. Rather, given your user stories, and using what you know about courses and textbooks at GW, consider the following questions:\n", + " - What data elements would be useful to capture?\n", + " - How do those data elements relate to each other? (For example, a course might have multiple sections, and each section might have a separate instructor.)\n", + " - How would you structure (organize) a dataset so as to capture those relationships?\n", "\n", - "### Source\n", + "4. Make a drawing that models the data structure your team discussed in answer to the previous questions.\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} For the curious\n", + ":class: dropdown\n", "\n", "This dataset was obtained by scraping the [GW Bookstore](https://www.bkstr.com/georgewashingtonstore/shop/textbooks-and-course-materials) website. Because [web scraping](https://learning.oreilly.com/library/view/web-scraping-with/9781098145347/) is a rather advanced topic, we won't be covering that process in Python Camp.\n", "\n", - "The dataset was also pre-processed to simplify it somewhat (removing extraneous and redundant elements, etc.).\n", + "The dataset was also pre-processed to simplify it somewhat (removing extraneous and redundant elements, etc.)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### I.2 Data have a format\n", + "\n", + "When we talk about _data structure_, we mean _how the elements of a dataset relate to each other_. The structure describes something about that part of the world to which the data refer.\n", "\n", - "### Format\n", + "The _data format_, on the other hand, is how the dataset is represented by the computer. The same format can be used to represent many different kinds of data structures, just as data with a given structure can be represented in many different formats. (As an analogy, think about music: a Baroque fugue and a blues song have very different musical structures, but both can be recorded as an MP3, which in this case is the data format.)\n", "\n", - "The dataset is in {term}`JSON` format. JSON (usually pronounced *jay-sawn*) is a common format for sharing data on the web. It's not as concise or human-readable as some formats (e.g., CSV, which is often used for sharing tabular data). But it has a few advantages that make it popular with programmers:\n", + "The dataset we're using is in {term}`JSON` format. JSON (usually pronounced *jay-sawn*) is a common format for sharing data on the web. It's not as concise or human-readable as some formats (e.g., CSV, which is often used for sharing tabular data). But it has a few advantages that make it popular with programmers:\n", " - JSON data can be deeply nested, reflecting hierarchical relationships between data elements.\n", " - The JSON format comprises structures that map well onto the most common data structures used by modern programming languages. \n", " - The JSON syntax has a lot in common with languages like Python.\n", @@ -172,22 +232,50 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### Loading the data\n", + "````{admonition} For discussion\n", + ":class: try-it-out\n", + "\n", + "Open the [GW bookstore dataset](https://go.gwu.edu/pythoncampdata) in your browser. As a team, discuss the following questions:\n", + "\n", + "1. What do you notice about the structure of this dataset? How are the various elements related to one another?\n", + "2. How does it compare to the model you drew in the previous exercise?\n", + "3. What data elements seem to be always present throughout the dataset?\n", + "4. Are there elements that appear only sometimes? If so, make a list of those.\n", + "5. Which elements might be useful for the user stories you developed in the first exercise?\n", + "6. Do you see any elements that suggest user stories you hadn't thought of?\n", + "\n", + "**Now draw the structure of this dataset, based on what you've observed.**\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## II. Working with Data in Code" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### II.1 Loading the dataset\n", "\n", "The code below will fetch data from a URL and save it locally as a file before loading the data in your notebook.\n", "\n", - "1. We {term}`import` a Python function called `urlretrieve` and a Python module called `json`. A module is just some external Python code that provides a particular functionality.\n", + "1. We {term}`import` a Python function called `urlretrieve` and a Python {term}`module` called `json`. \n", " - The `urlretrieve` function allows us to fetch data from a remote source and save a local copy.\n", " - The `json` module allows us to convert data in JSON format to Python types. (More on types below).\n", - "3. We use the `open` function to open a file in a directory called `data`. The file is called `bookstore-data-summer-2023.json`, where the `.json` extension indicates that this is a JSON-formatted file. (The file extension is part of the filename, like `docx` for Word documents or `.xlsx` for Excel spreadsheets.) \n", + "3. We use the `open` {term}`function` to open the file for reading. The file is called `bookstore-data.json`, where the `.json` extension indicates that this is a JSON-formatted file. (The file extension is part of the filename, like `.docx` for Word documents or `.xlsx` for Excel spreadsheets.) \n", "4. The file is assigned to the temporary variable `f`.\n", "5. We use the `json.load` {term}`method` to read the file (`f`). This method is specifically designed for JSON files; it won't work if the file does not contain data in valid JSON format. \n", - "6. The contents of the file, as processed by `json.load`, are assigned to a new variable, `bkst_data`." + "6. The contents of the file, as processed by `json.load`, are assigned to a new {term}`variable`, `bkst_data`." ] }, { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -202,7 +290,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Navigating lists" + "### II.2 Navigating lists" ] }, { @@ -214,20 +302,9 @@ }, { "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "list" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], + "execution_count": null, + "metadata": {}, + "outputs": [], "source": [ "type(bkst_data)" ] @@ -239,7 +316,7 @@ "````{admonition} Question\n", ":class: question\n", "\n", - "You have encountered a Python {term}`list` before. What was the name of the variable that held a list in the \"Choreographing Code\" exercise?\n", + "You have encountered a Python {term}`list` before. What was the name of the variable that held a list in the [Modeling Code](https://gwu-libraries.github.io/python-camp/notebooks/lessons/1_1_modeling_code.html) exercise?\n", "````" ] }, @@ -251,32 +328,16 @@ ":class: notes\n", "\n", "- Going forward, when referring to functions and their output, we will say that the function **returns** something.\n", - "- Every Python value has a defined {term}`type`.\n", + "- Every Python value has a defined type. Types you've encountered up to this point, and which you'll learn more about in tonight's homework, include {term}`integer`s, {term}`float`s, {term}`string`s, and {term}`list`s.\n", "- When we use the word {term}`variable`, we're generally referring to the combination of a name and a value. The name points to the value, which is located somewhere in memory. When we say, \"the variable `bkst_data` is a list,\" we mean that the value to which the name `bkst_data` points is represented in Python as a list. \n", "````" ] }, { "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'department': 'ACA',\n", - " 'course': '6203',\n", - " 'section': '10',\n", - " 'instructor': 'Alexander Wild',\n", - " 'term_name': 'Summer 2023',\n", - " 'texts': []}" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], + "execution_count": null, + "metadata": {}, + "outputs": [], "source": [ "bkst_data[0]" ] @@ -309,19 +370,6 @@ "# Your code here" ] }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{admonition} Questions\n", - ":class: question\n", - "\n", - "- What data elements do you see that might prove useful to our project (identifying courses with high- and low-cost textbooks)?\n", - "- What data elements do you have questions about?\n", - "\n", - "````" - ] - }, { "cell_type": "markdown", "metadata": {}, @@ -329,7 +377,7 @@ "````{admonition} Try it out!\n", ":class: try-it-out\n", "\n", - "For an example of course with assigned textbooks, look at the element in the 100th position in the list (at index 99).\n", + "For an example of course with assigned textbooks, look at the element in the 2nd position in the list (at index `[1]`).\n", "\n", "Note any additional data elements that might be useful, as well as any that you have questions about.\n", "\n", @@ -349,7 +397,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Navigating nested data" + "### II.3 Navigating nested data" ] }, { @@ -361,20 +409,9 @@ }, { "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "1250" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], + "execution_count": null, + "metadata": {}, + "outputs": [], "source": [ "len(bkst_data)" ] @@ -383,9 +420,9 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "There are 1,250 top-level elements in `bkst_data`. But each element contains other elements nested within it. \n", + "There are 4,970 top-level elements in `bkst_data`. But each element contains other elements nested within it. \n", "\n", - "Here we assign one of those elements -- the element in the 100th position -- to a new variable, `my_course`." + "Here we assign one of those elements -- the element in the 2nd position -- to a new variable, `my_course`." ] }, { @@ -394,20 +431,8 @@ "metadata": {}, "outputs": [], "source": [ - "my_course = bkst_data[99]\n", - "print(my_course)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{admonition} Question\n", - ":class: question\n", - "\n", - "Look back at how we initially defined this dataset. In terms of that definition, what does each top-level element in the `bkst_data` list represent? \n", - "\n", - "````" + "my_course = bkst_data[1]\n", + "my_course" ] }, { @@ -425,7 +450,7 @@ "source": [ "A single course is represented as a Python {term}`dictionary` (`dict`) within the `bkst_data` list. \n", "\n", - "As we saw in the previous activity, dictionaries allow us to store data in fields, similar to a database. The elements on the left-hand side of the colons are called **keys**, and the elements on the right-hand side of the colons are called **values**.\n", + "Dictionaries allow us to store data in fields, similar to a database. The elements on the left-hand side of the colons are called {term}`key`s, and the elements on the right-hand side of the colons are called {term}`value`s.\n", "\n", "Here the keys are strings; anything enclosed in quotation marks in Python is a {term}`string`.\n", "\n", @@ -434,20 +459,12 @@ }, { "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "CHEM\n" - ] - } - ], + "execution_count": null, + "metadata": {}, + "outputs": [], "source": [ "my_dept = my_course['department']\n", - "print(my_dept)" + "my_dept" ] }, { @@ -492,20 +509,9 @@ }, { "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "list" - ] - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - } - ], + "execution_count": null, + "metadata": {}, + "outputs": [], "source": [ "type(my_course['texts'])" ] @@ -514,39 +520,16 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "This particular course/section has 7 entries under the `texts` heading." + "This particular course/section has three entries under the `texts` heading." ] }, { "cell_type": "code", - "execution_count": 14, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "7" - ] - }, - "execution_count": 14, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(my_course['texts'])" - ] - }, - { - "cell_type": "markdown", + "execution_count": null, "metadata": {}, + "outputs": [], "source": [ - "````{admonition} Question\n", - ":class: question\n", - "\n", - "At this point, we have drilled down a few levels into our dataset, and things might be starting to look rather complicated. Take a moment with your team to sketch on paper the structure of our dataset so far. Draw it in whatever way feels most intuitive to you (without worrying about Python data types for the moment).\n", - "\n", - "````" + "len(my_course['texts'])" ] }, { @@ -556,7 +539,7 @@ "````{admonition} Try it out!\n", ":class: try-it-out\n", "\n", - "Use indexing to look at each of the items in the `my_books` variable below. With your team, revise your sketch/data diagram to reflect how course materials are represented in this dataset.\n", + "Use indexing to look at each of the items in the `my_books` variable below.\n", "\n", "````" ] @@ -567,8 +550,7 @@ "metadata": {}, "outputs": [], "source": [ - "my_books = my_course['texts']\n", - "my_books[0]" + "my_books = my_course['texts']" ] }, { @@ -584,13 +566,33 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Questions for Discussion\n", + "````{admonition} A note on nested data\n", + ":class: notes\n", "\n", - "1. We're ultimately interested in the cost of course materials as reported by the bookstore. Where do the relevant data elements reside within the structure we have been exploring?\n", + "Working with nested data can be a headache. Unfortunately, because of how databases tend to store data, there's a lot of it out there! Here's a rule of thumb that can help: when working with nested data, always try to keep track of the level at which you're working. Variables can be useful for this purpose. \n", + "\n", + "1. For instance, in the code above, the variable `bkst_data` holds a list of courses. \n", + "2. We point to a single course (the second) using the variable `my_course`. If we wanted to point to a different course, we could simply reassign the variable, e.g., `my_course = bkst_data[100]`. After running that bit of code, `my_course` would point to the 101st course in the list.\n", + "3. The `my_books` variable points to the list of textbooks associated with the course in `my_course` (either the second course or whatever other course we assigned to it). \n", + "\n", + "If you find visual analogies useful, think of our dataset as follows:\n", + "\n", + "- As a file cabinet, where each course corresponds to a separate drawer, and within each drawer, there is a folder containing sheets of paper about textbooks. (The folder may be empty.) \n", + "- As a series of nesting dolls, or boxes inside boxes. \n", + "- Or if you're a Marvel fan, as the multiverse, wherein each universe may or may not have its own version of your favorite superheroes.\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} A note on variable names\n", + ":class: notes\n", "\n", + "Note that it's purely a matter of convention that `my_course` uses the singular noun (\"course\") because it's pointing to a single course, and that `my_books` uses the plural (\"books\") because it's pointing to a list. These are helpful hints for the programmer, but they mean nothing to Python. We could name our variables `spiderman` and `doctor_strange`, if we wanted to, and they would work just as well (though _we_ might be more prone to make mistakes!).\n", "\n", - "2. Up to we've been looking at our data in terms of content and organization: thinking about what different elements represent, and how those elements relate to each other. Now take a few moments and look at the data in terms of **syntax**. \n", - " - With your team, make an inventory of the differents kinds of punctuation marks you see in the parts of the dataset you have examined, and discuss any patterns you notice in how punctuation is used." + "````" ] } ], diff --git a/textbook/notebooks/lessons/2_1_describing_the_team.ipynb b/textbook/notebooks/lessons/2_1_describing_the_team.ipynb index 1fc1e03..7f0c175 100644 --- a/textbook/notebooks/lessons/2_1_describing_the_team.ipynb +++ b/textbook/notebooks/lessons/2_1_describing_the_team.ipynb @@ -46,7 +46,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Structured data\n", + "## I. Structured data\n", "\n", "Like most programming languages, Python gives us various tools for organizing data, each of which involves certain tradeoffs.\n", "\n", @@ -64,14 +64,15 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "````{admonition} Questions\n", - ":class: question\n", + "````{admonition} For discussion\n", + ":class: try-it-out\n", "\n", "\n", "1. If you're going to the store to buy groceries, how do you generally keep track of the items you need? What pieces of information are relevant to this task?\n", "2. What about keeping track of the courses you're taking in a given semester?\n", "3. Many of us now rely on our phones to store our contacts (friends, family, etc.). What if you had to give up your phone for a month -- how would you organize your contacts? What would that look like?\n", - "4. If you were going to record some information about the members of your team, what information would you capture? Make a list of fields that the team can agree on.\n", + "4. If you were going to record some information about the members of your team, what information would you capture? **Make a list of fields that the team can agree on.**\n", + "\n", "````" ] }, @@ -79,48 +80,86 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### Lists versus dictionaries\n", - "\n", - "In the examples above, we were talking about lists of things. But _not all lists are created equal_.\n", + "### I.1 Creating a list" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the homework, you split a single string containing some course information into a list of three strings. For example, by executing the code `\"CHEM 1001 10\".split()`, we get back the list `[\"CHEM\", \"1001\", \"10\"]`. In Python, we can put any valid Python values, or variables pointing to those values, inside of a list. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Try it out!\n", + ":class: try-it-out\n", "\n", - "For instance, in the homework, you worked with two different examples of a {term}`list`:\n", + "In the cell below, assign a variable called `my_team` to a new list containing the names of the members of your team. \n", "\n", - " 1. A list of book prices, where each item represented the price of a book. Beyond the price, there was no other information about the book to be gleaned from that list. \n", - " \n", - " 2. A list of courses. Each {term}`string` contained three pieces of information:\n", + "Then using that variable, print **the first name** in the list.\n", "\n", - " - a department code\n", + "````" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#Your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### I.2 Lists or dictionaries?\n", "\n", - " - a course number\n", - " \n", - " - and a section number.\n", - " \n", + "The examples above used lists of strings to hold some information. But note the difference between the two kinds of lists. The list you created holds a list of names, e.g.,\n", "\n", - "You used the list of course strings to create three separate lists: one for the department codes, one for the course numbers, and one for the section numbers. \n", + "```\n", + "my_team = [\"Alex\", \"Emily\", \"Marcus\", \"Max\"]\n", + "```\n", + "In this list, each of the elements conveys the same _kind_ of information; each element is a person's name. On the other hand, the list we created by splitting the course string contains three different kinds of information:\n", "\n", - "But it would be handy if we could keep track of those three pieces of information in the same place (using a single data structure). Managing three lists would, in this case, be cumbersome, and if we were dealing with a large number of courses, potentially error prone.\n", + "```\n", + "my_course = [\"CHEM\", \"1001\", \"10\"]\n", + "```\n", + "The first element is the department code, the second is the course number, and the third is the section number. But there's nothing in the list itself that tells us which is which. We just have to remember that the department code comes first, followed by the course number and then the section number. For this kind of data, it would be great if we could label each element, such that instead of writing\n", "\n", - "Let's see how Python dictionaries can help!" + "```\n", + "my_course[1]\n", + "```\n", + "to access the course number, we could write something like this:\n", + "```\n", + "my_course[\"course_num\"]\n", + "```\n", + "As you might have guessed, Python has just the thing for this kind of situation. It's called a {term}`dictionary`." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "### Creating a dictionary to describe yourself\n", + "### I.3 Creating a dictionary to describe yourself\n", "\n", - "In this activity, you'll create a data structure to hold information about your team, and you'll write Python code to update it.\n", + "In this activity, you'll create a more complex data structure to hold information about your team, and you'll write Python code to update it.\n", "\n", - "First, create a Python dictionary to hold information about yourself. Follow the template below, but feel free to use the fields that your team agreed upon in the first activity (Question 4 above).\n", + "First, create a Python dictionary to hold information about yourself. Follow the template below, but feel free to add any additional fields that your team agreed upon in the first activity (Question 4 above). \n", "\n", "#### Dictionary template\n", "\n", "```\n", - "dolsy = {'name': 'Dolsy Smith',\n", - " 'job_title': 'Software Developer/Librarian',\n", - " 'gw_unit': 'GW Libraries & Academic Innovation',\n", - " 'email_address': 'dsmith@gwu.edu'}\n", - "```" + "dolsy = {\"name\": \"Dolsy Smith\",\n", + " \"email_address\": \"dsmith@gwu.edu\",\n", + " \"team_role\": \"advocate\",\n", + " \"years_at_gw\": 18}\n", + "```\n", + "Include your current role on your team, i.e., notetaker, reporter, or advocate." ] }, { @@ -151,12 +190,12 @@ ":class: note\n", "\n", "- Note the curly braces (`{}`) at the start and end of the dictionary. Python uses square brackets for lists and curly braces for dictionaries.\n", - "- The field names -- on the left side of the colon -- are called **keys**. \n", - "- The data on the right side of the colon are called **values**.\n", + "- The values on the left side of the colons are called {term}`key`s. \n", + "- The values on the right side of the colons are called {term}`value`s.\n", "- Keys are usually (but not always) Python strings.\n", "- Values can be strings, floats, integers, or any other valid Python data type.\n", "- Note the commas at the end of each line. These separate key-value pairs. It's not required to break the dictionary into multiple lines, but if you do, you must break after the comma.\n", - "- In the template, I assigned this dictionary of data about me to a {term}`variable` called `dolsy`. Assign your dictionary to whatever variable name you like.\n", + "- In the template, I assigned this dictionary of data about me to a variable called `dolsy`. Assign your dictionary to whatever variable name you like.\n", "````" ] }, @@ -164,14 +203,16 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### Using dictionaries\n", + "### I.4 Using dictionaries\n", + "\n", + "If your dictionary was successfully created and assigned to a variable, you should be able to access the values by using their corresponding keys. Key are simply labels that point to values -- like the labels on a file folder, for instance.\n", "\n", - "If your dictionary was successfully created and assigned to a variable, you should be able to access the values by using their corresponding keys.\n", + "Keys allow us to access information within dictionaries according to the label (the key) we have assigned to it. Think about a file cabinet full of folders: such a structure would be pretty hard to use if we had to remember the position of every folder. But by affixing labels, we can easily find the folder we want, as long as the label makes sense as a guide to the folder's contents.\n", "\n", - "For instance, to print my email address, I'd do the following:\n", + "The dictionary is a similar concept. To retrieve and print my email address from the `dolsy` dictionary created above, I write the following code:\n", "\n", "```\n", - "print(dolsy['email_address'])\n", + "print(dolsy[\"email_address\"])\n", "```\n", "\n", "Note that here we surround the key with {term}`square brackets` rather than curly braces. The syntax is meant to remind you of how we access individual items in a list." @@ -202,31 +243,97 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Tabular data\n", + "Keys not only make it easy to access values in a dictionary. We can also use them to **add new values**. To add a key called `\"programming_languages\"` to my `dolsy` dictionary, I can write the following:\n", + "\n", + "```\n", + "dolsy[\"programming_languages\"] = \"Python\"\n", + "```" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Try it out!\n", + ":class: try-it-out\n", + "\n", + "Add the `\"programming_languages\"` key to your dictionary. If you know more than one programming language, instead of assigning the key to a string, go ahead and assign it to a list of strings, e.g., \n", + "\n", + "```\n", + "[\"Python\", \"R\", \"Javascript\"]\n", + "```\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} For discussion\n", + ":class: question\n", "\n", - "A single dictionary is a good way to represent something in the real world -- like a person, a course, or a textbook -- that has multiple properties or attributes. \n", + "The following table summarizes the key similarities and differences between lists and dictionaries in Python.\n", "\n", - "The dictionary's keys can help us organize the attributes by labels, just the way we might label the different elements of each entry in an addressbook: name, email address, phone number, etc.\n", + "||List|Dictionary|\n", + "|-|-|-|\n", + "|Holds multiple values|✓|✓|\n", + "|Access values by position|✓||\n", + "|Access values by key (e.g, label)||✓|\n", + "|Can retrieve multiple values by slicing|✓||\n", + "|Add new values by appending (adding to the end)|✓||\n", + "|Add new values by inserting a new key/value pair||✓|\n", "\n", - "You might also think of the dictionary keys as the column headings in a spreadsheet. In a spreadsheet, each row uses the same column headings, which allows us to do things like sort or filter the data by particular attributes. For example, if we covert our addressbook to an Excel file, assuming we have a column for email address, we can easily compute how many of our contacts have GW email addresses.\n", + "**Question**: What kinds of data do you think are more suitable for storing in lists? What kinds might be better suited to dictionaries? Discuss with your team and record your answers.\n", "\n", - "We call such a data structure **tabular** because it is organized as a table, i.e., with rows and columns." + "````" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "### Tabular data in Python\n", + "## II. Lists and dictionaries together" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We unlock the real power of a programming language like Python when we start to compose more complex structures out of the basic data types provided by the language. If lists and dictionaries in Python were mutually exclusive, we would quickly encounter the limits of those types. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} A thought experiment\n", + ":class: notes\n", "\n", - "How do we represent tabular data in Python? \n", + "Think about the few thousand courses taught every semester at GW. \n", + " - There are multiple pieces of information about each course that we might want to keep track of, like who's teaching it, what department it belongs to, etc. That structure might lend itself to a dictionary.\n", + " - But dictionaries have an important constraint: **each key in the dictionary must be unique**. \n", + " - How would we structure this course data as a dictionary? What would we use for keys?\n", + " - Alternately, if we were to use a list, what would the data structure look like?\n", "\n", - "There are some very handy Python libraries for working with tables, [pandas](https://pandas.pydata.org/) being one of the most popular. But we can also handle tabular data with just the Python types you've already encountered. \n", + "Discuss your thoughts with your team.\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### II.1 Nesting data\n", + "\n", + "There are many different ways to put lists and dictionaries together. When handling datasets like our list of courses, a common approach is to create a {term}`list of dictionaries`. \n", "\n", - "One common approach, which we will work through together, is to create a **list of dictionaries**. \n", + "You can think of this structure as similar to a spreadsheet.\n", "\n", - "- On the analogy with a spreadsheet, each dictionary in the list would be another row of the table. \n", - "- Each dictionary would have the same **keys** (with different **values**), corresponding to the data in the various columns of the spreadsheet." + "- Each dictionary is like a single row of the spreadsheet.\n", + "- Each dictionary has the same **keys** but different **values**.\n", + "- The keys correspond to the column names in the spreadsheet.\n", + "- The values correspond to the data in the cells under those columns." ] }, { @@ -278,7 +385,11 @@ "```\n", "Note that because I'm putting **variables** in this list, not strings, I don't use quotation marks. (I don't want to create a list of strings, but a list of dictionaries, each of which is represented by one of these variables.)\n", "\n", - "Then `print()` your list to confirm that it contains the data about your team.\n" + "To see the final result, run a code cell with just the name of your team variable in it, like so:\n", + "\n", + "```\n", + "my_team\n", + "```" ] }, { @@ -294,22 +405,120 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### Modifying dictionaries in a list\n", + "### II.2 Working with nested data\n", "\n", - "Take a moment to congratulate yourself. You've just used Python to create a tabular dataset representing your team. \n", + "The `my_team` variable is a list of dictionaries, so it's a nested data structure. But the outer layer is still a Python list, so it has all the list behaviors you learned about in the lessons and homework for Day 1. \n", "\n", - "We can even save this dataset to a file so that it can be re-used later!\n", + "1. We can access a single element (a dictionary) by {term}`index`:\n", + "```\n", + "my_team[0]\n", + "```\n", + "2. We can even access multiple elements by slicing:\n", + "```\n", + "my_team[:2]\n", + "```\n", + "3. But what if we want to work with the values **inside** one of these dictionaries? We can access a value by key from the first dictionary like so:\n", + "```\n", + "my_team[0][\"email_address\"]\n", + "```\n", + "4. And we can add or update a value using the same syntax:\n", + "```\n", + "my_team[-1][\"role\"] = \"reporter\"\n", + "```\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Try it out!\n", + "\n", + "Try updating a few of the keys in a few of the dictionaries in your team list. The diagram below might help you conceptualize the syntax you need.\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{image} https://gwu-libraries.github.io/python-camp/img/nested-data.png\n", + ":alt: \"Image showing a box labeled my_team containing three smaller boxes, each containing key-value pairs and numbered sequentially from 0. Below that, a line of code, and boxes underneath pointing to each element -- a variable (a list), an index (2nd position in the list), a key (in the 2nd dictionary), and a new value (added to the 2nd dictionary).\"\n", "\n", - "But first let's add another piece of information to each team member's record.\n", + ":width: 500px\n", + ":align: center\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### II.3 Loops, lists, and dictionaries\n", + "\n", + "What if we want to add the same value to all of the dictionaries in our list? Let's say we want to add a \"programming_languages\" key to everyone on the team and assign it to \"Python.\" \n", + "\n", + "The following code might seem like it should work:\n", "\n", - "In the example above, I retrieved my email adddress by writing `dolsy['email_address']`, where `'email_address'` is a {term}`key` in the `dolsy` dictionary. \n", + "`my_team[\"programming_languages\"] = \"Python\"`\n", "\n", - "In a similar fashion, I can add a new key/value pair to my dictionary as follows:\n", + "But it doesn't. The variable `my_team` points to a list, and lists do not allow access by key, only by position. It doesn't matter that `my_team` points to a list _of dictionaries_; Python doesn't let us take that shortcut. \n", + "\n", + "So what do we do? We probably don't want manually to add the same key/value to every dictionary in our list. The following _would_ work, but it kind of defeats the point of programming:\n", "```\n", - "dolsy['programming_languages'] = ['Python']\n", + "my_team[0][\"programming_languages\"] = \"Python\"\n", + "my_team[1][\"programming_languages\"] = \"Python\"\n", + "my_team[2][\"programming_languages\"] = \"Python\"\n", + "# and so on\n", "```\n", + "For-tunately, we can reach for one of the most powerful tools in the programmer's toolkit, a tool that unlocks the superpower of the computer -- its capacity for mindless iteration -- with a humble, three-letter word." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Set it and for-get it\n", + ":class: notes\n", "\n", - "The foregoing code would add a {term}`list` containing one item -- the string `'Python'` -- to the `dolsy` dictionary, associating it with the key `'programming _languages'`. I'm using a list since it's conceivable that someone can know multiple programming languages." + "The {term}`for loop` is the most common looping construct in Python. It lets us loop over any collection -- that is, any data type that can contain multiple elements -- and work with each element in turn. Probably the most common use of the for loop is for looping over lists. \n", + "\n", + "In the code below, we use a for loop to print each team member's email address.\n", + "\n", + "````" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "for member in my_team:\n", + " email = member[\"email_adress\"]\n", + " print(email)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Loop variables\n", + ":class: notes\n", + "\n", + "Note the variable `member` in the code immediately above. That's not a variable we've used before. In creating your `my_team` list, you probably used other variables, like this:\n", + "```\n", + "my_team = [dolsy, marcus, debbie, alex]\n", + "\n", + "```\n", + "A {term}`loop variable` is a special variable used in the context of a for loop. It's job is to point to each element in the list (or other collection) sequentially. \n", + "\n", + "Imagine that your're baking a cake that requires several ingredients, and you have a single measuring cup. You put each ingredient into the cup in order to measure it -- the cup is like a loop variable, because it gets reused with each ingredient. \n", + "\n", + "The body of the for loop -- the code underneath the line with `for`, the code that forms an {term}`indented block` -- will be executed as many times as there are elements in the list. Usually, the loop variable is used somehow within that indented block -- as in the code above, where we use the `member` variable to access the value of the `\"email_address\"` key in each dictionary, and use the latter as one of the {term}`arguments` to `print()`.\n", + "\n", + "````" ] }, { @@ -319,9 +528,11 @@ "````{admonition} Try it out!\n", ":class: try-it-out\n", "\n", - "Write a {term}`for loop` to add a `'programming_languages'` key, and the {term}`value` `['Python']`, to each dictionary in your list.\n", + "Write a for loop to add a `\"programming_languages\"` key, and the {term}`value` `[\"Python\"]`, to each dictionary in your `my_team` list. \n", + "\n", + "Enclose the string \"Python\" inside a list (by wrapping it in square brackets): that will let us add other languages later, should we need to.\n", "\n", - "Then print your list to confirm that the operation was successful.\n", + "Then display your list to confirm that the operation was successful.\n", "\n", "If you want additional help, consult this [Parsons' Problem](https://gwu-libraries.github.io/python-camp/parsons-problems/html/lessons-2-1-1.html).\n", "````" @@ -340,9 +551,11 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### Saving a list of dictionaries in JSON format\n", + "## III. From Code to Data\n", + "\n", + "Congratulations! You've created a small dataset with information about your team. Now we'll save this dataset to your JupyterHub account so that we can use it later.\n", "\n", - "Now let's save our database to disk. We'll use the `json` module and the `open` function as we did on Day 1 (to load the GW Bookstore dataset), except that this time we'll be **writing** to the file, not reading from it.\n", + "We'll use the `json` module and the `open` function, just as we did in a previous lesson when loading the GW Bookstore dataset, except that this time we'll be **writing** to the file, not reading from it.\n", "\n", "First we {term}`import` the `json` library." ] @@ -364,7 +577,7 @@ "\n", "In the code below, I've used the variable `my_team` to refer to the list of dictionaries created above. If you named your list something different, use that name in place of `my_team`.\n", "\n", - "Note that we're saving the data to a file called `team-database.json`. The initial `./` indicates that this file will live in the same directory as this notebook." + "Note that we're saving the data to a file called `team-dataset.json`. The initial `./` indicates that this file will live in the same directory as this notebook." ] }, { @@ -373,8 +586,78 @@ "metadata": {}, "outputs": [], "source": [ - "with open('./team-database.json', 'w') as f:\n", - " json.dump(my_team, f)" + "with open('./team-dataset.json', 'w') as f:\n", + " json.dump(my_team, f, indent=4)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Try it out!\n", + "\n", + "To confirm, look at the {term}`JSON` file you just created in your browser. \n", + "\n", + "**Note**: This will only work if you are using JupyterHub. If you're using Google Colab or another coding environment, please ask a facilitator for help with this step.\n", + "\n", + "1. Open a new tab.\n", + "2. Copy the URL from this tab and paste it in the new tab.\n", + "3. Remove the name of the notebook, `2_1_describing_the_team.ipynb`, and replace it with the name of the JSON file: `team-dataset.json`.\n", + "4. You should see the data displayed in your browser, just as when we first looked at the bookstore dataset.\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} One more thing\n", + ":class: try-it-out\n", + "\n", + "We're going to re-use these team datasets on Day 3. To prepare for that, your team's reporter should copy the data from the JSON as displayed in your browser and paste it into the Python Camp [shared notes document](https://docs.google.com/document/d/1QeKJNlFn-FJGnmhULs7MwHQVa-sRjNgG8sHDhLcomsU/edit).\n", + "\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Syntax review: Square brackets\n", + ":class: note\n", + "\n", + "Square brackets (`[]`) are used in Python in a few different situations. Learning to distinguish among them will help you read and write Python more efficiently.\n", + "\n", + "**Lists**\n", + "\n", + "When square brackets stand by themselves, i.e., not attached to the name of a variable or to a string, they delimit a list. A list may contain:\n", + " - Zero elements: `[]`\n", + " - One element: `[\"Python Camp\"]` (a list containing a single string)\n", + " - Multiple elements: `[1, 2, 3]` (a list containing three integers)\n", + "\n", + "When there are more than one element in a list, the elements are separated by commas. List elements may be any mix of Python data types: integers, floats, strings, even other lists! \n", + "\n", + "Think of the square brackets enclosing lists as the brackets that hold up a shelf. Like a shelf, a list allows us to arrange things sequentially (i.e., in order, one after the other) but provides no additional structure.\n", + "\n", + "**Indexing and slicing**\n", + "\n", + "Square brackets \"attached\" to a Python string or list are used for indexing or slicing. A single integer between brackets retrieves a single element (by position), and two integers, separated by a colon (`:`), retrieves multiple adjacent elements, e.g.,\n", + " - `\"Python\"[1]` --> `\"y\"`, because the index 1 corresponds to the second element. (Python indexing starts from 0.)\n", + " - `\"Python Camp\"[0:6]` --> `\"Python\"`, starting with the first element (index 0) and going _up to, but not including_, the 7th (the space). We could also write this as `\"Python Camp\"[:6]`, without the `0`, since we want a slice starting from the beginning of the string.\n", + "\n", + "The square brackets used for indexing/slicing are kind of like a window. They allow us to peek at one or more elements that are adjacent to one another.\n", + "\n", + "**Dictionary access**\n", + "\n", + "Square brackets \"attached\" to a Python dictionary should enclose a key to be found within the dictionary. Accessing a dictionary by key returns the value associated with that key. It's not possible to retrieve values for more than one key at a time. We also use this notation to add keys and values to dictionaries.\n", + " - `team_member[\"email_address\"]` retrieves the value associated with the `\"email_address\"` key in the `team_member` dictionary.\n", + " - `team_member[\"programming_language\"] = \"Python\"` assigns the string `\"Python\"` to the key `\"programming_language\"`. If the key already exists, its value will be overwritten.\n", + "\n", + "Wth dictionaries, the square brackets might remind you of the tab at the top of a file folder to which you can affix a label. \n", + "\n", + "````" ] } ], diff --git a/textbook/notebooks/lessons/2_2_programming_with_data.ipynb b/textbook/notebooks/lessons/2_2_programming_with_data.ipynb new file mode 100644 index 0000000..254815f --- /dev/null +++ b/textbook/notebooks/lessons/2_2_programming_with_data.ipynb @@ -0,0 +1,881 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Programming with Data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Objectives\n", + "\n", + "- To use lists, loops, and conditionals to answer basic questions about a dataset\n", + "- To design data structures with specific purposes (use cases) in mind" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "tags": [ + "instructor", + "remove-cell" + ] + }, + "source": [ + "
\n", + "\n", + "\n", + "## Lesson Plan\n", + "\n", + "Instructors should review the material in the `Preliminaries` section with the whole group, before giving teams their assignments.\n", + "\n", + "#### First exercise\n", + "\n", + "Solicit examples from the group. Make sure to demonstrate the case of equality, emphasizing the double equals sign, e.g.,\n", + "\n", + "`book_price == 55` \n", + "\n", + "It may help also to point out that just as we saw that it's not possible to add a `str` value and an `int` (or `float`), we also can't compare string and numeric types:\n", + "\n", + "```\n", + "'$55.99' > 60\n", + "```\n", + "The code above will produce a `TypeError`.\n", + "\n", + "-------------\n", + "\n", + "#### if statements\n", + "\n", + "Make sure to take questions at this point. In particular, the implications of the third rule above may not be immediately apparent to learners. An example may help:\n", + "\n", + "```\n", + "pub_price = 100.99\n", + "on_sale = True\n", + "if pub_price > 100 and on_sale:\n", + " retail_price = pub_price * 1.25\n", + "elif on_sale:\n", + " retail_price = pub_price * 1.35\n", + "else:\n", + " retail_price = pub_price * 1.40\n", + " \n", + "```\n", + "In this example, we calculate retail price from a publisher's price, using a markup percentage. The percentage to be applied depends on whether or not the book is on sale, with an extra discount for books over $100 that are on sale.\n", + "\n", + "If we didn't put the compound condition in the first position (`if pub_price > 100 and on_sale`), then sale books over $100 would not get the appropriate discount. \n", + "\n", + "----------------\n", + "\n", + "#### for loops/counter pattern\n", + "\n", + "(for instructors)\n", + "\n", + "Point out that the `print()` statements emphasize the fact that the `counter` variable is incremented by the loop, so that it goes from 0 to 1250 (the number of items in the list).\n", + "\n", + "Point out that this code essentially does the same thing as `len(bkst_data)`. \n", + "\n", + "-----------------\n", + "\n", + "\n", + "#### Team activity 1\n", + "\n", + "Solutions should look something like the following:\n", + "\n", + "```\n", + "with_texts = 0\n", + "for course in bkst_data:\n", + " if len(course['texts']) > 0:\n", + " with_texts += 1\n", + "print('Percentage of courses with textbooks:', with_texts / len(bkst_data)) \n", + "```\n", + "\n", + "Take a moment to review solutions from the teams before proceeding to the next activity. \n", + "\n", + "Highlight the levels of indentation involved with the `if` statement.\n", + "\n", + "------------------\n", + " \n", + "#### Team activity 2\n", + "\n", + "Have each team share either their solution OR where they go stuck (if they did not find a solution).\n", + "\n", + "The following code represents one possible solution:\n", + "```\n", + "most_expensive = 0 # Initialize variable to track most expensive seen\n", + "for course in bkst_data: # Loop over courses (outer loop)\n", + " for text in course['texts']: # Loop over textbooks (inner loop)\n", + " price = float(text['price_display'][1:]) # Slice string, convert to float\n", + " if price > most_expensive: # Compare this price with most expensive\n", + " most_expensive = price # Update if necessary\n", + "print('Most expensive textbook costs', most_expensive)\n", + "```\n", + "It may be worth pointing out that when `course['texts']` is empty, the line `for book in course['texts']:` will simply exit without iterating (as opposed to throwing an error). This is useful, since it means we don't need explicitly to check for a list length > 0.\n", + "\n", + "------------------\n", + "\n", + "#### Team activity 3\n", + "\n", + "Possible solution to the first question: Can you and your team adapt the preceding solution so as to identify _the course_ with the most expensive textbook? \n", + "\n", + "\n", + "```\n", + "most_expensive = 0 \n", + "most_exp_course = {}\n", + "for course in bkst_data: \n", + " for text in course['texts']: \n", + " price = float(text['price_display'][1:]) \n", + " if price > most_expensive: \n", + " most_expensive = price \n", + " most_exp_course = course\n", + "print('Course with the most expensive textbook:', most_exp_course) \n", + "```\n", + "\n", + "Possible solution to the second above: What about the _title_ and _author_ of the most expensive textbook?\n", + "\n", + "```\n", + "most_expensive = 0 \n", + "most_exp_text = {}\n", + "for course in bkst_data: \n", + " for text in course['texts']: \n", + " price = float(text['price_display'][1:]) \n", + " if price > most_expensive: \n", + " most_expensive = price \n", + " most_exp_text['title'] = text['title']\n", + " most_exp_text['author'] = text['author']\n", + "print('The most expensive textbook:', most_exp_text) \n", + "```\n", + "\n", + "If teams get stuck, it may help to explain that all this problem requires is the use of an additional variable to keep track of which course/text is the most expensive. It is perhaps most straightfoward to create a dictionary for this second variable, since the information that we want (describing the course and/or the text) is already in this form. \n", + "\n", + "#### Wrap up\n", + "\n", + "Review how to submit the homework to GH classroom.\n", + "\n", + "
" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Taking stock\n", + ":class: notes\n", + "\n", + "At this point, you've covered _almost_ all the essential parts of the Python language. In particular, you have practiced\n", + "\n", + "- Using integers, floats, and strings to represent numbers and text\n", + "- Creating lists to store multiple pieces of information\n", + "- Creating dictionaries to store information in a more structured way\n", + "- Using for loops to manipulate nested data structures\n", + "- Writing functions to organize code in a logical way and reduce redundancy\n", + "\n", + "With these tools, you have almost everything you need to write Python code for \"real-world\" situations, like analyzing a dataset. \n", + "\n", + "Today you'll equip yourself with a couple more tools, and then you and your team will start to tackle some more complex problems with Python.\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} A reminder\n", + ":class: notes\n", + "\n", + "But if you feel a little overwhelmed at this point, that's to be expected! Learning a programming language, especially your first language, can be a long process, with periods of excitement alternating with periods of frustration. \n", + "\n", + "As we forge ahead today and tomorrow, please keep these two things in mind:\n", + "1. You should be proud of yourself for having made it this far!\n", + "2. When you feel stuck, try to have compassion for yourself, take a deep breath, and even walk away for a bit if you need to. \n", + "\n", + "Human minds are not computers. When a computer program gets stuck, it means that something's off -- an error in the code, a hardware issue, an unexpected piece of data -- and the program won't work until the problem has been fixed (usually, by outside intervention). But when the human mind feels stuck, that is usually a sign that learning is happening. Today's frustrations pave the way for tomorrow's epiphanies. \n", + "\n", + "Learning means getting stuck, and sticking with it.\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## I. What if?\n", + "\n", + "Programming is a powerful tool because it can respond to different situations, provided we can anticipate them. The real world is full of variation, and useful programs are those that account for some amount of variation. After all, it would hardly be efficient if we had to re-write our code from scratch whenever we encountered a new dataset, for instance, or if we had no way of dealing with different users' preferences.\n", + "\n", + "Conversely, think of how frustrating it is to encounter an application or a website that doesn't seem designed to let you do what it seems obvious that you should be able to do with it. \n", + "\n", + "At the core of the programmer's ability to anticipate and cope with variable user preferences, data structures, and computing environments is {term}`conditional logic`. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### I.1 Conditionals & Boolean values\n", + "\n", + "In a very abstract sense, a computer is a machine for implementing binary logic. In binary logic, the only values allowed are `1`'s and `0`'s, which represent `True` and `False`, respectively. \n", + "\n", + "Thus, at some level, _everything_ we do in computation can be reduced to `True` or `False` (from the computer's perspective). But from a programmer's perspective, this usually only matters in situations where we want the program to do different things based on certain conditions that may or may not obtain. These cases are called {term}`Boolean expression`s. \n", + "\n", + "For instance, we can tell Python to compare two numbers, using the standard operators you might remember from your math courses: greater than, less than, equal to, etc.\n", + "\n", + "Note that in Python, we represent equality by the **double equals sign** (`==`). A single equals sign is reserved for {term}`variable` assignment." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Running the code below should return `True`, which is one of two special Python values called {term}`Boolean value`s (so named because the binary logic that computers implement was invented by the mathematician George Boole)." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "book_price = 55.99 # Assignment: single equals sign\n", + "book_price < 60" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Try it out!\n", + ":class: try-it-out\n", + "\n", + "Write an expression with the `book_price` variable that returns `False`.\n", + "\n", + "````" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### I.2 `if` statements\n", + "\n", + "Usually, we want to do more than evaluate whether an expression (like `book_price < 60`) is `True` or `False`. Usually, we want the program to _take some action_ based on the outcome of that evaluation.\n", + "\n", + "For this, we use an {term}`if statement`. \n", + "\n", + "To print a message **if** the value of the `book_price` variable is above a certain threshhold, we can write the following:" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "if book_price > 100:\n", + " print(\"That's an expensive textbook!\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Running the code above produces no output, at least not if `book_price` is assigned as above (to the {term}`float` value `55.99`). \n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Try it out!\n", + ":class: try-it-out\n", + "\n", + "Change the value of `book_price` in the preceding code cell so that the condition is `True`.\n", + "````" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "#Your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 1.3 Iffy operations\n", + "\n", + "What if we want to check for books within a certain range of prices? \n", + "\n", + "We can use the {term}`Boolean operator` `and` to do this. The `and` keyword links two conditions: if both sub-conditions are `True`, then the whole condition (with the `and`) is also `True`. Otherwise, it is `False`. \n", + "\n", + "The other common Boolean operators are `or` and `not`. `or` is `True` if _at least one_ sub-condition is `True`. `not` flips (inverts) a condition: so `not True` is `False`.\n", + "\n", + "The following truth table summarizes the basic results of using `and` and `or` with two variables, `A` and `B`. Assume both `A` and `B` refer to some Boolean expression, such as `4 < 5` (which would be `True`) or `1 == 2` (which would be `False`).\n", + "\n", + "|A|B|Operator|Result|\n", + "|-|-|-|-|\n", + "|True|True|and|True|\n", + "|True|True|or|True|\n", + "|True|False|and|False|\n", + "|False|True|and|False|\n", + "|True|False|or|True|\n", + "|False|True|or|True|\n", + "|False|False|and|False|\n", + "|False|False|or|False|" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "book_price = 55.99\n", + "if book_price >= 20 and book_price <= 100:\n", + " print(\"Not too expensive\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the examples above, our code either performed an action or not, depending on a single condition. We can also specify multiple conditions, only one of which can be true. For example, if `book_price` is between `20` and `100`, the following code will print `Not too expensive`), but it will print other messages if `book_price` is less than `20` or greater than `100`." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Not too expensive\n" + ] + } + ], + "source": [ + "if book_price >= 20 and book_price <= 100:\n", + " print(\"Not too expensive\")\n", + "elif book_price < 20:\n", + " print(\"That's a relatively cheap textbook.\")\n", + "else:\n", + " print(\"That's an expensive textbook!\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Notes\n", + ":class: notes\n", + "\n", + "Here are some rules of thumb for writing `if` statements in Python:\n", + "- You can have as many `elif` statements as you want, provided they follow an `if` statement.\n", + "- The `else` statement is a catch-all: it will be executed if none of the preceding `if` or `elif` statements evaluates to `True`.\n", + "- Otherwise, the _first_ `if`/`elif` statement that is `True` will be executed, and _all the rest_ will be ignored. In other words, if the conditions you're testing for are not mutually exclusive, you should write the most specific test first. \n", + "- Each `if`/`elif`/`else` statement ends with a colon and is followed by an indented {term}`block` of code. This is the same pattern we saw with `for` loops. \n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Try it out!\n", + ":class: try-it-out\n", + "\n", + "Take another look at our [bookstore dataset](https://go.gwu.edu/pythoncampdata) as JSON. As you might recall, some but not all courses have textbooks listed. Courses that lack textbooks have a `texts` key that points to an empty Python list (`[]`).\n", + "\n", + "How could you write an `if` statement to determine whether a given course has any textbooks associated with it in our dataset? \n", + "\n", + "The first code cell below defines a variable `course` and assigns it to a dictionary for a course with textbooks. Run this code, then write some code in the cell below to check whether the `course` variable has any textbooks. **Your code should print the price of the first textbook if any textbooks are listed. Otherwise, your code should print a message like `\"No textbooks found\"`.**\n", + "\n", + "Once you've written your code, run the third code cell below, which re-assigns the `course` variable to a dictionary for a course **without** textbooks. Re-run your code cell to make sure that your code works for both situations.\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{hint}\n", + ":class: dropdown\n", + "\n", + "To find the length of a list, you can use the built-in `len()` function.\n", + "\n", + "The length of an empty list is 0, so `len([]) == 0` is `True`.\n", + "\n", + "````" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "course = {\"department\": \"IAFF\",\n", + " \"course_num\": \"1002\",\n", + " \"section\": \"10\",\n", + " \"instructor\": \"Adas\",\n", + " \"texts\": [{\"title\": \"International Affairs: Theories and Practice\",\n", + " \"author\": \"Janice Witherspoon\",\n", + " \"publisher\": \"Addison/Wesley\",\n", + " \"price_display\": \"$100.75\"}]} " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#Your code here" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "course = {\"department\": \"IAFF\",\n", + " \"course_num\": \"1001\",\n", + " \"section\": \"10\",\n", + " \"instructor\": \"Jaffrey\",\n", + " \"texts\": []}" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## II. Loops & conditionals" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### II.1 Counting with loops\n", + "\n", + "A very common use of a {term}`for loop` in Python is to count, aggregate, or otherwise keep track of certain values when processing a list. \n", + "\n", + "We've seen a version of this pattern before: in the homework, you use a loop to convert some prices from strings to floats and then to adjust the price with sales tax. You collected the adjusted prices in a new list.\n", + "\n", + "In the example below, we'll use this pattern to keep track of a single value. The value we're tracking will simply be the number of items in the list.\n", + "\n", + "We'll use our bookstore dataset, so the first step is to read the file into Python from disk." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "from urllib.request import urlretrieve\n", + "import json\n", + "urlretrieve('https://go.gwu.edu/pythoncampdata', 'bookstore-data.json')\n", + "with open('bookstore-data.json') as f:\n", + " bkst_data = json.load(f)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} A recipe for counting\n", + ":class: notes\n", + "\n", + "To use this pattern, you usually have at least _three_ variables to deal with:\n", + "1. The variable that holds your list (`bkst_data`)\n", + "2. A loop variable (`course` in the code below)\n", + "3. A **variable defined before the loop** that will be used to track or accumulate values. Since this loop is just counting items, we'll call this variable `counter`. We set `counter` initially to `0`, since before we run the loop, we haven't counted any items.\n", + "\n", + "Note also that `counter += 1` is shorthand for `counter = counter + 1`. Either way of writing that expression is fine.\n", + "````" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "counter = 0\n", + "print(\"Counter before loop\", counter)\n", + "for course in bkst_data:\n", + " counter += 1\n", + "print(\"Counter after loop\", counter)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Question\n", + "\n", + "After running the code above, discuss it with your team. Do you know of another way to accomplish the same thing? \n", + "\n", + "Hint: think about the built-in Python functions you've already encountered.\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### II.2 Counting with conditionals\n", + "\n", + "Admittedly, there are more concise ways to calculate the length of a list than using the for loop and the `counter` variable above. But what if we wanted to count something a bit more complex? " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Try it out!\n", + ":class: try-it-out\n", + "\n", + "Building on the recipe above, can you write some code to count how many courses in our bookstore dataset **have textbooks**? \n", + "\n", + "````" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#Your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## III. Working with data\n", + "\n", + "Now you have seen how lists, loops, conditionals, and variables work together to allow us to perform non-trivial computations with data. The next step is to develop your programmer's intuition by putting these tools into practice with more complex tasks.\n", + "\n", + "As a team, you should work through the exercises below. For each exercise, there's a suggestion for a both a **less challenging** and a **more challenging** approach. **Before starting each exercise, each team should discuss the approach they plan to take.** If everyone in the group feels up to the more challenging version of the exercise, you're welcome to skip the less challenging version. But if not everyone feels up to the former, we strongly recommend starting **as a team** with the less challenging approach. Extra practice never hurts!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} A less challenging dataset\n", + ":class: notes\n", + "\n", + "Our bookstore dataset has a few thousand elements and a non-trivially nested structure. For a less challenging dataset, you can use the **team dataset** you produced during Day 2's activity \"Describing the Team.\" Assuming you saved that dataset to a JSON file on JupyterHub called `team-dataset.json`, the following code should open the file and store its contents in a variable called `my_team`.\n", + "\n", + "````" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "with open(\"./team-dataset.json\") as f:\n", + " my_team = json.load(f)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Can't find your team data?\n", + "\n", + "If the code above shows a `FileNotFound` error, you can use a prepared dataset that has more or less the same structure as your team dataset (with randomly generated names).\n", + "\n", + "Copy the code below into a new code cell and run it:\n", + "\n", + "```\n", + "urlretrieve('https://go.gwu.edu/pythoncampdata2', 'team-dataset-prepared.json')\n", + "with open('team-dataset-prepared.json') as f:\n", + " my_team = json.load(f)\n", + "```\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### III.1 Computing averages\n", + "\n", + "We can compute an average by dividing some total quantity by the number of occurences of each quantity. For instance, let's say we have a list `prices` defined as follows:\n", + "```\n", + "prices = [100.5, 75, 85.75, 90, 55]\n", + "```\n", + "We can compute the average price like this:\n", + "```\n", + "avg_price = sum(prices) / len(prices)\n", + "```\n", + "Note that the `sum()` function works only on numeric types (integers and floats)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Try it out!\n", + ":class: try-it-out\n", + "\n", + "**Less Challenging**\n", + "\n", + "Each dictionary in your team dataset should include a key `\"years_at_gw\"`. Calculate the average number of years at GW for members of your team.\n", + "\n", + "**More Challenging**\n", + "\n", + "Calculate the average cost of a textbook in the bookstore dataset. \n", + "\n", + "````" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "solution2": "hidden", + "solution2_first": true + }, + "outputs": [], + "source": [ + "# Your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "solution2": "hidden" + }, + "source": [ + "````{hint}\n", + ":class: dropdown\n", + "\n", + "For the **less challenging** version of the problem, you might take this approach:\n", + "\n", + "1. Define a variable called `total_years`.\n", + "2. Use a {term}`for loop` to iterate over the `my_team` list.\n", + "3. For each `member` in `my_team` (assuming `member` is your {term}`loop variable`), add the value of `member[\"years_at_gw\"]` to the `total_years` variable.\n", + "4. Outside the loop, divide the `total_years` variable by the length of the `my_team` list.\n", + "\n", + "For the more **challenging version**, a similar approach could work, with these differences:\n", + "\n", + "- Each textbook's price corresponds to the `\"price_display\"` {term}`key` of a {term}`dictionary`. These dictionaries are stored in a list nested under the dictionary corresponding to each course. \n", + "- Because there are two levels of list -- a list of courses, and under each course, a list of textbooks -- you'll probably want to use a nested for loop.\n", + "- Each price is stored as a string, so you'll want to **convert it to a float** before doing any math with it.\n", + "- You'll also need to keep track -- perhaps in a separate variable -- of the total number of textbooks. Note that `len(bkst_data)` will return the number of **courses**, not the number of textbooks.\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### III.2 Finding the maximum and minimum \n", + "\n", + "For this exercise, feel free to reuse and modify the code you write for exercise III.1." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Try it out!\n", + ":class: try-it-out\n", + "\n", + "**Less challenging**\n", + "\n", + "Use your team dataset to identify the team member with **the longest name** (the string containing the most characters). \n", + "\n", + "**More challenging**\n", + "\n", + "Identify the most expensive and/or the least expensive **textbook** in the bookstore dataset.\n", + "````" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{hint}\n", + ":class: dropdown\n", + "\n", + "This exercise is subtly different from the first. When finding the average, we were computing a single number. Here we want to find the **data element** that satisfies the criterion (e.g., max or minimum price, maximum length of name). \n", + "\n", + "The following considerations may prove important:\n", + "\n", + "1. We'll need to keep track of **both** the maximum (or minumum) value we've seen so far (e.g., price, name length), **and** the textbook or team member associated with that value. One way to do that is to define two variables **outside** of the for loop, for instance:\n", + "```\n", + "max_price = 0\n", + "most_expensive_textbook = {}\n", + "```\n", + "2. **Inside** the for loop -- or the inner for loop, if you're working with the textbook data -- you may want to use an {term}`if statement` to compare the current value to the maximum value you've seen so far, and to update the latter accordingly. \n", + "3. You need to decide how to handle situations where there is more than one data element satisfying the maximum/minimum criterion. One option is to define the variable `most_expensive_textbook` (or `longest_name`) **as a list**, and then to use the list's **append()** method to add a new element to it whenever one satisfies the criterion.\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### III.3 Restructuring Data\n", + "\n", + "When working with data, sometimes we're not trying to find a single answer, like the average price of textbooks or the most expensive textbook. Rather, we want to transform our dataset to make it more useful in answering multiple questions.\n", + "\n", + "In building your team dataset and analyzing the bookstore dataset, you've worked with lists of dictionaries, which is a fairly common data structure you'll encounter in Python (and other languages). It's probably the most intuitive way, for instance, to represent data from a spreadsheet or other tabular format.\n", + "\n", + "The only problem with a list in Python is that as the list grows longer, finding individual elements becomes less efficient. In such cases, it might be more useful to store the data in a dictionary. Even in a **dictionary of dictionaries**, if your data happens to be nested!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Try it out!\n", + ":class: try-it-out\n", + "\n", + "**Less challenging**\n", + "\n", + "Convert the team dataset into a Python dictionary, where each {term}`key` is the team member's name, and the associated {term}`value` is the information you've collected about that team member.\n", + "\n", + "**More challenging**\n", + "\n", + "Imagine that you're managing the bookstore's data, and you get a request from GW Libraries for a dataset they can use to look up books by ISBN. (The [ISBN](https://en.wikipedia.org/wiki/ISBN) is the _International Standard Book Number_; most commercially books published today have an ISBN, which serves as the book's unique identifier.)\n", + "\n", + "Create a Python dictionary out of all the textbooks in the bookstore dataset, where the keys are ISBN's, and the values contain the information about each book. If a book lacks an ISBN, you can leave it out of the dicionary.\n", + "````" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{hint}\n", + "\n", + "To visualize the transformation of the team dataset, the following visual model might be useful:\n", + "\n", + "```{image} https://gwu-libraries.github.io/python-camp/img/list-to-dict.png\n", + ":alt: Diagram with two larger boxes, with three smaller nested inside each. Each smaller box contains labels and information asosciated with each label. The smaller nested boxes are labeled with numbers (0, 1, 2) in the first larger box, representing items in a list, and are labeled with names (Alex, Max, Josh) in the second, representing a dictionary. A large red arrow is pointing from the list box to the dictioanry box\n", + ":width: 250px\n", + ":align: center\n", + "```\n", + "\n", + "You can accomplish this with a single for loop. For the bookstore dataset, the procedure is similar, but you will need to use a nested for loop (because textbooks are nested under courses).\n", + "\n", + "````" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Once you have created your new, dictionary-based dataset, you should be able to use it look up items by their identifier. \n", + "\n", + "For instance, if `my_team_dict` is a dictionary of information about your team, you should be able to write `my_team_dict[\"Alex\"]` to call up the information about a team member named Alex.\n", + "\n", + "And if `isbn_text_dict` is a dictionary of textbooks stored by ISBN, you should be able to enter something like `isbn_text_dict[\"9782370210371\"]` to retrieve the information about that particular book (_Regarde les Lumieres mon Amour_)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Wrap up\n", + "\n", + "Today you did the following:\n", + "\n", + "- Used Python dictionaries to store and update data about your team.\n", + "- Used conditionals, for loops, and the \"counter\" pattern to answers basic questions about a dataset.\n", + "- Transformed the structure of a dataset to facilitate a different kind of access. \n", + "\n", + "In the homework tonight, you'll practice some techniques for troubleshooting code when errors arise.\n", + "\n", + "And tomorrow, for the final day of Python Camp, you'll work with your team to design and write some code from scratch to address a user story that your team comes up with." + ] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.4" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/textbook/notebooks/lessons/2_2_querying_data.ipynb b/textbook/notebooks/lessons/2_2_querying_data.ipynb deleted file mode 100644 index c384ad4..0000000 --- a/textbook/notebooks/lessons/2_2_querying_data.ipynb +++ /dev/null @@ -1,629 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Querying Textbook Data" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Objectives\n", - "\n", - "- To use lists, loops, and conditionals to answer basic questions about a dataset\n", - "- To design data structures with specific purposes (use cases) in mind" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "tags": [ - "instructor", - "remove-cell" - ] - }, - "source": [ - "
\n", - "\n", - "\n", - "## Lesson Plan\n", - "\n", - "Instructors should review the material in the `Preliminaries` section with the whole group, before giving teams their assignments.\n", - "\n", - "#### First exercise\n", - "\n", - "Solicit examples from the group. Make sure to demonstrate the case of equality, emphasizing the double equals sign, e.g.,\n", - "\n", - "`book_price == 55` \n", - "\n", - "It may help also to point out that just as we saw that it's not possible to add a `str` value and an `int` (or `float`), we also can't compare string and numeric types:\n", - "\n", - "```\n", - "'$55.99' > 60\n", - "```\n", - "The code above will produce a `TypeError`.\n", - "\n", - "-------------\n", - "\n", - "#### if statements\n", - "\n", - "Make sure to take questions at this point. In particular, the implications of the third rule above may not be immediately apparent to learners. An example may help:\n", - "\n", - "```\n", - "pub_price = 100.99\n", - "on_sale = True\n", - "if pub_price > 100 and on_sale:\n", - " retail_price = pub_price * 1.25\n", - "elif on_sale:\n", - " retail_price = pub_price * 1.35\n", - "else:\n", - " retail_price = pub_price * 1.40\n", - " \n", - "```\n", - "In this example, we calculate retail price from a publisher's price, using a markup percentage. The percentage to be applied depends on whether or not the book is on sale, with an extra discount for books over $100 that are on sale.\n", - "\n", - "If we didn't put the compound condition in the first position (`if pub_price > 100 and on_sale`), then sale books over $100 would not get the appropriate discount. \n", - "\n", - "----------------\n", - "\n", - "#### for loops/counter pattern\n", - "\n", - "(for instructors)\n", - "\n", - "Point out that the `print()` statements emphasize the fact that the `counter` variable is incremented by the loop, so that it goes from 0 to 1250 (the number of items in the list).\n", - "\n", - "Point out that this code essentially does the same thing as `len(bkst_data)`. \n", - "\n", - "-----------------\n", - "\n", - "\n", - "#### Team activity 1\n", - "\n", - "Solutions should look something like the following:\n", - "\n", - "```\n", - "with_texts = 0\n", - "for course in bkst_data:\n", - " if len(course['texts']) > 0:\n", - " with_texts += 1\n", - "print('Percentage of courses with textbooks:', with_texts / len(bkst_data)) \n", - "```\n", - "\n", - "Take a moment to review solutions from the teams before proceeding to the next activity. \n", - "\n", - "Highlight the levels of indentation involved with the `if` statement.\n", - "\n", - "------------------\n", - " \n", - "#### Team activity 2\n", - "\n", - "Have each team share either their solution OR where they go stuck (if they did not find a solution).\n", - "\n", - "The following code represents one possible solution:\n", - "```\n", - "most_expensive = 0 # Initialize variable to track most expensive seen\n", - "for course in bkst_data: # Loop over courses (outer loop)\n", - " for text in course['texts']: # Loop over textbooks (inner loop)\n", - " price = float(text['price_display'][1:]) # Slice string, convert to float\n", - " if price > most_expensive: # Compare this price with most expensive\n", - " most_expensive = price # Update if necessary\n", - "print('Most expensive textbook costs', most_expensive)\n", - "```\n", - "It may be worth pointing out that when `course['texts']` is empty, the line `for book in course['texts']:` will simply exit without iterating (as opposed to throwing an error). This is useful, since it means we don't need explicitly to check for a list length > 0.\n", - "\n", - "------------------\n", - "\n", - "#### Team activity 3\n", - "\n", - "Possible solution to the first question: Can you and your team adapt the preceding solution so as to identify _the course_ with the most expensive textbook? \n", - "\n", - "\n", - "```\n", - "most_expensive = 0 \n", - "most_exp_course = {}\n", - "for course in bkst_data: \n", - " for text in course['texts']: \n", - " price = float(text['price_display'][1:]) \n", - " if price > most_expensive: \n", - " most_expensive = price \n", - " most_exp_course = course\n", - "print('Course with the most expensive textbook:', most_exp_course) \n", - "```\n", - "\n", - "Possible solution to the second above: What about the _title_ and _author_ of the most expensive textbook?\n", - "\n", - "```\n", - "most_expensive = 0 \n", - "most_exp_text = {}\n", - "for course in bkst_data: \n", - " for text in course['texts']: \n", - " price = float(text['price_display'][1:]) \n", - " if price > most_expensive: \n", - " most_expensive = price \n", - " most_exp_text['title'] = text['title']\n", - " most_exp_text['author'] = text['author']\n", - "print('The most expensive textbook:', most_exp_text) \n", - "```\n", - "\n", - "If teams get stuck, it may help to explain that all this problem requires is the use of an additional variable to keep track of which course/text is the most expensive. It is perhaps most straightfoward to create a dictionary for this second variable, since the information that we want (describing the course and/or the text) is already in this form. \n", - "\n", - "#### Wrap up\n", - "\n", - "Review how to submit the homework to GH classroom.\n", - "\n", - "
" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Preliminaries\n", - "\n", - "Before we return to our textbook dataset, we will introduce one new piece of Python syntax and review a common programming pattern. " - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Conditionals & Boolean values\n", - "\n", - "In a very abstract sense, a computer is a machine for implementing binary logic. In binary logic, the only values allowed are `1`'s and `0`'s, which represent `True` and `False`, respectively. \n", - "\n", - "Thus, at some level, _everything_ we do in computation can be reduced to `True` or `False` (from the computer's perspective). But from a programmer's perspective, this usually only matters in situations where we want the program to do different things based on certain conditions that may or may not obtain. These cases are called **conditional expressions**. \n", - "\n", - "For instance, we can tell Python to compare two numbers, using the standard operators you might remember from your math courses: greater than, less than, equal to, etc.\n", - "\n", - "Note that in Python, we represent equality by the **double equals sign** (`==`). A single equals sign is reserved for {term}`variable` assignment." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Running the code below should return `True`, which is one of two special Python values called **Boolean values** (so named because the binary logic that computers implement was invented by the mathematician George Boole)." - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "True" - ] - }, - "execution_count": 1, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "book_price = 55.99 # Assignment: single equals sign\n", - "book_price < 60" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{admonition} Try it out!\n", - ":class: try-it-out\n", - "\n", - "Write an expression with the `book_price` variable that returns `False`.\n", - "\n", - "````" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### `if` statements\n", - "\n", - "Usually, we want to do more than evaluate whether an expression (like `book_price < 60`) is `True` or `False`. Usually, we want the program to _take some action_ based on the outcome of that evaluation.\n", - "\n", - "For this, we use an **if statement**. \n", - "\n", - "To print a message if the value of the `book_price` variable is above a certain threshhold, we can write the following:" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "if book_price > 100:\n", - " print(\"That's an expensive textbook!\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Running the code above produces no output, at least not if `book_price` is assigned as above (to the {term}`float` value `55.99`). \n", - "\n", - "If we change the value of `book_price` so that the condition is `True`, we should see the intended message:" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "That's an expensive textbook!\n" - ] - } - ], - "source": [ - "book_price = 101.99\n", - "if book_price > 100:\n", - " print(\"That's an expensive textbook!\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "What if we want to check for books within a certain range of prices? \n", - "\n", - "We can use the **Boolean operator** `and` to do this. The `and` operator links two conditions: if both sub-conditions are `True`, then the whole condition (with the `and`) is also `True`. Otherwise, it is `False`. \n", - "\n", - "The other common Boolean operators are `or` and `not`. `or` is `True` if _at least one_ sub-condition is `True`. `not` flips (inverts) a condition: so `not True` is `False`." - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Not too expensive\n" - ] - } - ], - "source": [ - "book_price = 55.99\n", - "if book_price >= 20 and book_price <= 100:\n", - " print(\"Not too expensive\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In the examples above, our code either performed an action or not, depending on a single condition. We can also specify multiple conditions, only one of which can be true. For example, if `book_price` is between `20` and `100`, the following code will print `Not too expensive`), but it will print other messages if `book_price` is less than `20` or greater than `100`." - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Not too expensive\n" - ] - } - ], - "source": [ - "if book_price >= 20 and book_price <= 100:\n", - " print(\"Not too expensive\")\n", - "elif book_price < 20:\n", - " print(\"That's a relatively cheap textbook.\")\n", - "else:\n", - " print(\"That's an expensive textbook!\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{admonition} Notes\n", - ":class: notes\n", - "\n", - "Here are some rules of thumb for writing `if` statements in Python:\n", - "- You can have as many `elif` statements as you want, provided they follow an `if` statement.\n", - "- The `else` statement is a catch-all: it will be executed if none of the preceding `if` or `elif` statements evaluates to `True`.\n", - "- Otherwise, the _first_ `if`/`elif` statement that is `True` will be executed, and _all the rest_ will be ignored. In other words, if the conditions you're testing for are not mutually exclusive, you should write the most specific test first. \n", - "- Each `if`/`elif`/`else` statement ends with a colon and is followed by an indented {term}`block` of code. This is the same pattern we saw with `for` loops. \n", - "\n", - "````" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### A `for` loop pattern\n", - "\n", - "A very common use of a {term}`for loop` in Python is to count, aggregate, or otherwise keep track of certain values when processing a list. \n", - "\n", - "We've seen a version of this pattern before: in the homework, you use a loop to convert some prices from strings to floats and then to adjust the price with sales tax. You collected the adjusted prices in a new list.\n", - "\n", - "In the example below, we'll use this pattern to keep track of a single value. The value we're tracking will simply be the number of items in the list.\n", - "\n", - "We'll use our bookstore dataset, so the first step is to read the file into Python from disk." - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [], - "source": [ - "from urllib.request import urlretrieve\n", - "import json\n", - "urlretrieve('https://go.gwu.edu/pythoncampdata', 'bookstore-data.json')\n", - "with open('bookstore-data.json') as f:\n", - " bkst_data = json.load(f)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To use this pattern, you usually have at least _three_ variables to deal with:\n", - "1. The variable that holds your list (`bkst_data`)\n", - "2. A loop variable (`course` in the code below)\n", - "3. A variable defined _before_ the loop that will be used to track or accumulate values. Since this loop is just counting items, we'll call this variable `counter`. We set `counter` initially to `0`, since before we run the loop, we haven't counted any items.\n", - "\n", - "Note also that `counter += 1` is shorthand for `counter = counter + 1`. Either way of writing that expression is fine." - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Counter before loop 0\n", - "Counter after loop 1250\n" - ] - } - ], - "source": [ - "counter = 0\n", - "print(\"Counter before loop\", counter)\n", - "for course in bkst_data:\n", - " counter += 1\n", - "print(\"Counter after loop\", counter)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Team Activities\n", - "\n", - "### 1. Counting over data\n", - "\n", - "As we say on Day 1, not all courses report textbooks to the bookstore.\n", - "\n", - "**Question**: _What percentage of courses have reported textbooks?_ " - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{admonition} Try it out!\n", - ":class: try-it-out\n", - "\n", - "Working with your team, write some code that will answer that question, using the`bkst_data` dataset. Below you can expand the hidden cell for some hints. But before you do that, make sure your team discusses the _logic_ you might use to approach this problem. \n", - "\n", - "Here are some questions that can help:\n", - "\n", - "- A percentage expresses a relationship between two quantities. What are the two quantites involved in calculating this percentage?\n", - "- How can you adapt the previous \"counter\" pattern to this task?\n", - "- You want to count those items in the list that meet a certain condition. What is that condition?\n", - "\n", - "And if you get stuck, one of the Python Camp facilitators will be happy to help!\n", - "\n", - "````" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "solution2": "hidden", - "solution2_first": true - }, - "outputs": [], - "source": [ - "# Your code here" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "solution2": "hidden" - }, - "source": [ - "````{hint}\n", - ":class: dropdown\n", - "- The textbooks associated with each course comprise a list.\n", - "- That list is associated with the `texts` key in the dictionary that represents each course in `bkst_data`.\n", - "- If there are not textbooks for a given course, the `texts` list will be empty.\n", - "- We can find the length of a list using the `len` function.\n", - "- An empty list has a length of 0.\n", - "- This exercise requires you to use an `if` statement inside a `for` loop. \n", - "\n", - "````" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### 2. Querying nested data\n", - "\n", - "This next activity is a little more challenging. \n", - "\n", - "**Question**: _What is the cost of the most expensive textbook?_" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{admonition} Try it out!\n", - ":class: try-it-out\n", - "\n", - "Working with your team, write some code that will answer this question, using the`bkst_data` dataset. \n", - "\n", - "````" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{hint}\n", - ":class: dropdown\n", - "Here are some hints upfront. As before, make sure you discuss the logical approach with your team before writing any code.\n", - "\n", - "- In a variation on the \"counter\" pattern we've used above, instead of incrementing the counter variable, we simply replace it whenever a certain condition is met. In other words, we can use a counter variable to keep track of the most expensive textbook we've seen so far, as we loop through the list.\n", - "\n", - "\n", - "- Since the textbooks for each course are in a list nested within the course dictionary, we'll need to use **nested** `for` loops. Below is an example -- merely to illustrate the concept -- that multiples each of the first three positive numbers by each of the second three (and prints the products):\n", - "```\n", - "for i in [1, 2, 3]:\n", - " for j in [4, 5, 6]:\n", - " print(i*j) # Output: 4, 5, 6, 8, 10, 12, 12, 15, 18\n", - "```\n", - "\n", - "\n", - "- In the homework, you wrote some code to convert a book price from its string representation to a `float`. You'll need to do the same thing here in order to compare prices. \n", - "\n", - " For example, run this expression in a code cell below: `'$100.99' > '$11.99'`. The output should be `False`. Can you guess why?\n", - " \n", - "````" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### 3. More queries\n", - "\n", - "**Questions**\n", - "\n", - "1. Can you and your team adapt the preceding solution so as to identify _the course_ with the most expensive textbook? \n", - "\n", - "\n", - "\n", - "2. What about the _title_ and _author_ of the most expensive textbook?" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{admonition} Try it out!\n", - ":class: try-it-out\n", - "\n", - "Working with your team, write some code that will answer these questions. If you want some hints, please just ask one of the facilitators!\n", - "\n", - "````" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Wrap up\n", - "\n", - "Today you did the following:\n", - "\n", - "- Used Python dictionaries to store and update data about your team.\n", - "- Used conditionals, `for` loops, and the \"counter\" pattern to answers basic questions about the textbook dataset. \n", - "\n", - "In the homework tonight, you'll build on this knowledge to practice more ways of interacting with the textbook data. You'll also some learn some new tools to help you take your \n", - "\n", - "Tonight's homework has two parts:\n", - "\n", - "1. A section with self-guided exercises for you to do on your own. In your teams tomorrow, you'll build on the skills introduced in these exercises. \n", - "2. A shorter section of autograded exercises which you will submit to our GitHub Classroom site to record your score. You can resubmit the exercises as many times as you like. Those who successfully complete the autograded homework exercises will receive a certificate of completion at the end of Python Camp. " - ] - } - ], - "metadata": { - "celltoolbar": "Tags", - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.4" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/textbook/notebooks/lessons/3_1_from_story_to_code.ipynb b/textbook/notebooks/lessons/3_1_from_story_to_code.ipynb index e7b91dc..c36a69c 100644 --- a/textbook/notebooks/lessons/3_1_from_story_to_code.ipynb +++ b/textbook/notebooks/lessons/3_1_from_story_to_code.ipynb @@ -116,7 +116,7 @@ "````{admonition} Try it out!\n", ":class: try-it-out\n", "\n", - "With you team, develop at least one user story about our bookstore dataset. The users in your story can be whoever you like, but it should be something that can be addressed using the dataset we worked with on Days 1 and 2.\n", + "With you team, develop at least one user story about our bookstore dataset. The users in your story can be whoever you like, but it should be something that can be addressed using the dataset we worked with on Days 1, 2 and 3.\n", "\n", "\n", "Don't worry about details of implementation at this point: just focus on the who, what, and why, following the template:\n", @@ -134,18 +134,34 @@ "\n", "### II.1 Planning \n", "\n", - "Your team's task now is to select a user story and start implementing it in code. \n", + "Your team's task now is to select a user story and implement it in Python code. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "````{admonition} Choose your own adventure\n", "\n", - "Choose a user story that your team wrote, or that was written by another team. \n", + "Choose a user story that your team wrote, or one that was written by another team. \n", "\n", - "Alternately, pick one of the following to implement:\n", + "Alternately, pick one of the following user stories to implement. The prompts below are arranged in order of increasing difficulty. If up to this point, your team has worked mainly with the smaller, team-based dataset, you might want to start with the first of these user stories, which will get you working with the more complex bookstore dataset but in a more manageable way.\n", "\n", - "- As a student, I want to see summary statistics about textbook cost by department, so that I can know what to expect from various possible majors: e.g, average textbook cost, most expensive textbook, least expensive textbook, etc.\n", + "If you worked through yesterday's challenges on the bookstore dataset and feel fairly comfortable with it, feel free to pick one of the more advanced prompts, or to work on your own user story.\n", "\n", + "**Prompts**\n", "\n", - "- As a librarian, I want to enter an ISBN (the unique 10- or 13-digit number publishers use to identify their books) and see which courses at GW require that text, so that I can anticipate demand on library reserves.\n", + "1. As a librarian, I would like to have a dataset of textbooks arranged by publisher, so that I can look up a publisher by name and see a list of their textbooks in use at GW.\n", "\n", - "Once your team has agreed upon a user story, work together to develop a plan for implementation. The questions below can help you get started." + "2. As a student, I want to see summary statistics about textbook cost by department, so that I can know what to expect from various possible majors: e.g, average textbook cost, most expensive textbook, least expensive textbook, etc.\n", + "\n", + "3. As a bookstore manager, my inventory would be a lot easier to work with if I had it in a spreadsheet. I want to have a {term}`CSV` file of the bookstore dataset, so that I can open it in Excel or Sheets and filter by elements like department code, course number, textbook publisher, etc.\n", + "\n", + "4. As a writer for the _GW Hatchet_, I am writing a story about textbook affordability, and I'd like to know how many textbooks for the Fall 2023 semester have been placed on course reserve with the GW Libraries. I have obtained a [dataset of course reserves](https://raw.githubusercontent.com/gwu-libraries/python-camp/gh-pages/data/reserves-data-fall-2023.csv) from the Libraries, which includes the ISBNs of books on reserve. \n", + "\n", + "Once your team has agreed upon a user story, work together to develop a plan for implementation. The questions below can help you get started.\n", + "\n", + "````" ] }, { @@ -158,13 +174,13 @@ "1. Is there more than one way to interpret this user story? If so, the team should document the different interpretations but then choose one to work with.\n", "\n", "\n", - "2. What tools and techniques can we apply to this problem? (Think about the Python data and control structures you've encountered so far: lists, dictionaries, `for` loops, and conditionals.)\n", + "2. What tools and techniques can we apply to this problem? (Think about the Python data and control structures you've encountered so far: lists, dictionaries, for loops, functions, and conditionals.)\n", "\n", "\n", "3. What challenges might arise during implementation? Since this user story concerns our bookstore dataset, are there aspects of that dataset that might pose problems? \n", "\n", "\n", - "4. What would a **minimal implementation** look like that would satisfy this user story? \n", + "4. What would a minimal implementation look like that would satisfy this user story? \n", "\n", " For example, if my user story is about students' looking up courses to identify required texts, I might start thinking about a website with a search feature, a browse feature, etc. But a _minimal_ implementation might be a Python {term}`dictionary`. Why? Because a Python dictionary is a data structure that can associate data with certain keys (like course identifiers).\n", " \n", @@ -225,43 +241,44 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "````{admonition} Implementation Notes\n", - ":class: notes\n", + "````{hint} Reading and writing CSV files\n", + ":class: dropdown\n", "\n", - "If your team chose either of the user stories provided above, the following may help.\n", + "Python includes a special {term}`module` for working with {term}`CSV` files. Like the `json` module that we've used up to now, we need to import the CSV module before we can use it.\n", "\n", + "```\n", + "import csv\n", + "```\n", "\n", - "- This task involves transforming one complex data structure into another. You'll need to use {term}`for loop`s. \n", + "**Reading from CSV**\n", "\n", + "To read from a CSV file on the web (which will normally have the `.csv` extension), we save a copy locally first, open the file, and then read in the data line by line. The code below, which stores the contents of a CSV file of course-reserves data in a variable called `reserves`, is a little more complex than the code for reading a JSON file, primarily because we have to read from the file in a loop. \n", + "```\n", + "urlretrieve('https://raw.githubusercontent.com/gwu-libraries/python-camp/gh-pages/data/reserves-data-fall-2023.csv', 'reserves-data.csv')\n", + "reserves = []\n", + "with open('reserves-data.csv') as f:\n", + " reader = csv.DictReader(f)\n", + " for row in reader:\n", + " reserves.append(row)\n", + "```\n", + "The `csv.DictReader` object will create a Python dictionary from every row in the CSV file, where the dictionary keys are the column headings, and the values are the data in that row. (This assumes that the first row of the CSV file contains column headings, which may not always be the case.)\n", + "\n", + "**Writing (saving) to CSV**\n", + "\n", + "To save data in CSV format, we perform a similar process. When using `csv.DictWriter`, as below, our dataset needs to consist of a list of dictionaries, where every dictionary has the same keys. A list of this keys constitutes the `fieldnames` argument of the `writeheader()` method, which we call to create the header row.\n", + "\n", + "In the example below, we save a Python list called `bkst_data_csv` to a CSV file called `bookstore-data.csv`.\n", + "\n", + "```\n", + "with open('bookstore-data.csv', 'w') as f:\n", + " fieldnames = bkst_data_csv[0].keys()\n", + " writer = DictWriter(f, fieldnames)\n", + " writer.writeheader()\n", + " for row in bkst_data_csv:\n", + " writer.writerow(row)\n", + "```\n", "\n", - "- To associate one discrete piece of information (a department code, or an ISBN) with other pieces of information, a **nested dictionary** can be useful. In a nested dictionary, each {term}`key` is associated with something other than a single {term}`value` (like a string or a float).\n", - " - This could be a {term}`list`.\n", - " - Or another dictionary.\n", - " - Or even another nested dictionary!\n", - " \n", - " \n", - "- Keep in mind that you can't {term}`append` to a list (or update a dictionary) that doesn't exist. So your code will have to handle those cases where a given key has not been encountered before.\n", - " - To test whether a key exists in a dictionary, we can use Python's `in` keyword in the context of a {term}`Boolean expression`:\n", - " ```\n", - " if 'name' in my_dict: # 'name' may or may not be a key in my_dict\n", - " [do something]\n", - " else:\n", - " [do something else]\n", - " ```\n", - "````" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "````{admonition} More Implementation Notes\n", - ":class: notes\n", "\n", - "An analogy might help illustrate the last point. Imagine you and a friend are packing up your kitchen prior to a move. Your friend (acting here like a Python `for` loop) is handing you one item after another from the kitchen. You're putting the items in boxes. You want to keep like things in the same box: plates in one box, glasses in another, utensils in a third, etc.\n", - " 1. Your friend hands you a glass: there's already a \"Glasses\" box, so in it goes.\n", - " 2. Your friend hands you a saucepan. You don't yet have a saucepan box, so you need to create one before you can pack the saucepan.\n", - " \n", "````" ] }, @@ -269,20 +286,45 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "````{admonition} Even More Implementation Notes\n", + "````{hint} Comparing lists\n", + ":class: dropdown\n", "\n", - "A final hint: you don't have to do everything all at once (inside the same `for` loop). \n", + "Two lists in Python, even if they contain nested elements, are considered equal only if they are **exact duplicates** of one another. As a minimal example, the following code produces the result `False` because `l1` and `l2` have the same elements but in different order.\n", "\n", - "For example, if you're computing averages, it might easier to use two separate loops:\n", - "1. In the first loop, collect all the quantities to be averaged, using lists. If you're using a dictionary as your outer data structure, you can associate each list with a different key.\n", - "2. In a second loop -- after the first loop is finished -- you can loop over the dictionary from step 1, finding the average of the quantities in each list.\n", - "3. To loop over a dictionary, you can use the following pattern:\n", - " ```\n", - " # The loop variable holds each key in the dictionary in sequence\n", - " for key in my_dict: \n", - " print(my_dict[key]) # Prints the value associated with each key\n", - " ```\n", + "```\n", + "l1 = [1, 2, 3]\n", + "l2 = [3, 1, 2]\n", + "l1 == l2 # This is False\n", + "```\n", + "Often when comparing lists, what we want to know is not, \"Are these lists equal according to Python?\" but rather, \"Do these lists have the same elements?\" or \"Which elements are present in both lists?\"\n", "\n", + "Below is an example of a function that answers the second question:\n", + "\n", + "```\n", + "def find_overlap(l1, l2):\n", + " overlap = []\n", + " for item in l1:\n", + " if item in l2:\n", + " overlap.append(item)\n", + " return overlap\n", + "```\n", + "We could use this function like so:\n", + "```\n", + "l1 = [1, 2, 3, 4]\n", + "l2 = [2, 4, 6, 8]\n", + "# This will print the list [2, 4]\n", + "print(find_overlap(l1, l2))\n", + "```\n", + "Note that this approach works best when the two lists contain numeric values or strings as their top-level elements. \n", + "\n", + "In fact, when that's the case, we can take an even more expeditious approach, using a Python data type we haven't seen so far: the {term}`set`. \n", + "\n", + "Let's say we have two lists of ISBN's. Both are lists of strings. The following code finds the overlap between those two lists, returning a set of unique elements that are in both lists.\n", + "\n", + "```\n", + "unique_isbns = set(isbn1) & set(isbn2)\n", + "```\n", + "Read more about Python sets in the [documentation](https://docs.python.org/3.11/library/stdtypes.html#set-types-set-frozenset)\n", "````" ] }, diff --git a/textbook/parsons-assets/parsons-problems/html/homework-1-1.html b/textbook/parsons-assets/parsons-problems/html/homework-1-1.html index fd16a2e..badea00 100644 --- a/textbook/parsons-assets/parsons-problems/html/homework-1-1.html +++ b/textbook/parsons-assets/parsons-problems/html/homework-1-1.html @@ -22,6 +22,17 @@

+

Problem Setup

+
+

Assume that the following code has run already in this session.

+ +

+
+book_prices = ['$55.99', '$119.95', '$13.95']
+
+
+
+

Compose your code here

@@ -30,31 +41,25 @@

Compose your code here

- print(price_num) + price_num = price[1:]
- price_num = price[1:] + print(price_num)
- for price in book_prices: -
-
- -
-
price_num = float(price_num) * 1.1
-
- book_prices = ['$55.99', '$119.95', '$13.95'] +
+ for price in book_prices:
@@ -98,15 +103,6 @@

Compose your code here

-
- - -
- -
- -
-
diff --git a/textbook/parsons-assets/parsons-problems/html/homework-1-2.html b/textbook/parsons-assets/parsons-problems/html/homework-1-2.html index 4c2a024..941e3e1 100644 --- a/textbook/parsons-assets/parsons-problems/html/homework-1-2.html +++ b/textbook/parsons-assets/parsons-problems/html/homework-1-2.html @@ -43,31 +43,31 @@

Compose your code here

- depts = [] + for course in courses:
- course_info = course.split() + depts.append(course_info[0])
- for course in courses: + course_info = course.split()
- print(depts) + depts = []
- depts.append(course_info[0]) + print(depts)
diff --git a/textbook/parsons-assets/parsons-problems/html/homework-2-GR.html b/textbook/parsons-assets/parsons-problems/html/homework-2-GR.html index b74d6be..42418fa 100644 --- a/textbook/parsons-assets/parsons-problems/html/homework-2-GR.html +++ b/textbook/parsons-assets/parsons-problems/html/homework-2-GR.html @@ -10,7 +10,7 @@

Parsons Problem

- write some code that will transform the data in the courses list into a list of dictionaries called courses_db. Each dictionary should have the same three keys: dept, course, and section. And there should be one dictionary for each of the courses in the original courses list. + write some code that will transform the data in the courses list into a list of dictionaries called courses_db. Each dictionary should have the same four keys: dept_code, course_code, section, and instructor. And there should be one dictionary for each of the courses in the original courses list.

  1. In the space below, drag lines of code from the rows on the left to the empty rows on the right.
  2. @@ -28,9 +28,7 @@

    Problem Setup

    
     
    -courses = ['CHEM 1001 10', 'CHEM 1002, 10', 'CHEM 1002 11', 'BISC 1100 10', 'BISC 1102 10', 'PSC 2001 10',
    -
    -        'PSC 2001 11', 'PSC 2001 12', 'WSTU 6999 10', 'WSTU 6999 11']
    +courses = ['CHEM 1001 10 Mack', 'CHEM 1002, 10 Srinivasan', 'CHEM 1002 11 Mack', 'BISC 1100 10 Liu', 'BISC 1102 10 Thomson', 'PSC 2001 10 Wolters', 'PSC 2001 11 Rath', 'PSC 2001 12 Cho', 'WSTU 6999 10 Cho', 'WSTU 6999 11 Delaney']
     
     
@@ -43,55 +41,61 @@

Compose your code here

- courses_db.append(course_dict) + courses_db = []
- course_dict['dept'] = course_info[0] + course_info = course.split()
- course_info = course.split() + print(courses_db)
- for course in courses: + course_dict['instructor'] = course_info[3]
- courses_db = [] + courses_db.append(course_dict)
- print(courses_db) + for course in courses:
- course_dict = {} + course_dict['section'] = course_info[2]
- course_dict['section'] = course_info[2] + course_dict['dept_code'] = course_info[0]
- course_dict['course'] = course_info[1] + course_dict = {} +
+
+ +
+
+ course_dict['course_num'] = course_info[1]
@@ -180,6 +184,15 @@

Compose your code here

+
+ + +
+ +
+ +
+
diff --git a/textbook/parsons-assets/parsons-problems/html/lessons-2-1-1.html b/textbook/parsons-assets/parsons-problems/html/lessons-2-1-1.html index 523fa4d..4e65827 100644 --- a/textbook/parsons-assets/parsons-problems/html/lessons-2-1-1.html +++ b/textbook/parsons-assets/parsons-problems/html/lessons-2-1-1.html @@ -22,6 +22,17 @@

+

Problem Setup

+
+

Assume that the following code has run already in this session.

+ +

+
+team = [{'name': 'Alex', 'state': 'DC'}, {'name': 'Marcus', 'state': 'VA'}]
+
+
+
+

Compose your code here

@@ -30,13 +41,13 @@

Compose your code here

- print(team) + person['programming_languages'] = ['Python']
- team = [{'name': 'Alex', 'state': 'DC'}, {'name': 'Marcus', 'state': 'VA'}] + print(team)
@@ -46,12 +57,6 @@

Compose your code here

-
-
- person['programming_languages'] = ['Python'] -
-
-
@@ -83,15 +88,6 @@

Compose your code here

-
- - -
- -
- -
-
diff --git a/textbook/parsons-yaml/homework-1-1.yml b/textbook/parsons-yaml/homework-1-1.yml index 549ab63..e7c719f 100644 --- a/textbook/parsons-yaml/homework-1-1.yml +++ b/textbook/parsons-yaml/homework-1-1.yml @@ -1,5 +1,6 @@ -python_code: | +python_setup: | book_prices = ['$55.99', '$119.95', '$13.95'] +python_code: | for price in book_prices: price_num = price[1:] price_num = float(price_num) * 1.1 diff --git a/textbook/parsons-yaml/homework-2-GR.yml b/textbook/parsons-yaml/homework-2-GR.yml index ce40497..6c2cdd0 100644 --- a/textbook/parsons-yaml/homework-2-GR.yml +++ b/textbook/parsons-yaml/homework-2-GR.yml @@ -1,15 +1,15 @@ python_setup: | - courses = ['CHEM 1001 10', 'CHEM 1002, 10', 'CHEM 1002 11', 'BISC 1100 10', 'BISC 1102 10', 'PSC 2001 10', - 'PSC 2001 11', 'PSC 2001 12', 'WSTU 6999 10', 'WSTU 6999 11'] + courses = ['CHEM 1001 10 Mack', 'CHEM 1002, 10 Srinivasan', 'CHEM 1002 11 Mack', 'BISC 1100 10 Liu', 'BISC 1102 10 Thomson', 'PSC 2001 10 Wolters', 'PSC 2001 11 Rath', 'PSC 2001 12 Cho', 'WSTU 6999 10 Cho', 'WSTU 6999 11 Delaney'] python_code: | courses_db = [] for course in courses: course_info = course.split() course_dict = {} - course_dict['dept'] = course_info[0] - course_dict['course'] = course_info[1] + course_dict['dept_code'] = course_info[0] + course_dict['course_num'] = course_info[1] course_dict['section'] = course_info[2] + course_dict['instructor'] = course_info[3] courses_db.append(course_dict) print(courses_db) problem: > - write some code that will transform the data in the courses list into a list of dictionaries called courses_db. Each dictionary should have the same three keys: dept, course, and section. And there should be one dictionary for each of the courses in the original courses list. \ No newline at end of file + write some code that will transform the data in the courses list into a list of dictionaries called courses_db. Each dictionary should have the same four keys: dept_code, course_code, section, and instructor. And there should be one dictionary for each of the courses in the original courses list. \ No newline at end of file diff --git a/textbook/parsons-yaml/lessons-2-1-1.yml b/textbook/parsons-yaml/lessons-2-1-1.yml index ad9b92c..838b60e 100644 --- a/textbook/parsons-yaml/lessons-2-1-1.yml +++ b/textbook/parsons-yaml/lessons-2-1-1.yml @@ -1,5 +1,6 @@ -python_code: | +python_setup: | team = [{'name': 'Alex', 'state': 'DC'}, {'name': 'Marcus', 'state': 'VA'}] +python_code: | for person in team: person['programming_languages'] = ['Python'] print(team) diff --git a/textbook/static-assets/data/bookstore-data-fall-2023.json b/textbook/static-assets/data/bookstore-data-fall-2023.json new file mode 100644 index 0000000..5236573 --- /dev/null +++ b/textbook/static-assets/data/bookstore-data-fall-2023.json @@ -0,0 +1,118883 @@ +[ + { + "department": "BME", + "course_num": "3825", + "section": "10", + "instructor": "Hyung Choe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6503", + "section": "10", + "instructor": "Paul Scovazzo", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Environmental Engineering Science", + "edition": "N/A", + "author": "Nazaroff", + "isbn": "9780471144946", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2001", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$108.60", + "item_type": "print" + }, + { + "title": "Environmental Engineering Science", + "edition": "N/A", + "author": "Nazaroff", + "isbn": "9780471144946", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2001", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$203.75", + "item_type": "print" + }, + { + "title": "Environmental Engineering Science", + "edition": "N/A", + "author": "Nazaroff", + "isbn": "9780471144946", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2001", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$271.50", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "3301W", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1003", + "section": "31", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "GWU AMILLS Chem 1003 (CUSTOM)", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781305770218", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning Custom Publishing (EMAIL ORDERS)", + "type_condition": "BUY_NEW", + "price_display": "$70.25", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "EAP", + "course_num": "6111", + "section": "11", + "instructor": "Natalia Dolgova", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Academic Writing for Graduate Students", + "edition": "3rd", + "author": "Swales", + "isbn": "9780472034758", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "University of Michigan Press", + "type_condition": "RENTAL_USED", + "price_display": "$10.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Academic Writing for Graduate Students", + "edition": "3rd", + "author": "Swales", + "isbn": "9780472034758", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "University of Michigan Press", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Academic Writing for Graduate Students", + "edition": "3rd", + "author": "Swales", + "isbn": "9780472034758", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "University of Michigan Press", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "FREN", + "course_num": "3100W", + "section": "10", + "instructor": "Masha Belenky", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Regarde les Lumieres mon Amour", + "edition": "N/A", + "author": "Ernaux", + "isbn": "9782370210371", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Imprt", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Regarde les Lumieres mon Amour", + "edition": "N/A", + "author": "Ernaux", + "isbn": "9782370210371", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Imprt", + "type_condition": "BUY_NEW", + "price_display": "$14.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Le Jeu de l'amour et du hasard (Larousse)", + "edition": "N/A", + "author": "Marivaux", + "isbn": "9782035859150", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Imprt", + "type_condition": "BUY_USED", + "price_display": "$5.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Le Jeu de l'amour et du hasard (Larousse)", + "edition": "N/A", + "author": "Marivaux", + "isbn": "9782035859150", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Imprt", + "type_condition": "BUY_NEW", + "price_display": "$6.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Le Jeu de l'amour et du hasard (Larousse)", + "edition": "N/A", + "author": "Marivaux", + "isbn": "9782035859150", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Imprt", + "type_condition": "RENTAL_NEW", + "price_display": "$5.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Boule de Suif (Larousse #50)", + "edition": "N/A", + "author": "Maupassant", + "isbn": "9782035834232", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "International Book Import Service, Incorporated EMAIL ORDERS", + "type_condition": "BUY_USED", + "price_display": "$5.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Boule de Suif (Larousse #50)", + "edition": "N/A", + "author": "Maupassant", + "isbn": "9782035834232", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "International Book Import Service, Incorporated EMAIL ORDERS", + "type_condition": "BUY_NEW", + "price_display": "$6.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kiffe Kiffe Demain", + "edition": "N/A", + "author": "Guene", + "isbn": "9782012490185", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "MEP INC", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kiffe Kiffe Demain", + "edition": "N/A", + "author": "Guene", + "isbn": "9782012490185", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "MEP INC", + "type_condition": "BUY_NEW", + "price_display": "$12.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kiffe Kiffe Demain", + "edition": "N/A", + "author": "Guene", + "isbn": "9782012490185", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "MEP INC", + "type_condition": "RENTAL_NEW", + "price_display": "$8.42", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Colonel Chabert", + "edition": "N/A", + "author": "Balzac", + "isbn": "9782035873996", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Imprt", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Colonel Chabert", + "edition": "N/A", + "author": "Balzac", + "isbn": "9782035873996", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Imprt", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "3513", + "section": "10", + "instructor": "Barbara Miller", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "6104", + "section": "10", + "instructor": "Scott Lancaster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ARAB", + "course_num": "1001", + "section": "13", + "instructor": "Francesco Sinatora", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Al-Kitaab Part One with Website PB (Lingco): A Textbook for Beginning Arabic", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121877", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$163.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_NEW", + "price_display": "$29.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Alif Baa with Website PB (Lingco)", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121815", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$116.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "2008", + "section": "80", + "instructor": "Sarah Wagner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "6998", + "section": "13", + "instructor": "Murray Loew", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ARAB", + "course_num": "3105", + "section": "10", + "instructor": "Francesco Sinatora", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "4101W", + "section": "10", + "instructor": "Benjamin Bronner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3103", + "section": "16", + "instructor": "Kevin Knudsen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Human Capital in Organizations (Custom GWU)", + "edition": "N/A", + "author": "McHugh", + "isbn": "9781307496994", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "MCGRAW HILL (CUSTOM PUBLISHING)", + "type_condition": "BUY_NEW", + "price_display": "$107.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CE", + "course_num": "6800", + "section": "11", + "instructor": "Yun Shen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Transport Modeling for Environmental Engineers etc", + "edition": "N/A", + "author": "Clark", + "isbn": "9780470260722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$67.20", + "item_type": "print" + }, + { + "title": "Transport Modeling for Environmental Engineers etc", + "edition": "N/A", + "author": "Clark", + "isbn": "9780470260722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$120.00", + "item_type": "print" + }, + { + "title": "Transport Modeling for Environmental Engineers etc", + "edition": "N/A", + "author": "Clark", + "isbn": "9780470260722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$160.00", + "item_type": "print" + }, + { + "title": "Transport Modeling for Environmental Engineers and Scientists", + "edition": "2nd", + "author": "Clark", + "isbn": "9781118591727", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$138.00", + "item_type": "digital" + } + ] + }, + { + "department": "HIST", + "course_num": "6005", + "section": "11", + "instructor": "Shawn McHale", + "term_name": "Fall 2023", + "texts": [ + { + "title": "In the Shadow of Slavery", + "edition": "N/A", + "author": "Carney", + "isbn": "9780520269965", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "University of California Press", + "type_condition": "RENTAL_USED", + "price_display": "$10.38", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In the Shadow of Slavery", + "edition": "N/A", + "author": "Carney", + "isbn": "9780520269965", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "University of California Press", + "type_condition": "RENTAL_NEW", + "price_display": "$19.46", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In the Shadow of Slavery", + "edition": "N/A", + "author": "Carney", + "isbn": "9780520269965", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$25.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In the Shadow of Slavery", + "edition": "N/A", + "author": "Carney", + "isbn": "9780520269965", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Logics of History", + "edition": "N/A", + "author": "Sewell", + "isbn": "9780226749181", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "University of Chicago Press", + "type_condition": "RENTAL_NEW", + "price_display": "$30.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Logics of History", + "edition": "N/A", + "author": "Sewell", + "isbn": "9780226749181", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$41.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Logics of History", + "edition": "N/A", + "author": "Sewell", + "isbn": "9780226749181", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "University of Chicago Press", + "type_condition": "BUY_USED", + "price_display": "$30.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bengali Harlem & the Lost Histories of South Asian America", + "edition": "N/A", + "author": "Bald", + "isbn": "9780674503854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$23.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bengali Harlem & the Lost Histories of South Asian America", + "edition": "N/A", + "author": "Bald", + "isbn": "9780674503854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$17.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Empire of Difference", + "edition": "N/A", + "author": "Barkey", + "isbn": "9780521715331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$33.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Empire of Difference", + "edition": "N/A", + "author": "Barkey", + "isbn": "9780521715331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$25.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cheese & the Worms", + "edition": "N/A", + "author": "Ginzburg", + "isbn": "9780801843877", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "The Johns Hopkins University Press", + "type_condition": "RENTAL_USED", + "price_display": "$9.18", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cheese & the Worms", + "edition": "N/A", + "author": "Ginzburg", + "isbn": "9780801843877", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "The Johns Hopkins University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$17.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cheese & the Worms", + "edition": "N/A", + "author": "Ginzburg", + "isbn": "9780801843877", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "The Johns Hopkins University Press", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cheese & the Worms", + "edition": "N/A", + "author": "Ginzburg", + "isbn": "9780801843877", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "The Johns Hopkins University Press", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Violence Over the Land", + "edition": "N/A", + "author": "Blackhawk", + "isbn": "9780674027206", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$10.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Violence Over the Land", + "edition": "N/A", + "author": "Blackhawk", + "isbn": "9780674027206", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Violence Over the Land", + "edition": "N/A", + "author": "Blackhawk", + "isbn": "9780674027206", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$26.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Violence Over the Land", + "edition": "N/A", + "author": "Blackhawk", + "isbn": "9780674027206", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In the Shadow of Slavery", + "edition": "1st", + "author": "Carney", + "isbn": "9780520949539", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$25.95", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "6998", + "section": "16", + "instructor": "Matthew Kay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "AMST", + "course_num": "3170W", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BIOC", + "course_num": "3820", + "section": "10", + "instructor": "Raja Mazumder", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CLAS", + "course_num": "2105", + "section": "81", + "instructor": "Rebecca Boyd", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Women in the Classical World", + "edition": "N/A", + "author": "Fantham", + "isbn": "9780195098624", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$43.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Women in the Classical World", + "edition": "N/A", + "author": "Fantham", + "isbn": "9780195098624", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$108.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Women in the Classical World", + "edition": "N/A", + "author": "Fantham", + "isbn": "9780195098624", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$81.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Women in the Classical World", + "edition": "N/A", + "author": "Fantham", + "isbn": "9780195098624", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$81.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Women in the Classical World", + "edition": "N/A", + "author": "Fantham", + "isbn": "9780199879212", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$29.87", + "item_type": "digital" + }, + { + "title": "Women in the Classical World", + "edition": "N/A", + "author": "Fantham", + "isbn": "9780199879212", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$34.46", + "item_type": "digital" + }, + { + "title": "Women in the Classical World", + "edition": "N/A", + "author": "Fantham", + "isbn": "9780199879212", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$45.95", + "item_type": "digital" + }, + { + "title": "Women in the Classical World", + "edition": "N/A", + "author": "Fantham", + "isbn": "9780199879212", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$45.95", + "item_type": "digital" + } + ] + }, + { + "department": "ENGL", + "course_num": "1210", + "section": "20", + "instructor": "Carol Mitchell", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Behind the Short Story", + "edition": "N/A", + "author": "Vancleave", + "isbn": "9780321117243", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Longman", + "type_condition": "BUY_NEW", + "price_display": "$69.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Behind the Short Story", + "edition": "N/A", + "author": "Vancleave", + "isbn": "9780321117243", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Longman", + "type_condition": "BUY_USED", + "price_display": "$52.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Poetry Handbook", + "edition": "N/A", + "author": "Oliver", + "isbn": "9780156724005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Harper Collins Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$7.48", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Poetry Handbook", + "edition": "N/A", + "author": "Oliver", + "isbn": "9780156724005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$16.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Poetry Handbook", + "edition": "N/A", + "author": "Oliver", + "isbn": "9780156724005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Poetry Handbook", + "edition": "N/A", + "author": "Oliver", + "isbn": "9780156724005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Harper Collins Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$12.74", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "42", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ASTR", + "course_num": "1002", + "section": "10", + "instructor": "Soebur Razzaque", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Cosmic Perspective", + "edition": "9th", + "author": "Bennett", + "isbn": "9780134874364", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$187.13", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cosmic Perspective", + "edition": "9th", + "author": "Bennett", + "isbn": "9780134874364", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$249.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cosmic Perspective", + "edition": "9th", + "author": "Bennett", + "isbn": "9780134874364", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$104.79", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cosmic Perspective", + "edition": "9th", + "author": "Bennett", + "isbn": "9780134874364", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$187.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pearson eText Cosmic Perspective, The -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "9th", + "author": "Bennett", + "isbn": "9780135729458", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Cosmic Perspective, The", + "edition": "9th", + "author": "Bennett", + "isbn": "9780135161760", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "9th Edition: Modified Mastering Astronomy with Pearson eText -- Standalone Access Card -- for Cosmic Perspective, The", + "edition": "9th", + "author": "Bennett", + "isbn": "9780135208113", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$146.75", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "41", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "2127", + "section": "10", + "instructor": "Todd Gardner", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Population Geography", + "edition": "4th", + "author": "Newbold", + "isbn": "9781538140772", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_NEW", + "price_display": "$89.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Population Geography", + "edition": "4th", + "author": "Newbold", + "isbn": "9781538140772", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_USED", + "price_display": "$66.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "46", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "8999", + "section": "11", + "instructor": "Zhenyu Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3183", + "section": "11", + "instructor": "Camille Gaskin-Reyes", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Ages of Globalization", + "edition": "N/A", + "author": "Sachs", + "isbn": "9780231193740", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Ages of Globalization", + "edition": "N/A", + "author": "Sachs", + "isbn": "9780231193740", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "New Climate War", + "edition": "N/A", + "author": "Mann", + "isbn": "9781541758216", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Public Affairs", + "type_condition": "BUY_USED", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "New Climate War", + "edition": "N/A", + "author": "Mann", + "isbn": "9781541758216", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Public Affairs", + "type_condition": "BUY_NEW", + "price_display": "$23.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Rare Metals War", + "edition": "N/A", + "author": "Pitron", + "isbn": "9781950354313", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Scribe Publications Party Limited", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Rare Metals War", + "edition": "N/A", + "author": "Pitron", + "isbn": "9781950354313", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Scribe Publications Party Limited", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Deviant Globalization", + "edition": "N/A", + "author": "Gilman", + "isbn": "9781441178107", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Continuum International Pub Grp", + "type_condition": "BUY_USED", + "price_display": "$39.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Deviant Globalization", + "edition": "N/A", + "author": "Gilman", + "isbn": "9781441178107", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Continuum International Pub Grp", + "type_condition": "BUY_NEW", + "price_display": "$52.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "APSC", + "course_num": "6213", + "section": "10", + "instructor": "Kausik Sarkar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6801", + "section": "80", + "instructor": "Shira Robinson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Politics of Mass Violence in the Middle East", + "edition": "N/A", + "author": "Robson", + "isbn": "9780198825036", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$71.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Politics of Mass Violence in the Middle East", + "edition": "N/A", + "author": "Robson", + "isbn": "9780198825036", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$95.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Spiritual Subjects", + "edition": "N/A", + "author": "Can", + "isbn": "9781503611160", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Stanford University Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Spiritual Subjects", + "edition": "N/A", + "author": "Can", + "isbn": "9781503611160", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Stanford University Press", + "type_condition": "BUY_NEW", + "price_display": "$25.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Age of Coexistence", + "edition": "N/A", + "author": "Makdisi", + "isbn": "9780520258884", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Age of Coexistence", + "edition": "N/A", + "author": "Makdisi", + "isbn": "9780520258884", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of California Press", + "type_condition": "RENTAL_USED", + "price_display": "$11.98", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Age of Coexistence", + "edition": "N/A", + "author": "Makdisi", + "isbn": "9780520258884", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mecca of Revolution", + "edition": "N/A", + "author": "Byrne", + "isbn": "9780190053772", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$35.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mecca of Revolution", + "edition": "N/A", + "author": "Byrne", + "isbn": "9780190053772", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$46.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Oil Revolution", + "edition": "N/A", + "author": "Dietrich", + "isbn": "9781316617892", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$28.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Oil Revolution", + "edition": "N/A", + "author": "Dietrich", + "isbn": "9781316617892", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$37.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Genetic Crossroads", + "edition": "N/A", + "author": "Burton", + "isbn": "9781503614567", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Stanford University Press", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Genetic Crossroads", + "edition": "N/A", + "author": "Burton", + "isbn": "9781503614567", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Stanford University Press", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern Things on Trial", + "edition": "N/A", + "author": "Halevi", + "isbn": "9780231188678", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern Things on Trial", + "edition": "N/A", + "author": "Halevi", + "isbn": "9780231188678", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Unsettled Plain", + "edition": "N/A", + "author": "Gratien", + "isbn": "9781503631267", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Stanford University Press", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Unsettled Plain", + "edition": "N/A", + "author": "Gratien", + "isbn": "9781503631267", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Stanford University Press", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Politics of Mass Violence in the Middle East", + "edition": "N/A", + "author": "Robson", + "isbn": "9780192558596", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$61.74", + "item_type": "digital" + }, + { + "title": "The Politics of Mass Violence in the Middle East", + "edition": "N/A", + "author": "Robson", + "isbn": "9780192558596", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$71.24", + "item_type": "digital" + }, + { + "title": "The Politics of Mass Violence in the Middle East", + "edition": "N/A", + "author": "Robson", + "isbn": "9780192558596", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$94.99", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "2320", + "section": "10", + "instructor": "Cole Malloy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "6251", + "section": "10", + "instructor": "Cynthia Dowd", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Advanced Organic Chemistry (PtB)", + "edition": "5th", + "author": "Carey", + "isbn": "9780387683546", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$74.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Advanced Organic Chemistry (PtB)", + "edition": "5th", + "author": "Carey", + "isbn": "9780387683546", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Springer Nature", + "type_condition": "BUY_USED", + "price_display": "$56.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Advanced Organic Chemistry (PtB)", + "edition": "5th", + "author": "Carey", + "isbn": "9780387683546", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$56.24", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Advanced Organic Chemistry (PtB)", + "edition": "5th", + "author": "Carey", + "isbn": "9780387683546", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Springer Nature", + "type_condition": "RENTAL_USED", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Advanced Organic Chemistry (PtA)", + "edition": "5th", + "author": "Carey", + "isbn": "9780387683461", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$74.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Advanced Organic Chemistry (PtA)", + "edition": "5th", + "author": "Carey", + "isbn": "9780387683461", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Springer Nature", + "type_condition": "BUY_USED", + "price_display": "$56.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Advanced Organic Chemistry (PtA)", + "edition": "5th", + "author": "Carey", + "isbn": "9780387683461", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$56.24", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Advanced Organic Chemistry (PtA)", + "edition": "5th", + "author": "Carey", + "isbn": "9780387683461", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Springer Nature", + "type_condition": "RENTAL_USED", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Advanced Organic Chemistry", + "edition": "5th", + "author": "Sundberg", + "isbn": "9780387714813", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "item_type": "digital" + }, + { + "title": "Advanced Organic Chemistry", + "edition": "5th", + "author": "Sundberg", + "isbn": "9780387714813", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "item_type": "digital" + }, + { + "title": "Advanced Organic Chemistry", + "edition": "5th", + "author": "Sundberg", + "isbn": "9780387714813", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "item_type": "digital" + }, + { + "title": "Advanced Organic Chemistry", + "edition": "5th", + "author": "Sundberg", + "isbn": "9780387714813", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$74.99", + "item_type": "digital" + }, + { + "title": "Advanced Organic Chemistry", + "edition": "5th", + "author": "Carey", + "isbn": "9780387448992", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$119.00", + "item_type": "digital" + }, + { + "title": "Advanced Organic Chemistry", + "edition": "5th", + "author": "Carey", + "isbn": "9780387448992", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$119.00", + "item_type": "digital" + }, + { + "title": "Advanced Organic Chemistry", + "edition": "5th", + "author": "Carey", + "isbn": "9780387448992", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$119.00", + "item_type": "digital" + }, + { + "title": "Advanced Organic Chemistry", + "edition": "5th", + "author": "Carey", + "isbn": "9780387448992", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$119.00", + "item_type": "digital" + } + ] + }, + { + "department": "APSC", + "course_num": "3115", + "section": "80", + "instructor": "Valeriya Malobrodskaya", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "6210", + "section": "MV", + "instructor": "Ira Lurie", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Forensic Chemistry (w/Bind-in Access Code)", + "edition": "2nd", + "author": "Bell", + "isbn": "9780321765758", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$266.00", + "item_type": "print" + }, + { + "title": "Forensic Chemistry (w/Bind-in Access Code)", + "edition": "2nd", + "author": "Bell", + "isbn": "9780321765758", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$199.50", + "item_type": "print" + }, + { + "title": "Analytical Techniques in Forensic Science (V1)", + "edition": "N/A", + "author": "Wolstenholme", + "isbn": "9781119978282", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$181.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Analytical Techniques in Forensic Science (V1)", + "edition": "N/A", + "author": "Wolstenholme", + "isbn": "9781119978282", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$135.75", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "1001", + "section": "33", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "29", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "6999", + "section": "10", + "instructor": "Damien O'Halloran", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BMSC", + "course_num": "8215", + "section": "10", + "instructor": "Alison Hall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "6413", + "section": "10", + "instructor": "William Barr", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Primer of Ecological Statistics", + "edition": "2nd", + "author": "Gotelli", + "isbn": "9781605350646", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Sinauer Associates, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$104.81", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Primer of Ecological Statistics", + "edition": "2nd", + "author": "Gotelli", + "isbn": "9781605350646", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Sinauer Associates, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$139.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Primer of Ecological Statistics", + "edition": "2nd", + "author": "Gotelli", + "isbn": "9781605350646", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Sinauer Associates, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$105.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "A Primer of Ecological Statistics", + "edition": "2nd", + "author": "Gotelli", + "isbn": "9781605354095", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$54.99", + "item_type": "digital" + }, + { + "title": "A Primer of Ecological Statistics", + "edition": "2nd", + "author": "Gotelli", + "isbn": "9781605354095", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$63.45", + "item_type": "digital" + }, + { + "title": "A Primer of Ecological Statistics", + "edition": "2nd", + "author": "Gotelli", + "isbn": "9781605354095", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$84.60", + "item_type": "digital" + }, + { + "title": "A Primer of Ecological Statistics", + "edition": "2nd", + "author": "Ellison", + "isbn": "9781605354095", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$109.98", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "3491", + "section": "10", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3103", + "section": "12", + "instructor": "Paul Swiercz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Human Capital in Organizations (Custom GWU)", + "edition": "N/A", + "author": "McHugh", + "isbn": "9781307496994", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "MCGRAW HILL (CUSTOM PUBLISHING)", + "type_condition": "BUY_NEW", + "price_display": "$107.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ENGL", + "course_num": "1210", + "section": "17", + "instructor": "Virginia Hartman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Making Shapely Fiction", + "edition": "N/A", + "author": "Stern", + "isbn": "9780393321241", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1991", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Making Shapely Fiction", + "edition": "N/A", + "author": "Stern", + "isbn": "9780393321241", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1991", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$12.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Making Shapely Fiction", + "edition": "N/A", + "author": "Stern", + "isbn": "9780393321241", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1991", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Micro Fiction", + "edition": "N/A", + "author": "Stern", + "isbn": "9780393314328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Micro Fiction", + "edition": "N/A", + "author": "Stern", + "isbn": "9780393314328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$9.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Micro Fiction", + "edition": "N/A", + "author": "Stern", + "isbn": "9780393314328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$12.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Poetry Handbook", + "edition": "N/A", + "author": "Oliver", + "isbn": "9780156724005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Harper Collins Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$7.48", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Poetry Handbook", + "edition": "N/A", + "author": "Oliver", + "isbn": "9780156724005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Poetry Handbook", + "edition": "N/A", + "author": "Oliver", + "isbn": "9780156724005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Harper Collins Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$12.74", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Poetry Handbook", + "edition": "N/A", + "author": "Oliver", + "isbn": "9780156724005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$16.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Sweet Without Brine", + "edition": "N/A", + "author": "Manick", + "isbn": "9780063244306", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Sweet Without Brine", + "edition": "N/A", + "author": "Manick", + "isbn": "9780063244306", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$16.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Making Shapely Fiction", + "edition": "N/A", + "author": "Stern", + "isbn": "9780393077698", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "item_type": "digital" + } + ] + }, + { + "department": "ACA", + "course_num": "6219", + "section": "10", + "instructor": "Alexander Wild", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HLWL", + "course_num": "1117", + "section": "10", + "instructor": "Cynthia Pavell", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Fit & Well: Concepts & Labs in Physical Fitness (RRMCG RENTAL Edition)", + "edition": "15th", + "author": "Fahey", + "isbn": "9781264308316", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fit & Well: Concepts & Labs in Physical Fitness (RRMCG RENTAL Edition)", + "edition": "15th", + "author": "Fahey", + "isbn": "9781264308316", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fit & Well: Core Concepts and Labs in Physical Fitness and Wellness", + "edition": "15th", + "author": "Fahey", + "isbn": "9781264393305", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$62.25", + "item_type": "digital" + }, + { + "title": "Fit & Well: Core Concepts and Labs in Physical Fitness and Wellness", + "edition": "15th", + "author": "Fahey", + "isbn": "9781264393305", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$79.25", + "item_type": "digital" + }, + { + "title": "Fit & Well: Core Concepts and Labs in Physical Fitness and Wellness", + "edition": "15th", + "author": "Fahey", + "isbn": "9781264393305", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$94.75", + "item_type": "digital" + } + ] + }, + { + "department": "ANAT", + "course_num": "6223", + "section": "10", + "instructor": "Robert Hawley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "6999", + "section": "14", + "instructor": "Hyung Sok Choe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6504", + "section": "80", + "instructor": "Rumana Riffat", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Fund of Wastewater Treatment & Engineering (V2)", + "edition": "2nd", + "author": "Riffat", + "isbn": "9780367681302", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CRC Press LLC", + "type_condition": "BUY_USED", + "price_display": "$82.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fund of Wastewater Treatment & Engineering (V2)", + "edition": "2nd", + "author": "Riffat", + "isbn": "9780367681302", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CRC Press LLC", + "type_condition": "BUY_NEW", + "price_display": "$110.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fundamentals of Wastewater Treatment and Engineering", + "edition": "2nd", + "author": "Riffat", + "isbn": "9781000575163", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$110.00", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "6999", + "section": "11", + "instructor": "Zhenyu Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "AMST", + "course_num": "8998", + "section": "10", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1112", + "section": "31", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "PKG ACP CER GWU CHEM 1112", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781111952099", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Cengage Learning Custom Publishing (EMAIL ORDERS)", + "type_condition": "BUY_NEW", + "price_display": "$83.25", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "ACA", + "course_num": "6227", + "section": "10", + "instructor": "Alexander Wild", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BIOC", + "course_num": "6221", + "section": "10", + "instructor": "Manjari Dimri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3401", + "section": "12", + "instructor": "Michael Tadesse", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "3825", + "section": "11", + "instructor": "Hyung Sok Choe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "3740W", + "section": "10", + "instructor": "Erica Gralla", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Business Dynamics (w/out CD)", + "edition": "N/A", + "author": "STERMAN", + "isbn": "9780072311358", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$365.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Business Dynamics (w/out CD)", + "edition": "N/A", + "author": "STERMAN", + "isbn": "9780072311358", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "McGraw-Hill", + "type_condition": "BUY_USED", + "price_display": "$273.75", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "37", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6209", + "section": "10", + "instructor": "Joy Volarich", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to the Financial Management of Healthcare Organizations", + "edition": "7th", + "author": "Nowicki", + "isbn": "9781567939040", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Health Administration Press***DO NOT ORDER FROM, MUST ORDER DIRECTLY FROM IPG***", + "type_condition": "RENTAL_USED", + "price_display": "$56.28", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to the Financial Management of Healthcare Organizations", + "edition": "7th", + "author": "Nowicki", + "isbn": "9781567939040", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Health Administration Press***DO NOT ORDER FROM, MUST ORDER DIRECTLY FROM IPG***", + "type_condition": "RENTAL_NEW", + "price_display": "$87.10", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to the Financial Management of Healthcare Organizations", + "edition": "7th", + "author": "Nowicki", + "isbn": "9781567939040", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Health Administration Press***DO NOT ORDER FROM, MUST ORDER DIRECTLY FROM IPG***", + "type_condition": "BUY_NEW", + "price_display": "$134.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to the Financial Management of Healthcare Organizations", + "edition": "7th", + "author": "Nowicki", + "isbn": "9781567939040", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Health Administration Press***DO NOT ORDER FROM, MUST ORDER DIRECTLY FROM IPG***", + "type_condition": "BUY_USED", + "price_display": "$100.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Care Finance (w/Nav2 Advantage Access)", + "edition": "8th", + "author": "Cleverley", + "isbn": "9781284094633", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$52.29", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Care Finance (w/Nav2 Advantage Access)", + "edition": "8th", + "author": "Cleverley", + "isbn": "9781284094633", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$124.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Care Finance (w/Nav2 Advantage Access)", + "edition": "8th", + "author": "Cleverley", + "isbn": "9781284094633", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$93.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essentials of Health Care Finance", + "edition": "8th", + "author": "Cleverley", + "isbn": "9781284094640", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$74.07", + "item_type": "digital" + }, + { + "title": "Introduction to the Financial Management of Healthcare Organizations, Seventh Edition", + "edition": "N/A", + "author": "Nowicki", + "isbn": "9781567939071", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Independent Publishers Group - IPG", + "type_condition": "BUY_NEW", + "price_display": "$115.00", + "item_type": "digital" + }, + { + "title": "Introduction to the Financial Management of Healthcare Organizations, Eighth Edition", + "edition": "N/A", + "author": "Nowicki", + "isbn": "9781640552784", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Independent Publishers Group - IPG", + "type_condition": "BUY_NEW", + "price_display": "$115.00", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "6999", + "section": "19", + "instructor": "Vesna Zderic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACA", + "course_num": "6215", + "section": "10", + "instructor": "Alexander Wild", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ARAB", + "course_num": "1000", + "section": "10", + "instructor": "Ebtissam Oraby", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Arab of the Future (Vol I) (VI)", + "edition": "N/A", + "author": "Sattouf", + "isbn": "9781627793445", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arab of the Future (Vol I) (VI)", + "edition": "N/A", + "author": "Sattouf", + "isbn": "9781627793445", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_USED", + "price_display": "$10.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arab of the Future (Vol I) (VI)", + "edition": "N/A", + "author": "Sattouf", + "isbn": "9781627793445", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arab of the Future (Vol I) (VI)", + "edition": "N/A", + "author": "Sattouf", + "isbn": "9781627793445", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_NEW", + "price_display": "$17.55", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Baddawi", + "edition": "N/A", + "author": "Abdelrazaq", + "isbn": "9781935982401", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Just World Books", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Baddawi", + "edition": "N/A", + "author": "Abdelrazaq", + "isbn": "9781935982401", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Just World Books", + "type_condition": "RENTAL_USED", + "price_display": "$8.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Baddawi", + "edition": "N/A", + "author": "Abdelrazaq", + "isbn": "9781935982401", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Just World Books", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Baddawi", + "edition": "N/A", + "author": "Abdelrazaq", + "isbn": "9781935982401", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Just World Books", + "type_condition": "RENTAL_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Freedom Hospital", + "edition": "N/A", + "author": "Sulaiman", + "isbn": "9781623719951", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Interlink Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Freedom Hospital", + "edition": "N/A", + "author": "Sulaiman", + "isbn": "9781623719951", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Interlink Publishing Group, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$8.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Freedom Hospital", + "edition": "N/A", + "author": "Sulaiman", + "isbn": "9781623719951", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Interlink Publishing Group, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding Comics", + "edition": "N/A", + "author": "McCloud", + "isbn": "9780060976255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$27.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding Comics", + "edition": "N/A", + "author": "McCloud", + "isbn": "9780060976255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Harper Collins Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$16.79", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding Comics", + "edition": "N/A", + "author": "McCloud", + "isbn": "9780060976255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "You Can Crush the Flowers", + "edition": "N/A", + "author": "Shehab", + "isbn": "9781909942530", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Chicago Distribution Center", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "You Can Crush the Flowers", + "edition": "N/A", + "author": "Shehab", + "isbn": "9781909942530", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Chicago Distribution Center", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "APSC", + "course_num": "1001", + "section": "80", + "instructor": "Zoe Szajnfarber", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "4189", + "section": "80", + "instructor": "Tanya Wetenhall", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Seeing Through Clothes", + "edition": "N/A", + "author": "Hollander", + "isbn": "9780520082311", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1978", + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$27.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Seeing Through Clothes", + "edition": "N/A", + "author": "Hollander", + "isbn": "9780520082311", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1978", + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$36.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "2010", + "section": "80", + "instructor": "Nicole Ivy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "6005", + "section": "MV", + "instructor": "Ira Lurie", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Fundamentals of Forensic Science", + "edition": "3rd", + "author": "Houck", + "isbn": "9780128000373", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Academic Press, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$41.98", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fundamentals of Forensic Science", + "edition": "3rd", + "author": "Houck", + "isbn": "9780128000373", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Academic Press, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$75.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fundamentals of Forensic Science", + "edition": "3rd", + "author": "Houck", + "isbn": "9780128000373", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Academic Press, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$99.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fundamentals of Forensic Science", + "edition": "3rd", + "author": "Houck", + "isbn": "9780128000373", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Academic Press, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$74.96", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fundamentals of Forensic Science", + "edition": "3rd", + "author": "Siegel", + "isbn": "9780128002315", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Elsevier", + "type_condition": "BUY_NEW", + "price_display": "$78.99", + "item_type": "digital" + } + ] + }, + { + "department": "CAH", + "course_num": "1090", + "section": "10", + "instructor": "Lisa Lipinski", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Themes of Contemporary Art", + "edition": "5th", + "author": "Robertson", + "isbn": "9780190078331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$70.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Themes of Contemporary Art", + "edition": "5th", + "author": "Robertson", + "isbn": "9780190078331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$93.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Themes of Contemporary Art", + "edition": "5th", + "author": "Robertson", + "isbn": "9780190078348", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$42.99", + "item_type": "digital" + }, + { + "title": "Themes of Contemporary Art", + "edition": "5th", + "author": "Robertson", + "isbn": "9780190078348", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$49.60", + "item_type": "digital" + }, + { + "title": "Themes of Contemporary Art", + "edition": "5th", + "author": "Robertson", + "isbn": "9780190078348", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$66.14", + "item_type": "digital" + }, + { + "title": "Themes of Contemporary Art", + "edition": "5th", + "author": "Robertson", + "isbn": "9780190078348", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$79.98", + "item_type": "digital" + } + ] + }, + { + "department": "CE", + "course_num": "6501", + "section": "10", + "instructor": "Xitong Liu", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Aquatic Chemistry Concepts, Second Edition", + "edition": "2nd", + "author": "Pankow", + "isbn": "9780429581755", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$54.95", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "4990", + "section": "17", + "instructor": "Anne-Laure Papa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "3385", + "section": "10", + "instructor": "Lisa Page", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Black Dog of Fate (10th Anniv Ed)", + "edition": "N/A", + "author": "Balakian", + "isbn": "9780465010196", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Basic Books", + "type_condition": "RENTAL_NEW", + "price_display": "$14.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Black Dog of Fate (10th Anniv Ed)", + "edition": "N/A", + "author": "Balakian", + "isbn": "9780465010196", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Basic Books", + "type_condition": "BUY_NEW", + "price_display": "$19.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Black Dog of Fate (10th Anniv Ed)", + "edition": "N/A", + "author": "Balakian", + "isbn": "9780465010196", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Basic Books", + "type_condition": "RENTAL_USED", + "price_display": "$8.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Black Dog of Fate (10th Anniv Ed)", + "edition": "N/A", + "author": "Balakian", + "isbn": "9780465010196", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Basic Books", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Glass Eye", + "edition": "N/A", + "author": "Vanasco", + "isbn": "9781941040775", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Tin House Books c/o WW Norton", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Glass Eye", + "edition": "N/A", + "author": "Vanasco", + "isbn": "9781941040775", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Tin House Books c/o WW Norton", + "type_condition": "RENTAL_USED", + "price_display": "$6.38", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Glass Eye", + "edition": "N/A", + "author": "Vanasco", + "isbn": "9781941040775", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Tin House Books c/o WW Norton", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Buck", + "edition": "N/A", + "author": "Asante", + "isbn": "9780812983623", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Buck", + "edition": "N/A", + "author": "Asante", + "isbn": "9780812983623", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$7.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Buck", + "edition": "N/A", + "author": "Asante", + "isbn": "9780812983623", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fun Home", + "edition": "N/A", + "author": "Bechdel", + "isbn": "9780618871711", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fun Home", + "edition": "N/A", + "author": "Bechdel", + "isbn": "9780618871711", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Love & Death in the Sunshine State", + "edition": "N/A", + "author": "Wood", + "isbn": "9781616209339", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Algonquin Books Chapel Hill", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Love & Death in the Sunshine State", + "edition": "N/A", + "author": "Wood", + "isbn": "9781616209339", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Algonquin Books Chapel Hill", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Love and Death in the Sunshine State", + "edition": "N/A", + "author": "Wood", + "isbn": "9781616208264", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Algonquin Books Chapel Hill", + "type_condition": "BUY_NEW", + "price_display": "$11.99", + "item_type": "digital" + }, + { + "title": "The Glass Eye: A memoir", + "edition": "N/A", + "author": "Vanasco", + "isbn": "9781941040782", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "item_type": "digital" + } + ] + }, + { + "department": "ACCY", + "course_num": "2001", + "section": "11", + "instructor": "Kee Hea Moon", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Connect Online Access for Financial Accounting", + "edition": "11th", + "author": "LIBBY", + "isbn": "9781265717254", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$189.75", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "10", + "instructor": "Lincoln Mansch", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "3820", + "section": "10", + "instructor": "Matthew Kay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6221", + "section": "11", + "instructor": "Walcelio Melo", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Design Patterns: Elements of Reusable Object-Oriented Software", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780201633610", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_USED", + "price_display": "$24.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Design Patterns: Elements of Reusable Object-Oriented Software", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780201633610", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Addison Wesley", + "type_condition": "BUY_USED", + "price_display": "$45.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Design Patterns: Elements of Reusable Object-Oriented Software", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780201633610", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Addison Wesley", + "type_condition": "BUY_NEW", + "price_display": "$59.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Design Patterns: Elements of Reusable Object-Oriented Software", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780201633610", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_NEW", + "price_display": "$38.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Concurrency", + "edition": "N/A", + "author": "Magee", + "isbn": "9780470093559", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$68.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Concurrency", + "edition": "N/A", + "author": "Magee", + "isbn": "9780470093559", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$90.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Concepts of Programming Languages (RRPHE)", + "edition": "12th", + "author": "Sebesta", + "isbn": "9780134997186", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Concepts of Programming Languages (RRPHE)", + "edition": "12th", + "author": "Sebesta", + "isbn": "9780134997186", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pearson eText for Concepts of Programming Languages -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "12th", + "author": "Sebesta", + "isbn": "9780135102268", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Design Patterns", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780321700698", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Higher Educ & Prof Group", + "type_condition": "BUY_NEW", + "price_display": "$48.00", + "item_type": "digital" + }, + { + "title": "Design Patterns", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780321700742", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Higher Educ & Prof Group", + "type_condition": "BUY_NEW", + "price_display": "$48.00", + "item_type": "digital" + }, + { + "title": "Concepts of Programming Languages", + "edition": "12th", + "author": "Sebesta", + "isbn": "9780135102251", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "2213", + "section": "10", + "instructor": "Daoud Meerzaman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ASTR", + "course_num": "1001", + "section": "33", + "instructor": "Luis Correa Borbonet", + "term_name": "Fall 2023", + "texts": [ + { + "title": "ASTR 1001 Laboratory Manual", + "edition": "4th", + "author": "George Washington University", + "isbn": "9781600369186", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Academx Publishing Serv Inc", + "type_condition": "BUY_NEW", + "price_display": "$51.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "HIST", + "course_num": "2001", + "section": "81", + "instructor": "Andrew Smith", + "term_name": "Fall 2023", + "texts": [ + { + "title": "How to Win an Election", + "edition": "N/A", + "author": "Cicero", + "isbn": "9780691154084", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "How to Win an Election", + "edition": "N/A", + "author": "Cicero", + "isbn": "9780691154084", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$12.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Makers of Rome", + "edition": "N/A", + "author": "Plutarch", + "isbn": "9780140441581", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1965", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Makers of Rome", + "edition": "N/A", + "author": "Plutarch", + "isbn": "9780140441581", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1965", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_USED", + "price_display": "$6.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Makers of Rome", + "edition": "N/A", + "author": "Plutarch", + "isbn": "9780140441581", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1965", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "How to Win an Election", + "edition": "N/A", + "author": "Cicero", + "isbn": "9781400841646", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "2008W", + "section": "80", + "instructor": "Sarah Wagner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "AMST", + "course_num": "2490", + "section": "83", + "instructor": "Emily Bock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "2001", + "section": "13", + "instructor": "William Stromsem", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "2006", + "section": "13", + "instructor": "Noelle Levy-Gires", + "term_name": "Fall 2023", + "texts": [ + { + "title": "La France Contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664421", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "La France Contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664421", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "La France contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664438", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "La France contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664438", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$67.99", + "item_type": "digital" + }, + { + "title": "La France contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664438", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$86.49", + "item_type": "digital" + } + ] + }, + { + "department": "CE", + "course_num": "4410", + "section": "10", + "instructor": "Majid Manzari", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Geotechnical Engineering", + "edition": "2nd", + "author": "Holtz", + "isbn": "9780132496346", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$234.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Geotechnical Engineering", + "edition": "2nd", + "author": "Holtz", + "isbn": "9780132496346", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$312.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Geotechnical Engineering", + "edition": "2nd", + "author": "Holtz", + "isbn": "9780132496346", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$131.04", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Geotechnical Engineering", + "edition": "2nd", + "author": "Holtz", + "isbn": "9780132496346", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$202.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pearson eText for An Introduction to Geotechnical Engineering -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "2nd", + "author": "Kovacs", + "isbn": "9780137524624", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Introduction to Geotechnical Engineering, An", + "edition": "2nd", + "author": "Holtz", + "isbn": "9780135201381", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$104.00", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "1005", + "section": "32", + "instructor": "Carson Murray", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "3111", + "section": "80", + "instructor": "Jonathan Chaves", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Columbia Anthology of Yuan Drama", + "edition": "N/A", + "author": "Hsia", + "isbn": "9780231122672", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Columbia Anthology of Yuan Drama", + "edition": "N/A", + "author": "Hsia", + "isbn": "9780231122672", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "RENTAL_USED", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Columbia Anthology of Yuan Drama", + "edition": "N/A", + "author": "Hsia", + "isbn": "9780231122672", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$40.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Scholars", + "edition": "N/A", + "author": "Ching-Tzu", + "isbn": "9780231081535", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$37.50", + "item_type": "print" + }, + { + "title": "Scholars", + "edition": "N/A", + "author": "Ching-Tzu", + "isbn": "9780231081535", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$50.00", + "item_type": "print" + }, + { + "title": "Columbia Book of Chinese Poetry", + "edition": "N/A", + "author": "Watson", + "isbn": "9780231056830", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1984", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$28.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Columbia Book of Chinese Poetry", + "edition": "N/A", + "author": "Watson", + "isbn": "9780231056830", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1984", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "RENTAL_USED", + "price_display": "$15.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Columbia Book of Chinese Poetry", + "edition": "N/A", + "author": "Watson", + "isbn": "9780231056830", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1984", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$38.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Anthology of Chinese Literature (Early Times-14th Cent)", + "edition": "N/A", + "author": "Birch", + "isbn": "9780802150387", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1965", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Anthology of Chinese Literature (Early Times-14th Cent)", + "edition": "N/A", + "author": "Birch", + "isbn": "9780802150387", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1965", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Columbia Book of Later Chinese Poetry", + "edition": "N/A", + "author": "Chaves", + "isbn": "9780231061490", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Columbia Book of Later Chinese Poetry", + "edition": "N/A", + "author": "Chaves", + "isbn": "9780231061490", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "RENTAL_USED", + "price_display": "$16.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Columbia Book of Later Chinese Poetry", + "edition": "N/A", + "author": "Chaves", + "isbn": "9780231061490", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$42.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey (by Wu Ch'eng-en)", + "edition": "N/A", + "author": "Waley", + "isbn": "9780802130860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1970", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey (by Wu Ch'eng-en)", + "edition": "N/A", + "author": "Waley", + "isbn": "9780802130860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1970", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey (by Wu Ch'eng-en)", + "edition": "N/A", + "author": "Waley", + "isbn": "9780802130860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1970", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$11.05", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Columbia Anthology of Yuan Drama", + "edition": "N/A", + "author": "T.", + "isbn": "9780231537346", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "2207", + "section": "10", + "instructor": "Omotola Omotade", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "48", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "3420", + "section": "10", + "instructor": "Jonathan Hsy", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Broadview Anthology of British Literature Volume 1: the Medieval Period - Revised Third Edition (V1)", + "edition": "3rd", + "author": "Black", + "isbn": "9781554816163", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Broadview Press", + "type_condition": "BUY_USED", + "price_display": "$49.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Broadview Anthology of British Literature Volume 1: the Medieval Period - Revised Third Edition (V1)", + "edition": "3rd", + "author": "Black", + "isbn": "9781554816163", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Broadview Press", + "type_condition": "BUY_NEW", + "price_display": "$65.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Telling Tales", + "edition": "N/A", + "author": "Agbabi", + "isbn": "9781782111573", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Canongate Books (Trafalgar Square is now Dist. f/Canongate)", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Telling Tales", + "edition": "N/A", + "author": "Agbabi", + "isbn": "9781782111573", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Canongate Books (Trafalgar Square is now Dist. f/Canongate)", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CLAS", + "course_num": "2105", + "section": "80", + "instructor": "Andrew Smith", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Makers of Rome", + "edition": "N/A", + "author": "Plutarch", + "isbn": "9780140441581", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1965", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_USED", + "price_display": "$6.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Makers of Rome", + "edition": "N/A", + "author": "Plutarch", + "isbn": "9780140441581", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1965", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Makers of Rome", + "edition": "N/A", + "author": "Plutarch", + "isbn": "9780140441581", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1965", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "How to Win an Election", + "edition": "N/A", + "author": "Cicero", + "isbn": "9780691154084", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "How to Win an Election", + "edition": "N/A", + "author": "Cicero", + "isbn": "9780691154084", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$12.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "How to Win an Election", + "edition": "N/A", + "author": "Cicero", + "isbn": "9781400841646", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "item_type": "digital" + } + ] + }, + { + "department": "ACCY", + "course_num": "2001", + "section": "12", + "instructor": "Kee Hea Moon", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Connect Online Access for Financial Accounting", + "edition": "11th", + "author": "LIBBY", + "isbn": "9781265717254", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$189.75", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "1002", + "section": "37", + "instructor": "Roy Grinker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CLAS", + "course_num": "3115", + "section": "80", + "instructor": "Elise Friedland", + "term_name": "Fall 2023", + "texts": [ + { + "title": "History of Roman Art", + "edition": "2nd", + "author": "Tuck", + "isbn": "9781119653288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$82.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of Roman Art", + "edition": "2nd", + "author": "Tuck", + "isbn": "9781119653288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$62.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "A History of Roman Art", + "edition": "2nd", + "author": "Tuck", + "isbn": "9781119653301", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$55.00", + "item_type": "digital" + } + ] + }, + { + "department": "ENGL", + "course_num": "1330", + "section": "11", + "instructor": "Jonathan Hsy", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Vinland Sagas", + "edition": "N/A", + "author": "Kunz", + "isbn": "9780140447767", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Vinland Sagas", + "edition": "N/A", + "author": "Kunz", + "isbn": "9780140447767", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Broadview Anthology of British Literature Volume 1: the Medieval Period - Revised Third Edition (V1)", + "edition": "3rd", + "author": "Black", + "isbn": "9781554816163", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Broadview Press", + "type_condition": "BUY_NEW", + "price_display": "$65.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Broadview Anthology of British Literature Volume 1: the Medieval Period - Revised Third Edition (V1)", + "edition": "3rd", + "author": "Black", + "isbn": "9781554816163", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Broadview Press", + "type_condition": "BUY_USED", + "price_display": "$49.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Othello", + "edition": "2nd", + "author": "Shakespeare", + "isbn": "9781472571762", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Bloomsbury Academic", + "type_condition": "BUY_NEW", + "price_display": "$12.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Othello", + "edition": "2nd", + "author": "Shakespeare", + "isbn": "9781472571762", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Bloomsbury Academic", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Othello", + "edition": "N/A", + "author": "Shakespeare", + "isbn": "9781472571786", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$8.75", + "item_type": "digital" + }, + { + "title": "Othello", + "edition": "N/A", + "author": "Shakespeare", + "isbn": "9781472571786", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$10.25", + "item_type": "digital" + }, + { + "title": "Othello", + "edition": "N/A", + "author": "Shakespeare", + "isbn": "9781472571786", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "BUY_NEW", + "price_display": "$11.00", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "6237", + "section": "10", + "instructor": "Benjamin Simon", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Environmental & Natural Resource Economics", + "edition": "11th", + "author": "Tietenberg", + "isbn": "9781138632295", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$233.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Environmental & Natural Resource Economics", + "edition": "11th", + "author": "Tietenberg", + "isbn": "9781138632295", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "RENTAL_USED", + "price_display": "$97.86", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Environmental & Natural Resource Economics", + "edition": "11th", + "author": "Tietenberg", + "isbn": "9781138632295", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$174.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Environmental & Natural Resource Economics", + "edition": "11th", + "author": "Tietenberg", + "isbn": "9781138632295", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "RENTAL_NEW", + "price_display": "$174.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Environmental and Natural Resource Economics", + "edition": "11th", + "author": "Tietenberg", + "isbn": "9781351803366", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$174.95", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "1003", + "section": "30", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "GWU AMILLS Chem 1003 (CUSTOM)", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781305770218", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning Custom Publishing (EMAIL ORDERS)", + "type_condition": "BUY_NEW", + "price_display": "$70.25", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "BME", + "course_num": "4990", + "section": "16", + "instructor": "Matthew Kay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3197", + "section": "80", + "instructor": "Dmitry Streletskiy", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Geography of Russia & Its Neighbors", + "edition": "2nd", + "author": "Blinnikov", + "isbn": "9781462544592", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Guilford Press", + "type_condition": "BUY_NEW", + "price_display": "$78.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Geography of Russia & Its Neighbors", + "edition": "2nd", + "author": "Blinnikov", + "isbn": "9781462544592", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Guilford Press", + "type_condition": "BUY_USED", + "price_display": "$58.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "A Geography of Russia and Its Neighbors", + "edition": "2nd", + "author": "Blinnikov", + "isbn": "9781462544653", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Guilford Press", + "type_condition": "BUY_NEW", + "price_display": "$67.00", + "item_type": "digital" + } + ] + }, + { + "department": "AMST", + "course_num": "1100", + "section": "32", + "instructor": "Elisabeth Anker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2103", + "section": "10", + "instructor": "Arun Malik", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Cengage Unlimited, 1 term (4 months), 1st Edition", + "edition": "N/A", + "author": "Cengage Unlimited", + "isbn": "9780357700006", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cengage Unlimited", + "type_condition": "RENTAL_NEW", + "price_display": "$156.30", + "item_type": "digital" + }, + { + "title": "MindTap Economics for Nicholson/Snyder's Microeconomic Theory: Basic Principles and Extensions, 12th Edition, Instant Access, 1 term (6 months)", + "edition": "12th", + "author": "Nicholson", + "isbn": "9781305629028", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$173.50", + "item_type": "digital" + }, + { + "title": "MindTap Economics, 1 term (6 months) Instant Access for Nicholson/Snyder's Microeconomic Theory: Basic Principles and Extensions", + "edition": "12th", + "author": "Walter NicholsonChristopher S", + "isbn": "9781305629028", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$193.50", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6502", + "section": "11", + "instructor": "Nizar Farsakh", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Getting to Yes", + "edition": "3rd", + "author": "Fisher", + "isbn": "9780143118756", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Getting to Yes", + "edition": "3rd", + "author": "Fisher", + "isbn": "9780143118756", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "3001", + "section": "17", + "instructor": "Jamesha Cox", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACA", + "course_num": "6201", + "section": "10", + "instructor": "Alexander Wild", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6274", + "section": "10", + "instructor": "William Handorf", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Financial Markets & Institutions (RRMCG)", + "edition": "7th", + "author": "Saunders", + "isbn": "9781259919718", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Financial Markets & Institutions (RRMCG)", + "edition": "7th", + "author": "Saunders", + "isbn": "9781259919718", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.00", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "IAFF", + "course_num": "1005", + "section": "10", + "instructor": "Alexander Downes", + "term_name": "Fall 2023", + "texts": [ + { + "title": "World Politics (w/InQuizitive Access Card)", + "edition": "5th", + "author": "Frieden", + "isbn": "9780393872231", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "W. W. Norton & Company, Inc.", + "type_condition": "BUY_NEW", + "price_display": "$137.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Globalization Paradox", + "edition": "N/A", + "author": "Rodrik", + "isbn": "9780393341287", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Globalization Paradox", + "edition": "N/A", + "author": "Rodrik", + "isbn": "9780393341287", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Globalization Paradox: Democracy & the Future (Lifetime Access)", + "edition": "N/A", + "author": "Rodrik", + "isbn": "9780393080803", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "item_type": "digital" + }, + { + "title": "World Politics: Interests, Interactions, Institutions (Fifth Edition)", + "edition": "5th", + "author": "Frieden", + "isbn": "9780393872118", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$64.80", + "item_type": "digital" + }, + { + "title": "World Politics: Interests, Interactions, Institutions (Fifth Edition)", + "edition": "5th", + "author": "Frieden", + "isbn": "9780393872118", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$82.47", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "6050", + "section": "13", + "instructor": "Matthew Kay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6502", + "section": "21", + "instructor": "Christopher Kojm", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Chicago Manual of Style", + "edition": "13th", + "author": "Chicago Univ", + "isbn": "9780226103914", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1982", + "publisher": "University of Chicago Press", + "type_condition": "BUY_USED", + "price_display": "$4.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chicago Manual of Style", + "edition": "13th", + "author": "Chicago Univ", + "isbn": "9780226103914", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1982", + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$5.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing on the Job", + "edition": "N/A", + "author": "Coven", + "isbn": "9780691229959", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2022", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing on the Job", + "edition": "N/A", + "author": "Coven", + "isbn": "9780691229959", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2022", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Elements of Style", + "edition": "N/A", + "author": "Strunk", + "isbn": "9781647986414", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$0.75", + "item_type": "digital" + } + ] + }, + { + "department": "CHIN", + "course_num": "3136W", + "section": "80", + "instructor": "Liana Chen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Images of Women in Chinese Thought & Culture", + "edition": "N/A", + "author": "Wang", + "isbn": "9780872206519", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Images of Women in Chinese Thought & Culture", + "edition": "N/A", + "author": "Wang", + "isbn": "9780872206519", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$7.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Images of Women in Chinese Thought & Culture", + "edition": "N/A", + "author": "Wang", + "isbn": "9780872206519", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$19.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Images of Women in Chinese Thought & Culture", + "edition": "N/A", + "author": "Wang", + "isbn": "9780872206519", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Raise the Red Lantern", + "edition": "N/A", + "author": "Tong", + "isbn": "9780060596330", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1990", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_USED", + "price_display": "$10.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Raise the Red Lantern", + "edition": "N/A", + "author": "Tong", + "isbn": "9780060596330", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1990", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$13.99", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BME", + "course_num": "4990", + "section": "14", + "instructor": "Hyung Sok Choe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "38", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1001", + "section": "44", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6210", + "section": "10", + "instructor": "Joy Volarich", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to the Financial Management of Healthcare Organizations", + "edition": "7th", + "author": "Nowicki", + "isbn": "9781567939040", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Health Administration Press***DO NOT ORDER FROM, MUST ORDER DIRECTLY FROM IPG***", + "type_condition": "RENTAL_NEW", + "price_display": "$87.10", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to the Financial Management of Healthcare Organizations", + "edition": "7th", + "author": "Nowicki", + "isbn": "9781567939040", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Health Administration Press***DO NOT ORDER FROM, MUST ORDER DIRECTLY FROM IPG***", + "type_condition": "BUY_NEW", + "price_display": "$134.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to the Financial Management of Healthcare Organizations", + "edition": "7th", + "author": "Nowicki", + "isbn": "9781567939040", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Health Administration Press***DO NOT ORDER FROM, MUST ORDER DIRECTLY FROM IPG***", + "type_condition": "BUY_USED", + "price_display": "$100.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to the Financial Management of Healthcare Organizations", + "edition": "7th", + "author": "Nowicki", + "isbn": "9781567939040", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Health Administration Press***DO NOT ORDER FROM, MUST ORDER DIRECTLY FROM IPG***", + "type_condition": "RENTAL_USED", + "price_display": "$56.28", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Care Finance (w/Nav2 Advantage Access)", + "edition": "8th", + "author": "Cleverley", + "isbn": "9781284094633", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$124.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Care Finance (w/Nav2 Advantage Access)", + "edition": "8th", + "author": "Cleverley", + "isbn": "9781284094633", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$93.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Care Finance (w/Nav2 Advantage Access)", + "edition": "8th", + "author": "Cleverley", + "isbn": "9781284094633", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$52.29", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essentials of Health Care Finance", + "edition": "8th", + "author": "Cleverley", + "isbn": "9781284094640", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$74.07", + "item_type": "digital" + }, + { + "title": "Introduction to the Financial Management of Healthcare Organizations, Seventh Edition", + "edition": "N/A", + "author": "Nowicki", + "isbn": "9781567939071", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Independent Publishers Group - IPG", + "type_condition": "BUY_NEW", + "price_display": "$115.00", + "item_type": "digital" + }, + { + "title": "Introduction to the Financial Management of Healthcare Organizations, Eighth Edition", + "edition": "N/A", + "author": "Nowicki", + "isbn": "9781640552784", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Independent Publishers Group - IPG", + "type_condition": "BUY_NEW", + "price_display": "$115.00", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "40", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "3808", + "section": "10", + "instructor": "Susan Johnston", + "term_name": "Fall 2023", + "texts": [ + { + "title": "War, Women & Druids", + "edition": "N/A", + "author": "Freeman", + "isbn": "9780292718364", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "University of Texas Press Warehouse c/o Chicago Distribution Center", + "type_condition": "BUY_USED", + "price_display": "$17.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "War, Women & Druids", + "edition": "N/A", + "author": "Freeman", + "isbn": "9780292718364", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "University of Texas Press Warehouse c/o Chicago Distribution Center", + "type_condition": "BUY_NEW", + "price_display": "$23.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Atlantic Celts: Ancient People or Modern Invention?", + "edition": "N/A", + "author": "James", + "isbn": "9780299166748", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "University of Wisconsin Press", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Atlantic Celts: Ancient People or Modern Invention?", + "edition": "N/A", + "author": "James", + "isbn": "9780299166748", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "University of Wisconsin Press", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "War, Women, and Druids", + "edition": "N/A", + "author": "Freeman", + "isbn": "9780292756397", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Titan Books Limited", + "type_condition": "BUY_NEW", + "price_display": "$2.99", + "item_type": "digital" + } + ] + }, + { + "department": "GEOG", + "course_num": "3161", + "section": "80", + "instructor": "Liliana Monk", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Placing Latin America", + "edition": "4th", + "author": "Jackiewicz", + "isbn": "9781538126301", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_NEW", + "price_display": "$37.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Placing Latin America", + "edition": "4th", + "author": "Jackiewicz", + "isbn": "9781538126301", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_USED", + "price_display": "$43.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Placing Latin America", + "edition": "4th", + "author": "Jackiewicz", + "isbn": "9781538126301", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_USED", + "price_display": "$22.90", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Placing Latin America", + "edition": "4th", + "author": "Jackiewicz", + "isbn": "9781538126301", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_NEW", + "price_display": "$57.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Latin America & Caribbean", + "edition": "7th", + "author": "Blouet", + "isbn": "9781118729847", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$147.38", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Latin America & Caribbean", + "edition": "7th", + "author": "Blouet", + "isbn": "9781118729847", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$147.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Latin America & Caribbean", + "edition": "7th", + "author": "Blouet", + "isbn": "9781118729847", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$82.53", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Latin America & Caribbean", + "edition": "7th", + "author": "Blouet", + "isbn": "9781118729847", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$196.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Latin America and the Caribbean", + "edition": "7th", + "author": "Blouet", + "isbn": "9781118919521", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$36.96", + "item_type": "digital" + }, + { + "title": "Placing Latin America", + "edition": "4th", + "author": "Jackiewicz", + "isbn": "9781538126318", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$46.50", + "item_type": "digital" + }, + { + "title": "Latin America and the Caribbean", + "edition": "7th", + "author": "Blouet", + "isbn": "9781118919521", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$88.00", + "item_type": "digital" + } + ] + }, + { + "department": "CAH", + "course_num": "4139", + "section": "80", + "instructor": "Christopher Wilson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Reclaiming Female Agency", + "edition": "N/A", + "author": "Broude", + "isbn": "9780520242524", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "University of California Press", + "type_condition": "RENTAL_NEW", + "price_display": "$41.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reclaiming Female Agency", + "edition": "N/A", + "author": "Broude", + "isbn": "9780520242524", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$54.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reclaiming Female Agency", + "edition": "N/A", + "author": "Broude", + "isbn": "9780520242524", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "University of California Press", + "type_condition": "RENTAL_USED", + "price_display": "$21.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reclaiming Female Agency", + "edition": "N/A", + "author": "Broude", + "isbn": "9780520242524", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "EXNS", + "course_num": "1119W", + "section": "10", + "instructor": "Mary Barron", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Adulteration of Children's Sports", + "edition": "N/A", + "author": "Erdal", + "isbn": "9781498571531", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Adulteration of Children's Sports", + "edition": "N/A", + "author": "Erdal", + "isbn": "9781498571531", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$44.99", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BISC", + "course_num": "6210", + "section": "10", + "instructor": "Gustavo Hormiga", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "41", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "APSC", + "course_num": "3115", + "section": "10", + "instructor": "Hernan Abeledo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "3991", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "3101", + "section": "10", + "instructor": "Scott Lancaster", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intermediate Accounting (Loose Pgs)", + "edition": "18th", + "author": "Kieso", + "isbn": "9781119790976", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$123.00", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Intermediate Accounting (Loose Pgs)", + "edition": "18th", + "author": "Kieso", + "isbn": "9781119790976", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$163.75", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Intermediate Accounting, Enhanced eText", + "edition": "18th", + "author": "Kieso", + "isbn": "9781119778899", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$50.19", + "item_type": "digital" + }, + { + "title": "Intermediate Accounting, Enhanced eText", + "edition": "18th", + "author": "Kieso", + "isbn": "9781119778899", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$119.50", + "item_type": "digital" + } + ] + }, + { + "department": "APSC", + "course_num": "2058", + "section": "10", + "instructor": "Hamidreza Sarmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "1315", + "section": "10", + "instructor": "Holly Dugan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Hunger Games", + "edition": "N/A", + "author": "Collins", + "isbn": "9780439023528", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Scholastic, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hunger Games", + "edition": "N/A", + "author": "Collins", + "isbn": "9780439023528", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Scholastic, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$14.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hunger Games", + "edition": "N/A", + "author": "Collins", + "isbn": "9780439023528", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Scholastic, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$6.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hunger Games", + "edition": "N/A", + "author": "Collins", + "isbn": "9780439023528", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Scholastic, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$11.24", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Interesting Narrative & Other Writings", + "edition": "N/A", + "author": "Equiano", + "isbn": "9780142437162", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2003", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Interesting Narrative & Other Writings", + "edition": "N/A", + "author": "Equiano", + "isbn": "9780142437162", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2003", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Three Guineas", + "edition": "N/A", + "author": "Woolf", + "isbn": "9780156901772", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1966", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Three Guineas", + "edition": "N/A", + "author": "Woolf", + "isbn": "9780156901772", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1966", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$15.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "How to Get Filthy Rich in Rising Asia", + "edition": "N/A", + "author": "Hamid", + "isbn": "9781594632334", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "How to Get Filthy Rich in Rising Asia", + "edition": "N/A", + "author": "Hamid", + "isbn": "9781594632334", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "How to Get Filthy Rich in Rising Asia", + "edition": "N/A", + "author": "Hamid", + "isbn": "9781594632334", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Utopia", + "edition": "N/A", + "author": "More", + "isbn": "9780300186109", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2014", + "publisher": "Yale University Press", + "type_condition": "BUY_USED", + "price_display": "$6.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Utopia", + "edition": "N/A", + "author": "More", + "isbn": "9780300186109", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2014", + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$8.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Christmas Carol & Other Christmas Writings", + "edition": "N/A", + "author": "Dickens", + "isbn": "9780140439052", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$8.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Christmas Carol & Other Christmas Writings", + "edition": "N/A", + "author": "Dickens", + "isbn": "9780140439052", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$11.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brave New World (with PS Insights etc)", + "edition": "N/A", + "author": "Huxley", + "isbn": "9780060850524", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2006", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brave New World (with PS Insights etc)", + "edition": "N/A", + "author": "Huxley", + "isbn": "9780060850524", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2006", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$16.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Great Gatsby", + "edition": "N/A", + "author": "Fitzgerald", + "isbn": "9780743273565", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1953", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Great Gatsby", + "edition": "N/A", + "author": "Fitzgerald", + "isbn": "9780743273565", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1953", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Great Gatsby", + "edition": "N/A", + "author": "Fitzgerald", + "isbn": "9780743273565", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1953", + "publisher": "Simon & Schuster", + "type_condition": "RENTAL_NEW", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Utopia", + "edition": "2nd", + "author": "More", + "isbn": "9780300195224", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$8.95", + "item_type": "digital" + }, + { + "title": "Three Guineas", + "edition": "N/A", + "author": "Woolf", + "isbn": "9780547707549", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$12.99", + "item_type": "digital" + }, + { + "title": "Brave New World", + "edition": "N/A", + "author": "Huxley", + "isbn": "9780062368232", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$13.99", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "26", + "instructor": "Emma Custis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3601", + "section": "10", + "instructor": "Sanjay Jain", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Operations Management (RRPHE)", + "edition": "14th", + "author": "Heizer", + "isbn": "9780137476442", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Operations Management (RRPHE)", + "edition": "14th", + "author": "Heizer", + "isbn": "9780137476442", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "14th Edition: Pearson eText Operations Management: Sustainability and Supply Chain Management -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "14th", + "author": "Heizer", + "isbn": "9780137649136", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Operations Management", + "edition": "14th", + "author": "Heizer", + "isbn": "9780137649198", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$110.25", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "4950", + "section": "10", + "instructor": "Mirasol Espanola", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "4180W", + "section": "10", + "instructor": "Arnaud Martin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EHS", + "course_num": "3175", + "section": "10", + "instructor": "Andrew Garrett", + "term_name": "Fall 2023", + "texts": [ + { + "title": "EMS Safety", + "edition": "2nd", + "author": "Naemt", + "isbn": "9781284041118", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "EMS Safety", + "edition": "2nd", + "author": "Naemt", + "isbn": "9781284041118", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$27.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "EMS Safety", + "edition": "2nd", + "author": "Naemt", + "isbn": "9781284041118", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$11.18", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "3702", + "section": "10", + "instructor": "Lara Rodriguez-Delgado", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "6207", + "section": "MV", + "instructor": "Heidi Eldridge", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Crime Scene Photography", + "edition": "3rd", + "author": "Robinson", + "isbn": "9780128027646", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "BUY_USED", + "price_display": "$75.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Crime Scene Photography", + "edition": "3rd", + "author": "Robinson", + "isbn": "9780128027646", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "BUY_NEW", + "price_display": "$99.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Crime Scene Photography", + "edition": "3rd", + "author": "Robinson", + "isbn": "9780128027646", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "RENTAL_USED", + "price_display": "$41.98", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Crime Scene Photography", + "edition": "3rd", + "author": "Robinson", + "isbn": "9780128027646", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "RENTAL_NEW", + "price_display": "$64.97", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Crime Scene Photography", + "edition": "N/A", + "author": "Robinson", + "isbn": "9780128027684", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Elsevier", + "type_condition": "BUY_NEW", + "price_display": "$64.97", + "item_type": "digital" + }, + { + "title": "Crime Scene Photography", + "edition": "3rd", + "author": "Robinson", + "isbn": "9780128027684", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Elsevier", + "type_condition": "BUY_NEW", + "price_display": "$78.99", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "13", + "instructor": "Almas Ayaz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2153", + "section": "14", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lab Notebook Spiral Bound 100 Pages (Copy Page Perforated)", + "edition": "N/A", + "author": "Barbakam", + "isbn": "9780978534424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "41", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "EAP", + "course_num": "6111", + "section": "10", + "instructor": "Natalia Dolgova", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Engineering Communication", + "edition": "N/A", + "author": "Knisely", + "isbn": "9781133114703", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$94.41", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Engineering Communication", + "edition": "N/A", + "author": "Knisely", + "isbn": "9781133114703", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$145.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Engineering Communication", + "edition": "N/A", + "author": "Knisely", + "isbn": "9781133114703", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$58.10", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Engineering Communication", + "edition": "N/A", + "author": "Knisely", + "isbn": "9781133114703", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$109.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Engineering Communication", + "edition": "1st", + "author": "Knisely", + "isbn": "9781305142862", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "Engineering Communication", + "edition": "N/A", + "author": "Knisely", + "isbn": "9781305142862", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$67.99", + "item_type": "digital" + }, + { + "title": "Engineering Communication", + "edition": "N/A", + "author": "Knisely", + "isbn": "9781305142862", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$86.49", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "2151", + "section": "11", + "instructor": "Nita Ghei", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Economic Development", + "edition": "12th", + "author": "Todaro", + "isbn": "9781292002972", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$99.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Economic Development", + "edition": "12th", + "author": "Todaro", + "isbn": "9781292002972", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$132.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Economic Development", + "edition": "12th", + "author": "Todaro", + "isbn": "9781292002972", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$55.65", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BME", + "course_num": "6488", + "section": "10", + "instructor": "Emilia Entcheva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3811", + "section": "10", + "instructor": "Shira Robinson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Modern Middle East", + "edition": "5th", + "author": "Gelvin", + "isbn": "9780190074067", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$81.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern Middle East", + "edition": "5th", + "author": "Gelvin", + "isbn": "9780190074067", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$61.13", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern Middle East", + "edition": "5th", + "author": "Gelvin", + "isbn": "9780190074067", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$61.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Midaq Alley", + "edition": "N/A", + "author": "Mahfouz", + "isbn": "9780385264761", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1975", + "publisher": "Doubleday Books", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Midaq Alley", + "edition": "N/A", + "author": "Mahfouz", + "isbn": "9780385264761", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1975", + "publisher": "Doubleday Books", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Modern Middle East", + "edition": "5th", + "author": "Gelvin", + "isbn": "9780190074074", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$32.99", + "item_type": "digital" + }, + { + "title": "The Modern Middle East", + "edition": "5th", + "author": "Gelvin", + "isbn": "9780190074074", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$38.06", + "item_type": "digital" + }, + { + "title": "The Modern Middle East", + "edition": "5th", + "author": "Gelvin", + "isbn": "9780190074074", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$50.75", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "1002", + "section": "10", + "instructor": "Roy Grinker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "2224", + "section": "30", + "instructor": "Rachel Canalichio", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "2301", + "section": "10", + "instructor": "Anju Wadhwa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2101", + "section": "10", + "instructor": "Arun Malik", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Microeconomics", + "edition": "5th", + "author": "Besanko", + "isbn": "9781118572276", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$221.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Microeconomics", + "edition": "5th", + "author": "Besanko", + "isbn": "9781118572276", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$294.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Microeconomics", + "edition": "5th", + "author": "Besanko", + "isbn": "9781118572276", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$117.90", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CHEM", + "course_num": "2153", + "section": "24", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lab Notebook Spiral Bound 100 Pages (Copy Page Perforated)", + "edition": "N/A", + "author": "Barbakam", + "isbn": "9780978534424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "BISC", + "course_num": "2456", + "section": "11", + "instructor": "John Lill", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3168", + "section": "10", + "instructor": "Hope Harrison", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Wall Jumper", + "edition": "N/A", + "author": "Schneider", + "isbn": "9780226739410", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1983", + "publisher": "University of Chicago Press", + "type_condition": "RENTAL_NEW", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wall Jumper", + "edition": "N/A", + "author": "Schneider", + "isbn": "9780226739410", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1983", + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$23.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wall Jumper", + "edition": "N/A", + "author": "Schneider", + "isbn": "9780226739410", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1983", + "publisher": "University of Chicago Press", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wall Jumper", + "edition": "N/A", + "author": "Schneider", + "isbn": "9780226739410", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1983", + "publisher": "University of Chicago Press", + "type_condition": "RENTAL_USED", + "price_display": "$9.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Germany Since 1945", + "edition": "N/A", + "author": "Caldwell", + "isbn": "9781474262415", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Bloomsbury Academic", + "type_condition": "RENTAL_NEW", + "price_display": "$32.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Germany Since 1945", + "edition": "N/A", + "author": "Caldwell", + "isbn": "9781474262415", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Bloomsbury Academic", + "type_condition": "BUY_NEW", + "price_display": "$40.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Germany Since 1945", + "edition": "N/A", + "author": "Caldwell", + "isbn": "9781474262415", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Bloomsbury Academic", + "type_condition": "BUY_USED", + "price_display": "$30.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Germany Since 1945", + "edition": "N/A", + "author": "Caldwell", + "isbn": "9781474262415", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Bloomsbury Academic", + "type_condition": "RENTAL_USED", + "price_display": "$16.30", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Germany Since 1945", + "edition": "N/A", + "author": "Caldwell", + "isbn": "9781474262446", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$23.25", + "item_type": "digital" + }, + { + "title": "Germany Since 1945", + "edition": "N/A", + "author": "Caldwell", + "isbn": "9781474262446", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$27.25", + "item_type": "digital" + }, + { + "title": "Germany Since 1945", + "edition": "N/A", + "author": "Caldwell", + "isbn": "9781474262446", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "BUY_NEW", + "price_display": "$29.50", + "item_type": "digital" + } + ] + }, + { + "department": "FINA", + "course_num": "3001", + "section": "10", + "instructor": "Min Hwang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Prin of Corporate Finance (RRMCG RENTAL Edition)", + "edition": "14th", + "author": "BREALEY", + "isbn": "9781264080946", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Prin of Corporate Finance (RRMCG RENTAL Edition)", + "edition": "14th", + "author": "BREALEY", + "isbn": "9781264080946", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Principles of Corporate Finance", + "edition": "14th", + "author": "Brealey", + "isbn": "9781266032806", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$67.50", + "item_type": "digital" + }, + { + "title": "Principles of Corporate Finance", + "edition": "14th", + "author": "Brealey", + "isbn": "9781266032806", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$84.50", + "item_type": "digital" + }, + { + "title": "Principles of Corporate Finance", + "edition": "14th", + "author": "Brealey", + "isbn": "9781266032806", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$105.50", + "item_type": "digital" + } + ] + }, + { + "department": "AMST", + "course_num": "4400", + "section": "10", + "instructor": "James McMaster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FILM", + "course_num": "2153", + "section": "10", + "instructor": "Michael Shull", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Oxford History of World Cinema", + "edition": "N/A", + "author": "Nowell-Smith", + "isbn": "9780198742425", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$16.30", + "item_type": "print" + }, + { + "title": "Oxford History of World Cinema", + "edition": "N/A", + "author": "Nowell-Smith", + "isbn": "9780198742425", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$40.75", + "item_type": "print" + }, + { + "title": "Oxford History of World Cinema", + "edition": "N/A", + "author": "Nowell-Smith", + "isbn": "9780198742425", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$30.75", + "item_type": "print" + }, + { + "title": "The Oxford History of World Cinema", + "edition": "N/A", + "author": "Nowell-Smith", + "isbn": "9780191518188", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$17.54", + "item_type": "digital" + }, + { + "title": "The Oxford History of World Cinema", + "edition": "N/A", + "author": "Nowell-Smith", + "isbn": "9780191518188", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$20.24", + "item_type": "digital" + }, + { + "title": "The Oxford History of World Cinema", + "edition": "N/A", + "author": "Nowell-Smith", + "isbn": "9780191518188", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$26.99", + "item_type": "digital" + }, + { + "title": "The Oxford History of World Cinema", + "edition": "N/A", + "author": "Nowell-Smith", + "isbn": "9780191518188", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$26.99", + "item_type": "digital" + } + ] + }, + { + "department": "CSA", + "course_num": "1501", + "section": "12", + "instructor": "Dean Kessmann", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Short Course in Photography: Film & Darkroom", + "edition": "10th", + "author": "London", + "isbn": "9780134638850", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$52.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Short Course in Photography: Film & Darkroom", + "edition": "10th", + "author": "London", + "isbn": "9780134638850", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$93.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Short Course in Photography: Film & Darkroom", + "edition": "10th", + "author": "London", + "isbn": "9780134638850", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$124.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "A Short Course in Photography", + "edition": "10th", + "author": "Stone", + "isbn": "9780134639468", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$36.75", + "item_type": "digital" + }, + { + "title": "Short Course in Photography, A", + "edition": "10th", + "author": "London", + "isbn": "9780134639413", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$55.00", + "item_type": "digital" + }, + { + "title": "Short Course in Photography, A", + "edition": "10th", + "author": "London", + "isbn": "9780134639413", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "EXNS", + "course_num": "2119", + "section": "10", + "instructor": "Gabrielle Headrick", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Science of Nutrition", + "edition": "5th", + "author": "Thompson", + "isbn": "9780134898674", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$111.30", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Science of Nutrition", + "edition": "5th", + "author": "Thompson", + "isbn": "9780134898674", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$198.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Science of Nutrition", + "edition": "5th", + "author": "Thompson", + "isbn": "9780134898674", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$265.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pearson eText The Science of Nutrition -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "5th", + "author": "Thompson", + "isbn": "9780135371565", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "The Science of Nutrition, 5th Edition", + "edition": "5th", + "author": "Thompson", + "isbn": "9780135351123", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "CAH", + "course_num": "3102", + "section": "80", + "instructor": "Elise Friedland", + "term_name": "Fall 2023", + "texts": [ + { + "title": "History of Roman Art", + "edition": "2nd", + "author": "Tuck", + "isbn": "9781119653288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$82.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of Roman Art", + "edition": "2nd", + "author": "Tuck", + "isbn": "9781119653288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$62.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "A History of Roman Art", + "edition": "2nd", + "author": "Tuck", + "isbn": "9781119653301", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$55.00", + "item_type": "digital" + } + ] + }, + { + "department": "ENGL", + "course_num": "6510", + "section": "80", + "instructor": "Jennifer James", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Wicked Flesh", + "edition": "N/A", + "author": "Johnson", + "isbn": "9781512823707", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "University of Pennsylvania Press c/o IPS Customer Service", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wicked Flesh", + "edition": "N/A", + "author": "Johnson", + "isbn": "9781512823707", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "University of Pennsylvania Press c/o IPS Customer Service", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Incidents in the Life of a Slave Girl", + "edition": "2nd", + "author": "Jacobs", + "isbn": "9780393614565", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$28.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Incidents in the Life of a Slave Girl", + "edition": "2nd", + "author": "Jacobs", + "isbn": "9780393614565", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$11.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Incidents in the Life of a Slave Girl", + "edition": "2nd", + "author": "Jacobs", + "isbn": "9780393614565", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$21.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Corregidora", + "edition": "N/A", + "author": "Jones", + "isbn": "9780807061091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Corregidora", + "edition": "N/A", + "author": "Jones", + "isbn": "9780807061091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Beacon Press c/o Random House", + "type_condition": "RENTAL_USED", + "price_display": "$6.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Corregidora", + "edition": "N/A", + "author": "Jones", + "isbn": "9780807061091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sojourner Truth", + "edition": "N/A", + "author": "Painter", + "isbn": "9780393317084", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sojourner Truth", + "edition": "N/A", + "author": "Painter", + "isbn": "9780393317084", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$7.18", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sojourner Truth", + "edition": "N/A", + "author": "Painter", + "isbn": "9780393317084", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Lose Your Mother", + "edition": "N/A", + "author": "Hartman", + "isbn": "9780374531157", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "item_type": "print" + }, + { + "title": "Lose Your Mother", + "edition": "N/A", + "author": "Hartman", + "isbn": "9780374531157", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "item_type": "print" + }, + { + "title": "Undrowned", + "edition": "N/A", + "author": "Gumbs", + "isbn": "9781849353977", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "AK Press Distribution", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Undrowned", + "edition": "N/A", + "author": "Gumbs", + "isbn": "9781849353977", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "AK Press Distribution", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of Mary Prince", + "edition": "N/A", + "author": "Prince", + "isbn": "9780140437492", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of Mary Prince", + "edition": "N/A", + "author": "Prince", + "isbn": "9780140437492", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of Mary Prince", + "edition": "N/A", + "author": "Prince", + "isbn": "9780140437492", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bondwoman's Narrative", + "edition": "N/A", + "author": "Crafts", + "isbn": "9780446690294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Warner Books, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$13.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bondwoman's Narrative", + "edition": "N/A", + "author": "Crafts", + "isbn": "9780446690294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Warner Books, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$17.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bondwoman's Narrative", + "edition": "N/A", + "author": "Crafts", + "isbn": "9780446690294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Warner Books, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$7.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bondwoman's Narrative", + "edition": "N/A", + "author": "Crafts", + "isbn": "9780446690294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Warner Books, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kindred", + "edition": "N/A", + "author": "Butler", + "isbn": "9780807083697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kindred", + "edition": "N/A", + "author": "Butler", + "isbn": "9780807083697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wake", + "edition": "N/A", + "author": "Hall", + "isbn": "9781982115197", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$19.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wake", + "edition": "N/A", + "author": "Hall", + "isbn": "9781982115197", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beloved (with New Foreword)", + "edition": "N/A", + "author": "Morrison", + "isbn": "9781400033416", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beloved (with New Foreword)", + "edition": "N/A", + "author": "Morrison", + "isbn": "9781400033416", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beloved (with New Foreword)", + "edition": "N/A", + "author": "Morrison", + "isbn": "9781400033416", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$7.65", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beloved (with New Foreword)", + "edition": "N/A", + "author": "Morrison", + "isbn": "9781400033416", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Bondwoman's Narrative", + "edition": "N/A", + "author": "Crafts", + "isbn": "9780759527645", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hachette Book Group", + "type_condition": "BUY_NEW", + "price_display": "$11.99", + "item_type": "digital" + }, + { + "title": "Sojourner Truth: A Life, A Symbol", + "edition": "N/A", + "author": "Painter", + "isbn": "9780393635669", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "item_type": "digital" + } + ] + }, + { + "department": "EAP", + "course_num": "1015", + "section": "10", + "instructor": "Joshua Paiz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319244255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_USED", + "price_display": "$44.22", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319244255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_NEW", + "price_display": "$100.50", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319244255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$75.38", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319244255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_USED", + "price_display": "$75.50", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319392895", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$35.99", + "item_type": "digital" + } + ] + }, + { + "department": "EALL", + "course_num": "6881", + "section": "80", + "instructor": "Xiaofei Kang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Gendering Chinese Religion", + "edition": "N/A", + "author": "Jia", + "isbn": "9781438453088", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "State University of New York Press", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gendering Chinese Religion", + "edition": "N/A", + "author": "Jia", + "isbn": "9781438453088", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "State University of New York Press", + "type_condition": "BUY_NEW", + "price_display": "$34.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gendering Chinese Religion", + "edition": "N/A", + "author": "Jia", + "isbn": "9781438453088", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "State University of New York Press", + "type_condition": "RENTAL_NEW", + "price_display": "$26.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gendering Chinese Religion", + "edition": "N/A", + "author": "Jia", + "isbn": "9781438453095", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Suny Press", + "type_condition": "BUY_NEW", + "price_display": "$34.50", + "item_type": "digital" + }, + { + "title": "Women, Gender, and Sexuality in China", + "edition": "N/A", + "author": "Yao", + "isbn": "9781317237501", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$46.95", + "item_type": "digital" + } + ] + }, + { + "department": "GEOL", + "course_num": "1005", + "section": "11", + "instructor": "Peter Nassar", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Loose Leaf for Environmental Geology", + "edition": "12th", + "author": "Montgomery", + "isbn": "9781266715969", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$117.75", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Loose Leaf for Environmental Geology", + "edition": "12th", + "author": "Montgomery", + "isbn": "9781266715969", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_USED", + "price_display": "$88.50", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Environmental Geology (RRMCG)", + "edition": "12th", + "author": "Montgomery", + "isbn": "9781264094721", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$50.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Environmental Geology (RRMCG)", + "edition": "12th", + "author": "Montgomery", + "isbn": "9781264094721", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "BUY_NEW", + "price_display": "$171.43", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Environmental Geology (RRMCG)", + "edition": "12th", + "author": "Montgomery", + "isbn": "9781264094721", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "BUY_USED", + "price_display": "$128.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Environmental Geology", + "edition": "12th", + "author": "Montgomery", + "isbn": "9781266716768", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$57.25", + "item_type": "digital" + }, + { + "title": "Environmental Geology", + "edition": "12th", + "author": "Montgomery", + "isbn": "9781266716768", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$74.25", + "item_type": "digital" + }, + { + "title": "Environmental Geology", + "edition": "12th", + "author": "Montgomery", + "isbn": "9781266716768", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$82.75", + "item_type": "digital" + } + ] + }, + { + "department": "AMST", + "course_num": "1100", + "section": "34", + "instructor": "Elisabeth Anker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6503", + "section": "20", + "instructor": "Christopher Kojm", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Chicago Manual of Style", + "edition": "13th", + "author": "Chicago Univ", + "isbn": "9780226103914", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1982", + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$5.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chicago Manual of Style", + "edition": "13th", + "author": "Chicago Univ", + "isbn": "9780226103914", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1982", + "publisher": "University of Chicago Press", + "type_condition": "BUY_USED", + "price_display": "$4.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing on the Job", + "edition": "N/A", + "author": "Coven", + "isbn": "9780691229959", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2022", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing on the Job", + "edition": "N/A", + "author": "Coven", + "isbn": "9780691229959", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2022", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Elements of Style", + "edition": "N/A", + "author": "Strunk", + "isbn": "9781647986414", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$0.75", + "item_type": "digital" + } + ] + }, + { + "department": "GEOG", + "course_num": "2140", + "section": "10", + "instructor": "Lisa Benton-Short", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Cities of North America", + "edition": "N/A", + "author": "Benton-Short", + "isbn": "9781442213135", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$40.74", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Cities of North America", + "edition": "N/A", + "author": "Benton-Short", + "isbn": "9781442213135", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$72.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Cities of North America", + "edition": "N/A", + "author": "Benton-Short", + "isbn": "9781442213135", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$97.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Cities of North America", + "edition": "N/A", + "author": "Benton-Short", + "isbn": "9781442213135", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$72.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Cities of North America", + "edition": "N/A", + "author": "Benton-Short", + "isbn": "9781442213159", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$45.00", + "item_type": "digital" + }, + { + "title": "Cities of North America", + "edition": "N/A", + "author": "Benton-Short", + "isbn": "9781442213159", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$52.50", + "item_type": "digital" + }, + { + "title": "Cities of North America", + "edition": "N/A", + "author": "Author Info Not Available", + "isbn": "9781442213159", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_NEW", + "price_display": "$75.00", + "item_type": "digital" + } + ] + }, + { + "department": "ANAT", + "course_num": "6130", + "section": "10", + "instructor": "Victor Taylor", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "6130", + "section": "10", + "instructor": "James McMaster", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Disappearing Rooms", + "edition": "N/A", + "author": "Castaneda", + "isbn": "9781478019633", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Duke University Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Disappearing Rooms", + "edition": "N/A", + "author": "Castaneda", + "isbn": "9781478019633", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Duke University Press", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Activist Affordances", + "edition": "N/A", + "author": "Dokumaci", + "isbn": "9781478019244", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Duke University Press", + "type_condition": "BUY_USED", + "price_display": "$21.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Activist Affordances", + "edition": "N/A", + "author": "Dokumaci", + "isbn": "9781478019244", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Duke University Press", + "type_condition": "BUY_NEW", + "price_display": "$28.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Group Works", + "edition": "N/A", + "author": "Philbrick", + "isbn": "9781531502706", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Fordham University Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Group Works", + "edition": "N/A", + "author": "Philbrick", + "isbn": "9781531502706", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Fordham University Press", + "type_condition": "BUY_NEW", + "price_display": "$25.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Florida Room", + "edition": "N/A", + "author": "Vazquez", + "isbn": "9781478017929", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Duke University Press", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Florida Room", + "edition": "N/A", + "author": "Vazquez", + "isbn": "9781478017929", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Duke University Press", + "type_condition": "BUY_NEW", + "price_display": "$26.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Disidentifications", + "edition": "N/A", + "author": "Munoz", + "isbn": "9780816630158", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1999", + "publisher": "University of Minnesota Press", + "type_condition": "RENTAL_USED", + "price_display": "$8.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Disidentifications", + "edition": "N/A", + "author": "Munoz", + "isbn": "9780816630158", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1999", + "publisher": "University of Minnesota Press", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Disidentifications", + "edition": "N/A", + "author": "Munoz", + "isbn": "9780816630158", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1999", + "publisher": "University of Minnesota Press", + "type_condition": "RENTAL_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Disidentifications", + "edition": "N/A", + "author": "Munoz", + "isbn": "9780816630158", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1999", + "publisher": "University of Minnesota Press", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "How to Do Things with Words", + "edition": "N/A", + "author": "Austin", + "isbn": "9780674411500", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$3.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "How to Do Things with Words", + "edition": "N/A", + "author": "Austin", + "isbn": "9780674411500", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$4.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Sense of Brown", + "edition": "N/A", + "author": "Munoz", + "isbn": "9781478011033", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Duke University Press", + "type_condition": "BUY_USED", + "price_display": "$23.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sense of Brown", + "edition": "N/A", + "author": "Munoz", + "isbn": "9781478011033", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Duke University Press", + "type_condition": "BUY_NEW", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Group Works", + "edition": "N/A", + "author": "Philbrick", + "isbn": "9781531502713", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fordham University Press", + "type_condition": "BUY_NEW", + "price_display": "$23.50", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "6200", + "section": "10", + "instructor": "Gwyneira Isaac", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "6103", + "section": "10", + "instructor": "Jeffrey Blomster", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Entangled: An Archaeology of the Relationships between Humans and Things", + "edition": "N/A", + "author": "Hodder", + "isbn": "9780470672129", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$57.50", + "item_type": "print" + }, + { + "title": "Entangled: An Archaeology of the Relationships between Humans and Things", + "edition": "N/A", + "author": "Hodder", + "isbn": "9780470672129", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$43.25", + "item_type": "print" + }, + { + "title": "Archaeology of Collective Action", + "edition": "N/A", + "author": "Saitta", + "isbn": "9780813030708", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "University Press of Florida", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Archaeology of Collective Action", + "edition": "N/A", + "author": "Saitta", + "isbn": "9780813030708", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "University Press of Florida", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "COMM", + "course_num": "1040", + "section": "12", + "instructor": "Barry Piatt", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Speaker's Guidebook", + "edition": "8th", + "author": "O'Hair", + "isbn": "9781319201739", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_NEW", + "price_display": "$161.50", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Speaker's Guidebook", + "edition": "8th", + "author": "O'Hair", + "isbn": "9781319201739", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_USED", + "price_display": "$121.25", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rhetorical Criticism :Exploration & Practice", + "edition": "5th", + "author": "Foss", + "isbn": "9781478634898", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Waveland Press, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$66.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Rhetorical Criticism :Exploration & Practice", + "edition": "5th", + "author": "Foss", + "isbn": "9781478634898", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Waveland Press, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$26.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Rhetorical Criticism :Exploration & Practice", + "edition": "5th", + "author": "Foss", + "isbn": "9781478634898", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Waveland Press, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$50.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Rhetorical Criticism :Exploration & Practice", + "edition": "5th", + "author": "Foss", + "isbn": "9781478634898", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Waveland Press, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$43.52", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Rhetorical Criticism", + "edition": "5th", + "author": "Foss", + "isbn": "9781478645351", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Waveland Press, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$33.48", + "item_type": "digital" + }, + { + "title": "Rhetorical Criticism", + "edition": "5th", + "author": "Foss", + "isbn": "9781478645351", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Waveland Press, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$50.21", + "item_type": "digital" + }, + { + "title": "A Speaker's Guidebook", + "edition": "8th", + "author": "O'Hair", + "isbn": "9781319336738", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$50.99", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "6999", + "section": "18", + "instructor": "Chung Hyuk Park", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "47", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "6999", + "section": "13", + "instructor": "Murray Loew", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2301", + "section": "11", + "instructor": "Warren Milteer", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Between Slavery & Freedom: Free People of Color in America From Settlement to the Civil War", + "edition": "N/A", + "author": "Winch", + "isbn": "9781442262249", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2016", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Between Slavery & Freedom: Free People of Color in America From Settlement to the Civil War", + "edition": "N/A", + "author": "Winch", + "isbn": "9781442262249", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2016", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$14.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Between Slavery & Freedom: Free People of Color in America From Settlement to the Civil War", + "edition": "N/A", + "author": "Winch", + "isbn": "9781442262249", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2016", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Between Slavery and Freedom", + "edition": "N/A", + "author": "Winch", + "isbn": "9780742551152", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_NEW", + "price_display": "$29.00", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "3162", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EHS", + "course_num": "2109", + "section": "10", + "instructor": "Andrew Garrett", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Spillover", + "edition": "N/A", + "author": "Quammen", + "isbn": "9780393066807", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$28.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Spillover", + "edition": "N/A", + "author": "Quammen", + "isbn": "9780393066807", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$21.75", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "BME", + "course_num": "6999", + "section": "17", + "instructor": "Anne-Laure Papa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3501", + "section": "11", + "instructor": "Senan Uyanik", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "4990", + "section": "15", + "instructor": "Emilia Entcheva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1001", + "section": "34", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "1031", + "section": "10", + "instructor": "Christopher Wilson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Art History (V1)", + "edition": "6th", + "author": "Stokstad", + "isbn": "9780134479279", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$226.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Art History (V1)", + "edition": "6th", + "author": "Stokstad", + "isbn": "9780134479279", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$169.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "3001", + "section": "16", + "instructor": "Jamesha Cox", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1001", + "section": "30", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1001", + "section": "31", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "AMST", + "course_num": "2010", + "section": "82", + "instructor": "Nicole Ivy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "4308", + "section": "80", + "instructor": "Michael Mann", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Python Crash Course", + "edition": "2nd", + "author": "Matthes", + "isbn": "9781593279288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "No Starch Press, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Python Crash Course", + "edition": "2nd", + "author": "Matthes", + "isbn": "9781593279288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "No Starch Press, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$39.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Python Crash Course", + "edition": "2nd", + "author": "Matthes", + "isbn": "9781593279288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "No Starch Press, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$29.96", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "COMM", + "course_num": "6190", + "section": "10", + "instructor": "Gelaye Debebe", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Leadership Challenge", + "edition": "6th", + "author": "Kouzes", + "isbn": "9781119278962", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Jossey-Bass, Incorporated Publishers", + "type_condition": "BUY_USED", + "price_display": "$30.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Leadership Challenge", + "edition": "6th", + "author": "Kouzes", + "isbn": "9781119278962", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Jossey-Bass, Incorporated Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$17.71", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Leadership Challenge", + "edition": "6th", + "author": "Kouzes", + "isbn": "9781119278962", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Jossey-Bass, Incorporated Publishers", + "type_condition": "BUY_NEW", + "price_display": "$40.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Leadership Challenge", + "edition": "6th", + "author": "Kouzes", + "isbn": "9781119278962", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Jossey-Bass, Incorporated Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$30.19", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Leadership Practices Inventory: Observer", + "edition": "5th", + "author": "Kouzes", + "isbn": "9781119397557", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$24.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leadership Practices Inventory Self", + "edition": "5th", + "author": "Kouzes", + "isbn": "9781119397519", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leadership Practices Inventory Self", + "edition": "5th", + "author": "Kouzes", + "isbn": "9781119397519", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leadership etc: LPI Part Wkbk (w/Observer form)", + "edition": "4th", + "author": "Kouzes", + "isbn": "9781118182734", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Jossey-Bass, Incorporated Publishers", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leadership Experience", + "edition": "6th", + "author": "Daft", + "isbn": "9781435462854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$254.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leadership Experience", + "edition": "6th", + "author": "Daft", + "isbn": "9781435462854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$135.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leadership Experience", + "edition": "6th", + "author": "Daft", + "isbn": "9781435462854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$339.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leadership Experience", + "edition": "6th", + "author": "Daft", + "isbn": "9781435462854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$271.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Working with Emotional Intelligence", + "edition": "N/A", + "author": "Goleman", + "isbn": "9780553378580", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Bantam Bks", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Working with Emotional Intelligence", + "edition": "N/A", + "author": "Goleman", + "isbn": "9780553378580", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Bantam Bks", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Working with Emotional Intelligence", + "edition": "N/A", + "author": "Goleman", + "isbn": "9780553378580", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Bantam Bks", + "type_condition": "RENTAL_NEW", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Leadership Experience", + "edition": "6th", + "author": "Daft", + "isbn": "9781285968339", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$52.49", + "item_type": "digital" + }, + { + "title": "The Leadership Experience", + "edition": "6th", + "author": "Daft", + "isbn": "9781285968339", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$75.99", + "item_type": "digital" + }, + { + "title": "The Leadership Experience", + "edition": "6th", + "author": "Daft", + "isbn": "9781285968339", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$91.49", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "2301", + "section": "12", + "instructor": "Anju Wadhwa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3106", + "section": "80", + "instructor": "Michael Mann", + "term_name": "Fall 2023", + "texts": [ + { + "title": "GIS Fundamentals", + "edition": "6th", + "author": "Bolstad", + "isbn": "9781593995522", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "XanEdu Pub Inc", + "type_condition": "RENTAL_USED", + "price_display": "$16.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "GIS Fundamentals", + "edition": "6th", + "author": "Bolstad", + "isbn": "9781593995522", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "XanEdu Pub Inc", + "type_condition": "RENTAL_NEW", + "price_display": "$31.13", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "GIS Fundamentals", + "edition": "6th", + "author": "Bolstad", + "isbn": "9781593995522", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "XanEdu Pub Inc", + "type_condition": "BUY_NEW", + "price_display": "$41.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "GIS Fundamentals", + "edition": "6th", + "author": "Bolstad", + "isbn": "9781593995522", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "XanEdu Pub Inc", + "type_condition": "BUY_USED", + "price_display": "$31.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "GEOG", + "course_num": "1003", + "section": "10", + "instructor": "Scott Odell", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Human-Environment Geography", + "edition": "N/A", + "author": "Moseley", + "isbn": "9781405189316", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$26.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Human-Environment Geography", + "edition": "N/A", + "author": "Moseley", + "isbn": "9781405189316", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$65.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Human-Environment Geography", + "edition": "N/A", + "author": "Moseley", + "isbn": "9781405189316", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$49.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "An Introduction to Human-Environment Geography", + "edition": "1st", + "author": "Laris", + "isbn": "9781118241004", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$31.00", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "3501", + "section": "14", + "instructor": "Mohammad Amin Hosseini", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "6491", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3035", + "section": "10", + "instructor": "Steven Brady", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Things They Carried", + "edition": "N/A", + "author": "O'Brien", + "isbn": "9780618706419", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Houghton Mifflin Company School Division", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Things They Carried", + "edition": "N/A", + "author": "O'Brien", + "isbn": "9780618706419", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Houghton Mifflin Company School Division", + "type_condition": "BUY_NEW", + "price_display": "$16.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Vietnam's American War", + "edition": "N/A", + "author": "Asselin", + "isbn": "9781107510500", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_USED", + "price_display": "$11.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Vietnam's American War", + "edition": "N/A", + "author": "Asselin", + "isbn": "9781107510500", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Vietnam's American War", + "edition": "N/A", + "author": "Asselin", + "isbn": "9781107510500", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$20.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Vietnam's American War", + "edition": "N/A", + "author": "Asselin", + "isbn": "9781107510500", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$27.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "When Heaven & Earth Changed Places", + "edition": "N/A", + "author": "Hayslip", + "isbn": "9780525431848", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "When Heaven & Earth Changed Places", + "edition": "N/A", + "author": "Hayslip", + "isbn": "9780525431848", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "When Heaven & Earth Changed Places", + "edition": "N/A", + "author": "Hayslip", + "isbn": "9780525431848", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "RENTAL_NEW", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "When Heaven & Earth Changed Places", + "edition": "N/A", + "author": "Hayslip", + "isbn": "9780525431848", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Richard Nixon & the Vietnam War", + "edition": "N/A", + "author": "Schmitz", + "isbn": "9781442262263", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$15.90", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Richard Nixon & the Vietnam War", + "edition": "N/A", + "author": "Schmitz", + "isbn": "9781442262263", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Richard Nixon & the Vietnam War", + "edition": "N/A", + "author": "Schmitz", + "isbn": "9781442262263", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$29.81", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Richard Nixon & the Vietnam War", + "edition": "N/A", + "author": "Schmitz", + "isbn": "9781442262263", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$39.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Quiet American", + "edition": "N/A", + "author": "Greene", + "isbn": "9780143039020", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_USED", + "price_display": "$7.92", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Quiet American", + "edition": "N/A", + "author": "Greene", + "isbn": "9780143039020", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Quiet American", + "edition": "N/A", + "author": "Greene", + "isbn": "9780143039020", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Quiet American", + "edition": "N/A", + "author": "Greene", + "isbn": "9780143039020", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Things They Carried", + "edition": "N/A", + "author": "O'Brien", + "isbn": "9780547420295", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$14.99", + "item_type": "digital" + }, + { + "title": "Vietnam's American War", + "edition": "N/A", + "author": "Asselin", + "isbn": "9781108547123", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$24.00", + "item_type": "digital" + }, + { + "title": "Vietnam's American War", + "edition": "N/A", + "author": "Asselin", + "isbn": "9781108547123", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6502", + "section": "27", + "instructor": "Nizar Farsakh", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Getting to Yes", + "edition": "3rd", + "author": "Fisher", + "isbn": "9780143118756", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Getting to Yes", + "edition": "3rd", + "author": "Fisher", + "isbn": "9780143118756", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CHEM", + "course_num": "2153", + "section": "10", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lab Notebook Spiral Bound 100 Pages (Copy Page Perforated)", + "edition": "N/A", + "author": "Barbakam", + "isbn": "9780978534424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "COMM", + "course_num": "1041", + "section": "12", + "instructor": "Nader Chaaban", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Interpersonal Communication Book (RRPHE)", + "edition": "16th", + "author": "DeVito", + "isbn": "9780136968474", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Interpersonal Communication Book (RRPHE)", + "edition": "16th", + "author": "DeVito", + "isbn": "9780136968474", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pearson eText for DeVito, The Interpersonal Communication Book -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "16th", + "author": "DeVito", + "isbn": "9780137589166", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Interpersonal Communication Book, The", + "edition": "16th", + "author": "DeVito", + "isbn": "9780136968368", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$98.00", + "item_type": "digital" + }, + { + "title": "Interpersonal Communication Book, The", + "edition": "16th", + "author": "DeVito", + "isbn": "9780136968399", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$98.00", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "6555", + "section": "10", + "instructor": "James Hahn", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Computer Animation", + "edition": "3rd", + "author": "Parent", + "isbn": "9780124158429", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Morgan Kaufmann Publishers", + "type_condition": "BUY_USED", + "price_display": "$52.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Computer Animation", + "edition": "3rd", + "author": "Parent", + "isbn": "9780124158429", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Morgan Kaufmann Publishers", + "type_condition": "BUY_NEW", + "price_display": "$69.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Computer Animation", + "edition": "3rd", + "author": "Parent", + "isbn": "9780124159730", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Elsevier", + "type_condition": "BUY_NEW", + "price_display": "$68.95", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "8999", + "section": "13", + "instructor": "Murray Loew", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1005", + "section": "10", + "instructor": "Carson Murray", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "2001", + "section": "16", + "instructor": "Jenny Zha Giedt", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Financial Accounting (RRMCG RENTAL Edition)", + "edition": "11th", + "author": "Libby", + "isbn": "9781264229734", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Financial Accounting (RRMCG RENTAL Edition)", + "edition": "11th", + "author": "Libby", + "isbn": "9781264229734", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Connect Online Access for Financial Accounting", + "edition": "11th", + "author": "LIBBY", + "isbn": "9781265717254", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$189.75", + "item_type": "digital" + } + ] + }, + { + "department": "ACCY", + "course_num": "6401", + "section": "11", + "instructor": "William Stromsem", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HLWL", + "course_num": "1109", + "section": "14", + "instructor": "Kimberly Levitt", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Human Sexuality Today", + "edition": "8th", + "author": "King", + "isbn": "9780205988006", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$134.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Human Sexuality Today", + "edition": "8th", + "author": "King", + "isbn": "9780205988006", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$71.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Human Sexuality Today", + "edition": "8th", + "author": "King", + "isbn": "9780205988006", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$179.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "HSCI", + "course_num": "2105", + "section": "10", + "instructor": "Jeffrey Spike", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Bioethics", + "edition": "4th", + "author": "Vaughn", + "isbn": "9780190903268", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$83.36", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bioethics", + "edition": "4th", + "author": "Vaughn", + "isbn": "9780190903268", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$128.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bioethics", + "edition": "4th", + "author": "Vaughn", + "isbn": "9780190903268", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$96.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bioethics", + "edition": "4th", + "author": "Vaughn", + "isbn": "9780190903268", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$53.87", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BISC", + "course_num": "2456", + "section": "10", + "instructor": "John Lill", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "2585", + "section": "10", + "instructor": "Robert Pyron", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "APSC", + "course_num": "2057", + "section": "30", + "instructor": "Danmeng Shuai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2153", + "section": "13", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lab Notebook Spiral Bound 100 Pages (Copy Page Perforated)", + "edition": "N/A", + "author": "Barbakam", + "isbn": "9780978534424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "3891", + "section": "10", + "instructor": "Oluseyi Agbelusi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "4301", + "section": "10", + "instructor": "Angela Gore", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Auditing & Assurance Services (RRPHE)", + "edition": "17th", + "author": "Arens", + "isbn": "9780134897431", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Auditing & Assurance Services (RRPHE)", + "edition": "17th", + "author": "Arens", + "isbn": "9780134897431", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pearson eText Auditing and Assurance Services -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "17th", + "author": "Elder", + "isbn": "9780135635131", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Auditing and Assurance Services", + "edition": "17th", + "author": "Arens", + "isbn": "9780135169216", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$110.25", + "item_type": "digital" + }, + { + "title": "Auditing and Assurance Services", + "edition": "17th", + "author": "Arens", + "isbn": "9780135171219", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$110.25", + "item_type": "digital" + } + ] + }, + { + "department": "COMM", + "course_num": "2120", + "section": "10", + "instructor": "Wendy Riemann", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Communicating in Groups: Applications & Skills (RRMCG RENTAL Edition)", + "edition": "11th", + "author": "Adams", + "isbn": "9781260253894", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Communicating in Groups: Applications & Skills (RRMCG RENTAL Edition)", + "edition": "11th", + "author": "Adams", + "isbn": "9781260253894", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Communicating in Groups: Applications and Skills", + "edition": "11th", + "author": "Adams", + "isbn": "9781260805000", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$62.25", + "item_type": "digital" + }, + { + "title": "Communicating in Groups: Applications and Skills", + "edition": "11th", + "author": "Adams", + "isbn": "9781260805000", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$79.25", + "item_type": "digital" + }, + { + "title": "Communicating in Groups: Applications and Skills", + "edition": "11th", + "author": "Adams", + "isbn": "9781260805000", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$94.75", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "6305", + "section": "10", + "instructor": "Aaron Betz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Macroeconomics 5e", + "edition": "5th", + "author": "W.W. Norton Courseware", + "isbn": "9780393417364", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated Courseware", + "type_condition": "RENTAL_NEW", + "price_display": "$81.75", + "item_type": "digital" + } + ] + }, + { + "department": "CNSL", + "course_num": "6171", + "section": "10", + "instructor": "Bagmi Das", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Mastering Competencies in Family Therapy", + "edition": "3rd", + "author": "Gehart", + "isbn": "9781305943278", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$145.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mastering Competencies in Family Therapy", + "edition": "3rd", + "author": "Gehart", + "isbn": "9781305943278", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$61.01", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mastering Competencies in Family Therapy", + "edition": "3rd", + "author": "Gehart", + "isbn": "9781305943278", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$109.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mastering Competencies in Family Therapy", + "edition": "3rd", + "author": "Gehart", + "isbn": "9781305943278", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$94.41", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Genograms", + "edition": "4th", + "author": "McGoldrick", + "isbn": "9780393714043", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$47.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Genograms", + "edition": "4th", + "author": "McGoldrick", + "isbn": "9780393714043", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$36.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mastering Competencies in Family Therapy: A Practical Approach to Theory and Clinical Case Documentation", + "edition": "3rd", + "author": "Gehart", + "isbn": "9781337516181", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$44.49", + "item_type": "digital" + }, + { + "title": "Genograms: Assessment and Treatment", + "edition": "N/A", + "author": "McGoldrick", + "isbn": "9780393714050", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$47.99", + "item_type": "digital" + }, + { + "title": "Mastering Competencies in Family Therapy: A Practical Approach to Theory and Clinical Case Documentation", + "edition": "3rd", + "author": "Gehart", + "isbn": "9781337516181", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$60.99", + "item_type": "digital" + }, + { + "title": "Mastering Competencies in Family Therapy: A Practical Approach to Theory and Clinical Case Documentation", + "edition": "3rd", + "author": "Gehart", + "isbn": "9781337516181", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$77.49", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "3001", + "section": "15", + "instructor": "Rebecca Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "6999", + "section": "16", + "instructor": "Matthew Kay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "8999", + "section": "19", + "instructor": "Vesna Zderic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CLAS", + "course_num": "3107", + "section": "10", + "instructor": "Christopher Rollston", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Law Collection From Mesopotamia & Asia Minor", + "edition": "N/A", + "author": "Roth", + "isbn": "9780788503788", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "Society of Biblical Literature", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Law Collection From Mesopotamia & Asia Minor", + "edition": "N/A", + "author": "Roth", + "isbn": "9780788503788", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "Society of Biblical Literature", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Amarna Letters", + "edition": "N/A", + "author": "Moran", + "isbn": "9780801867156", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1963", + "publisher": "The Johns Hopkins University Press", + "type_condition": "BUY_NEW", + "price_display": "$46.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Amarna Letters", + "edition": "N/A", + "author": "Moran", + "isbn": "9780801867156", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1963", + "publisher": "The Johns Hopkins University Press", + "type_condition": "BUY_USED", + "price_display": "$35.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Everyday Law in Biblical Israel", + "edition": "N/A", + "author": "Westbrook", + "isbn": "9780664234973", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Westminster John Knox Press", + "type_condition": "BUY_NEW", + "price_display": "$25.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Everyday Law in Biblical Israel", + "edition": "N/A", + "author": "Westbrook", + "isbn": "9780664234973", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Westminster John Knox Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "2154", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "2120", + "section": "10", + "instructor": "Marie Price", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Globalization & Diversity (w/out Access Code)", + "edition": "6th", + "author": "Price", + "isbn": "9780134898391", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$95.03", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Globalization & Diversity (w/out Access Code)", + "edition": "6th", + "author": "Price", + "isbn": "9780134898391", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$169.69", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Globalization & Diversity (w/out Access Code)", + "edition": "6th", + "author": "Price", + "isbn": "9780134898391", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$226.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Globalization & Diversity (w/out Access Code)", + "edition": "6th", + "author": "Price", + "isbn": "9780134898391", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$169.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pearson eText Globalization and Diversity: Geography of a Changing World -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "6th", + "author": "Price", + "isbn": "9780135276549", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Globalization and Diversity", + "edition": "6th", + "author": "Price", + "isbn": "9780135198896", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "3209", + "section": "10", + "instructor": "Ioannis Eleftherianos", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Molecular Biology (w/Bind-in Access Code)", + "edition": "N/A", + "author": "Clark", + "isbn": "9780123785947", + "material_type": "BDL", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Academic Press, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$101.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Molecular Biology (w/Bind-in Access Code)", + "edition": "N/A", + "author": "Clark", + "isbn": "9780123785947", + "material_type": "BDL", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Academic Press, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$135.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Molecular Biology", + "edition": "2nd", + "author": "Clark", + "isbn": "9780123785954", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Elsevier", + "type_condition": "BUY_NEW", + "price_display": "$135.00", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "44", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "3838W", + "section": "80", + "instructor": "Jeffrey Blomster", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Archaeological Theory", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781118475027", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$49.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Archaeological Theory", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781118475027", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$65.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Archaeological Theory", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781118475027", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$26.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Archaeological Theory", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781118475027", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$49.13", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Critically Reading Theory Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123410", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Critically Reading Theory Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123410", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$42.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Critically Reading Theory Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123410", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$16.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Critically Reading Theory Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123410", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Critically Reading the Theory and Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123427", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_NEW", + "price_display": "$23.40", + "item_type": "digital" + }, + { + "title": "Critically Reading the Theory and Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123427", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_NEW", + "price_display": "$27.30", + "item_type": "digital" + }, + { + "title": "Critically Reading the Theory and Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123427", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_NEW", + "price_display": "$39.00", + "item_type": "digital" + }, + { + "title": "Archaeological Theory", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781118499382", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$43.00", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "1001", + "section": "37", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "AMST", + "course_num": "2490", + "section": "82", + "instructor": "Emily Bock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "4101W", + "section": "13", + "instructor": "Benjamin Bronner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "6900", + "section": "10", + "instructor": "Leo Moersen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "2224", + "section": "10", + "instructor": "Rachel Canalichio", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Science & the Garden", + "edition": "3rd", + "author": "Ingram", + "isbn": "9781118778432", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$50.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Science & the Garden", + "edition": "3rd", + "author": "Ingram", + "isbn": "9781118778432", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$67.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Science and the Garden", + "edition": "3rd", + "author": "Ingram", + "isbn": "9781118778395", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$57.00", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "40", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "6998", + "section": "11", + "instructor": "Zhenyu Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "3625", + "section": "80", + "instructor": "Jamie Cohen-Cole", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1003", + "section": "35", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "GWU AMILLS Chem 1003 (CUSTOM)", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781305770218", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning Custom Publishing (EMAIL ORDERS)", + "type_condition": "BUY_NEW", + "price_display": "$70.25", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "HIST", + "course_num": "1310", + "section": "10", + "instructor": "Matthew Goetz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Liberty, Equality, Power (V1)", + "edition": "7th", + "author": "Murrin", + "isbn": "9780357022313", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$203.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Liberty, Equality, Power (V1)", + "edition": "7th", + "author": "Murrin", + "isbn": "9780357022313", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$152.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Nations", + "edition": "N/A", + "author": "Woodard", + "isbn": "9780143122029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Penguin Group USA Inc", + "type_condition": "RENTAL_NEW", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Nations", + "edition": "N/A", + "author": "Woodard", + "isbn": "9780143122029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Penguin Group USA Inc", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Nations", + "edition": "N/A", + "author": "Woodard", + "isbn": "9780143122029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Penguin Group USA Inc", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Liberty, Equality, Power: A History of the American People, Volume I: To 1877", + "edition": "7th", + "author": "Murrin", + "isbn": "9780357390573", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$44.49", + "item_type": "digital" + }, + { + "title": "Liberty, Equality, Power: A History of the American People, Volume I: To 1877", + "edition": "7th", + "author": "Murrin", + "isbn": "9780357390573", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$60.99", + "item_type": "digital" + }, + { + "title": "Liberty, Equality, Power: A History of the American People, Volume I: To 1877", + "edition": "7th", + "author": "Murrin", + "isbn": "9780357390573", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$77.49", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "42", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "2490", + "section": "81", + "instructor": "Emily Bock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "4101W", + "section": "11", + "instructor": "Benjamin Bronner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1007", + "section": "31", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "1003", + "section": "12", + "instructor": "Negin Hooshmandnia", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "4530", + "section": "80", + "instructor": "Rumana Riffat", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Fund of Wastewater Treatment & Engineering (V2)", + "edition": "2nd", + "author": "Riffat", + "isbn": "9780367681302", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CRC Press LLC", + "type_condition": "BUY_USED", + "price_display": "$82.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fund of Wastewater Treatment & Engineering (V2)", + "edition": "2nd", + "author": "Riffat", + "isbn": "9780367681302", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CRC Press LLC", + "type_condition": "BUY_NEW", + "price_display": "$110.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fundamentals of Wastewater Treatment and Engineering", + "edition": "2nd", + "author": "Riffat", + "isbn": "9781000575163", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$110.00", + "item_type": "digital" + } + ] + }, + { + "department": "EMSE", + "course_num": "6540", + "section": "10", + "instructor": "Sean Baggott", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Prin of Computer Security: CompTIA Security+ & Beyond, Sixth Edition (Exam SY0-601)", + "edition": "6th", + "author": "Conklin", + "isbn": "9781260474312", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$115.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Prin of Computer Security: CompTIA Security+ & Beyond, Sixth Edition (Exam SY0-601)", + "edition": "6th", + "author": "Conklin", + "isbn": "9781260474312", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "McGraw-Hill", + "type_condition": "BUY_USED", + "price_display": "$86.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "COMM", + "course_num": "3175", + "section": "10", + "instructor": "Chelsea Kirk", + "term_name": "Fall 2023", + "texts": [ + { + "title": "HBR's 10 Must Reads on Communication", + "edition": "N/A", + "author": "Hbr", + "isbn": "9781422189863", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Harvard Business School Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "HBR's 10 Must Reads on Communication", + "edition": "N/A", + "author": "Hbr", + "isbn": "9781422189863", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Harvard Business School Press", + "type_condition": "RENTAL_USED", + "price_display": "$9.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "HBR's 10 Must Reads on Communication", + "edition": "N/A", + "author": "Hbr", + "isbn": "9781422189863", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Harvard Business School Press", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "HBR's 10 Must Reads on Communication", + "edition": "N/A", + "author": "Hbr", + "isbn": "9781422189863", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Harvard Business School Press", + "type_condition": "RENTAL_NEW", + "price_display": "$18.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "HBR's 10 Must Reads on Communication (with featured article The Necessary Art of Persuasion, by Jay A. Conger)", + "edition": "N/A", + "author": "Review", + "isbn": "9781422191514", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Harvard Business School Press", + "type_condition": "BUY_NEW", + "price_display": "$16.75", + "item_type": "digital" + } + ] + }, + { + "department": "ASTR", + "course_num": "4195", + "section": "10", + "instructor": "Alexander van der Horst", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BMSC", + "course_num": "8230", + "section": "10", + "instructor": "Timothy McCaffrey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "AMST", + "course_num": "1100", + "section": "30", + "instructor": "Elisabeth Anker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ARAB", + "course_num": "1001", + "section": "10", + "instructor": "Dina El-Hefnawy", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_NEW", + "price_display": "$29.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Al-Kitaab Part One with Website PB (Lingco): A Textbook for Beginning Arabic", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121877", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$163.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Alif Baa with Website PB (Lingco)", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121815", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$116.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BME", + "course_num": "4482", + "section": "10", + "instructor": "Zhenyu Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4410", + "section": "80", + "instructor": "Sevket Ozcanli", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Engineering Economy (w/MyEngineeringLab Access)", + "edition": "17th", + "author": "Sullivan", + "isbn": "9780134873206", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$234.00", + "item_type": "print" + }, + { + "title": "Engineering Economy (w/MyEngineeringLab Access)", + "edition": "17th", + "author": "Sullivan", + "isbn": "9780134873206", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$312.00", + "item_type": "print" + } + ] + }, + { + "department": "BME", + "course_num": "4820", + "section": "10", + "instructor": "Vesna Zderic", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Essen of Anatomy & Physiology", + "edition": "8th", + "author": "Martini", + "isbn": "9780135203804", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Prentice Hall PTR", + "type_condition": "BUY_USED", + "price_display": "$198.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Essen of Anatomy & Physiology", + "edition": "8th", + "author": "Martini", + "isbn": "9780135203804", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Prentice Hall PTR", + "type_condition": "RENTAL_USED", + "price_display": "$111.30", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Essen of Anatomy & Physiology", + "edition": "8th", + "author": "Martini", + "isbn": "9780135203804", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Prentice Hall PTR", + "type_condition": "BUY_NEW", + "price_display": "$265.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Essen of Anatomy & Physiology", + "edition": "8th", + "author": "Martini", + "isbn": "9780135203804", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Prentice Hall PTR", + "type_condition": "RENTAL_NEW", + "price_display": "$198.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pearson eText Essentials of Anatomy & Physiology -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "8th", + "author": "Martini", + "isbn": "9780135310120", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Essentials of Anatomy & Physiology", + "edition": "8th", + "author": "Martini", + "isbn": "9780135210956", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "Essentials of Anatomy & Physiology", + "edition": "8th", + "author": "Martini", + "isbn": "9780135210963", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "BMSC", + "course_num": "8210", + "section": "10", + "instructor": "Jyoti Jaiswal", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1003", + "section": "39", + "instructor": "Eric Cline", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1000", + "section": "11", + "instructor": "Michael Kaplan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6450", + "section": "80", + "instructor": "Michael Mann", + "term_name": "Fall 2023", + "texts": [ + { + "title": "GIS Fundamentals", + "edition": "6th", + "author": "Bolstad", + "isbn": "9781593995522", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "XanEdu Pub Inc", + "type_condition": "RENTAL_USED", + "price_display": "$16.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "GIS Fundamentals", + "edition": "6th", + "author": "Bolstad", + "isbn": "9781593995522", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "XanEdu Pub Inc", + "type_condition": "BUY_USED", + "price_display": "$31.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "GIS Fundamentals", + "edition": "6th", + "author": "Bolstad", + "isbn": "9781593995522", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "XanEdu Pub Inc", + "type_condition": "BUY_NEW", + "price_display": "$41.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "GIS Fundamentals", + "edition": "6th", + "author": "Bolstad", + "isbn": "9781593995522", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "XanEdu Pub Inc", + "type_condition": "RENTAL_NEW", + "price_display": "$31.13", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BIOC", + "course_num": "4195", + "section": "10", + "instructor": "Manjari Dimri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1001", + "section": "38", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "16", + "instructor": "Karen Cholakis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "3106", + "section": "11", + "instructor": "Christopher Jones", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2123", + "section": "84", + "instructor": "Alessandra Fenizia", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Econometrics (Update)", + "edition": "3rd", + "author": "Stock", + "isbn": "9780133486872", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$240.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Econometrics (Update)", + "edition": "3rd", + "author": "Stock", + "isbn": "9780133486872", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$319.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Econometrics (Update)", + "edition": "3rd", + "author": "Stock", + "isbn": "9780133486872", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$255.80", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Econometrics (Update)", + "edition": "3rd", + "author": "Stock", + "isbn": "9780133486872", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$134.30", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "ECON", + "course_num": "8301", + "section": "10", + "instructor": "Sumit Joshi", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Advanced Microeconomic Theory", + "edition": "3rd", + "author": "Jehle", + "isbn": "9780273731917", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$93.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Advanced Microeconomic Theory", + "edition": "3rd", + "author": "Jehle", + "isbn": "9780273731917", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$175.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Advanced Microeconomic Theory", + "edition": "3rd", + "author": "Jehle", + "isbn": "9780273731917", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$175.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Advanced Microeconomic Theory", + "edition": "3rd", + "author": "Jehle", + "isbn": "9780273731917", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$234.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "1003", + "section": "13", + "instructor": "Negin Hooshmandnia", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3186", + "section": "14", + "instructor": "Sudhir Shetty", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Economics of Development", + "edition": "7th", + "author": "Perkins", + "isbn": "9780393934359", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$180.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Economics of Development", + "edition": "7th", + "author": "Perkins", + "isbn": "9780393934359", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$156.16", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Economics of Development", + "edition": "7th", + "author": "Perkins", + "isbn": "9780393934359", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$100.91", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Economics of Development", + "edition": "7th", + "author": "Perkins", + "isbn": "9780393934359", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$240.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Economics of Development (Seventh Edition)", + "edition": "7th", + "author": "Perkins", + "isbn": "9780393903799", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$144.38", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "6243", + "section": "11", + "instructor": "Scott Powell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "1040", + "section": "10", + "instructor": "Necola Staples", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Art of Public Speaking 2023 (RRMCG)", + "edition": "13th", + "author": "Lucas", + "isbn": "9781265455644", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "The Art of Public Speaking: 2023 Release", + "edition": "N/A", + "author": "Lucas", + "isbn": "9781260412970", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$62.25", + "item_type": "digital" + }, + { + "title": "The Art of Public Speaking: 2023 Release", + "edition": "N/A", + "author": "Lucas", + "isbn": "9781260412970", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$79.25", + "item_type": "digital" + }, + { + "title": "The Art of Public Speaking: 2023 Release", + "edition": "N/A", + "author": "Lucas", + "isbn": "9781260412970", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$94.75", + "item_type": "digital" + } + ] + }, + { + "department": "BMSC", + "course_num": "8235", + "section": "10", + "instructor": "Heather Gordish-Dressman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "8999", + "section": "10", + "instructor": "Damien O'Halloran", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3301W", + "section": "10", + "instructor": "Erin Chapman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Celia, a Slave", + "edition": "N/A", + "author": "McLaurin", + "isbn": "9780820360966", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Univ of Georgia Press/Longleaf", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Celia, a Slave", + "edition": "N/A", + "author": "McLaurin", + "isbn": "9780820360966", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Univ of Georgia Press/Longleaf", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fire Next Time", + "edition": "N/A", + "author": "Baldwin", + "isbn": "9780679744726", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1963", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$13.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fire Next Time", + "edition": "N/A", + "author": "Baldwin", + "isbn": "9780679744726", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1963", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$10.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Forgotten Fifth: African Americans in Age of Revolution", + "edition": "N/A", + "author": "Nash", + "isbn": "9780674021938", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$7.98", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Forgotten Fifth: African Americans in Age of Revolution", + "edition": "N/A", + "author": "Nash", + "isbn": "9780674021938", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Forgotten Fifth: African Americans in Age of Revolution", + "edition": "N/A", + "author": "Nash", + "isbn": "9780674021938", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$14.96", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Forgotten Fifth: African Americans in Age of Revolution", + "edition": "N/A", + "author": "Nash", + "isbn": "9780674021938", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Citizen", + "edition": "N/A", + "author": "Rankine", + "isbn": "9781555976903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Graywolf", + "type_condition": "RENTAL_USED", + "price_display": "$8.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Citizen", + "edition": "N/A", + "author": "Rankine", + "isbn": "9781555976903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Graywolf", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Citizen", + "edition": "N/A", + "author": "Rankine", + "isbn": "9781555976903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Graywolf", + "type_condition": "RENTAL_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Citizen", + "edition": "N/A", + "author": "Rankine", + "isbn": "9781555976903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Graywolf", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invisible No More", + "edition": "N/A", + "author": "Ritchie", + "isbn": "9780807088982", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invisible No More", + "edition": "N/A", + "author": "Ritchie", + "isbn": "9780807088982", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "RENTAL_NEW", + "price_display": "$15.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invisible No More", + "edition": "N/A", + "author": "Ritchie", + "isbn": "9780807088982", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$15.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Mercy Here", + "edition": "N/A", + "author": "Haley", + "isbn": "9781469652221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of North Carolina Press", + "type_condition": "RENTAL_USED", + "price_display": "$14.38", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Mercy Here", + "edition": "N/A", + "author": "Haley", + "isbn": "9781469652221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of North Carolina Press", + "type_condition": "BUY_NEW", + "price_display": "$35.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Mercy Here", + "edition": "N/A", + "author": "Haley", + "isbn": "9781469652221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of North Carolina Press", + "type_condition": "RENTAL_NEW", + "price_display": "$26.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Mercy Here", + "edition": "N/A", + "author": "Haley", + "isbn": "9781469652221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of North Carolina Press", + "type_condition": "BUY_USED", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "White Rage", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781632864130", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Bloomsbury USA", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "White Rage", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781632864130", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "White Rage", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781632864130", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Bloomsbury USA", + "type_condition": "RENTAL_NEW", + "price_display": "$11.05", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "White Rage", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781632864130", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Price for Their Pound of Flesh: The Value of the Enslaved, from Womb to Grave, in the Building of a Nation", + "edition": "N/A", + "author": "Berry", + "isbn": "9780807067147", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Price for Their Pound of Flesh: The Value of the Enslaved, from Womb to Grave, in the Building of a Nation", + "edition": "N/A", + "author": "Berry", + "isbn": "9780807067147", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "RENTAL_NEW", + "price_display": "$14.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Price for Their Pound of Flesh: The Value of the Enslaved, from Womb to Grave, in the Building of a Nation", + "edition": "N/A", + "author": "Berry", + "isbn": "9780807067147", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Clinging to Mammy", + "edition": "N/A", + "author": "McElya", + "isbn": "9780674024335", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$29.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Clinging to Mammy", + "edition": "N/A", + "author": "McElya", + "isbn": "9780674024335", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$14.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Clinging to Mammy", + "edition": "N/A", + "author": "McElya", + "isbn": "9780674024335", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$22.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Celia, a Slave", + "edition": "N/A", + "author": "McLaurin", + "isbn": "9780820362502", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$18.75", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "17", + "instructor": "Mirasol Espanola", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ARAB", + "course_num": "2001", + "section": "12", + "instructor": "Nashwa Taher", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Al-Kitaab Part Two with Website PB (Lingco)", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121914", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$139.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Al-Kitaab Part One with Website PB (Lingco): A Textbook for Beginning Arabic", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121877", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$163.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_NEW", + "price_display": "$29.99", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ASTR", + "course_num": "1001", + "section": "10", + "instructor": "Kalvir Dhuga", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Cosmic Perspective", + "edition": "9th", + "author": "Bennett", + "isbn": "9780134874364", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$187.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cosmic Perspective", + "edition": "9th", + "author": "Bennett", + "isbn": "9780134874364", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$249.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cosmic Perspective", + "edition": "9th", + "author": "Bennett", + "isbn": "9780134874364", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$104.79", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cosmic Perspective", + "edition": "9th", + "author": "Bennett", + "isbn": "9780134874364", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$187.13", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pearson eText Cosmic Perspective, The -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "9th", + "author": "Bennett", + "isbn": "9780135729458", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Cosmic Perspective, The", + "edition": "9th", + "author": "Bennett", + "isbn": "9780135161760", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "ARAB", + "course_num": "3001", + "section": "13", + "instructor": "Nashwa Taher", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Al-Kitaab Part Two with Website PB (Lingco)", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121914", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$139.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_NEW", + "price_display": "$29.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CHIN", + "course_num": "2003", + "section": "10", + "instructor": "Miaochun Wei", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Transitions", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781337111089", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$98.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Transitions", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781337111089", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$73.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Transitions: Developing Chinese Fluency: Intermediate Chinese", + "edition": "1st", + "author": "Zhang", + "isbn": "9781337515986", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "Transitions: Developing Chinese Fluency: Intermediate Chinese", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781337515986", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$67.99", + "item_type": "digital" + }, + { + "title": "Transitions: Developing Chinese Fluency: Intermediate Chinese", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781337515986", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$86.49", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "32", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "1001", + "section": "41", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANAT", + "course_num": "2130", + "section": "10", + "instructor": "Victor Taylor", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1001", + "section": "10", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "6109", + "section": "80", + "instructor": "Jonathan Chaves", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Chinese-English Dictionary", + "edition": "N/A", + "author": "Mathews", + "isbn": "9780674123502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1943", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$68.00", + "item_type": "print" + }, + { + "title": "Chinese-English Dictionary", + "edition": "N/A", + "author": "Mathews", + "isbn": "9780674123502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1943", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$34.00", + "item_type": "print" + }, + { + "title": "Chinese-English Dictionary", + "edition": "N/A", + "author": "Mathews", + "isbn": "9780674123502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1943", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$51.00", + "item_type": "print" + }, + { + "title": "First Course in Literary Chinese 2", + "edition": "N/A", + "author": "Shadick", + "isbn": "9780801498381", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1968", + "publisher": "Cornell University Press", + "type_condition": "BUY_NEW", + "price_display": "$49.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "First Course in Literary Chinese 2", + "edition": "N/A", + "author": "Shadick", + "isbn": "9780801498381", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1968", + "publisher": "Cornell University Press", + "type_condition": "BUY_USED", + "price_display": "$36.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "First Course in Literary Chinese 2", + "edition": "N/A", + "author": "Shadick", + "isbn": "9780801498381", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1968", + "publisher": "Cornell University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$24.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "First Course in Literary Chinese 1", + "edition": "N/A", + "author": "Shadick", + "isbn": "9780801498374", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1968", + "publisher": "Cornell University Press", + "type_condition": "BUY_NEW", + "price_display": "$49.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "First Course in Literary Chinese 1", + "edition": "N/A", + "author": "Shadick", + "isbn": "9780801498374", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1968", + "publisher": "Cornell University Press", + "type_condition": "RENTAL_USED", + "price_display": "$24.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "First Course in Literary Chinese 1", + "edition": "N/A", + "author": "Shadick", + "isbn": "9780801498374", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1968", + "publisher": "Cornell University Press", + "type_condition": "BUY_USED", + "price_display": "$36.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "GEOG", + "course_num": "3128", + "section": "10", + "instructor": "Dmitry Streletskiy", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Fundamentals of Geomorphology", + "edition": "5th", + "author": "Huggett", + "isbn": "9781000790771", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$48.95", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "1003", + "section": "37", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "GWU AMILLS Chem 1003 (CUSTOM)", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781305770218", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning Custom Publishing (EMAIL ORDERS)", + "type_condition": "BUY_NEW", + "price_display": "$70.25", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "FORS", + "course_num": "6251", + "section": "MV", + "instructor": "Heidi Eldridge", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Practical Crime Scene Processing & Investigation", + "edition": "3rd", + "author": "Gardner", + "isbn": "9781138047785", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "RENTAL_USED", + "price_display": "$63.63", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Practical Crime Scene Processing & Investigation", + "edition": "3rd", + "author": "Gardner", + "isbn": "9781138047785", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_USED", + "price_display": "$113.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Practical Crime Scene Processing & Investigation", + "edition": "3rd", + "author": "Gardner", + "isbn": "9781138047785", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$151.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Practical Crime Scene Processing & Investigation", + "edition": "3rd", + "author": "Gardner", + "isbn": "9781138047785", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$113.63", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Practical Crime Scene Processing and Investigation, Third Edition", + "edition": "3rd", + "author": "Gardner", + "isbn": "9781351692380", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$54.95", + "item_type": "digital" + }, + { + "title": "Practical Crime Scene Processing and Investigation, Third Edition", + "edition": "3rd", + "author": "Gardner", + "isbn": "9781351692373", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$89.95", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "12", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [ + { + "title": "iclicker+ (Student Remote) (REV)", + "edition": "N/A", + "author": "Iclicker", + "isbn": "9781498603058", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$54.00", + "item_type": "print" + }, + { + "title": "Modified Mastering Biology with Pearson eText -- Access Card -- for Campbell Biology", + "edition": "12th", + "author": "Orr", + "isbn": "9780135855836", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$173.50", + "item_type": "digital" + } + ] + }, + { + "department": "COMM", + "course_num": "1040", + "section": "16", + "instructor": "Michael Newbill", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Public Speaking: Finding Your Voice (RRPHE)", + "edition": "11th", + "author": "Turner", + "isbn": "9780135571231", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "item_type": "print" + }, + { + "title": "Public Speaking: Finding Your Voice (RRPHE)", + "edition": "11th", + "author": "Turner", + "isbn": "9780135571231", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "item_type": "print" + }, + { + "title": "Pearson eText for Public Speaking: Finding Your Voice -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "11th", + "author": "Turner", + "isbn": "9780137589067", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Public Speaking", + "edition": "11th", + "author": "Turner", + "isbn": "9780134401430", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "Public Speaking", + "edition": "11th", + "author": "Turner", + "isbn": "9780134401355", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "43", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "47", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "ENGL", + "course_num": "6100", + "section": "10", + "instructor": "Robert McRuer", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Norton Anthology of Theory & Criticism", + "edition": "3rd", + "author": "Leitch", + "isbn": "9780393602951", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$126.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Norton Anthology of Theory & Criticism", + "edition": "3rd", + "author": "Leitch", + "isbn": "9780393602951", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$94.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Norton Anthology of Theory & Criticism", + "edition": "3rd", + "author": "Leitch", + "isbn": "9780393602951", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_NEW", + "price_display": "$81.90", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "BME", + "course_num": "6994", + "section": "DE", + "instructor": "Anastasia Wengrowski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "2162W", + "section": "10", + "instructor": "Bibiana Obler", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Camera Lucida", + "edition": "N/A", + "author": "Barthes", + "isbn": "9780374532338", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Camera Lucida", + "edition": "N/A", + "author": "Barthes", + "isbn": "9780374532338", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Camera Lucida", + "edition": "N/A", + "author": "Barthes", + "isbn": "9780374532338", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "RENTAL_NEW", + "price_display": "$10.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Camera Lucida", + "edition": "N/A", + "author": "Barthes", + "isbn": "9780374532338", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "RENTAL_USED", + "price_display": "$6.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Photography: A Cultural History", + "edition": "5th", + "author": "Marien", + "isbn": "9781786277855", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Hachette Book Group", + "type_condition": "BUY_USED", + "price_display": "$63.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Photography: A Cultural History", + "edition": "5th", + "author": "Marien", + "isbn": "9781786277855", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Hachette Book Group", + "type_condition": "BUY_NEW", + "price_display": "$85.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ECE", + "course_num": "6010", + "section": "10", + "instructor": "Nicholas Kyriakopoulos", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Linear Systems Primer", + "edition": "N/A", + "author": "Antsaklis", + "isbn": "9780817644604", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Birkhauser Boston", + "type_condition": "RENTAL_USED", + "price_display": "$46.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Linear Systems Primer", + "edition": "N/A", + "author": "Antsaklis", + "isbn": "9780817644604", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Birkhauser Boston", + "type_condition": "BUY_NEW", + "price_display": "$109.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Linear Systems Primer", + "edition": "N/A", + "author": "Antsaklis", + "isbn": "9780817644604", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Birkhauser Boston", + "type_condition": "BUY_USED", + "price_display": "$82.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Linear System Theory & Design", + "edition": "4th", + "author": "Chen", + "isbn": "9780199959570", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$291.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Linear System Theory & Design", + "edition": "4th", + "author": "Chen", + "isbn": "9780199959570", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$218.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Linear System Theory & Design", + "edition": "4th", + "author": "Chen", + "isbn": "9780199959570", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$218.44", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Linear System Theory and Design", + "edition": "4th", + "author": "Chen", + "isbn": "9780197545942", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$64.99", + "item_type": "digital" + }, + { + "title": "Linear System Theory and Design", + "edition": "4th", + "author": "Chen", + "isbn": "9780197545942", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$74.98", + "item_type": "digital" + }, + { + "title": "Linear System Theory and Design", + "edition": "4th", + "author": "Chen", + "isbn": "9780197545942", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$99.98", + "item_type": "digital" + }, + { + "title": "Linear System Theory and Design", + "edition": "4th", + "author": "Chen", + "isbn": "9780197545942", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$129.98", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "2199", + "section": "12", + "instructor": "Donald Parsons", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Without Consent or Contract", + "edition": "N/A", + "author": "Fogel", + "isbn": "9780393312195", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1989", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$27.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Without Consent or Contract", + "edition": "N/A", + "author": "Fogel", + "isbn": "9780393312195", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1989", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "37", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "ASTR", + "course_num": "1001", + "section": "32", + "instructor": "Luis Correa Borbonet", + "term_name": "Fall 2023", + "texts": [ + { + "title": "ASTR 1001 Laboratory Manual", + "edition": "4th", + "author": "George Washington University", + "isbn": "9781600369186", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Academx Publishing Serv Inc", + "type_condition": "BUY_NEW", + "price_display": "$51.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "35", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "ARAB", + "course_num": "2105", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ASTR", + "course_num": "1002", + "section": "32", + "instructor": "Eda Sonbas", + "term_name": "Fall 2023", + "texts": [ + { + "title": "ASTR 1002 Laboratory Manual (CUSTOM)", + "edition": "5th", + "author": "George Washington University", + "isbn": "9781682846278", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Academx Publishing Serv Inc", + "type_condition": "BUY_NEW", + "price_display": "$30.25", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "HIST", + "course_num": "3061", + "section": "80", + "instructor": "Jeffrey Richter", + "term_name": "Fall 2023", + "texts": [ + { + "title": "My German Question", + "edition": "N/A", + "author": "Gay", + "isbn": "9780300080704", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Yale University Press", + "type_condition": "RENTAL_USED", + "price_display": "$8.00", + "item_type": "print" + }, + { + "title": "My German Question", + "edition": "N/A", + "author": "Gay", + "isbn": "9780300080704", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Yale University Press", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "item_type": "print" + }, + { + "title": "My German Question", + "edition": "N/A", + "author": "Gay", + "isbn": "9780300080704", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "item_type": "print" + }, + { + "title": "The Men with the Pink Triangle", + "edition": "N/A", + "author": "Heger", + "isbn": "9781593501785", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Alyson Publications", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Men with the Pink Triangle", + "edition": "N/A", + "author": "Heger", + "isbn": "9781593501785", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Alyson Publications", + "type_condition": "BUY_NEW", + "price_display": "$14.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Every Man Dies Alone", + "edition": "N/A", + "author": "Fallada", + "isbn": "9781612198262", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Melville House Publishing", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Every Man Dies Alone", + "edition": "N/A", + "author": "Fallada", + "isbn": "9781612198262", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Melville House Publishing", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Small Town near Auschwitz", + "edition": "N/A", + "author": "Fulbrook", + "isbn": "9780199679256", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$11.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Small Town near Auschwitz", + "edition": "N/A", + "author": "Fulbrook", + "isbn": "9780199679256", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Small Town near Auschwitz", + "edition": "N/A", + "author": "Fulbrook", + "isbn": "9780199679256", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$29.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "A Small Town Near Auschwitz", + "edition": "N/A", + "author": "Fulbrook", + "isbn": "9780191611759", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$16.24", + "item_type": "digital" + }, + { + "title": "A Small Town Near Auschwitz", + "edition": "N/A", + "author": "Fulbrook", + "isbn": "9780191611759", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$18.74", + "item_type": "digital" + }, + { + "title": "A Small Town Near Auschwitz", + "edition": "N/A", + "author": "Fulbrook", + "isbn": "9780191611759", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$24.99", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "40", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSCI", + "course_num": "2101", + "section": "10", + "instructor": "Ulrich Koch", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Culture, Health & Illness", + "edition": "5th", + "author": "Helman", + "isbn": "9780340914502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_USED", + "price_display": "$50.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Culture, Health & Illness", + "edition": "5th", + "author": "Helman", + "isbn": "9780340914502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "RENTAL_USED", + "price_display": "$26.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Culture, Health & Illness", + "edition": "5th", + "author": "Helman", + "isbn": "9780340914502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$53.56", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Culture, Health & Illness", + "edition": "5th", + "author": "Helman", + "isbn": "9780340914502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$66.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Culture, Health and Illness, Fifth edition", + "edition": "5th", + "author": "Helman", + "isbn": "9781444113631", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$66.95", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "3001", + "section": "11", + "instructor": "Kristine Wood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1003", + "section": "33", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "8999", + "section": "17", + "instructor": "Anne-Laure Papa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3401", + "section": "13", + "instructor": "Ravi Achrol", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "2001", + "section": "12", + "instructor": "Ernest Englander", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Democracy - a Case Study", + "edition": "N/A", + "author": "Moss", + "isbn": "9780674237704", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Democracy - a Case Study", + "edition": "N/A", + "author": "Moss", + "isbn": "9780674237704", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$7.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Democracy - a Case Study", + "edition": "N/A", + "author": "Moss", + "isbn": "9780674237704", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "1002", + "section": "33", + "instructor": "Roy Grinker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "APSC", + "course_num": "2113", + "section": "13", + "instructor": "Charles Garris", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1003", + "section": "34", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "GWU AMILLS Chem 1003 (CUSTOM)", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781305770218", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning Custom Publishing (EMAIL ORDERS)", + "type_condition": "BUY_NEW", + "price_display": "$70.25", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "DNSC", + "course_num": "4404", + "section": "10", + "instructor": "Homayoun Khamooshi", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Project Management: The Managerial Process (RRMCG)", + "edition": "8th", + "author": "Larson", + "isbn": "9781260238860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Project Management: The Managerial Process (RRMCG)", + "edition": "8th", + "author": "Larson", + "isbn": "9781260238860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Project Management: The Managerial Process", + "edition": "8th", + "author": "Larson", + "isbn": "9781260736205", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$67.50", + "item_type": "digital" + }, + { + "title": "Project Management: The Managerial Process", + "edition": "8th", + "author": "Larson", + "isbn": "9781260736205", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$84.50", + "item_type": "digital" + }, + { + "title": "Project Management: The Managerial Process", + "edition": "8th", + "author": "Larson", + "isbn": "9781260736205", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$105.50", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "6378", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "38", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "31", + "instructor": "Robin Kuprewicz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ARAB", + "course_num": "4501", + "section": "10", + "instructor": "Jennifer Tobkin", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Thinking Arabic Translation", + "edition": "2nd", + "author": "Dickins", + "isbn": "9780415705639", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$69.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Thinking Arabic Translation", + "edition": "2nd", + "author": "Dickins", + "isbn": "9780415705639", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$52.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BIOC", + "course_num": "6295", + "section": "10", + "instructor": "Manjari Dimri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BIOC", + "course_num": "6999", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6211", + "section": "10", + "instructor": "Salama Freed", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Undercover Economist", + "edition": "N/A", + "author": "Harford", + "isbn": "9780345494016", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Undercover Economist", + "edition": "N/A", + "author": "Harford", + "isbn": "9780345494016", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Undercover Economist", + "edition": "N/A", + "author": "Harford", + "isbn": "9780345494016", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Health Policy Issues: an Economic Perspective, Eighth Edition", + "edition": "8th", + "author": "Feldstein", + "isbn": "9781640553422", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "HEALTH ADMINISTRATION PRESS", + "type_condition": "BUY_NEW", + "price_display": "$110.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Health Policy Issues: an Economic Perspective, Eighth Edition", + "edition": "8th", + "author": "Feldstein", + "isbn": "9781640553422", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "HEALTH ADMINISTRATION PRESS", + "type_condition": "BUY_USED", + "price_display": "$82.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Health Policy Issues: An Economic Perspective, Eighth Edition", + "edition": "N/A", + "author": "Feldstein", + "isbn": "9781640553392", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Independent Publishers Group - IPG", + "type_condition": "BUY_NEW", + "price_display": "$110.00", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "35", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "3401", + "section": "10", + "instructor": "William Stromsem", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "2001", + "section": "10", + "instructor": "Thomas Choate", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3103", + "section": "15", + "instructor": "Ladan Hakimi", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Human Capital in Organizations (Custom GWU)", + "edition": "N/A", + "author": "McHugh", + "isbn": "9781307496994", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "MCGRAW HILL (CUSTOM PUBLISHING)", + "type_condition": "BUY_NEW", + "price_display": "$107.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CTAD", + "course_num": "1000", + "section": "13", + "instructor": "Jodi Kanter", + "term_name": "Fall 2023", + "texts": [ + { + "title": "How Art Can Be Thought", + "edition": "N/A", + "author": "Desouza", + "isbn": "9781478000471", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Duke University Press", + "type_condition": "BUY_NEW", + "price_display": "$27.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "How Art Can Be Thought", + "edition": "N/A", + "author": "Desouza", + "isbn": "9781478000471", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Duke University Press", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Performance: a Critical Introduction", + "edition": "3rd", + "author": "Carlson", + "isbn": "9781138281684", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$57.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Performance: a Critical Introduction", + "edition": "3rd", + "author": "Carlson", + "isbn": "9781138281684", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$42.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Performance: a Critical Introduction", + "edition": "3rd", + "author": "Carlson", + "isbn": "9781138281684", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "RENTAL_NEW", + "price_display": "$45.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Performance: A Critical Introduction", + "edition": "3rd", + "author": "Carlson", + "isbn": "9781351983822", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$48.95", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6501", + "section": "11", + "instructor": "Samantha Burg", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Statistical Methods for the Social Sciences", + "edition": "5th", + "author": "Agresti", + "isbn": "9780134507101", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Pearson Education Canada", + "type_condition": "BUY_USED", + "price_display": "$216.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistical Methods for the Social Sciences", + "edition": "5th", + "author": "Agresti", + "isbn": "9780134507101", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Pearson Education Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$216.38", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistical Methods for the Social Sciences", + "edition": "5th", + "author": "Agresti", + "isbn": "9780134507101", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Pearson Education Canada", + "type_condition": "RENTAL_USED", + "price_display": "$121.17", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistical Methods for the Social Sciences", + "edition": "5th", + "author": "Agresti", + "isbn": "9780134507101", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Pearson Education Canada", + "type_condition": "BUY_NEW", + "price_display": "$288.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Using SPSS for Windows & Macintosh (LoosePgs)", + "edition": "8th", + "author": "Green", + "isbn": "9780134319889", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$171.50", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Pearson eText for Statistical Methods for the Social Sciences -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "5th", + "author": "Agresti", + "isbn": "9780137546060", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Pearson eText for Using SPSS for Windows and Macintosh -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "8th", + "author": "Green", + "isbn": "9780137525010", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Statistical Methods for the Social Sciences", + "edition": "5th", + "author": "Agresti", + "isbn": "9780134512822", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "Using SPSS for Windows and Macintosh", + "edition": "8th", + "author": "Green", + "isbn": "9780134416410", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$98.00", + "item_type": "digital" + }, + { + "title": "Using SPSS for Windows and Macintosh", + "edition": "8th", + "author": "Green", + "isbn": "9780134416441", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$98.00", + "item_type": "digital" + } + ] + }, + { + "department": "HSML", + "course_num": "6216", + "section": "10", + "instructor": "Leonard Friedman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "First, Break All the Rules (w/access code)", + "edition": "N/A", + "author": "Gallup", + "isbn": "9781595621115", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Gallup Press", + "type_condition": "RENTAL_USED", + "price_display": "$14.40", + "item_type": "print" + }, + { + "title": "First, Break All the Rules (w/access code)", + "edition": "N/A", + "author": "Gallup", + "isbn": "9781595621115", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Gallup Press", + "type_condition": "BUY_USED", + "price_display": "$27.00", + "item_type": "print" + }, + { + "title": "First, Break All the Rules (w/access code)", + "edition": "N/A", + "author": "Gallup", + "isbn": "9781595621115", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Gallup Press", + "type_condition": "BUY_NEW", + "price_display": "$36.00", + "item_type": "print" + }, + { + "title": "Hardwiring Excellence", + "edition": "N/A", + "author": "Studer", + "isbn": "9780974998602", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Fire Starter Publishing", + "type_condition": "RENTAL_USED", + "price_display": "$11.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hardwiring Excellence", + "edition": "N/A", + "author": "Studer", + "isbn": "9780974998602", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Fire Starter Publishing", + "type_condition": "BUY_USED", + "price_display": "$22.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hardwiring Excellence", + "edition": "N/A", + "author": "Studer", + "isbn": "9780974998602", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Fire Starter Publishing", + "type_condition": "BUY_NEW", + "price_display": "$29.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hardwiring Excellence", + "edition": "N/A", + "author": "Studer", + "isbn": "9780974998602", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Fire Starter Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$22.13", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Meetings Matter", + "edition": "N/A", + "author": "Axtell", + "isbn": "9780943097145", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Ingram Book Company", + "type_condition": "RENTAL_USED", + "price_display": "$9.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Meetings Matter", + "edition": "N/A", + "author": "Axtell", + "isbn": "9780943097145", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Ingram Book Company", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Meetings Matter", + "edition": "N/A", + "author": "Axtell", + "isbn": "9780943097145", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Ingram Book Company", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "First, Break All The Rules", + "edition": "N/A", + "author": "Buckingham", + "isbn": "9781595620415", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Gallup Press", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "item_type": "digital" + } + ] + }, + { + "department": "FINA", + "course_num": "3301", + "section": "10", + "instructor": "Min Hwang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Financial Markets & Institutions (RRMCG)", + "edition": "8th", + "author": "Saunders", + "isbn": "9781260772401", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Financial Markets & Institutions (RRMCG)", + "edition": "8th", + "author": "Saunders", + "isbn": "9781260772401", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Financial Markets and Institutions", + "edition": "8th", + "author": "Saunders", + "isbn": "9781264098712", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$67.50", + "item_type": "digital" + }, + { + "title": "Financial Markets and Institutions", + "edition": "8th", + "author": "Saunders", + "isbn": "9781264098712", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$84.50", + "item_type": "digital" + }, + { + "title": "Financial Markets and Institutions", + "edition": "8th", + "author": "Saunders", + "isbn": "9781264098712", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$105.50", + "item_type": "digital" + } + ] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "M39", + "instructor": "Mark Ralkowski", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Analects", + "edition": "N/A", + "author": "Confucius", + "isbn": "9780872206359", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Analects", + "edition": "N/A", + "author": "Confucius", + "isbn": "9780872206359", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$21.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Analects", + "edition": "N/A", + "author": "Confucius", + "isbn": "9780872206359", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$15.94", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Meditations", + "edition": "N/A", + "author": "Aurelius", + "isbn": "9780199573202", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$7.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Meditations", + "edition": "N/A", + "author": "Aurelius", + "isbn": "9780199573202", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$3.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Meditations", + "edition": "N/A", + "author": "Aurelius", + "isbn": "9780199573202", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$9.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "What the Buddha Taught", + "edition": "N/A", + "author": "Rahula", + "isbn": "9780802130310", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1974", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "What the Buddha Taught", + "edition": "N/A", + "author": "Rahula", + "isbn": "9780802130310", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1974", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "What the Buddha Taught", + "edition": "N/A", + "author": "Rahula", + "isbn": "9780802130310", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1974", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Tao Te Ching", + "edition": "N/A", + "author": "Chen", + "isbn": "9781557782380", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1989", + "publisher": "Paragon House Publishers", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Tao Te Ching", + "edition": "N/A", + "author": "Chen", + "isbn": "9781557782380", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1989", + "publisher": "Paragon House Publishers", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Republic (Trans Grube)", + "edition": "2nd", + "author": "Plato", + "isbn": "9780872201361", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Republic (Trans Grube)", + "edition": "2nd", + "author": "Plato", + "isbn": "9780872201361", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$5.92", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Republic (Trans Grube)", + "edition": "2nd", + "author": "Plato", + "isbn": "9780872201361", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$13.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chuang Tzu: Basic Writings", + "edition": "N/A", + "author": "Tzu", + "isbn": "9780231105958", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chuang Tzu: Basic Writings", + "edition": "N/A", + "author": "Tzu", + "isbn": "9780231105958", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "RENTAL_USED", + "price_display": "$11.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chuang Tzu: Basic Writings", + "edition": "N/A", + "author": "Tzu", + "isbn": "9780231105958", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chuang Tzu: Basic Writings", + "edition": "N/A", + "author": "Tzu", + "isbn": "9780231105958", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "RENTAL_NEW", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Meditations", + "edition": "N/A", + "author": "Marcus Aurelius", + "isbn": "9780191620195", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$3.89", + "item_type": "digital" + }, + { + "title": "Meditations", + "edition": "N/A", + "author": "Marcus Aurelius", + "isbn": "9780191620195", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$4.49", + "item_type": "digital" + }, + { + "title": "Meditations", + "edition": "N/A", + "author": "Marcus Aurelius", + "isbn": "9780191620195", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$5.99", + "item_type": "digital" + }, + { + "title": "Republic", + "edition": "2nd", + "author": "Plato", + "isbn": "9781603846448", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$10.95", + "item_type": "digital" + }, + { + "title": "Analects", + "edition": "N/A", + "author": "Confucius", + "isbn": "9781603840194", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$14.95", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "6885", + "section": "80", + "instructor": "Murray Loew", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1005", + "section": "30", + "instructor": "Carson Murray", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "4995", + "section": "10", + "instructor": "Mirasol Espanola", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "4101", + "section": "10", + "instructor": "Everlyne Misati", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "8999", + "section": "14", + "instructor": "Hyung Sok Choe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "2002", + "section": "12", + "instructor": "Donald Buzinkai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "MV2", + "instructor": "Eyal Aviv", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Philosophy for Life & Other Dangerous Situations", + "edition": "N/A", + "author": "Evans", + "isbn": "9781608682294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New World Library", + "type_condition": "RENTAL_USED", + "price_display": "$7.18", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy for Life & Other Dangerous Situations", + "edition": "N/A", + "author": "Evans", + "isbn": "9781608682294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New World Library", + "type_condition": "RENTAL_NEW", + "price_display": "$11.67", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy for Life & Other Dangerous Situations", + "edition": "N/A", + "author": "Evans", + "isbn": "9781608682294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New World Library", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy for Life & Other Dangerous Situations", + "edition": "N/A", + "author": "Evans", + "isbn": "9781608682294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New World Library", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy for Life and Other Dangerous Situations", + "edition": "N/A", + "author": "Evans", + "isbn": "9781608682300", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "New World Library", + "type_condition": "BUY_NEW", + "price_display": "$12.00", + "item_type": "digital" + } + ] + }, + { + "department": "ACA", + "course_num": "6205", + "section": "10", + "instructor": "Alexander Wild", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "1110", + "section": "10", + "instructor": "Christopher Duncan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Principles of Anatomy and Physiology", + "edition": "16th", + "author": "Tortora", + "isbn": "9781119662686", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$50.19", + "item_type": "digital" + }, + { + "title": "Principles of Anatomy and Physiology", + "edition": "16th", + "author": "Tortora", + "isbn": "9781119662686", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$119.50", + "item_type": "digital" + } + ] + }, + { + "department": "FINA", + "course_num": "3401W", + "section": "80", + "instructor": "Arthur Wilson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Origins of Value", + "edition": "N/A", + "author": "Goetzmann", + "isbn": "9780195175714", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$144.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Origins of Value", + "edition": "N/A", + "author": "Goetzmann", + "isbn": "9780195175714", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$192.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Business Ethics: A Contemporary Introduction", + "edition": "N/A", + "author": "Moriarty", + "isbn": "9781138498129", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Business Ethics: A Contemporary Introduction", + "edition": "N/A", + "author": "Moriarty", + "isbn": "9781138498129", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$54.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Business Ethics", + "edition": "N/A", + "author": "Moriarty", + "isbn": "9781351016858", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$46.95", + "item_type": "digital" + } + ] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "M38", + "instructor": "Mark Ralkowski", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Meditations", + "edition": "N/A", + "author": "Aurelius", + "isbn": "9780199573202", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$3.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Meditations", + "edition": "N/A", + "author": "Aurelius", + "isbn": "9780199573202", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$7.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Meditations", + "edition": "N/A", + "author": "Aurelius", + "isbn": "9780199573202", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$9.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Analects", + "edition": "N/A", + "author": "Confucius", + "isbn": "9780872206359", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Analects", + "edition": "N/A", + "author": "Confucius", + "isbn": "9780872206359", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$21.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Analects", + "edition": "N/A", + "author": "Confucius", + "isbn": "9780872206359", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$15.94", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "What the Buddha Taught", + "edition": "N/A", + "author": "Rahula", + "isbn": "9780802130310", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1974", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "What the Buddha Taught", + "edition": "N/A", + "author": "Rahula", + "isbn": "9780802130310", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1974", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "What the Buddha Taught", + "edition": "N/A", + "author": "Rahula", + "isbn": "9780802130310", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1974", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chuang Tzu: Basic Writings", + "edition": "N/A", + "author": "Tzu", + "isbn": "9780231105958", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "RENTAL_USED", + "price_display": "$11.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chuang Tzu: Basic Writings", + "edition": "N/A", + "author": "Tzu", + "isbn": "9780231105958", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chuang Tzu: Basic Writings", + "edition": "N/A", + "author": "Tzu", + "isbn": "9780231105958", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chuang Tzu: Basic Writings", + "edition": "N/A", + "author": "Tzu", + "isbn": "9780231105958", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "RENTAL_NEW", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Tao Te Ching", + "edition": "N/A", + "author": "Chen", + "isbn": "9781557782380", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1989", + "publisher": "Paragon House Publishers", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Tao Te Ching", + "edition": "N/A", + "author": "Chen", + "isbn": "9781557782380", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1989", + "publisher": "Paragon House Publishers", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Republic (Trans Grube)", + "edition": "2nd", + "author": "Plato", + "isbn": "9780872201361", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$5.92", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Republic (Trans Grube)", + "edition": "2nd", + "author": "Plato", + "isbn": "9780872201361", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Republic (Trans Grube)", + "edition": "2nd", + "author": "Plato", + "isbn": "9780872201361", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$13.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Meditations", + "edition": "N/A", + "author": "Marcus Aurelius", + "isbn": "9780191620195", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$3.89", + "item_type": "digital" + }, + { + "title": "Meditations", + "edition": "N/A", + "author": "Marcus Aurelius", + "isbn": "9780191620195", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$4.49", + "item_type": "digital" + }, + { + "title": "Meditations", + "edition": "N/A", + "author": "Marcus Aurelius", + "isbn": "9780191620195", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$5.99", + "item_type": "digital" + }, + { + "title": "Republic", + "edition": "2nd", + "author": "Plato", + "isbn": "9781603846448", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$10.95", + "item_type": "digital" + }, + { + "title": "Analects", + "edition": "N/A", + "author": "Confucius", + "isbn": "9781603840194", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$14.95", + "item_type": "digital" + } + ] + }, + { + "department": "GEOG", + "course_num": "6304", + "section": "10", + "instructor": "Steven Johnson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Essentials of Geographic Information Systems v3.0 (canon)", + "edition": "3rd", + "author": "Shin", + "isbn": "9781453337639", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Boston Academic DBA Flat World", + "type_condition": "RENTAL_NEW", + "price_display": "$48.00", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "1003", + "section": "14", + "instructor": "Aris Hines", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ASTR", + "course_num": "3141", + "section": "10", + "instructor": "Sylvain Guiriec", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "2301", + "section": "17", + "instructor": "Ndiogou Cisse", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "2001", + "section": "17", + "instructor": "Jenny Zha Giedt", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Financial Accounting (RRMCG RENTAL Edition)", + "edition": "11th", + "author": "Libby", + "isbn": "9781264229734", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Financial Accounting (RRMCG RENTAL Edition)", + "edition": "11th", + "author": "Libby", + "isbn": "9781264229734", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Connect Online Access for Financial Accounting", + "edition": "11th", + "author": "LIBBY", + "isbn": "9781265717254", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$189.75", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "3401", + "section": "10", + "instructor": "Pradeep Rau", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "6216", + "section": "10", + "instructor": "James Clark", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GER", + "course_num": "2109", + "section": "80", + "instructor": "Mary Beth Stein", + "term_name": "Fall 2023", + "texts": [ + { + "title": "In der Sache J Robert Oppenheimer (Suhrkamp #64)", + "edition": "N/A", + "author": "Kipphardt", + "isbn": "9783518100646", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1964", + "publisher": "Imprt", + "type_condition": "BUY_NEW", + "price_display": "$9.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In der Sache J Robert Oppenheimer (Suhrkamp #64)", + "edition": "N/A", + "author": "Kipphardt", + "isbn": "9783518100646", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1964", + "publisher": "Imprt", + "type_condition": "BUY_USED", + "price_display": "$7.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "1002", + "section": "34", + "instructor": "Roy Grinker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "3170", + "section": "10", + "instructor": "Joseph McDonald", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Organizational Communication", + "edition": "8th", + "author": "Eisenberg", + "isbn": "9781319052348", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_USED", + "price_display": "$134.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Organizational Communication", + "edition": "8th", + "author": "Eisenberg", + "isbn": "9781319052348", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_USED", + "price_display": "$44.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Organizational Communication", + "edition": "8th", + "author": "Eisenberg", + "isbn": "9781319052348", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$179.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "How to Win Friends & Influence People in the Digital Age", + "edition": "N/A", + "author": "Carnegie", + "isbn": "9781451612592", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "How to Win Friends & Influence People in the Digital Age", + "edition": "N/A", + "author": "Carnegie", + "isbn": "9781451612592", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$17.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "How to Win Friends & Influence People in the Digital Age", + "edition": "N/A", + "author": "Carnegie", + "isbn": "9781451612592", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Simon & Schuster", + "type_condition": "RENTAL_NEW", + "price_display": "$11.69", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Organizational Communication", + "edition": "8th", + "author": "Eisenberg", + "isbn": "9781319070434", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$56.99", + "item_type": "digital" + } + ] + }, + { + "department": "ACCY", + "course_num": "6601", + "section": "10", + "instructor": "Leo Moersen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSSJ", + "course_num": "2170", + "section": "10", + "instructor": "Linda-Jeanne Mack", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Helping Skills", + "edition": "5th", + "author": "Hill", + "isbn": "9781433831379", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "RENTAL_USED", + "price_display": "$40.43", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Helping Skills", + "edition": "5th", + "author": "Hill", + "isbn": "9781433831379", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "BUY_USED", + "price_display": "$72.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Helping Skills", + "edition": "5th", + "author": "Hill", + "isbn": "9781433831379", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "BUY_NEW", + "price_display": "$96.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Helping Skills", + "edition": "5th", + "author": "Hill", + "isbn": "9781433831386", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "American Psychological Association", + "type_condition": "BUY_NEW", + "price_display": "$65.44", + "item_type": "digital" + } + ] + }, + { + "department": "ARAB", + "course_num": "3501W", + "section": "80", + "instructor": "Mohssen Esseesy", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Modern Arabic Sociolinguistics", + "edition": "N/A", + "author": "Albirini", + "isbn": "9780415707473", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$64.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern Arabic Sociolinguistics", + "edition": "N/A", + "author": "Albirini", + "isbn": "9780415707473", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$48.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History & Development of the Arabic Language", + "edition": "N/A", + "author": "Al-Sharkawi", + "isbn": "9781138821521", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$56.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History & Development of the Arabic Language", + "edition": "N/A", + "author": "Al-Sharkawi", + "isbn": "9781138821521", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$42.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "GEOG", + "course_num": "6308", + "section": "80", + "instructor": "Michael Mann", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Python Crash Course", + "edition": "2nd", + "author": "Matthes", + "isbn": "9781593279288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "No Starch Press, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$29.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Python Crash Course", + "edition": "2nd", + "author": "Matthes", + "isbn": "9781593279288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "No Starch Press, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$39.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Python Crash Course", + "edition": "2nd", + "author": "Matthes", + "isbn": "9781593279288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "No Starch Press, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CNSL", + "course_num": "8251", + "section": "10", + "instructor": "Bagmi Das", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Basic Psychopharmacology for Mental Health Professionals", + "edition": "3rd", + "author": "Sinacola", + "isbn": "9780134893648", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$64.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Basic Psychopharmacology for Mental Health Professionals", + "edition": "3rd", + "author": "Sinacola", + "isbn": "9780134893648", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$36.02", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Basic Psychopharmacology for Mental Health Professionals", + "edition": "3rd", + "author": "Sinacola", + "isbn": "9780134893648", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$85.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Basic Psychopharmacology for Mental Health Professionals", + "edition": "3rd", + "author": "Sinacola", + "isbn": "9780134893648", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$64.31", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pearson eText for Basic Psychopharmacology for Mental Health Professionals -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "3rd", + "author": "Sinacola", + "isbn": "9780137525720", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Basic Psychopharmacology for Mental Health Professionals", + "edition": "3rd", + "author": "Sinacola", + "isbn": "9780134893761", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "ARAB", + "course_num": "2001", + "section": "11", + "instructor": "Cory Jorgensen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Al-Kitaab Part Two with Website PB (Lingco)", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121914", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$139.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Al-Kitaab Part One with Website PB (Lingco): A Textbook for Beginning Arabic", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121877", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$163.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_NEW", + "price_display": "$29.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BISC", + "course_num": "8998", + "section": "10", + "instructor": "Damien O'Halloran", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "1002", + "section": "10", + "instructor": "Nikolay Shiklomanov", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Physical Geography Lab Manual", + "edition": "13th", + "author": "Hess", + "isbn": "9780135918395", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$93.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "McKnight's Physical Geography (RRPHE)", + "edition": "13th", + "author": "Hess", + "isbn": "9780135827147", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST ONLY, DELETE PO", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "McKnight's Physical Geography (RRPHE)", + "edition": "13th", + "author": "Hess", + "isbn": "9780135827147", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST ONLY, DELETE PO", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pearson eText Physical Geography Laboratory Manual -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "13th", + "author": "Hess", + "isbn": "9780135923900", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Pearson eText McKnight's Physical Geography: A Landscape Appreciation -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "13th", + "author": "Tasa", + "isbn": "9780135800256", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Physical Geography Laboratory Manual", + "edition": "13th", + "author": "Hess", + "isbn": "9780135918111", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "McKnight's Physical Geography", + "edition": "13th", + "author": "Hess", + "isbn": "9780135827260", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "Physical Geography Laboratory Manual", + "edition": "13th", + "author": "Hess", + "isbn": "9780135918128", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "McKnight's Physical Geography", + "edition": "13th", + "author": "Hess", + "isbn": "9780135800089", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "CNSL", + "course_num": "6269", + "section": "11", + "instructor": "Kenneth Hergenrather", + "term_name": "Fall 2023", + "texts": [ + { + "title": "45 Techniques Every Counselor Should Know", + "edition": "3rd", + "author": "Erford", + "isbn": "9780134694894", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson Education", + "type_condition": "RENTAL_USED", + "price_display": "$25.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "45 Techniques Every Counselor Should Know", + "edition": "3rd", + "author": "Erford", + "isbn": "9780134694894", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson Education", + "type_condition": "BUY_NEW", + "price_display": "$62.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "45 Techniques Every Counselor Should Know", + "edition": "3rd", + "author": "Erford", + "isbn": "9780134694894", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson Education", + "type_condition": "BUY_USED", + "price_display": "$47.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning to Counsel", + "edition": "2nd", + "author": "Sutton", + "isbn": "9781857037968", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Little Brown Book Group Ltd", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning to Counsel", + "edition": "2nd", + "author": "Sutton", + "isbn": "9781857037968", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Little Brown Book Group Ltd", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pearson eText for 45 Techniques Every Counselor Should Know -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "3rd", + "author": "Erford", + "isbn": "9780137412129", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "45 Techniques Every Counselor Should Know", + "edition": "3rd", + "author": "Erford", + "isbn": "9780134742724", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "45 Techniques Every Counselor Should Know", + "edition": "3rd", + "author": "Erford", + "isbn": "9780134742779", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "2001", + "section": "13", + "instructor": "Ernest Englander", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Democracy - a Case Study", + "edition": "N/A", + "author": "Moss", + "isbn": "9780674237704", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Democracy - a Case Study", + "edition": "N/A", + "author": "Moss", + "isbn": "9780674237704", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$7.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Democracy - a Case Study", + "edition": "N/A", + "author": "Moss", + "isbn": "9780674237704", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "3601", + "section": "16", + "instructor": "Sanjay Jain", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Operations Management (RRPHE)", + "edition": "14th", + "author": "Heizer", + "isbn": "9780137476442", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Operations Management (RRPHE)", + "edition": "14th", + "author": "Heizer", + "isbn": "9780137476442", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "14th Edition: Pearson eText Operations Management: Sustainability and Supply Chain Management -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "14th", + "author": "Heizer", + "isbn": "9780137649136", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Operations Management", + "edition": "14th", + "author": "Heizer", + "isbn": "9780137649198", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$110.25", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "1001", + "section": "39", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EAP", + "course_num": "1015", + "section": "11", + "instructor": "Dmitri Stanchevici", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319244255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$75.38", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319244255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_NEW", + "price_display": "$100.50", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319244255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_USED", + "price_display": "$44.22", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319244255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_USED", + "price_display": "$75.50", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319392895", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$35.99", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "6999", + "section": "10", + "instructor": "Jason Zara", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3401", + "section": "11", + "instructor": "Ravi Achrol", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "2006", + "section": "10", + "instructor": "Noelle Levy-Gires", + "term_name": "Fall 2023", + "texts": [ + { + "title": "La France Contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664421", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "La France Contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664421", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "La France contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664438", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "La France contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664438", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$67.99", + "item_type": "digital" + }, + { + "title": "La France contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664438", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$86.49", + "item_type": "digital" + } + ] + }, + { + "department": "EXNS", + "course_num": "2127", + "section": "10", + "instructor": "Alexandra Lewin-Zwerdling", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Food Policy in the United States", + "edition": "2nd", + "author": "Wilde", + "isbn": "9781138204003", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "RENTAL_USED", + "price_display": "$23.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Food Policy in the United States", + "edition": "2nd", + "author": "Wilde", + "isbn": "9781138204003", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$45.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Food Policy in the United States", + "edition": "2nd", + "author": "Wilde", + "isbn": "9781138204003", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$59.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Food Policy in the United States", + "edition": "2nd", + "author": "Wilde", + "isbn": "9781138204003", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "RENTAL_NEW", + "price_display": "$44.96", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BME", + "course_num": "6998", + "section": "14", + "instructor": "Hyung Sok Choe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "4801", + "section": "13", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "3603", + "section": "80", + "instructor": "Francys Subiaul", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Introducing Psycholinguistics", + "edition": "N/A", + "author": "Warren", + "isbn": "9780521130561", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$34.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introducing Psycholinguistics", + "edition": "N/A", + "author": "Warren", + "isbn": "9780521130561", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introducing Psycholinguistics", + "edition": "N/A", + "author": "Warren", + "isbn": "9780521130561", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$22.74", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BISC", + "course_num": "2450", + "section": "10", + "instructor": "Thiago Moreira", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Evolution", + "edition": "5th", + "author": "Futuyma", + "isbn": "9780197619612", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$189.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Evolution", + "edition": "5th", + "author": "Futuyma", + "isbn": "9780197619612", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Evolution", + "edition": "5th", + "author": "Futuyma", + "isbn": "9780197619636", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$59.99", + "item_type": "digital" + }, + { + "title": "Evolution", + "edition": "5th", + "author": "Futuyma", + "isbn": "9780197619636", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$69.22", + "item_type": "digital" + }, + { + "title": "Evolution", + "edition": "5th", + "author": "Futuyma", + "isbn": "9780197619636", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$92.29", + "item_type": "digital" + } + ] + }, + { + "department": "ENGL", + "course_num": "1360", + "section": "80", + "instructor": "Patricia Chu", + "term_name": "Fall 2023", + "texts": [ + { + "title": "MLA Handbook", + "edition": "8th", + "author": "Modern Language Association Of America", + "isbn": "9781603292627", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2016", + "publisher": "Modern Language Association of America (Use HOPFU)", + "type_condition": "RENTAL_USED", + "price_display": "$7.26", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "MLA Handbook", + "edition": "8th", + "author": "Modern Language Association Of America", + "isbn": "9781603292627", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2016", + "publisher": "Modern Language Association of America (Use HOPFU)", + "type_condition": "BUY_USED", + "price_display": "$12.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "MLA Handbook", + "edition": "8th", + "author": "Modern Language Association Of America", + "isbn": "9781603292627", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2016", + "publisher": "Modern Language Association of America (Use HOPFU)", + "type_condition": "BUY_NEW", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sir Gawain & the Green Knight", + "edition": "N/A", + "author": "Stone", + "isbn": "9780140440928", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1974", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_USED", + "price_display": "$5.28", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sir Gawain & the Green Knight", + "edition": "N/A", + "author": "Stone", + "isbn": "9780140440928", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1974", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$9.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sir Gawain & the Green Knight", + "edition": "N/A", + "author": "Stone", + "isbn": "9780140440928", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1974", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$9.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sir Gawain & the Green Knight", + "edition": "N/A", + "author": "Stone", + "isbn": "9780140440928", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1974", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Seraphina", + "edition": "N/A", + "author": "Hartman", + "isbn": "9780375866227", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Random House Children's Books", + "type_condition": "BUY_USED", + "price_display": "$9.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Seraphina", + "edition": "N/A", + "author": "Hartman", + "isbn": "9780375866227", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Random House Children's Books", + "type_condition": "RENTAL_NEW", + "price_display": "$8.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Seraphina", + "edition": "N/A", + "author": "Hartman", + "isbn": "9780375866227", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Random House Children's Books", + "type_condition": "BUY_NEW", + "price_display": "$11.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "King Must Die", + "edition": "N/A", + "author": "Renault", + "isbn": "9780394751047", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "King Must Die", + "edition": "N/A", + "author": "Renault", + "isbn": "9780394751047", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$13.46", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "King Must Die", + "edition": "N/A", + "author": "Renault", + "isbn": "9780394751047", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hero with a Thousand Faces", + "edition": "N/A", + "author": "Campbell", + "isbn": "9781577315933", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "New World Library", + "type_condition": "RENTAL_USED", + "price_display": "$10.98", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Hero with a Thousand Faces", + "edition": "N/A", + "author": "Campbell", + "isbn": "9781577315933", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "New World Library", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Hero with a Thousand Faces", + "edition": "N/A", + "author": "Campbell", + "isbn": "9781577315933", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "New World Library", + "type_condition": "RENTAL_NEW", + "price_display": "$18.71", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Hero with a Thousand Faces", + "edition": "N/A", + "author": "Campbell", + "isbn": "9781577315933", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "New World Library", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Classic Fairy Tales", + "edition": "2nd", + "author": "Tatar", + "isbn": "9780393602975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_USED", + "price_display": "$17.88", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Classic Fairy Tales", + "edition": "2nd", + "author": "Tatar", + "isbn": "9780393602975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Classic Fairy Tales", + "edition": "2nd", + "author": "Tatar", + "isbn": "9780393602975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$35.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kindred", + "edition": "N/A", + "author": "Butler", + "isbn": "9780807083697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kindred", + "edition": "N/A", + "author": "Butler", + "isbn": "9780807083697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gilgamesh: New English Version", + "edition": "N/A", + "author": "Mitchell", + "isbn": "9780743261692", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Simon & Schuster", + "type_condition": "RENTAL_USED", + "price_display": "$8.64", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gilgamesh: New English Version", + "edition": "N/A", + "author": "Mitchell", + "isbn": "9780743261692", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gilgamesh: New English Version", + "edition": "N/A", + "author": "Mitchell", + "isbn": "9780743261692", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Classic Fairy Tales (Second Edition) (Norton Critical Editions)", + "edition": "2nd", + "author": "Tatar", + "isbn": "9780393289794", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$12.99", + "item_type": "digital" + } + ] + }, + { + "department": "COMM", + "course_num": "3174", + "section": "10", + "instructor": "Michael Newbill", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intercultural Communication in Contexts (RRMCG)", + "edition": "8th", + "author": "Martin", + "isbn": "9781260837452", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intercultural Communication in Contexts (RRMCG)", + "edition": "8th", + "author": "Martin", + "isbn": "9781260837452", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intercultural Communication in Contexts", + "edition": "8th", + "author": "Martin", + "isbn": "9781264177233", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$62.25", + "item_type": "digital" + }, + { + "title": "Intercultural Communication in Contexts", + "edition": "8th", + "author": "Martin", + "isbn": "9781264177233", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$79.25", + "item_type": "digital" + }, + { + "title": "Intercultural Communication in Contexts", + "edition": "8th", + "author": "Martin", + "isbn": "9781264177233", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$94.75", + "item_type": "digital" + } + ] + }, + { + "department": "FINA", + "course_num": "3201", + "section": "10", + "instructor": "Arthur Wilson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Analysis for Financial Management (RRMCG RENTAL Edition)", + "edition": "13th", + "author": "Higgins", + "isbn": "9781260772364", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Analysis for Financial Management (RRMCG RENTAL Edition)", + "edition": "13th", + "author": "Higgins", + "isbn": "9781260772364", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fingame Online 5.0 (w/login-password card)", + "edition": "N/A", + "author": "Brooks", + "isbn": "9780077219888", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$83.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Analysis for Financial Management", + "edition": "13th", + "author": "Higgins", + "isbn": "9781264112104", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$62.25", + "item_type": "digital" + }, + { + "title": "Analysis for Financial Management", + "edition": "13th", + "author": "Higgins", + "isbn": "9781264112104", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$79.25", + "item_type": "digital" + }, + { + "title": "Analysis for Financial Management", + "edition": "13th", + "author": "Higgins", + "isbn": "9781264112104", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$94.75", + "item_type": "digital" + } + ] + }, + { + "department": "HSSJ", + "course_num": "2177", + "section": "10", + "instructor": "Kimberly Aldridge", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Organizing for Social Change", + "edition": "4th", + "author": "Bobo", + "isbn": "9780984275212", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "The Forum Press - EMAIL, vendor cancelled fax subscription", + "type_condition": "RENTAL_USED", + "price_display": "$28.10", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Organizing for Social Change", + "edition": "4th", + "author": "Bobo", + "isbn": "9780984275212", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "The Forum Press - EMAIL, vendor cancelled fax subscription", + "type_condition": "BUY_NEW", + "price_display": "$70.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Organizing for Social Change", + "edition": "4th", + "author": "Bobo", + "isbn": "9780984275212", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "The Forum Press - EMAIL, vendor cancelled fax subscription", + "type_condition": "BUY_USED", + "price_display": "$52.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Organizing for Social Change", + "edition": "4th", + "author": "Bobo", + "isbn": "9780984275212", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "The Forum Press - EMAIL, vendor cancelled fax subscription", + "type_condition": "RENTAL_NEW", + "price_display": "$56.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Social Welfare Policy & Social Programs (Empowerment Series)", + "edition": "4th", + "author": "Segal", + "isbn": "9781305101920", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$79.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Social Welfare Policy & Social Programs (Empowerment Series)", + "edition": "4th", + "author": "Segal", + "isbn": "9781305101920", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Social Welfare Policy & Social Programs (Empowerment Series)", + "edition": "4th", + "author": "Segal", + "isbn": "9781305101920", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "How Change Happens", + "edition": "N/A", + "author": "Crutchfield", + "isbn": "9781119413813", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$12.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "How Change Happens", + "edition": "N/A", + "author": "Crutchfield", + "isbn": "9781119413813", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "How Change Happens", + "edition": "N/A", + "author": "Crutchfield", + "isbn": "9781119413813", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "How Change Happens", + "edition": "N/A", + "author": "Crutchfield", + "isbn": "9781119413813", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$22.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "How Change Happens", + "edition": "1st", + "author": "Crutchfield", + "isbn": "9781119413783", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "item_type": "digital" + }, + { + "title": "Empowerment Series: Social Welfare Policy and Social Programs, Enhanced", + "edition": "4th", + "author": "Segal", + "isbn": "9781305465152", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$44.49", + "item_type": "digital" + }, + { + "title": "Empowerment Series: Social Welfare Policy and Social Programs, Enhanced", + "edition": "4th", + "author": "Segal", + "isbn": "9781305465152", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$60.99", + "item_type": "digital" + }, + { + "title": "Empowerment Series: Social Welfare Policy and Social Programs, Enhanced", + "edition": "4th", + "author": "Segal", + "isbn": "9781305465152", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$77.49", + "item_type": "digital" + } + ] + }, + { + "department": "GEOG", + "course_num": "6244", + "section": "10", + "instructor": "Lisa Benton-Short", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Urban Sustainability in the US", + "edition": "N/A", + "author": "Keeley", + "isbn": "9783319932958", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Palgrave Macmillan", + "type_condition": "RENTAL_USED", + "price_display": "$40.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Urban Sustainability in the US", + "edition": "N/A", + "author": "Keeley", + "isbn": "9783319932958", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Palgrave Macmillan", + "type_condition": "BUY_USED", + "price_display": "$75.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Urban Sustainability in the US", + "edition": "N/A", + "author": "Keeley", + "isbn": "9783319932958", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Palgrave Macmillan", + "type_condition": "RENTAL_NEW", + "price_display": "$75.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Urban Sustainability in the US", + "edition": "N/A", + "author": "Keeley", + "isbn": "9783319932958", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Palgrave Macmillan", + "type_condition": "BUY_NEW", + "price_display": "$100.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Urban Sustainability in the US", + "edition": "N/A", + "author": "Keeley", + "isbn": "9783319932965", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$89.00", + "item_type": "digital" + }, + { + "title": "Urban Sustainability in the US", + "edition": "N/A", + "author": "Keeley", + "isbn": "9783319932965", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$89.00", + "item_type": "digital" + }, + { + "title": "Urban Sustainability in the US", + "edition": "N/A", + "author": "Keeley", + "isbn": "9783319932965", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$89.00", + "item_type": "digital" + }, + { + "title": "Urban Sustainability in the US", + "edition": "N/A", + "author": "Keeley", + "isbn": "9783319932965", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$89.00", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "44", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "2490", + "section": "80", + "instructor": "Emily Bock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BMSC", + "course_num": "8212", + "section": "10", + "instructor": "Colin Young", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "2008", + "section": "30", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "6238", + "section": "MV", + "instructor": "Walter Rowe", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Practical Forensic Microscopy: A Laboratory Manual", + "edition": "N/A", + "author": "Wheeler", + "isbn": "9780470031766", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$101.75", + "item_type": "print" + } + ] + }, + { + "department": "BIOC", + "course_num": "3261", + "section": "80", + "instructor": "Rong Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ASTR", + "course_num": "1002", + "section": "31", + "instructor": "Eda Sonbas", + "term_name": "Fall 2023", + "texts": [ + { + "title": "ASTR 1002 Laboratory Manual (CUSTOM)", + "edition": "5th", + "author": "George Washington University", + "isbn": "9781682846278", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Academx Publishing Serv Inc", + "type_condition": "BUY_NEW", + "price_display": "$30.25", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "ECON", + "course_num": "8341", + "section": "10", + "instructor": "Barry Chiswick", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Modern Labor Economics", + "edition": "14th", + "author": "Ehrenberg", + "isbn": "9780367346973", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$210.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Modern Labor Economics", + "edition": "14th", + "author": "Ehrenberg", + "isbn": "9780367346973", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$157.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Human Capital", + "edition": "3rd", + "author": "Becker", + "isbn": "9780226041209", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1993", + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$31.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Human Capital", + "edition": "3rd", + "author": "Becker", + "isbn": "9780226041209", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1993", + "publisher": "University of Chicago Press", + "type_condition": "BUY_USED", + "price_display": "$23.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern Labor Economics", + "edition": "14th", + "author": "Ehrenberg", + "isbn": "9781000397871", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$210.00", + "item_type": "digital" + } + ] + }, + { + "department": "ENGL", + "course_num": "2240", + "section": "80", + "instructor": "Allyson Stokes", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Fences (Trade Ed)", + "edition": "N/A", + "author": "Wilson", + "isbn": "9780452264014", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$9.90", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fences (Trade Ed)", + "edition": "N/A", + "author": "Wilson", + "isbn": "9780452264014", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fences (Trade Ed)", + "edition": "N/A", + "author": "Wilson", + "isbn": "9780452264014", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fences (Trade Ed)", + "edition": "N/A", + "author": "Wilson", + "isbn": "9780452264014", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Medea", + "edition": "N/A", + "author": "Euripides", + "isbn": "9780195145663", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$11.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Medea", + "edition": "N/A", + "author": "Euripides", + "isbn": "9780195145663", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$9.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Medea", + "edition": "N/A", + "author": "Euripides", + "isbn": "9780195145663", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$8.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Othello (Trade Ed)", + "edition": "N/A", + "author": "Shakespeare", + "isbn": "9780743482820", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$9.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Othello (Trade Ed)", + "edition": "N/A", + "author": "Shakespeare", + "isbn": "9780743482820", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$7.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Machinal", + "edition": "N/A", + "author": "Treadwell", + "isbn": "9781854592118", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$8.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Machinal", + "edition": "N/A", + "author": "Treadwell", + "isbn": "9781854592118", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Machinal", + "edition": "N/A", + "author": "Treadwell", + "isbn": "9781854592118", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Topdog/Underdog", + "edition": "N/A", + "author": "Parks", + "isbn": "9781559362016", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$7.02", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Topdog/Underdog", + "edition": "N/A", + "author": "Parks", + "isbn": "9781559362016", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Topdog/Underdog", + "edition": "N/A", + "author": "Parks", + "isbn": "9781559362016", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Topdog/Underdog", + "edition": "N/A", + "author": "Parks", + "isbn": "9781559362016", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$11.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sweat (TCG Edition)", + "edition": "N/A", + "author": "Nottage", + "isbn": "9781559365321", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sweat (TCG Edition)", + "edition": "N/A", + "author": "Nottage", + "isbn": "9781559365321", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sweat (TCG Edition)", + "edition": "N/A", + "author": "Nottage", + "isbn": "9781559365321", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$11.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chekhov: Four Essential Plays", + "edition": "N/A", + "author": "Chekhov", + "isbn": "9780375761348", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chekhov: Four Essential Plays", + "edition": "N/A", + "author": "Chekhov", + "isbn": "9780375761348", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chekhov: Four Essential Plays", + "edition": "N/A", + "author": "Chekhov", + "isbn": "9780375761348", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mother Courage & Her Children", + "edition": "N/A", + "author": "Brecht", + "isbn": "9780802130822", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1966", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$9.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mother Courage & Her Children", + "edition": "N/A", + "author": "Brecht", + "isbn": "9780802130822", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1966", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$7.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mother Courage & Her Children", + "edition": "N/A", + "author": "Brecht", + "isbn": "9780802130822", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1966", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$6.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028579", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bloomsbury Publishing Plc", + "type_condition": "BUY_NEW", + "price_display": "$14.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028579", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bloomsbury Publishing Plc", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028579", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bloomsbury Publishing Plc", + "type_condition": "RENTAL_NEW", + "price_display": "$11.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Medea", + "edition": "N/A", + "author": "Euripides", + "isbn": "9780199881857", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$5.19", + "item_type": "digital" + }, + { + "title": "Medea", + "edition": "N/A", + "author": "Euripides", + "isbn": "9780199881857", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$5.99", + "item_type": "digital" + }, + { + "title": "Medea", + "edition": "N/A", + "author": "Euripides", + "isbn": "9780199881857", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$7.99", + "item_type": "digital" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028593", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$10.00", + "item_type": "digital" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028586", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$10.00", + "item_type": "digital" + }, + { + "title": "Sweat (TCG Edition)", + "edition": "N/A", + "author": "Nottage", + "isbn": "9781559368544", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$10.75", + "item_type": "digital" + }, + { + "title": "Topdog/Underdog (TCG Edition)", + "edition": "N/A", + "author": "Parks", + "isbn": "9781559366243", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$10.75", + "item_type": "digital" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028586", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$11.75", + "item_type": "digital" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028593", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$11.75", + "item_type": "digital" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028586", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "BUY_NEW", + "price_display": "$12.75", + "item_type": "digital" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028593", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "BUY_NEW", + "price_display": "$12.75", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6501", + "section": "12", + "instructor": "Grady Wilburn", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Elementary Statistics in Social Research", + "edition": "12th", + "author": "Levin", + "isbn": "9780205845484", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Allyn & Bacon, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$210.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Elementary Statistics in Social Research", + "edition": "12th", + "author": "Levin", + "isbn": "9780205845484", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Allyn & Bacon, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$117.71", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Elementary Statistics in Social Research", + "edition": "12th", + "author": "Levin", + "isbn": "9780205845484", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Allyn & Bacon, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$280.25", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "DNSC", + "course_num": "3403", + "section": "10", + "instructor": "Janne Kettunen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Practical Management Science", + "edition": "6th", + "author": "Winston", + "isbn": "9781337406659", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$133.04", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Practical Management Science", + "edition": "6th", + "author": "Winston", + "isbn": "9781337406659", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$316.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Practical Management Science", + "edition": "6th", + "author": "Winston", + "isbn": "9781337406659", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$237.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Practical Management Science", + "edition": "6th", + "author": "Winston", + "isbn": "9781337406659", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$237.56", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Practical Management Science", + "edition": "6th", + "author": "Winston", + "isbn": "9781337671989", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$55.49", + "item_type": "digital" + }, + { + "title": "Practical Management Science", + "edition": "6th", + "author": "Winston", + "isbn": "9781337671989", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$75.99", + "item_type": "digital" + }, + { + "title": "Practical Management Science", + "edition": "6th", + "author": "Winston", + "isbn": "9781337671989", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$96.99", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "6330", + "section": "10", + "instructor": "Barbara Miller", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3103", + "section": "10", + "instructor": "Paul Swiercz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Human Capital in Organizations (Custom GWU)", + "edition": "N/A", + "author": "McHugh", + "isbn": "9781307496994", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "MCGRAW HILL (CUSTOM PUBLISHING)", + "type_condition": "BUY_NEW", + "price_display": "$107.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BME", + "course_num": "6045", + "section": "10", + "instructor": "Victor Krauthamer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "6050", + "section": "11", + "instructor": "Zhenyu Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "6230", + "section": "10", + "instructor": "Jeffrey Blomster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1003", + "section": "31", + "instructor": "Eric Cline", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BIOC", + "course_num": "6223", + "section": "80", + "instructor": "Raja Mazumder", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "2053", + "section": "13", + "instructor": "Seth Rotramel", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Coup D'Etat", + "edition": "2nd", + "author": "Luttwak", + "isbn": "9780674737266", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Coup D'Etat", + "edition": "2nd", + "author": "Luttwak", + "isbn": "9780674737266", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$9.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Coup D'Etat", + "edition": "2nd", + "author": "Luttwak", + "isbn": "9780674737266", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "M32", + "instructor": "Eyal Aviv", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Philosophy for Life & Other Dangerous Situations", + "edition": "N/A", + "author": "Evans", + "isbn": "9781608682294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New World Library", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy for Life & Other Dangerous Situations", + "edition": "N/A", + "author": "Evans", + "isbn": "9781608682294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New World Library", + "type_condition": "RENTAL_USED", + "price_display": "$7.18", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy for Life & Other Dangerous Situations", + "edition": "N/A", + "author": "Evans", + "isbn": "9781608682294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New World Library", + "type_condition": "RENTAL_NEW", + "price_display": "$11.67", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy for Life & Other Dangerous Situations", + "edition": "N/A", + "author": "Evans", + "isbn": "9781608682294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New World Library", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy for Life and Other Dangerous Situations", + "edition": "N/A", + "author": "Evans", + "isbn": "9781608682300", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "New World Library", + "type_condition": "BUY_NEW", + "price_display": "$12.00", + "item_type": "digital" + } + ] + }, + { + "department": "AMST", + "course_num": "2410W", + "section": "82", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3001W", + "section": "80", + "instructor": "Arthur Wilson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Origins of Value", + "edition": "N/A", + "author": "Goetzmann", + "isbn": "9780195175714", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$144.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Origins of Value", + "edition": "N/A", + "author": "Goetzmann", + "isbn": "9780195175714", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$192.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Business Ethics: A Contemporary Introduction", + "edition": "N/A", + "author": "Moriarty", + "isbn": "9781138498129", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2022", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Business Ethics: A Contemporary Introduction", + "edition": "N/A", + "author": "Moriarty", + "isbn": "9781138498129", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2022", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$54.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Business Ethics", + "edition": "N/A", + "author": "Moriarty", + "isbn": "9781351016858", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$46.95", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "33", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1002", + "section": "35", + "instructor": "Roy Grinker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1007", + "section": "30", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "2117W", + "section": "10", + "instructor": "Kiersten Janjigian", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Foundations of Sport & Exercise Psychology (w/Web SG)", + "edition": "7th", + "author": "Weinberg", + "isbn": "9781492572350", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Human Kinetics", + "type_condition": "RENTAL_USED", + "price_display": "$64.50", + "item_type": "print" + }, + { + "title": "Foundations of Sport & Exercise Psychology (w/Web SG)", + "edition": "7th", + "author": "Weinberg", + "isbn": "9781492572350", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Human Kinetics", + "type_condition": "BUY_USED", + "price_display": "$96.75", + "item_type": "print" + }, + { + "title": "Foundations of Sport & Exercise Psychology (w/Web SG)", + "edition": "7th", + "author": "Weinberg", + "isbn": "9781492572350", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Human Kinetics", + "type_condition": "RENTAL_NEW", + "price_display": "$90.30", + "item_type": "print" + }, + { + "title": "Foundations of Sport & Exercise Psychology (w/Web SG)", + "edition": "7th", + "author": "Weinberg", + "isbn": "9781492572350", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Human Kinetics", + "type_condition": "BUY_NEW", + "price_display": "$129.00", + "item_type": "print" + }, + { + "title": "Foundations of Sport and Exercise Psychology", + "edition": "7th", + "author": "Weinberg", + "isbn": "9781492572473", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$63.05", + "item_type": "digital" + }, + { + "title": "Foundations of Sport and Exercise Psychology", + "edition": "7th", + "author": "Weinberg", + "isbn": "9781492572473", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$77.60", + "item_type": "digital" + }, + { + "title": "Foundations of Sport and Exercise Psychology", + "edition": "7th", + "author": "Weinberg", + "isbn": "9781492572473", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$87.30", + "item_type": "digital" + }, + { + "title": "Foundations of Sport and Exercise Psychology", + "edition": "7th", + "author": "Weinberg", + "isbn": "9781492572473", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics Publishers", + "type_condition": "BUY_NEW", + "price_display": "$97.00", + "item_type": "digital" + } + ] + }, + { + "department": "AMST", + "course_num": "2410W", + "section": "81", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "6403", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSSJ", + "course_num": "1100", + "section": "10", + "instructor": "Erica Walls", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Human Services", + "edition": "9th", + "author": "Woodside", + "isbn": "9781337567176", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Human Services", + "edition": "9th", + "author": "Woodside", + "isbn": "9781337567176", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$123.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Human Services", + "edition": "9th", + "author": "Woodside", + "isbn": "9781337567176", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$79.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Human Services", + "edition": "9th", + "author": "Woodside", + "isbn": "9781337567176", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "An Introduction to Human Services", + "edition": "9th", + "author": "Woodside", + "isbn": "9781337671262", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$44.49", + "item_type": "digital" + }, + { + "title": "An Introduction to Human Services", + "edition": "9th", + "author": "Woodside", + "isbn": "9781337671262", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$60.99", + "item_type": "digital" + }, + { + "title": "An Introduction to Human Services", + "edition": "9th", + "author": "Woodside", + "isbn": "9781337671262", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$77.49", + "item_type": "digital" + } + ] + }, + { + "department": "ENGL", + "course_num": "2610W", + "section": "10", + "instructor": "Jennifer James", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Appeal (New Intro Wilentz)", + "edition": "N/A", + "author": "Walker", + "isbn": "9780809015818", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "RENTAL_NEW", + "price_display": "$14.06", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Appeal (New Intro Wilentz)", + "edition": "N/A", + "author": "Walker", + "isbn": "9780809015818", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_NEW", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Appeal (New Intro Wilentz)", + "edition": "N/A", + "author": "Walker", + "isbn": "9780809015818", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Narrative of the Life of Frederick Douglass", + "edition": "N/A", + "author": "Douglass", + "isbn": "9780140390124", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1982", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$13.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Narrative of the Life of Frederick Douglass", + "edition": "N/A", + "author": "Douglass", + "isbn": "9780140390124", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1982", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Marrow of Tradition", + "edition": "N/A", + "author": "Chesnutt", + "isbn": "9780312194062", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$22.13", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Marrow of Tradition", + "edition": "N/A", + "author": "Chesnutt", + "isbn": "9780312194062", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_NEW", + "price_display": "$29.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Marrow of Tradition", + "edition": "N/A", + "author": "Chesnutt", + "isbn": "9780312194062", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_USED", + "price_display": "$11.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Marrow of Tradition", + "edition": "N/A", + "author": "Chesnutt", + "isbn": "9780312194062", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_USED", + "price_display": "$22.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Incidents in Life of Slave Girl", + "edition": "N/A", + "author": "Jacobs", + "isbn": "9780140437959", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Incidents in Life of Slave Girl", + "edition": "N/A", + "author": "Jacobs", + "isbn": "9780140437959", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Incidents in Life of Slave Girl", + "edition": "N/A", + "author": "Jacobs", + "isbn": "9780140437959", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Souls of Black Folk", + "edition": "N/A", + "author": "Dubois", + "isbn": "9780140189988", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1989", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$10.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Souls of Black Folk", + "edition": "N/A", + "author": "Dubois", + "isbn": "9780140189988", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1989", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$14.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Souls of Black Folk", + "edition": "N/A", + "author": "Dubois", + "isbn": "9780140189988", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1989", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_USED", + "price_display": "$5.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Souls of Black Folk", + "edition": "N/A", + "author": "Dubois", + "isbn": "9780140189988", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1989", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$10.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Most Good You Can Do", + "edition": "N/A", + "author": "Singer", + "isbn": "9780300182415", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Titan Books Limited", + "type_condition": "BUY_NEW", + "price_display": "$17.99", + "item_type": "digital" + } + ] + }, + { + "department": "COMM", + "course_num": "1040", + "section": "13", + "instructor": "Barry Piatt", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Rhetorical Criticism :Exploration & Practice", + "edition": "5th", + "author": "Foss", + "isbn": "9781478634898", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Waveland Press, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$66.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Rhetorical Criticism :Exploration & Practice", + "edition": "5th", + "author": "Foss", + "isbn": "9781478634898", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Waveland Press, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$50.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Rhetorical Criticism :Exploration & Practice", + "edition": "5th", + "author": "Foss", + "isbn": "9781478634898", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Waveland Press, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$43.52", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Rhetorical Criticism :Exploration & Practice", + "edition": "5th", + "author": "Foss", + "isbn": "9781478634898", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Waveland Press, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$26.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Speaker's Guidebook", + "edition": "8th", + "author": "O'Hair", + "isbn": "9781319201739", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_NEW", + "price_display": "$161.50", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Speaker's Guidebook", + "edition": "8th", + "author": "O'Hair", + "isbn": "9781319201739", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_USED", + "price_display": "$121.25", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rhetorical Criticism", + "edition": "5th", + "author": "Foss", + "isbn": "9781478645351", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Waveland Press, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$33.48", + "item_type": "digital" + }, + { + "title": "Rhetorical Criticism", + "edition": "5th", + "author": "Foss", + "isbn": "9781478645351", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Waveland Press, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$50.21", + "item_type": "digital" + }, + { + "title": "A Speaker's Guidebook", + "edition": "8th", + "author": "O'Hair", + "isbn": "9781319336738", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$50.99", + "item_type": "digital" + } + ] + }, + { + "department": "EHS", + "course_num": "2110", + "section": "10", + "instructor": "Amy Keim", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Emergency Department Technician Handbook", + "edition": "N/A", + "author": "Shesser", + "isbn": "9780323830027", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Elsevier Health", + "type_condition": "BUY_NEW", + "price_display": "$72.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Emergency Department Technician Handbook", + "edition": "N/A", + "author": "Shesser", + "isbn": "9780323830027", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Elsevier Health", + "type_condition": "BUY_USED", + "price_display": "$54.75", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "EXNS", + "course_num": "1117", + "section": "10", + "instructor": "Megan Marcum", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Sport Coaches' Handbook", + "edition": "N/A", + "author": "Gould", + "isbn": "9781492515807", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics", + "type_condition": "BUY_USED", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sport Coaches' Handbook", + "edition": "N/A", + "author": "Gould", + "isbn": "9781492515807", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics", + "type_condition": "BUY_NEW", + "price_display": "$40.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sport Coaches' Handbook", + "edition": "N/A", + "author": "Human Kinetics", + "isbn": "9781718200999", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$25.97", + "item_type": "digital" + }, + { + "title": "Sport Coaches' Handbook", + "edition": "N/A", + "author": "Human Kinetics", + "isbn": "9781718200999", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$31.96", + "item_type": "digital" + }, + { + "title": "Sport Coaches' Handbook", + "edition": "N/A", + "author": "Human Kinetics", + "isbn": "9781718200999", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$35.96", + "item_type": "digital" + }, + { + "title": "Sport Coaches' Handbook", + "edition": "N/A", + "author": "Human Kinetics", + "isbn": "9781718200999", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics Publishers", + "type_condition": "BUY_NEW", + "price_display": "$39.95", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "2153", + "section": "15", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lab Notebook Spiral Bound 100 Pages (Copy Page Perforated)", + "edition": "N/A", + "author": "Barbakam", + "isbn": "9780978534424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "APSC", + "course_num": "2113", + "section": "11", + "instructor": "Anrieta Draganova", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSCI", + "course_num": "2101", + "section": "11", + "instructor": "Patrick Corr", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Culture, Health & Illness", + "edition": "5th", + "author": "Helman", + "isbn": "9780340914502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_USED", + "price_display": "$50.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Culture, Health & Illness", + "edition": "5th", + "author": "Helman", + "isbn": "9780340914502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "RENTAL_USED", + "price_display": "$26.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Culture, Health & Illness", + "edition": "5th", + "author": "Helman", + "isbn": "9780340914502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$66.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Culture, Health & Illness", + "edition": "5th", + "author": "Helman", + "isbn": "9780340914502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$53.56", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Culture, Health and Illness, Fifth edition", + "edition": "5th", + "author": "Helman", + "isbn": "9781444113631", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$66.95", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "1003", + "section": "41", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1003", + "section": "37", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "36", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3501", + "section": "12", + "instructor": "William Handorf", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Fund of Financial Management: Concise", + "edition": "10th", + "author": "Brigham", + "isbn": "9781337902571", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage South-Western", + "type_condition": "RENTAL_NEW", + "price_display": "$237.56", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fund of Financial Management: Concise", + "edition": "10th", + "author": "Brigham", + "isbn": "9781337902571", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage South-Western", + "type_condition": "BUY_NEW", + "price_display": "$316.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fund of Financial Management: Concise", + "edition": "10th", + "author": "Brigham", + "isbn": "9781337902571", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage South-Western", + "type_condition": "RENTAL_USED", + "price_display": "$133.04", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fund of Financial Management: Concise", + "edition": "10th", + "author": "Brigham", + "isbn": "9781337902571", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage South-Western", + "type_condition": "BUY_USED", + "price_display": "$237.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fundamentals of Financial Management, Concise Edition", + "edition": "10th", + "author": "Brigham", + "isbn": "9781337911054", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$55.49", + "item_type": "digital" + }, + { + "title": "Fundamentals of Financial Management, Concise Edition", + "edition": "10th", + "author": "Brigham", + "isbn": "9781337911054", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$75.99", + "item_type": "digital" + }, + { + "title": "Fundamentals of Financial Management, Concise Edition", + "edition": "10th", + "author": "Brigham", + "isbn": "9781337911054", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$96.99", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "2101", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6561", + "section": "81", + "instructor": "Elyse Nicolas", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Interaction Design: Beyond Human Interaction", + "edition": "4th", + "author": "Preece", + "isbn": "9781119020752", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$72.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Interaction Design: Beyond Human Interaction", + "edition": "4th", + "author": "Preece", + "isbn": "9781119020752", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$96.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Interaction Design: Beyond Human Interaction", + "edition": "4th", + "author": "Preece", + "isbn": "9781119020752", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$77.56", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Interaction Design: Beyond Human Interaction", + "edition": "4th", + "author": "Preece", + "isbn": "9781119020752", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$38.78", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "24", + "instructor": "Janiece Morton", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3601", + "section": "12", + "instructor": "Marie Matta", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "2301", + "section": "13", + "instructor": "Anju Wadhwa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "2506", + "section": "80", + "instructor": "Susan Johnston", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Sorrow of Lonely & Burning of Dancers", + "edition": "2nd", + "author": "Schieffelin", + "isbn": "9781403966063", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$99.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sorrow of Lonely & Burning of Dancers", + "edition": "2nd", + "author": "Schieffelin", + "isbn": "9781403966063", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Springer Nature", + "type_condition": "BUY_USED", + "price_display": "$75.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In Sorcery's Shadow", + "edition": "N/A", + "author": "Stoller", + "isbn": "9780226775432", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1987", + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In Sorcery's Shadow", + "edition": "N/A", + "author": "Stoller", + "isbn": "9780226775432", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1987", + "publisher": "University of Chicago Press", + "type_condition": "RENTAL_USED", + "price_display": "$11.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In Sorcery's Shadow", + "edition": "N/A", + "author": "Stoller", + "isbn": "9780226775432", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1987", + "publisher": "University of Chicago Press", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Theater in a Crowded Fire", + "edition": "N/A", + "author": "Gilmore", + "isbn": "9780520260887", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$34.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Theater in a Crowded Fire", + "edition": "N/A", + "author": "Gilmore", + "isbn": "9780520260887", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "University of California Press", + "type_condition": "RENTAL_USED", + "price_display": "$17.48", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Theater in a Crowded Fire", + "edition": "N/A", + "author": "Gilmore", + "isbn": "9780520260887", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Atlantic Celts: Ancient People or Modern Invention?", + "edition": "N/A", + "author": "James", + "isbn": "9780299166748", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "University of Wisconsin Press", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Atlantic Celts: Ancient People or Modern Invention?", + "edition": "N/A", + "author": "James", + "isbn": "9780299166748", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "University of Wisconsin Press", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Theater in a Crowded Fire", + "edition": "1st", + "author": "Gilmore", + "isbn": "9780520945531", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$34.95", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "1004", + "section": "30", + "instructor": "Scheherazade Rehman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "8999", + "section": "18", + "instructor": "Chung Hyuk Park", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "AMST", + "course_num": "1100", + "section": "31", + "instructor": "Elisabeth Anker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3501", + "section": "13", + "instructor": "William Handorf", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "1001", + "section": "12", + "instructor": "Phyllis Zhang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Developing Chinese Fluency: Intro Chinese Simplified (V1)", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781133309932", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$77.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Developing Chinese Fluency: Intro Chinese Simplified (V1)", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781133309932", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$58.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introductory Chinese Simplified (V1: Literacy Workbook)", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781285456799", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$54.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introductory Chinese Simplified (V1: Literacy Workbook)", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781285456799", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANAT", + "course_num": "6275", + "section": "10", + "instructor": "Robert Hawley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "36", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "BIOC", + "course_num": "6242", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "2216", + "section": "10", + "instructor": "Gustavo Hormiga", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3103", + "section": "13", + "instructor": "Rebecca Burns", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Human Capital in Organizations (Custom GWU)", + "edition": "N/A", + "author": "McHugh", + "isbn": "9781307496994", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "MCGRAW HILL (CUSTOM PUBLISHING)", + "type_condition": "BUY_NEW", + "price_display": "$107.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ECON", + "course_num": "6295", + "section": "82", + "instructor": "Simon Schropp", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Economics of World Trading System", + "edition": "N/A", + "author": "Bagwell", + "isbn": "9780262524346", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "MIT Press order from Random House", + "type_condition": "BUY_NEW", + "price_display": "$24.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Economics of World Trading System", + "edition": "N/A", + "author": "Bagwell", + "isbn": "9780262524346", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "MIT Press order from Random House", + "type_condition": "BUY_USED", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Legal Texts", + "edition": "N/A", + "author": "World Trade", + "isbn": "9780521785808", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1999", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$93.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Legal Texts", + "edition": "N/A", + "author": "World Trade", + "isbn": "9780521785808", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1999", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$69.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Trade Law", + "edition": "3rd", + "author": "Pauwelyn", + "isbn": "9781454873105", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Aspen Publishing *email Orders*", + "type_condition": "BUY_NEW", + "price_display": "$313.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Trade Law", + "edition": "3rd", + "author": "Pauwelyn", + "isbn": "9781454873105", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Aspen Publishing *email Orders*", + "type_condition": "BUY_USED", + "price_display": "$234.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Trade Law", + "edition": "3rd", + "author": "Pauwelyn", + "isbn": "9781454873105", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Aspen Publishing *email Orders*", + "type_condition": "RENTAL_NEW", + "price_display": "$234.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Trade Law", + "edition": "3rd", + "author": "Pauwelyn", + "isbn": "9781454873105", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Aspen Publishing *email Orders*", + "type_condition": "RENTAL_USED", + "price_display": "$131.46", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Regulation of International Trade, Volume 1", + "edition": "N/A", + "author": "Mavroidis", + "isbn": "9780262029841", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "MIT Press order from Random House", + "type_condition": "BUY_NEW", + "price_display": "$120.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Regulation of International Trade, Volume 1", + "edition": "N/A", + "author": "Mavroidis", + "isbn": "9780262029841", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "MIT Press order from Random House", + "type_condition": "BUY_USED", + "price_display": "$90.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Legal & Economic Prin of World Trade Law", + "edition": "N/A", + "author": "Horn", + "isbn": "9781107459649", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$44.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Legal & Economic Prin of World Trade Law", + "edition": "N/A", + "author": "Horn", + "isbn": "9781107459649", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Regulation of International Trade, Volume 2", + "edition": "N/A", + "author": "Mavroidis", + "isbn": "9780262029995", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2016", + "publisher": "MIT Press order from Random House", + "type_condition": "BUY_NEW", + "price_display": "$120.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Regulation of International Trade, Volume 2", + "edition": "N/A", + "author": "Mavroidis", + "isbn": "9780262029995", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2016", + "publisher": "MIT Press order from Random House", + "type_condition": "BUY_USED", + "price_display": "$90.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "The Legal Texts", + "edition": "N/A", + "author": "Organization", + "isbn": "9781107385559", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$87.00", + "item_type": "digital" + }, + { + "title": "International Trade Law", + "edition": "3rd", + "author": "Pauwelyn", + "isbn": "9781454877479", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Aspen Publishing *email Orders*", + "type_condition": "BUY_NEW", + "price_display": "$322.00", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "32", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "6995", + "section": "11", + "instructor": "Ilana Feldman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BIOS", + "course_num": "8998", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "MV", + "instructor": "Carly Jordan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EALL", + "course_num": "3811", + "section": "80", + "instructor": "Xiaofei Kang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Confucianism", + "edition": "N/A", + "author": "Littlejohn", + "isbn": "9781848851740", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "I. B. Tauris & Company, Limited", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Confucianism", + "edition": "N/A", + "author": "Littlejohn", + "isbn": "9781848851740", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "I. B. Tauris & Company, Limited", + "type_condition": "BUY_NEW", + "price_display": "$26.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9780872208261", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9780872208261", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$6.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9780872208261", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9780872208261", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9781624660085", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$12.50", + "item_type": "digital" + } + ] + }, + { + "department": "EXNS", + "course_num": "2117", + "section": "10", + "instructor": "Kiersten Janjigian", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Foundations of Sport & Exercise Psychology (w/Web SG)", + "edition": "7th", + "author": "Weinberg", + "isbn": "9781492572350", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Human Kinetics", + "type_condition": "RENTAL_USED", + "price_display": "$64.50", + "item_type": "print" + }, + { + "title": "Foundations of Sport & Exercise Psychology (w/Web SG)", + "edition": "7th", + "author": "Weinberg", + "isbn": "9781492572350", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Human Kinetics", + "type_condition": "BUY_NEW", + "price_display": "$129.00", + "item_type": "print" + }, + { + "title": "Foundations of Sport & Exercise Psychology (w/Web SG)", + "edition": "7th", + "author": "Weinberg", + "isbn": "9781492572350", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Human Kinetics", + "type_condition": "BUY_USED", + "price_display": "$96.75", + "item_type": "print" + }, + { + "title": "Foundations of Sport & Exercise Psychology (w/Web SG)", + "edition": "7th", + "author": "Weinberg", + "isbn": "9781492572350", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Human Kinetics", + "type_condition": "RENTAL_NEW", + "price_display": "$90.30", + "item_type": "print" + }, + { + "title": "Foundations of Sport and Exercise Psychology", + "edition": "7th", + "author": "Weinberg", + "isbn": "9781492572473", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$63.05", + "item_type": "digital" + }, + { + "title": "Foundations of Sport and Exercise Psychology", + "edition": "7th", + "author": "Weinberg", + "isbn": "9781492572473", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$77.60", + "item_type": "digital" + }, + { + "title": "Foundations of Sport and Exercise Psychology", + "edition": "7th", + "author": "Weinberg", + "isbn": "9781492572473", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$87.30", + "item_type": "digital" + }, + { + "title": "Foundations of Sport and Exercise Psychology", + "edition": "7th", + "author": "Weinberg", + "isbn": "9781492572473", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics Publishers", + "type_condition": "BUY_NEW", + "price_display": "$97.00", + "item_type": "digital" + } + ] + }, + { + "department": "GEOG", + "course_num": "6201", + "section": "10", + "instructor": "Declan Cullen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Geographic Thought", + "edition": "N/A", + "author": "Cresswell", + "isbn": "9781405169394", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$24.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Geographic Thought", + "edition": "N/A", + "author": "Cresswell", + "isbn": "9781405169394", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$45.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Geographic Thought", + "edition": "N/A", + "author": "Cresswell", + "isbn": "9781405169394", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$61.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Geographic Thought", + "edition": "N/A", + "author": "Cresswell", + "isbn": "9781405169394", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$45.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Geographic Thought", + "edition": "1st", + "author": "Cresswell", + "isbn": "9781118256497", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "item_type": "digital" + } + ] + }, + { + "department": "FINA", + "course_num": "3001", + "section": "12", + "instructor": "Min Hwang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Prin of Corporate Finance (RRMCG RENTAL Edition)", + "edition": "14th", + "author": "BREALEY", + "isbn": "9781264080946", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Prin of Corporate Finance (RRMCG RENTAL Edition)", + "edition": "14th", + "author": "BREALEY", + "isbn": "9781264080946", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Principles of Corporate Finance", + "edition": "14th", + "author": "Brealey", + "isbn": "9781266032806", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$67.50", + "item_type": "digital" + }, + { + "title": "Principles of Corporate Finance", + "edition": "14th", + "author": "Brealey", + "isbn": "9781266032806", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$84.50", + "item_type": "digital" + }, + { + "title": "Principles of Corporate Finance", + "edition": "14th", + "author": "Brealey", + "isbn": "9781266032806", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$105.50", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "6050", + "section": "15", + "instructor": "Chung Hyuk Park", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "6999", + "section": "15", + "instructor": "Emilia Entcheva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ARAB", + "course_num": "3501", + "section": "80", + "instructor": "Mohssen Esseesy", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Modern Arabic Sociolinguistics", + "edition": "N/A", + "author": "Albirini", + "isbn": "9780415707473", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$64.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern Arabic Sociolinguistics", + "edition": "N/A", + "author": "Albirini", + "isbn": "9780415707473", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$48.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History & Development of the Arabic Language", + "edition": "N/A", + "author": "Al-Sharkawi", + "isbn": "9781138821521", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$56.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History & Development of the Arabic Language", + "edition": "N/A", + "author": "Al-Sharkawi", + "isbn": "9781138821521", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$42.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "3900", + "section": "10", + "instructor": "Emily Bock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BIOS", + "course_num": "6295", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "2147", + "section": "10", + "instructor": "Matthew Collins", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Weather Factor", + "edition": "N/A", + "author": "Durschmied", + "isbn": "9781611454390", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Skyhorse Pub Co, Incorp", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Weather Factor", + "edition": "N/A", + "author": "Durschmied", + "isbn": "9781611454390", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Skyhorse Pub Co, Incorp", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Battling the Elements", + "edition": "N/A", + "author": "Winters", + "isbn": "9780801866487", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "The Johns Hopkins University Press", + "type_condition": "BUY_NEW", + "price_display": "$37.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Battling the Elements", + "edition": "N/A", + "author": "Winters", + "isbn": "9780801866487", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "The Johns Hopkins University Press", + "type_condition": "BUY_USED", + "price_display": "$28.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern Military Geography", + "edition": "N/A", + "author": "Galgano", + "isbn": "9780415870955", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$139.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern Military Geography", + "edition": "N/A", + "author": "Galgano", + "isbn": "9780415870955", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$105.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Battling the Elements", + "edition": "N/A", + "author": "Winters", + "isbn": "9781421440255", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "The Johns Hopkins University Press", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "item_type": "digital" + }, + { + "title": "Modern Military Geography", + "edition": "1st", + "author": "Galgano", + "isbn": "9781136919800", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$120.00", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "6505", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "35", + "instructor": "Amber Kimble", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "6999", + "section": "12", + "instructor": "Luyao Lu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "39", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "2010", + "section": "83", + "instructor": "Nicole Ivy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "2336", + "section": "10", + "instructor": "Jimmy Saw", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Microbiology: An Evolving Science", + "edition": "6th", + "author": "W.W. Norton Courseware", + "isbn": "9781324033660", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated Courseware", + "type_condition": "RENTAL_NEW", + "price_display": "$99.25", + "item_type": "digital" + } + ] + }, + { + "department": "ENGL", + "course_num": "3210", + "section": "10", + "instructor": "Thea Brown", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Look", + "edition": "N/A", + "author": "Sharif", + "isbn": "9781555977443", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Graywolf", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Look", + "edition": "N/A", + "author": "Sharif", + "isbn": "9781555977443", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Graywolf", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Look", + "edition": "N/A", + "author": "Sharif", + "isbn": "9781555977443", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Graywolf", + "type_condition": "RENTAL_NEW", + "price_display": "$10.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Revolutionary Letters: 50th Anniversary Edition", + "edition": "N/A", + "author": "Prima", + "isbn": "9780872868793", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "City Lights Books", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Revolutionary Letters: 50th Anniversary Edition", + "edition": "N/A", + "author": "Prima", + "isbn": "9780872868793", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "City Lights Books", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Now & Then", + "edition": "N/A", + "author": "Scott-Heron", + "isbn": "9781786897831", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Canongate Books (Trafalgar Square is now Dist. f/Canongate)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Now & Then", + "edition": "N/A", + "author": "Scott-Heron", + "isbn": "9781786897831", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Canongate Books (Trafalgar Square is now Dist. f/Canongate)", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sister Outsider (Commemorative Ed)", + "edition": "N/A", + "author": "Lorde", + "isbn": "9781580911863", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Crossing Press, Incorporated, The", + "type_condition": "BUY_NEW", + "price_display": "$16.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sister Outsider (Commemorative Ed)", + "edition": "N/A", + "author": "Lorde", + "isbn": "9781580911863", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Crossing Press, Incorporated, The", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sister Outsider (Commemorative Ed)", + "edition": "N/A", + "author": "Lorde", + "isbn": "9781580911863", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Crossing Press, Incorporated, The", + "type_condition": "RENTAL_NEW", + "price_display": "$9.34", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Collected Poems of Audre Lorde", + "edition": "N/A", + "author": "Lorde", + "isbn": "9780393319729", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$21.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Collected Poems of Audre Lorde", + "edition": "N/A", + "author": "Lorde", + "isbn": "9780393319729", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Collected Poems of Audre Lorde", + "edition": "N/A", + "author": "Lorde", + "isbn": "9780393319729", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$16.46", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Girls That Never Die", + "edition": "N/A", + "author": "Elhillo", + "isbn": "9780593229484", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Random House Adult Trade Publ", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Girls That Never Die", + "edition": "N/A", + "author": "Elhillo", + "isbn": "9780593229484", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Random House Adult Trade Publ", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Semiautomatic", + "edition": "N/A", + "author": "Shockley", + "isbn": "9780819577443", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Wesleyan University Press", + "type_condition": "RENTAL_USED", + "price_display": "$6.38", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Semiautomatic", + "edition": "N/A", + "author": "Shockley", + "isbn": "9780819577443", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Wesleyan University Press", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Semiautomatic", + "edition": "N/A", + "author": "Shockley", + "isbn": "9780819577443", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Wesleyan University Press", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Semiautomatic", + "edition": "N/A", + "author": "Shockley", + "isbn": "9780819577443", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Wesleyan University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$11.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Collected Poems of Audre Lorde", + "edition": "N/A", + "author": "Lorde", + "isbn": "9780393254402", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$21.95", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "1003", + "section": "35", + "instructor": "Eric Cline", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "AMST", + "course_num": "2490", + "section": "85", + "instructor": "Patricia Chu", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Disgraced (Play)", + "edition": "N/A", + "author": "Akhtar", + "isbn": "9780316324465", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Little Brown & Company", + "type_condition": "BUY_NEW", + "price_display": "$16.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Disgraced (Play)", + "edition": "N/A", + "author": "Akhtar", + "isbn": "9780316324465", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Little Brown & Company", + "type_condition": "RENTAL_NEW", + "price_display": "$12.74", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Disgraced (Play)", + "edition": "N/A", + "author": "Akhtar", + "isbn": "9780316324465", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Little Brown & Company", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "We Hereby Refuse: Japanese American Resistance to Wartime Incarceration", + "edition": "N/A", + "author": "Abe", + "isbn": "9781634059763", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Consortium Book Sales & Distribution", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "We Hereby Refuse: Japanese American Resistance to Wartime Incarceration", + "edition": "N/A", + "author": "Abe", + "isbn": "9781634059763", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Consortium Book Sales & Distribution", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fifth Chinese Daughter", + "edition": "N/A", + "author": "Wong", + "isbn": "9780295745909", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Washington Press", + "type_condition": "BUY_NEW", + "price_display": "$25.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fifth Chinese Daughter", + "edition": "N/A", + "author": "Wong", + "isbn": "9780295745909", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Washington Press", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Minor Feelings", + "edition": "N/A", + "author": "Hong", + "isbn": "9781984820389", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Random House Adult Trade Publ", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Minor Feelings", + "edition": "N/A", + "author": "Hong", + "isbn": "9781984820389", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Random House Adult Trade Publ", + "type_condition": "RENTAL_NEW", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Minor Feelings", + "edition": "N/A", + "author": "Hong", + "isbn": "9781984820389", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Random House Adult Trade Publ", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Best We Could Do", + "edition": "N/A", + "author": "Bui", + "isbn": "9781419718786", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Harry N. Abrams Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$19.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Best We Could Do", + "edition": "N/A", + "author": "Bui", + "isbn": "9781419718786", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Harry N. Abrams Incorporated", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey Hunting", + "edition": "N/A", + "author": "Garcia", + "isbn": "9780345466105", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2004", + "publisher": "Ballantine Books", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey Hunting", + "edition": "N/A", + "author": "Garcia", + "isbn": "9780345466105", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2004", + "publisher": "Ballantine Books", + "type_condition": "RENTAL_NEW", + "price_display": "$11.05", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey Hunting", + "edition": "N/A", + "author": "Garcia", + "isbn": "9780345466105", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2004", + "publisher": "Ballantine Books", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey Hunting", + "edition": "N/A", + "author": "Garcia", + "isbn": "9780345466105", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2004", + "publisher": "Ballantine Books", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Passing for Perfect", + "edition": "N/A", + "author": "Ninh", + "isbn": "9781439920527", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Temple University Press", + "type_condition": "BUY_NEW", + "price_display": "$31.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Passing for Perfect", + "edition": "N/A", + "author": "Ninh", + "isbn": "9781439920527", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Temple University Press", + "type_condition": "BUY_USED", + "price_display": "$24.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China Men", + "edition": "N/A", + "author": "Kingston", + "isbn": "9780679723288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China Men", + "edition": "N/A", + "author": "Kingston", + "isbn": "9780679723288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$11.02", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China Men", + "edition": "N/A", + "author": "Kingston", + "isbn": "9780679723288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$6.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China Men", + "edition": "N/A", + "author": "Kingston", + "isbn": "9780679723288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Asian American History: a Very Short Introduction", + "edition": "2nd", + "author": "Hsu", + "isbn": "9780190219765", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$11.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Asian American History: a Very Short Introduction", + "edition": "2nd", + "author": "Hsu", + "isbn": "9780190219765", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$9.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "I Was Their American Dream", + "edition": "N/A", + "author": "Gharib", + "isbn": "9780525575115", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Clarkson Potter", + "type_condition": "BUY_NEW", + "price_display": "$16.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "I Was Their American Dream", + "edition": "N/A", + "author": "Gharib", + "isbn": "9780525575115", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Clarkson Potter", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156034029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "BUY_NEW", + "price_display": "$15.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156034029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "RENTAL_NEW", + "price_display": "$11.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156034029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "RENTAL_USED", + "price_display": "$7.04", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156034029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Twilight: Los Angeles, 1992", + "edition": "N/A", + "author": "Smith", + "isbn": "9780385473767", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Twilight: Los Angeles, 1992", + "edition": "N/A", + "author": "Smith", + "isbn": "9780385473767", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Twilight: Los Angeles, 1992", + "edition": "N/A", + "author": "Smith", + "isbn": "9780385473767", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Asian American History: A Very Short Introduction", + "edition": "N/A", + "author": "Hsu", + "isbn": "9780190219789", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$5.19", + "item_type": "digital" + }, + { + "title": "Asian American History: A Very Short Introduction", + "edition": "N/A", + "author": "Hsu", + "isbn": "9780190219789", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$5.99", + "item_type": "digital" + }, + { + "title": "Asian American History: A Very Short Introduction", + "edition": "N/A", + "author": "Hsu", + "isbn": "9780190219789", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$7.99", + "item_type": "digital" + }, + { + "title": "Disgraced", + "edition": "N/A", + "author": "Akhtar", + "isbn": "9780316324472", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hachette Book Group", + "type_condition": "BUY_NEW", + "price_display": "$9.99", + "item_type": "digital" + }, + { + "title": "The Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156033121", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Houghton Mifflin Harcourt Supplemental Publishers", + "type_condition": "BUY_NEW", + "price_display": "$10.50", + "item_type": "digital" + }, + { + "title": "The Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156033121", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$14.99", + "item_type": "digital" + }, + { + "title": "Fifth Chinese Daughter", + "edition": "N/A", + "author": "Wong", + "isbn": "9780295745916", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Washington Press", + "type_condition": "BUY_NEW", + "price_display": "$20.75", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "6102", + "section": "10", + "instructor": "Ilana Feldman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "2002", + "section": "10", + "instructor": "Edward Sul", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2630", + "section": "10", + "instructor": "Jisoo Kim", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Sources of Korean Tradition (V2)", + "edition": "N/A", + "author": "Choe", + "isbn": "9780231120319", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$31.50", + "item_type": "print" + }, + { + "title": "Sources of Korean Tradition (V2)", + "edition": "N/A", + "author": "Choe", + "isbn": "9780231120319", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "RENTAL_USED", + "price_display": "$16.80", + "item_type": "print" + }, + { + "title": "Sources of Korean Tradition (V2)", + "edition": "N/A", + "author": "Choe", + "isbn": "9780231120319", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$42.00", + "item_type": "print" + }, + { + "title": "Sources of Korean Tradition (V1)", + "edition": "N/A", + "author": "Lee", + "isbn": "9780231105675", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sources of Korean Tradition (V1)", + "edition": "N/A", + "author": "Lee", + "isbn": "9780231105675", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "RENTAL_USED", + "price_display": "$16.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sources of Korean Tradition (V1)", + "edition": "N/A", + "author": "Lee", + "isbn": "9780231105675", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "RENTAL_NEW", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sources of Korean Tradition (V1)", + "edition": "N/A", + "author": "Lee", + "isbn": "9780231105675", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$42.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Concise History of Korea", + "edition": "3rd", + "author": "Seth", + "isbn": "9781538128985", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_USED", + "price_display": "$53.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Concise History of Korea", + "edition": "3rd", + "author": "Seth", + "isbn": "9781538128985", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_NEW", + "price_display": "$71.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "1002", + "section": "39", + "instructor": "Roy Grinker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "6111", + "section": "80", + "instructor": "Jonathan Chaves", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Columbia Book of Chinese Poetry", + "edition": "N/A", + "author": "Watson", + "isbn": "9780231056830", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1984", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$38.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Columbia Book of Chinese Poetry", + "edition": "N/A", + "author": "Watson", + "isbn": "9780231056830", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1984", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$28.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Columbia Book of Chinese Poetry", + "edition": "N/A", + "author": "Watson", + "isbn": "9780231056830", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1984", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "RENTAL_USED", + "price_display": "$15.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey (by Wu Ch'eng-en)", + "edition": "N/A", + "author": "Waley", + "isbn": "9780802130860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1970", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey (by Wu Ch'eng-en)", + "edition": "N/A", + "author": "Waley", + "isbn": "9780802130860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1970", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey (by Wu Ch'eng-en)", + "edition": "N/A", + "author": "Waley", + "isbn": "9780802130860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1970", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$11.05", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Anthology of Chinese Literature (Early Times-14th Cent)", + "edition": "N/A", + "author": "Birch", + "isbn": "9780802150387", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1965", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Anthology of Chinese Literature (Early Times-14th Cent)", + "edition": "N/A", + "author": "Birch", + "isbn": "9780802150387", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1965", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Scholars", + "edition": "N/A", + "author": "Ching-Tzu", + "isbn": "9780231081535", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$50.00", + "item_type": "print" + }, + { + "title": "Scholars", + "edition": "N/A", + "author": "Ching-Tzu", + "isbn": "9780231081535", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$37.50", + "item_type": "print" + }, + { + "title": "Columbia Anthology of Yuan Drama", + "edition": "N/A", + "author": "Hsia", + "isbn": "9780231122672", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$40.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Columbia Anthology of Yuan Drama", + "edition": "N/A", + "author": "Hsia", + "isbn": "9780231122672", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Columbia Anthology of Yuan Drama", + "edition": "N/A", + "author": "Hsia", + "isbn": "9780231122672", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "RENTAL_USED", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Columbia Book of Later Chinese Poetry", + "edition": "N/A", + "author": "Chaves", + "isbn": "9780231061490", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$42.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Columbia Book of Later Chinese Poetry", + "edition": "N/A", + "author": "Chaves", + "isbn": "9780231061490", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Columbia Book of Later Chinese Poetry", + "edition": "N/A", + "author": "Chaves", + "isbn": "9780231061490", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "RENTAL_USED", + "price_display": "$16.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Columbia Anthology of Yuan Drama", + "edition": "N/A", + "author": "T.", + "isbn": "9780231537346", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "6206", + "section": "10", + "instructor": "Luz Patricia Hernandez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "1041", + "section": "15", + "instructor": "Nader Chaaban", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Interpersonal Communication Book (RRPHE)", + "edition": "16th", + "author": "DeVito", + "isbn": "9780136968474", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Interpersonal Communication Book (RRPHE)", + "edition": "16th", + "author": "DeVito", + "isbn": "9780136968474", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pearson eText for DeVito, The Interpersonal Communication Book -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "16th", + "author": "DeVito", + "isbn": "9780137589166", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Interpersonal Communication Book, The", + "edition": "16th", + "author": "DeVito", + "isbn": "9780136968399", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$98.00", + "item_type": "digital" + } + ] + }, + { + "department": "AMST", + "course_num": "2410W", + "section": "86", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "3891", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2153", + "section": "16", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lab Notebook Spiral Bound 100 Pages (Copy Page Perforated)", + "edition": "N/A", + "author": "Barbakam", + "isbn": "9780978534424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "2100", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1003", + "section": "32", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "GWU AMILLS Chem 1003 (CUSTOM)", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781305770218", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning Custom Publishing (EMAIL ORDERS)", + "type_condition": "BUY_NEW", + "price_display": "$70.25", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "FREN", + "course_num": "3100W", + "section": "11", + "instructor": "Kathryn Kleppinger", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Le Dernier Jour d'un Condamne", + "edition": "N/A", + "author": "Hugo", + "isbn": "9782081314849", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Ideal Foreign Books, Inc. PLEASE EMAIL POs", + "type_condition": "BUY_USED", + "price_display": "$4.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Le Dernier Jour d'un Condamne", + "edition": "N/A", + "author": "Hugo", + "isbn": "9782081314849", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Ideal Foreign Books, Inc. PLEASE EMAIL POs", + "type_condition": "BUY_NEW", + "price_display": "$5.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Le Jeu de l'amour et du hasard (Larousse)", + "edition": "N/A", + "author": "Marivaux", + "isbn": "9782035859150", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Imprt", + "type_condition": "BUY_USED", + "price_display": "$5.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Le Jeu de l'amour et du hasard (Larousse)", + "edition": "N/A", + "author": "Marivaux", + "isbn": "9782035859150", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Imprt", + "type_condition": "BUY_NEW", + "price_display": "$6.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Le Jeu de l'amour et du hasard (Larousse)", + "edition": "N/A", + "author": "Marivaux", + "isbn": "9782035859150", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Imprt", + "type_condition": "RENTAL_NEW", + "price_display": "$5.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "L'etranger (Folio:Plus #40)", + "edition": "N/A", + "author": "Camus", + "isbn": "9782070306022", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Imprt", + "type_condition": "BUY_USED", + "price_display": "$10.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "L'etranger (Folio:Plus #40)", + "edition": "N/A", + "author": "Camus", + "isbn": "9782070306022", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Imprt", + "type_condition": "BUY_NEW", + "price_display": "$13.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "L'etranger (Folio:Plus #40)", + "edition": "N/A", + "author": "Camus", + "isbn": "9782070306022", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Imprt", + "type_condition": "RENTAL_NEW", + "price_display": "$9.07", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Une tempete (Seuil:Points)", + "edition": "N/A", + "author": "Cesaire", + "isbn": "9782020314312", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "Imprt", + "type_condition": "RENTAL_USED", + "price_display": "$6.38", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Une tempete (Seuil:Points)", + "edition": "N/A", + "author": "Cesaire", + "isbn": "9782020314312", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "Imprt", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Une tempete (Seuil:Points)", + "edition": "N/A", + "author": "Cesaire", + "isbn": "9782020314312", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "Imprt", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Une tempete (Seuil:Points)", + "edition": "N/A", + "author": "Cesaire", + "isbn": "9782020314312", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "Imprt", + "type_condition": "RENTAL_NEW", + "price_display": "$11.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kiffe kiffe Demain (Livre de Poche #30379)", + "edition": "N/A", + "author": "Guene", + "isbn": "9782253113751", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Imprt", + "type_condition": "BUY_USED", + "price_display": "$12.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kiffe kiffe Demain (Livre de Poche #30379)", + "edition": "N/A", + "author": "Guene", + "isbn": "9782253113751", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Imprt", + "type_condition": "BUY_NEW", + "price_display": "$16.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kiffe kiffe Demain (Livre de Poche #30379)", + "edition": "N/A", + "author": "Guene", + "isbn": "9782253113751", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Imprt", + "type_condition": "RENTAL_NEW", + "price_display": "$12.19", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "3001", + "section": "10", + "instructor": "Mirasol Espanola", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSSJ", + "course_num": "2171", + "section": "10", + "instructor": "Linda-Jeanne Mack", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Child Development (w/Child Development)", + "edition": "2nd", + "author": "Levine", + "isbn": "9781483339399", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$142.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "FREN", + "course_num": "4540", + "section": "10", + "instructor": "Masha Belenky", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Illusions Perdues", + "edition": "N/A", + "author": "Balzac", + "isbn": "9782070309894", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2009", + "publisher": "Imprt", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "item_type": "print" + }, + { + "title": "Illusions Perdues", + "edition": "N/A", + "author": "Balzac", + "isbn": "9782070309894", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2009", + "publisher": "Imprt", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "item_type": "print" + }, + { + "title": "Bel Ami", + "edition": "N/A", + "author": "De Maupassant", + "isbn": "9782081444607", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Imprt", + "type_condition": "BUY_NEW", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bel Ami", + "edition": "N/A", + "author": "De Maupassant", + "isbn": "9782081444607", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Imprt", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "1003", + "section": "34", + "instructor": "Eric Cline", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BIOC", + "course_num": "6998", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2101", + "section": "12", + "instructor": "Sumit Joshi", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Microeconomics", + "edition": "9th", + "author": "Pindyck", + "isbn": "9780134184241", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$147.32", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Microeconomics", + "edition": "9th", + "author": "Pindyck", + "isbn": "9780134184241", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$263.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Microeconomics", + "edition": "9th", + "author": "Pindyck", + "isbn": "9780134184241", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$350.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Microeconomics", + "edition": "9th", + "author": "Pindyck", + "isbn": "9780134184241", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$227.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pearson eText Microeconomics -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "9th", + "author": "Pindyck", + "isbn": "9780136879572", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Microeconomics", + "edition": "9th", + "author": "Pindyck", + "isbn": "9780134184906", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$110.25", + "item_type": "digital" + }, + { + "title": "Microeconomics", + "edition": "9th", + "author": "Pindyck", + "isbn": "9780134184890", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$110.25", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "1005", + "section": "31", + "instructor": "Carson Murray", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "2337", + "section": "11", + "instructor": "Jimmy Saw", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Microbiology: Laboratory Theory & Application, Essentials", + "edition": "2nd", + "author": "Norman-Mckay", + "isbn": "9781640434004", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Morton Publishing Company", + "type_condition": "BUY_NEW", + "price_display": "$56.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Microbiology: Laboratory Theory & Application, Essentials", + "edition": "2nd", + "author": "Norman-Mckay", + "isbn": "9781640434004", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Morton Publishing Company", + "type_condition": "BUY_USED", + "price_display": "$42.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Microbiology: Laboratory Theory and Application, Essentials, 2nd Edition", + "edition": "2nd", + "author": "Pierce", + "isbn": "9781640434011", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Morton Publishing Company", + "type_condition": "BUY_NEW", + "price_display": "$48.40", + "item_type": "digital" + } + ] + }, + { + "department": "BIOS", + "course_num": "8999", + "section": "10", + "instructor": "Gholamali Rahnavard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "3160", + "section": "10", + "instructor": "Lisa Lipinski", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Twentieth-Century Art of Latin America", + "edition": "2nd", + "author": "Barnitz", + "isbn": "9781477308042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "University of Texas Press Warehouse c/o Chicago Distribution Center", + "type_condition": "BUY_NEW", + "price_display": "$55.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Twentieth-Century Art of Latin America", + "edition": "2nd", + "author": "Barnitz", + "isbn": "9781477308042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "University of Texas Press Warehouse c/o Chicago Distribution Center", + "type_condition": "RENTAL_USED", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Twentieth-Century Art of Latin America", + "edition": "2nd", + "author": "Barnitz", + "isbn": "9781477308042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "University of Texas Press Warehouse c/o Chicago Distribution Center", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Twentieth-Century Art of Latin America", + "edition": "2nd", + "author": "Barnitz", + "isbn": "9781477308042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "University of Texas Press Warehouse c/o Chicago Distribution Center", + "type_condition": "RENTAL_NEW", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "6838", + "section": "10", + "instructor": "Jeffrey Blomster", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Critically Reading Theory Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123410", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Critically Reading Theory Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123410", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$16.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Critically Reading Theory Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123410", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Critically Reading Theory Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123410", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$42.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of Archaeological Thought (Rev)", + "edition": "2nd", + "author": "Trigger", + "isbn": "9780521600491", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$31.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of Archaeological Thought (Rev)", + "edition": "2nd", + "author": "Trigger", + "isbn": "9780521600491", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_USED", + "price_display": "$16.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of Archaeological Thought (Rev)", + "edition": "2nd", + "author": "Trigger", + "isbn": "9780521600491", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of Archaeological Thought (Rev)", + "edition": "2nd", + "author": "Trigger", + "isbn": "9780521600491", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$41.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Archaeological Theory", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781118475027", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$49.13", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Archaeological Theory", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781118475027", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$26.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Archaeological Theory", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781118475027", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$49.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Archaeological Theory", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781118475027", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$65.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Critically Reading the Theory and Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123427", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_NEW", + "price_display": "$23.40", + "item_type": "digital" + }, + { + "title": "Critically Reading the Theory and Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123427", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_NEW", + "price_display": "$27.30", + "item_type": "digital" + }, + { + "title": "Critically Reading the Theory and Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123427", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_NEW", + "price_display": "$39.00", + "item_type": "digital" + }, + { + "title": "A History of Archaeological Thought", + "edition": "2nd", + "author": "Trigger", + "isbn": "9781107713758", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$42.00", + "item_type": "digital" + }, + { + "title": "Archaeological Theory", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781118499382", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$43.00", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "6998", + "section": "10", + "instructor": "Jason Zara", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6323", + "section": "10", + "instructor": "Matthew Flagge", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Thinking, Fast & Slow", + "edition": "N/A", + "author": "Kahneman", + "isbn": "9780374533557", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Thinking, Fast & Slow", + "edition": "N/A", + "author": "Kahneman", + "isbn": "9780374533557", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Behavioral Finance", + "edition": "N/A", + "author": "Burton", + "isbn": "9781118300190", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$38.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Behavioral Finance", + "edition": "N/A", + "author": "Burton", + "isbn": "9781118300190", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$71.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Behavioral Finance", + "edition": "N/A", + "author": "Burton", + "isbn": "9781118300190", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$95.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Behavioral Finance", + "edition": "1st", + "author": "Shah", + "isbn": "9781118334102", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$57.00", + "item_type": "digital" + } + ] + }, + { + "department": "AMST", + "course_num": "2490", + "section": "84", + "instructor": "Emily Bock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6370", + "section": "80", + "instructor": "Robert Cottrol", + "term_name": "Fall 2023", + "texts": [ + { + "title": "To Trust the People with Arms", + "edition": "N/A", + "author": "Cottrol", + "isbn": "9780700635719", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "University Press of Kansas email orders to LNGLF", + "type_condition": "BUY_NEW", + "price_display": "$49.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "To Trust the People with Arms", + "edition": "N/A", + "author": "Cottrol", + "isbn": "9780700635719", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "University Press of Kansas email orders to LNGLF", + "type_condition": "BUY_USED", + "price_display": "$37.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Long, Lingering Shadow", + "edition": "N/A", + "author": "Cottrol", + "isbn": "9780820344317", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Univ of Georgia Press/Longleaf", + "type_condition": "RENTAL_USED", + "price_display": "$13.18", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Long, Lingering Shadow", + "edition": "N/A", + "author": "Cottrol", + "isbn": "9780820344317", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Univ of Georgia Press/Longleaf", + "type_condition": "BUY_NEW", + "price_display": "$32.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Long, Lingering Shadow", + "edition": "N/A", + "author": "Cottrol", + "isbn": "9780820344317", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Univ of Georgia Press/Longleaf", + "type_condition": "RENTAL_NEW", + "price_display": "$24.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Long, Lingering Shadow", + "edition": "N/A", + "author": "Cottrol", + "isbn": "9780820344317", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Univ of Georgia Press/Longleaf", + "type_condition": "BUY_USED", + "price_display": "$24.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Magic Mirror: Law in American History", + "edition": "2nd", + "author": "Hall", + "isbn": "9780195081800", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$50.40", + "item_type": "print" + }, + { + "title": "Magic Mirror: Law in American History", + "edition": "2nd", + "author": "Hall", + "isbn": "9780195081800", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$119.99", + "item_type": "print" + }, + { + "title": "Magic Mirror: Law in American History", + "edition": "2nd", + "author": "Hall", + "isbn": "9780195081800", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$90.00", + "item_type": "print" + }, + { + "title": "The Long, Lingering Shadow", + "edition": "N/A", + "author": "Cottrol", + "isbn": "9780820344768", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$30.75", + "item_type": "digital" + }, + { + "title": "The Magic Mirror", + "edition": "2nd", + "author": "Hall", + "isbn": "9780197558799", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$52.99", + "item_type": "digital" + }, + { + "title": "The Magic Mirror", + "edition": "2nd", + "author": "Hall", + "isbn": "9780197558799", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$61.14", + "item_type": "digital" + }, + { + "title": "The Magic Mirror", + "edition": "2nd", + "author": "Hall", + "isbn": "9780197558799", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$81.52", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "34", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ARAB", + "course_num": "1001", + "section": "11", + "instructor": "Cory Jorgensen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_NEW", + "price_display": "$29.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Al-Kitaab Part One with Website PB (Lingco): A Textbook for Beginning Arabic", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121877", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$163.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Alif Baa with Website PB (Lingco)", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121815", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$116.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "6591", + "section": "80", + "instructor": "Attiya Ahmad", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HLWL", + "course_num": "1102", + "section": "10", + "instructor": "Mina Simhai", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Stress Management for Life", + "edition": "5th", + "author": "Olpin", + "isbn": "9780357363966", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$114.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Stress Management for Life", + "edition": "5th", + "author": "Olpin", + "isbn": "9780357363966", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$151.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Stress Management for Life: A Research-Based Experiential Approach", + "edition": "5th", + "author": "Olpin", + "isbn": "9780357364178", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "Stress Management for Life: A Research-Based Experiential Approach", + "edition": "5th", + "author": "Olpin", + "isbn": "9780357364178", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$67.99", + "item_type": "digital" + }, + { + "title": "Stress Management for Life: A Research-Based Experiential Approach", + "edition": "5th", + "author": "Olpin", + "isbn": "9780357364178", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$86.49", + "item_type": "digital" + } + ] + }, + { + "department": "ACA", + "course_num": "6211", + "section": "10", + "instructor": "Alexander Wild", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "45", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1001", + "section": "32", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "2331", + "section": "10", + "instructor": "Adam Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1003", + "section": "10", + "instructor": "Eric Cline", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Three Stones Make a Wall", + "edition": "N/A", + "author": "Cline", + "isbn": "9780691183237", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Three Stones Make a Wall", + "edition": "N/A", + "author": "Cline", + "isbn": "9780691183237", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "RENTAL_USED", + "price_display": "$7.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Three Stones Make a Wall", + "edition": "N/A", + "author": "Cline", + "isbn": "9780691183237", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Three Stones Make a Wall", + "edition": "N/A", + "author": "Cline", + "isbn": "9780691184258", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "4801", + "section": "11", + "instructor": "Jorge Walter", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Strategic Management: Concepts - Competitiveness etc (Text Only)", + "edition": "12th", + "author": "Hitt", + "isbn": "9781305502208", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$179.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Strategic Management: Concepts - Competitiveness etc (Text Only)", + "edition": "12th", + "author": "Hitt", + "isbn": "9781305502208", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$239.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Strategic Management: Concepts - Competitiveness etc (Text Only)", + "edition": "12th", + "author": "Hitt", + "isbn": "9781305502208", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$100.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Strategic Management: Concepts - Competitiveness etc (Text Only)", + "edition": "12th", + "author": "Hitt", + "isbn": "9781305502208", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$191.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Strategic Management: Concepts: Competitiveness and Globalization", + "edition": "12th", + "author": "Hitt", + "isbn": "9781337413572", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$55.49", + "item_type": "digital" + }, + { + "title": "Strategic Management: Concepts: Competitiveness and Globalization", + "edition": "12th", + "author": "Hitt", + "isbn": "9781337413572", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$75.99", + "item_type": "digital" + }, + { + "title": "Strategic Management: Concepts: Competitiveness and Globalization", + "edition": "12th", + "author": "Hitt", + "isbn": "9781337413572", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$96.99", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "4920W", + "section": "10", + "instructor": "Hyung Sok Choe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BIOC", + "course_num": "6224", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "APSC", + "course_num": "3115", + "section": "11", + "instructor": "Royce Francis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "8001", + "section": "10", + "instructor": "Angela Gore", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "6202", + "section": "10", + "instructor": "Todd Miller", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Human Cardiovascular Control", + "edition": "N/A", + "author": "Rowell", + "isbn": "9780195073621", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$140.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Human Cardiovascular Control", + "edition": "N/A", + "author": "Rowell", + "isbn": "9780195073621", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$187.25", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "18", + "instructor": "Joseph Strickland", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "2047W", + "section": "81", + "instructor": "Ingrid Creppell", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Origins of Totalitarianism", + "edition": "N/A", + "author": "Arendt", + "isbn": "9780156701532", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1973", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Origins of Totalitarianism", + "edition": "N/A", + "author": "Arendt", + "isbn": "9780156701532", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1973", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$24.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Origins Of Totalitarianism", + "edition": "N/A", + "author": "Arendt", + "isbn": "9780547543154", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$15.99", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "4171", + "section": "10", + "instructor": "Damien O'Halloran", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ARAB", + "course_num": "1001", + "section": "12", + "instructor": "Francesco Sinatora", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_NEW", + "price_display": "$29.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Al-Kitaab Part One with Website PB (Lingco): A Textbook for Beginning Arabic", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121877", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$163.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Alif Baa with Website PB (Lingco)", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121815", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$116.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BISC", + "course_num": "3455", + "section": "10", + "instructor": "Keryn Gedan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "6302", + "section": "10", + "instructor": "Ilana Feldman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "11", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6561", + "section": "80", + "instructor": "Elyse Nicolas", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Interaction Design: Beyond Human Interaction", + "edition": "4th", + "author": "Preece", + "isbn": "9781119020752", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$38.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Interaction Design: Beyond Human Interaction", + "edition": "4th", + "author": "Preece", + "isbn": "9781119020752", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$96.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Interaction Design: Beyond Human Interaction", + "edition": "4th", + "author": "Preece", + "isbn": "9781119020752", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$72.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Interaction Design: Beyond Human Interaction", + "edition": "4th", + "author": "Preece", + "isbn": "9781119020752", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$77.56", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CAH", + "course_num": "6400", + "section": "10", + "instructor": "Lisa Lipinski", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Inside the White Cube (Expanded)", + "edition": "N/A", + "author": "Odoherty", + "isbn": "9780520220409", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$31.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Inside the White Cube (Expanded)", + "edition": "N/A", + "author": "Odoherty", + "isbn": "9780520220409", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$24.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "1002", + "section": "36", + "instructor": "Roy Grinker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "3320", + "section": "10", + "instructor": "Aleksandar Jeremic", + "term_name": "Fall 2023", + "texts": [ + { + "title": "From Neuron to Brain", + "edition": "N/A", + "author": "Nicholls", + "isbn": "9780878934393", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2001", + "publisher": "Sinauer Associates, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$102.95", + "item_type": "print" + }, + { + "title": "From Neuron to Brain", + "edition": "N/A", + "author": "Nicholls", + "isbn": "9780878934393", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2001", + "publisher": "Sinauer Associates, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$77.25", + "item_type": "print" + } + ] + }, + { + "department": "BME", + "course_num": "1010", + "section": "10", + "instructor": "Jason Zara", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "2339", + "section": "10", + "instructor": "John Hawdon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ARAB", + "course_num": "3901", + "section": "10", + "instructor": "Mohssen Esseesy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "3171", + "section": "10", + "instructor": "Michael Wagner", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Physical Chemistry (SSM)", + "edition": "9th", + "author": "Atkins", + "isbn": "9781429231282", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_NEW", + "price_display": "$73.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Physical Chemistry (SSM)", + "edition": "9th", + "author": "Atkins", + "isbn": "9781429231282", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "W. H. Freeman & Company", + "type_condition": "RENTAL_USED", + "price_display": "$29.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Physical Chemistry (SSM)", + "edition": "9th", + "author": "Atkins", + "isbn": "9781429231282", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_USED", + "price_display": "$54.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Physical Chemistry", + "edition": "9th", + "author": "Atkins", + "isbn": "9781429218122", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_NEW", + "price_display": "$189.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physical Chemistry", + "edition": "9th", + "author": "Atkins", + "isbn": "9781429218122", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "W. H. Freeman & Company", + "type_condition": "RENTAL_USED", + "price_display": "$76.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physical Chemistry", + "edition": "9th", + "author": "Atkins", + "isbn": "9781429218122", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "GER", + "course_num": "3185", + "section": "10", + "instructor": "Mary Beth Stein", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Crabwalk", + "edition": "N/A", + "author": "Grass", + "isbn": "9780156029704", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "RENTAL_USED", + "price_display": "$6.38", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Crabwalk", + "edition": "N/A", + "author": "Grass", + "isbn": "9780156029704", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Crabwalk", + "edition": "N/A", + "author": "Grass", + "isbn": "9780156029704", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Crabwalk", + "edition": "N/A", + "author": "Grass", + "isbn": "9780156029704", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "RENTAL_NEW", + "price_display": "$11.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In My Brother's Shadow", + "edition": "N/A", + "author": "Timm", + "isbn": "9780374103743", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "In My Brother's Shadow", + "edition": "N/A", + "author": "Timm", + "isbn": "9780374103743", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Transit", + "edition": "N/A", + "author": "Seghers", + "isbn": "9781590176252", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New York Review of Books, Incorporated, The", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Transit", + "edition": "N/A", + "author": "Seghers", + "isbn": "9781590176252", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New York Review of Books, Incorporated, The", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Transit", + "edition": "N/A", + "author": "Seghers", + "isbn": "9781590176252", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New York Review of Books, Incorporated, The", + "type_condition": "RENTAL_NEW", + "price_display": "$12.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bronsteins Children", + "edition": "N/A", + "author": "Becker", + "isbn": "9780226041278", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1988", + "publisher": "University of Chicago Press", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "item_type": "print" + }, + { + "title": "Bronsteins Children", + "edition": "N/A", + "author": "Becker", + "isbn": "9780226041278", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1988", + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "item_type": "print" + } + ] + }, + { + "department": "APSC", + "course_num": "6115", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "3165", + "section": "11", + "instructor": "Joseph Meisel", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Biochemistry", + "edition": "9th", + "author": "Berg", + "isbn": "9781319114671", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2019", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_NEW", + "price_display": "$480.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Biochemistry", + "edition": "9th", + "author": "Berg", + "isbn": "9781319114671", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2019", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_USED", + "price_display": "$360.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Biochemistry", + "edition": "9th", + "author": "Berg", + "isbn": "9781319114671", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2019", + "publisher": "W. H. Freeman & Company", + "type_condition": "RENTAL_NEW", + "price_display": "$360.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Biochemistry", + "edition": "9th", + "author": "Berg", + "isbn": "9781319114671", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2019", + "publisher": "W. H. Freeman & Company", + "type_condition": "RENTAL_USED", + "price_display": "$201.60", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Biochemistry", + "edition": "8th", + "author": "Berg", + "isbn": "9781464126109", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2015", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$391.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Biochemistry", + "edition": "8th", + "author": "Berg", + "isbn": "9781464126109", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2015", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_USED", + "price_display": "$293.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Biochemistry", + "edition": "8th", + "author": "Berg", + "isbn": "9781464126109", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2015", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_USED", + "price_display": "$97.81", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "BISC", + "course_num": "2337", + "section": "10", + "instructor": "Jimmy Saw", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Microbiology: Laboratory Theory & Application, Essentials", + "edition": "2nd", + "author": "Norman-Mckay", + "isbn": "9781640434004", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Morton Publishing Company", + "type_condition": "BUY_NEW", + "price_display": "$56.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Microbiology: Laboratory Theory & Application, Essentials", + "edition": "2nd", + "author": "Norman-Mckay", + "isbn": "9781640434004", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Morton Publishing Company", + "type_condition": "BUY_USED", + "price_display": "$42.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Microbiology: Laboratory Theory and Application, Essentials, 2nd Edition", + "edition": "2nd", + "author": "Pierce", + "isbn": "9781640434011", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Morton Publishing Company", + "type_condition": "BUY_NEW", + "price_display": "$48.40", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "1003", + "section": "36", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "GWU AMILLS Chem 1003 (CUSTOM)", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781305770218", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning Custom Publishing (EMAIL ORDERS)", + "type_condition": "BUY_NEW", + "price_display": "$70.25", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "HIST", + "course_num": "3621", + "section": "10", + "instructor": "Daqing Yang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Discourse by Three Drunkards on Government", + "edition": "N/A", + "author": "Chomin", + "isbn": "9780834801929", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1984", + "publisher": "Shambhala Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Discourse by Three Drunkards on Government", + "edition": "N/A", + "author": "Chomin", + "isbn": "9780834801929", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1984", + "publisher": "Shambhala Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern History of Japan", + "edition": "4th", + "author": "Gordon", + "isbn": "9780190920555", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$32.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern History of Japan", + "edition": "4th", + "author": "Gordon", + "isbn": "9780190920555", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$81.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern History of Japan", + "edition": "4th", + "author": "Gordon", + "isbn": "9780190920555", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$61.13", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern History of Japan", + "edition": "4th", + "author": "Gordon", + "isbn": "9780190920555", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$61.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In the Realm of a Dying Emperor (with New Afterword)", + "edition": "N/A", + "author": "Field", + "isbn": "9780679741893", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$6.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In the Realm of a Dying Emperor (with New Afterword)", + "edition": "N/A", + "author": "Field", + "isbn": "9780679741893", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In the Realm of a Dying Emperor (with New Afterword)", + "edition": "N/A", + "author": "Field", + "isbn": "9780679741893", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In the Realm of a Dying Emperor (with New Afterword)", + "edition": "N/A", + "author": "Field", + "isbn": "9780679741893", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Technological Transformation of Japan", + "edition": "N/A", + "author": "Morris-Suzuki", + "isbn": "9780521424929", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1994", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$44.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Technological Transformation of Japan", + "edition": "N/A", + "author": "Morris-Suzuki", + "isbn": "9780521424929", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1994", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$33.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "A Modern History of Japan", + "edition": "4th", + "author": "Gordon", + "isbn": "9780190920562", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$34.99", + "item_type": "digital" + }, + { + "title": "A Modern History of Japan", + "edition": "4th", + "author": "Gordon", + "isbn": "9780190920562", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$40.37", + "item_type": "digital" + }, + { + "title": "A Modern History of Japan", + "edition": "4th", + "author": "Gordon", + "isbn": "9780190920562", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$53.83", + "item_type": "digital" + } + ] + }, + { + "department": "ACCY", + "course_num": "3401", + "section": "11", + "instructor": "William Stromsem", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "8999", + "section": "10", + "instructor": "Jeffrey Blomster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EAP", + "course_num": "1015", + "section": "12", + "instructor": "Dmitri Stanchevici", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319244255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_USED", + "price_display": "$44.22", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319244255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_NEW", + "price_display": "$100.50", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319244255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_USED", + "price_display": "$75.50", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319244255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$75.38", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319392895", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$35.99", + "item_type": "digital" + } + ] + }, + { + "department": "APSC", + "course_num": "2057", + "section": "81", + "instructor": "Danmeng Shuai", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Vector Mechanics for Engineers: Statics (RRMCG)", + "edition": "12th", + "author": "Beer", + "isbn": "9781259977268", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Vector Mechanics for Engineers: Statics (RRMCG)", + "edition": "12th", + "author": "Beer", + "isbn": "9781259977268", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Vector Mechanics for Engineers: Statics", + "edition": "12th", + "author": "Beer", + "isbn": "9781259977244", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$62.25", + "item_type": "digital" + }, + { + "title": "Vector Mechanics for Engineers: Statics", + "edition": "12th", + "author": "Beer", + "isbn": "9781259977244", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$79.25", + "item_type": "digital" + }, + { + "title": "Vector Mechanics for Engineers: Statics", + "edition": "12th", + "author": "Beer", + "isbn": "9781259977244", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$94.75", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "1003", + "section": "32", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1104", + "section": "12", + "instructor": "Thomas Mountain Jr", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Complete Beatles Recording Sessions", + "edition": "N/A", + "author": "Lewisohn", + "isbn": "9781454910053", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Union Square & Co", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Beatles Recording Sessions", + "edition": "N/A", + "author": "Lewisohn", + "isbn": "9781454910053", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Union Square & Co", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ASTR", + "course_num": "1002", + "section": "30", + "instructor": "Eda Sonbas", + "term_name": "Fall 2023", + "texts": [ + { + "title": "ASTR 1002 Laboratory Manual (CUSTOM)", + "edition": "5th", + "author": "George Washington University", + "isbn": "9781682846278", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Academx Publishing Serv Inc", + "type_condition": "BUY_NEW", + "price_display": "$30.25", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "ECON", + "course_num": "1012", + "section": "10", + "instructor": "Ronald Bird", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Cengage Unlimited, 1 term (4 months), 1st Edition", + "edition": "N/A", + "author": "Cengage Unlimited", + "isbn": "9780357700006", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cengage Unlimited", + "type_condition": "RENTAL_NEW", + "price_display": "$156.30", + "item_type": "digital" + }, + { + "title": "MindTap for Mankiw?s Brief Principles of Macroeconomics, 1 term Instant Access", + "edition": "10th", + "author": "Mankiw N. Gregory", + "isbn": "9780357723081", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$193.50", + "item_type": "digital" + }, + { + "title": "Cengage Unlimited, Multi-term (12 months)", + "edition": "N/A", + "author": "Cengage", + "isbn": "9780357700013", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cengage Unlimited", + "type_condition": "RENTAL_NEW", + "price_display": "$237.50", + "item_type": "digital" + }, + { + "title": "Cengage Unlimited, Multi-term (24 months), 1st Edition", + "edition": "N/A", + "author": "Cengage Unlimited", + "isbn": "9780357700020", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cengage Unlimited", + "type_condition": "RENTAL_NEW", + "price_display": "$312.50", + "item_type": "digital" + } + ] + }, + { + "department": "HSSJ", + "course_num": "1100", + "section": "11", + "instructor": "Jacqueline Hackett", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Human Services", + "edition": "9th", + "author": "Woodside", + "isbn": "9781337567176", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$79.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Human Services", + "edition": "9th", + "author": "Woodside", + "isbn": "9781337567176", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Human Services", + "edition": "9th", + "author": "Woodside", + "isbn": "9781337567176", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$123.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Human Services", + "edition": "9th", + "author": "Woodside", + "isbn": "9781337567176", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "An Introduction to Human Services", + "edition": "9th", + "author": "Woodside", + "isbn": "9781337671262", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$44.49", + "item_type": "digital" + }, + { + "title": "An Introduction to Human Services", + "edition": "9th", + "author": "Woodside", + "isbn": "9781337671262", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$60.99", + "item_type": "digital" + }, + { + "title": "An Introduction to Human Services", + "edition": "9th", + "author": "Woodside", + "isbn": "9781337671262", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$77.49", + "item_type": "digital" + } + ] + }, + { + "department": "AMST", + "course_num": "1100", + "section": "35", + "instructor": "Elisabeth Anker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EAP", + "course_num": "1015", + "section": "13", + "instructor": "Joshua Paiz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319244255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_USED", + "price_display": "$44.22", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319244255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_NEW", + "price_display": "$100.50", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319244255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_USED", + "price_display": "$75.50", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319244255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$75.38", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Rules for Writers", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319392895", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$35.99", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "4990", + "section": "19", + "instructor": "Vesna Zderic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "6489", + "section": "10", + "instructor": "Chung Hyuk Park", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2301", + "section": "10", + "instructor": "Warren Milteer", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Generations of Captivity", + "edition": "N/A", + "author": "Berlin", + "isbn": "9780674010611", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Generations of Captivity", + "edition": "N/A", + "author": "Berlin", + "isbn": "9780674010611", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "American Slavery: a Very Short Introduction", + "edition": "N/A", + "author": "Williams", + "isbn": "9780199922680", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$4.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Slavery: a Very Short Introduction", + "edition": "N/A", + "author": "Williams", + "isbn": "9780199922680", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$9.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Slavery: a Very Short Introduction", + "edition": "N/A", + "author": "Williams", + "isbn": "9780199922680", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$11.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Slavery: A Very Short Introduction", + "edition": "N/A", + "author": "Williams", + "isbn": "9780199922727", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$5.19", + "item_type": "digital" + }, + { + "title": "American Slavery: A Very Short Introduction", + "edition": "N/A", + "author": "Williams", + "isbn": "9780199922727", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$5.99", + "item_type": "digital" + }, + { + "title": "American Slavery: A Very Short Introduction", + "edition": "N/A", + "author": "Williams", + "isbn": "9780199922727", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$7.99", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "4101", + "section": "12", + "instructor": "Everlyne Misati", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1003", + "section": "33", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "GWU AMILLS Chem 1003 (CUSTOM)", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781305770218", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning Custom Publishing (EMAIL ORDERS)", + "type_condition": "BUY_NEW", + "price_display": "$70.25", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "GER", + "course_num": "2109W", + "section": "80", + "instructor": "Mary Beth Stein", + "term_name": "Fall 2023", + "texts": [ + { + "title": "In der Sache J Robert Oppenheimer (Suhrkamp #64)", + "edition": "N/A", + "author": "Kipphardt", + "isbn": "9783518100646", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1964", + "publisher": "Imprt", + "type_condition": "BUY_USED", + "price_display": "$7.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In der Sache J Robert Oppenheimer (Suhrkamp #64)", + "edition": "N/A", + "author": "Kipphardt", + "isbn": "9783518100646", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1964", + "publisher": "Imprt", + "type_condition": "BUY_NEW", + "price_display": "$9.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "30", + "instructor": "Robin Kuprewicz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2410W", + "section": "80", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [ + { + "title": "America for Americans", + "edition": "N/A", + "author": "Lee", + "isbn": "9781541672611", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Basic Books", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "America for Americans", + "edition": "N/A", + "author": "Lee", + "isbn": "9781541672611", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Basic Books", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Stealing Buddhas Dinner", + "edition": "N/A", + "author": "Nguyen", + "isbn": "9780143113034", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Stealing Buddhas Dinner", + "edition": "N/A", + "author": "Nguyen", + "isbn": "9780143113034", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Stealing Buddhas Dinner", + "edition": "N/A", + "author": "Nguyen", + "isbn": "9780143113034", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bread Givers", + "edition": "3rd", + "author": "Yezierska", + "isbn": "9780892552900", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Persea Books, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bread Givers", + "edition": "3rd", + "author": "Yezierska", + "isbn": "9780892552900", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Persea Books, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bread Givers", + "edition": "3rd", + "author": "Yezierska", + "isbn": "9780892552900", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Persea Books, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$7.46", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beast", + "edition": "N/A", + "author": "Martinez", + "isbn": "9781781682975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "VERSO (USA)", + "type_condition": "RENTAL_NEW", + "price_display": "$15.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beast", + "edition": "N/A", + "author": "Martinez", + "isbn": "9781781682975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "VERSO (USA)", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beast", + "edition": "N/A", + "author": "Martinez", + "isbn": "9781781682975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "VERSO (USA)", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beast", + "edition": "N/A", + "author": "Martinez", + "isbn": "9781781682975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "VERSO (USA)", + "type_condition": "RENTAL_USED", + "price_display": "$7.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beautiful Things That Heaven Bears", + "edition": "N/A", + "author": "Mengestu", + "isbn": "9781594482854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beautiful Things That Heaven Bears", + "edition": "N/A", + "author": "Mengestu", + "isbn": "9781594482854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beautiful Things That Heaven Bears", + "edition": "N/A", + "author": "Mengestu", + "isbn": "9781594482854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beautiful Things That Heaven Bears", + "edition": "N/A", + "author": "Mengestu", + "isbn": "9781594482854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bread Givers: A Novel", + "edition": "N/A", + "author": "Yezierska", + "isbn": "9780892553815", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$10.00", + "item_type": "digital" + }, + { + "title": "America for Americans", + "edition": "N/A", + "author": "Lee", + "isbn": "9781541672598", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Basic Books", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "item_type": "digital" + } + ] + }, + { + "department": "ENGL", + "course_num": "1210", + "section": "14", + "instructor": "Aaron Hamburger", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Imaginative Writing", + "edition": "4th", + "author": "Burroway", + "isbn": "9780134053240", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$53.01", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Imaginative Writing", + "edition": "4th", + "author": "Burroway", + "isbn": "9780134053240", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$87.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Imaginative Writing", + "edition": "4th", + "author": "Burroway", + "isbn": "9780134053240", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$116.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pearson eText Imaginative Writing: The Elements of Craft -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "5th", + "author": "Pearson Plus", + "isbn": "9780137674152", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "20", + "instructor": "Mirasol Espanola", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3103", + "section": "14", + "instructor": "Jungho Suh", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Human Capital in Organizations (Custom GWU)", + "edition": "N/A", + "author": "McHugh", + "isbn": "9781307496994", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "MCGRAW HILL (CUSTOM PUBLISHING)", + "type_condition": "BUY_NEW", + "price_display": "$107.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "DATS", + "course_num": "6450", + "section": "81", + "instructor": "Michael Mann", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Python Crash Course", + "edition": "2nd", + "author": "Matthes", + "isbn": "9781593279288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "No Starch Press, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$29.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Python Crash Course", + "edition": "2nd", + "author": "Matthes", + "isbn": "9781593279288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "No Starch Press, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$39.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Python Crash Course", + "edition": "2nd", + "author": "Matthes", + "isbn": "9781593279288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "No Starch Press, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "2101", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6299", + "section": "11", + "instructor": "Robert Bonar", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Anticipate, Respond, Recover", + "edition": "N/A", + "author": "McGlown", + "isbn": "9781567933666", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Health Administration Press***DO NOT ORDER FROM, MUST ORDER DIRECTLY FROM IPG***", + "type_condition": "BUY_USED", + "price_display": "$69.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Anticipate, Respond, Recover", + "edition": "N/A", + "author": "McGlown", + "isbn": "9781567933666", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Health Administration Press***DO NOT ORDER FROM, MUST ORDER DIRECTLY FROM IPG***", + "type_condition": "BUY_NEW", + "price_display": "$92.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Anticipate, Respond, Recover", + "edition": "N/A", + "author": "McGlown", + "isbn": "9781567934298", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Independent Publishers Group - IPG", + "type_condition": "BUY_NEW", + "price_display": "$92.00", + "item_type": "digital" + } + ] + }, + { + "department": "ARAB", + "course_num": "3001", + "section": "12", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "6995", + "section": "10", + "instructor": "Ilana Feldman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "27", + "instructor": "Mirasol Espanola", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6202", + "section": "10", + "instructor": "Robert Bonar", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Delivering Health Care in America (w/Nav2 Advantage Access)", + "edition": "7th", + "author": "Shi", + "isbn": "9781284124491", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$84.50", + "item_type": "print" + }, + { + "title": "Delivering Health Care in America (w/Nav2 Advantage Access)", + "edition": "7th", + "author": "Shi", + "isbn": "9781284124491", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$47.25", + "item_type": "print" + }, + { + "title": "Delivering Health Care in America (w/Nav2 Advantage Access)", + "edition": "7th", + "author": "Shi", + "isbn": "9781284124491", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$112.50", + "item_type": "print" + }, + { + "title": "Delivering Health Care in America: A Systems Approach", + "edition": "7th", + "author": "Shi", + "isbn": "9781284124507", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$73.42", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "48", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "2010", + "section": "84", + "instructor": "Nicole Ivy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "6998", + "section": "19", + "instructor": "Vesna Zderic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "4831", + "section": "10", + "instructor": "Luyao Lu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3401", + "section": "14", + "instructor": "Ravi Achrol", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "4101", + "section": "11", + "instructor": "Everlyne Misati", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6269", + "section": "13", + "instructor": "Robert Froehlich", + "term_name": "Fall 2023", + "texts": [ + { + "title": "45 Techniques Every Counselor Should Know", + "edition": "3rd", + "author": "Erford", + "isbn": "9780134694894", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson Education", + "type_condition": "RENTAL_USED", + "price_display": "$25.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "45 Techniques Every Counselor Should Know", + "edition": "3rd", + "author": "Erford", + "isbn": "9780134694894", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson Education", + "type_condition": "BUY_NEW", + "price_display": "$62.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "45 Techniques Every Counselor Should Know", + "edition": "3rd", + "author": "Erford", + "isbn": "9780134694894", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson Education", + "type_condition": "BUY_USED", + "price_display": "$47.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning to Counsel", + "edition": "2nd", + "author": "Sutton", + "isbn": "9781857037968", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Little Brown Book Group Ltd", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning to Counsel", + "edition": "2nd", + "author": "Sutton", + "isbn": "9781857037968", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Little Brown Book Group Ltd", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pearson eText for 45 Techniques Every Counselor Should Know -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "3rd", + "author": "Erford", + "isbn": "9780137412129", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "45 Techniques Every Counselor Should Know", + "edition": "3rd", + "author": "Erford", + "isbn": "9780134742779", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "45 Techniques Every Counselor Should Know", + "edition": "3rd", + "author": "Erford", + "isbn": "9780134742724", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "12", + "instructor": "Sarah LaRosa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3001", + "section": "12", + "instructor": "James McClellan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "3838", + "section": "80", + "instructor": "Jeffrey Blomster", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Critically Reading Theory Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123410", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$42.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Critically Reading Theory Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123410", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$16.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Critically Reading Theory Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123410", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Critically Reading Theory Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123410", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Archaeological Theory", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781118475027", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$65.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Archaeological Theory", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781118475027", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$26.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Archaeological Theory", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781118475027", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$49.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Archaeological Theory", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781118475027", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$49.13", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Critically Reading the Theory and Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123427", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_NEW", + "price_display": "$23.40", + "item_type": "digital" + }, + { + "title": "Critically Reading the Theory and Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123427", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_NEW", + "price_display": "$27.30", + "item_type": "digital" + }, + { + "title": "Critically Reading the Theory and Methods of Archaeology", + "edition": "N/A", + "author": "Gibbon", + "isbn": "9780759123427", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_NEW", + "price_display": "$39.00", + "item_type": "digital" + }, + { + "title": "Archaeological Theory", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781118499382", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$43.00", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "6050", + "section": "17", + "instructor": "Vesna Zderic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1002", + "section": "32", + "instructor": "Roy Grinker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "8999", + "section": "10", + "instructor": "Jason Zara", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "4990", + "section": "12", + "instructor": "Luyao Lu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "4171W", + "section": "10", + "instructor": "Damien O'Halloran", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "APSC", + "course_num": "2058", + "section": "30", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "6050", + "section": "16", + "instructor": "Emilia Entcheva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "6050", + "section": "19", + "instructor": "Anne-Laure Papa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3401", + "section": "15", + "instructor": "Pradeep Rau", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "6118", + "section": "86", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "APSC", + "course_num": "2057", + "section": "80", + "instructor": "Danmeng Shuai", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Vector Mechanics for Engineers: Statics (RRMCG)", + "edition": "12th", + "author": "Beer", + "isbn": "9781259977268", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Vector Mechanics for Engineers: Statics (RRMCG)", + "edition": "12th", + "author": "Beer", + "isbn": "9781259977268", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Vector Mechanics for Engineers: Statics", + "edition": "12th", + "author": "Beer", + "isbn": "9781259977244", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$62.25", + "item_type": "digital" + }, + { + "title": "Vector Mechanics for Engineers: Statics", + "edition": "12th", + "author": "Beer", + "isbn": "9781259977244", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$79.25", + "item_type": "digital" + }, + { + "title": "Vector Mechanics for Engineers: Statics", + "edition": "12th", + "author": "Beer", + "isbn": "9781259977244", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$94.75", + "item_type": "digital" + } + ] + }, + { + "department": "CAH", + "course_num": "2190", + "section": "10", + "instructor": "Jung-Sil Lee", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Asian Art", + "edition": "N/A", + "author": "Neave", + "isbn": "9780205837632", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$195.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Asian Art", + "edition": "N/A", + "author": "Neave", + "isbn": "9780205837632", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$146.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Asian Art", + "edition": "N/A", + "author": "Neave", + "isbn": "9780205837632", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$126.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Asian Art", + "edition": "N/A", + "author": "Neave", + "isbn": "9780205837632", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$81.90", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pearson eText for Asian Art -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "N/A", + "author": "Neave", + "isbn": "9780137515592", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Asian Art", + "edition": "N/A", + "author": "Neave", + "isbn": "9780205989614", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "Asian Art", + "edition": "N/A", + "author": "Neave", + "isbn": "9780205989607", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "ARAB", + "course_num": "2001", + "section": "10", + "instructor": "Dina El-Hefnawy", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Al-Kitaab Part One with Website PB (Lingco): A Textbook for Beginning Arabic", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121877", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$163.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Al-Kitaab Part Two with Website PB (Lingco)", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121914", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$139.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_NEW", + "price_display": "$29.99", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "3413", + "section": "80", + "instructor": "Chester Sherwood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ASTR", + "course_num": "1002", + "section": "33", + "instructor": "Eda Sonbas", + "term_name": "Fall 2023", + "texts": [ + { + "title": "ASTR 1002 Laboratory Manual (CUSTOM)", + "edition": "5th", + "author": "George Washington University", + "isbn": "9781682846278", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Academx Publishing Serv Inc", + "type_condition": "BUY_NEW", + "price_display": "$30.25", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "ACCY", + "course_num": "6900", + "section": "11", + "instructor": "Donald Buzinkai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "2570", + "section": "10", + "instructor": "Thea Brown", + "term_name": "Fall 2023", + "texts": [ + { + "title": "In One Form to Find Another", + "edition": "N/A", + "author": "Lewty", + "isbn": "9780996316767", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Cleveland State University, Poetry Center", + "type_condition": "BUY_NEW", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In One Form to Find Another", + "edition": "N/A", + "author": "Lewty", + "isbn": "9780996316767", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Cleveland State University, Poetry Center", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Sonnets for My Past & Future Assassin", + "edition": "N/A", + "author": "Hayes", + "isbn": "9780143133186", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Group USA Inc", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Sonnets for My Past & Future Assassin", + "edition": "N/A", + "author": "Hayes", + "isbn": "9780143133186", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Group USA Inc", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Sonnets for My Past & Future Assassin", + "edition": "N/A", + "author": "Hayes", + "isbn": "9780143133186", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Group USA Inc", + "type_condition": "RENTAL_NEW", + "price_display": "$11.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Olio", + "edition": "N/A", + "author": "Jess", + "isbn": "9781940696201", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Wave Books C/O Consortium (Perseus) per the pub \"stop sending orders to the editorial office\"", + "type_condition": "RENTAL_USED", + "price_display": "$10.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Olio", + "edition": "N/A", + "author": "Jess", + "isbn": "9781940696201", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Wave Books C/O Consortium (Perseus) per the pub \"stop sending orders to the editorial office\"", + "type_condition": "BUY_NEW", + "price_display": "$25.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Olio", + "edition": "N/A", + "author": "Jess", + "isbn": "9781940696201", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Wave Books C/O Consortium (Perseus) per the pub \"stop sending orders to the editorial office\"", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Olio", + "edition": "N/A", + "author": "Jess", + "isbn": "9781940696201", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Wave Books C/O Consortium (Perseus) per the pub \"stop sending orders to the editorial office\"", + "type_condition": "RENTAL_NEW", + "price_display": "$16.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hotel Almighty", + "edition": "N/A", + "author": "Sloat", + "isbn": "9781946448644", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Ingram Publisher Services, Inc.", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hotel Almighty", + "edition": "N/A", + "author": "Sloat", + "isbn": "9781946448644", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Ingram Publisher Services, Inc.", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Feed", + "edition": "N/A", + "author": "Pico", + "isbn": "9781947793576", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$6.38", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Feed", + "edition": "N/A", + "author": "Pico", + "isbn": "9781947793576", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Feed", + "edition": "N/A", + "author": "Pico", + "isbn": "9781947793576", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Postcolonial Love Poem", + "edition": "N/A", + "author": "Diaz", + "isbn": "9781644450147", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Postcolonial Love Poem", + "edition": "N/A", + "author": "Diaz", + "isbn": "9781644450147", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Postcolonial Love Poem", + "edition": "N/A", + "author": "Diaz", + "isbn": "9781644450147", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_NEW", + "price_display": "$11.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Feed", + "edition": "N/A", + "author": "Pico", + "isbn": "9781947793583", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "3460", + "section": "10", + "instructor": "Keryn Gedan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Conservation Biology", + "edition": "N/A", + "author": "Cardinale", + "isbn": "9781605357140", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$125.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Conservation Biology", + "edition": "N/A", + "author": "Cardinale", + "isbn": "9781605357140", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$52.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Conservation Biology", + "edition": "N/A", + "author": "Cardinale", + "isbn": "9781605357140", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$93.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Conservation Biology", + "edition": "N/A", + "author": "Cardinale", + "isbn": "9781605357140", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$81.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Conservation Biology", + "edition": "1st", + "author": "Cardinale", + "isbn": "9781605358826", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$62.99", + "item_type": "digital" + }, + { + "title": "Conservation Biology", + "edition": "N/A", + "author": "Cardinale", + "isbn": "9781605358826", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$72.68", + "item_type": "digital" + }, + { + "title": "Conservation Biology", + "edition": "N/A", + "author": "Cardinale", + "isbn": "9781605358826", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$96.91", + "item_type": "digital" + }, + { + "title": "Conservation Biology", + "edition": "N/A", + "author": "Cardinale", + "isbn": "9781605358826", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$119.98", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "6207", + "section": "10", + "instructor": "James Clark", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "4990", + "section": "10", + "instructor": "Jason Zara", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "21", + "instructor": "Jeffery Peden", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "3991", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "47", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6668", + "section": "10", + "instructor": "Maeshal Hijazi", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Distribution System Modeling & Analysis", + "edition": "4th", + "author": "Kersting", + "isbn": "9781498772136", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "CRC Press LLC", + "type_condition": "BUY_USED", + "price_display": "$112.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Distribution System Modeling & Analysis", + "edition": "4th", + "author": "Kersting", + "isbn": "9781498772136", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "CRC Press LLC", + "type_condition": "BUY_NEW", + "price_display": "$150.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Distribution System Modeling and Analysis", + "edition": "4th", + "author": "Kersting", + "isbn": "9781498772150", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$170.00", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "3001", + "section": "14", + "instructor": "Byron Knight", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "3910", + "section": "10", + "instructor": "Elaine Soohoo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "6050", + "section": "14", + "instructor": "Murray Loew", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "8999", + "section": "10", + "instructor": "Robin Tarpley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BMSC", + "course_num": "8216", + "section": "10", + "instructor": "Linda Kusner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "2053", + "section": "10", + "instructor": "Christopher Brick", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Women & the Universal Declaration of Human Rights", + "edition": "N/A", + "author": "Adami", + "isbn": "9780367622787", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Women & the Universal Declaration of Human Rights", + "edition": "N/A", + "author": "Adami", + "isbn": "9780367622787", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$54.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "15", + "instructor": "Susan Copp", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3303", + "section": "10", + "instructor": "Matthew Goetz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "American Revolution Reader", + "edition": "N/A", + "author": "Brunsman", + "isbn": "9780415537575", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$110.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Revolution Reader", + "edition": "N/A", + "author": "Brunsman", + "isbn": "9780415537575", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$83.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Revolutionary America, 1763-1815: A Political History", + "edition": "3rd", + "author": "Cogliano", + "isbn": "9781138892057", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Routledge", + "type_condition": "RENTAL_NEW", + "price_display": "$46.31", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Revolutionary America, 1763-1815: A Political History", + "edition": "3rd", + "author": "Cogliano", + "isbn": "9781138892057", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$61.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Revolutionary America, 1763-1815: A Political History", + "edition": "3rd", + "author": "Cogliano", + "isbn": "9781138892057", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$46.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Revolutionary America, 1763-1815: A Political History", + "edition": "3rd", + "author": "Cogliano", + "isbn": "9781138892057", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Routledge", + "type_condition": "RENTAL_USED", + "price_display": "$24.70", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANAT", + "course_num": "6182", + "section": "10", + "instructor": "Alexandros Tzatsos", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6801", + "section": "10", + "instructor": "Eric Dano", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Systems Engineering Prin & Practice", + "edition": "3rd", + "author": "Seymour", + "isbn": "9781119516668", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$145.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Systems Engineering Prin & Practice", + "edition": "3rd", + "author": "Seymour", + "isbn": "9781119516668", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$108.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Systems Engineering Principles and Practice", + "edition": "3rd", + "author": "Kossiakoff", + "isbn": "9781119516705", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$121.00", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "10", + "instructor": "Amber Kimble", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2153", + "section": "11", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lab Notebook Spiral Bound 100 Pages (Copy Page Perforated)", + "edition": "N/A", + "author": "Barbakam", + "isbn": "9780978534424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "ENGL", + "course_num": "3820W", + "section": "80", + "instructor": "Maria Frawley", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Emma", + "edition": "2nd", + "author": "Austen", + "isbn": "9780198837756", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$6.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Emma", + "edition": "2nd", + "author": "Austen", + "isbn": "9780198837756", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$5.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pride & Prejudice", + "edition": "3rd", + "author": "Austen", + "isbn": "9780198826736", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$5.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pride & Prejudice", + "edition": "3rd", + "author": "Austen", + "isbn": "9780198826736", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$4.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sense & Sensibility", + "edition": "3rd", + "author": "Austen", + "isbn": "9780198793359", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$6.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sense & Sensibility", + "edition": "3rd", + "author": "Austen", + "isbn": "9780198793359", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$5.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mansfield Park", + "edition": "N/A", + "author": "Austen", + "isbn": "9780199535538", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$7.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mansfield Park", + "edition": "N/A", + "author": "Austen", + "isbn": "9780199535538", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$6.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Persuasion", + "edition": "2nd", + "author": "Austen", + "isbn": "9780199535552", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$5.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Persuasion", + "edition": "2nd", + "author": "Austen", + "isbn": "9780199535552", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$4.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Northanger Abbey/Lady Susan/Watsons/Sanditon", + "edition": "2nd", + "author": "Austen", + "isbn": "9780199535545", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$6.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Northanger Abbey/Lady Susan/Watsons/Sanditon", + "edition": "2nd", + "author": "Austen", + "isbn": "9780199535545", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$5.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Emma", + "edition": "5th", + "author": "Austen", + "isbn": "9780192574824", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$2.59", + "item_type": "digital" + }, + { + "title": "Pride and Prejudice", + "edition": "3rd", + "author": "Austen", + "isbn": "9780192561428", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$2.59", + "item_type": "digital" + }, + { + "title": "Northanger Abbey, Lady Susan, The Watsons, Sanditon", + "edition": "N/A", + "author": "Austen", + "isbn": "9780192669209", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$2.59", + "item_type": "digital" + }, + { + "title": "Emma", + "edition": "5th", + "author": "Austen", + "isbn": "9780192574824", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$2.99", + "item_type": "digital" + }, + { + "title": "Pride and Prejudice", + "edition": "3rd", + "author": "Austen", + "isbn": "9780192561428", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$2.99", + "item_type": "digital" + }, + { + "title": "Northanger Abbey, Lady Susan, The Watsons, Sanditon", + "edition": "N/A", + "author": "Austen", + "isbn": "9780192669209", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$2.99", + "item_type": "digital" + }, + { + "title": "Mansfield Park", + "edition": "N/A", + "author": "Austen", + "isbn": "9780191624704", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$3.24", + "item_type": "digital" + }, + { + "title": "Mansfield Park", + "edition": "N/A", + "author": "Austen", + "isbn": "9780191624704", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$3.74", + "item_type": "digital" + }, + { + "title": "Emma", + "edition": "5th", + "author": "Austen", + "isbn": "9780192574824", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$3.99", + "item_type": "digital" + }, + { + "title": "Emma", + "edition": "5th", + "author": "Austen", + "isbn": "9780192574824", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$3.99", + "item_type": "digital" + }, + { + "title": "Pride and Prejudice", + "edition": "3rd", + "author": "Austen", + "isbn": "9780192561428", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$3.99", + "item_type": "digital" + }, + { + "title": "Pride and Prejudice", + "edition": "3rd", + "author": "Austen", + "isbn": "9780192561428", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$3.99", + "item_type": "digital" + }, + { + "title": "Northanger Abbey, Lady Susan, The Watsons, Sanditon", + "edition": "N/A", + "author": "Austen", + "isbn": "9780192669209", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$3.99", + "item_type": "digital" + }, + { + "title": "Northanger Abbey, Lady Susan, The Watsons, Sanditon", + "edition": "N/A", + "author": "Austen", + "isbn": "9780192669209", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$3.99", + "item_type": "digital" + }, + { + "title": "Mansfield Park", + "edition": "N/A", + "author": "Austen", + "isbn": "9780191624704", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$4.99", + "item_type": "digital" + }, + { + "title": "Mansfield Park", + "edition": "N/A", + "author": "Austen", + "isbn": "9780191624704", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$4.99", + "item_type": "digital" + }, + { + "title": "Sense and Sensibility", + "edition": "3rd", + "author": "Austen", + "isbn": "9780192522122", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$10.39", + "item_type": "digital" + }, + { + "title": "Sense and Sensibility", + "edition": "3rd", + "author": "Austen", + "isbn": "9780192522122", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$11.99", + "item_type": "digital" + }, + { + "title": "Sense and Sensibility", + "edition": "3rd", + "author": "Austen", + "isbn": "9780192522122", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$15.99", + "item_type": "digital" + }, + { + "title": "Sense and Sensibility", + "edition": "3rd", + "author": "Austen", + "isbn": "9780192522122", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$15.99", + "item_type": "digital" + } + ] + }, + { + "department": "FINA", + "course_num": "4242", + "section": "80", + "instructor": "Elizabeth Gannon", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Real Estate Finance & Investments (Edition 5.2))", + "edition": "5th", + "author": "Linneman", + "isbn": "9781792377136", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Linneman Associates", + "type_condition": "BUY_NEW", + "price_display": "$217.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Real Estate Finance & Investments (Edition 5.2))", + "edition": "5th", + "author": "Linneman", + "isbn": "9781792377136", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Linneman Associates", + "type_condition": "BUY_USED", + "price_display": "$162.75", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "GER", + "course_num": "2161", + "section": "10", + "instructor": "Susan Norland", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Germany", + "edition": "N/A", + "author": "Macgregor", + "isbn": "9781101875667", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Knopf Publishing Group", + "type_condition": "BUY_USED", + "price_display": "$30.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Germany", + "edition": "N/A", + "author": "Macgregor", + "isbn": "9781101875667", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Knopf Publishing Group", + "type_condition": "RENTAL_USED", + "price_display": "$16.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Germany", + "edition": "N/A", + "author": "Macgregor", + "isbn": "9781101875667", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Knopf Publishing Group", + "type_condition": "RENTAL_NEW", + "price_display": "$30.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Germany", + "edition": "N/A", + "author": "Macgregor", + "isbn": "9781101875667", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Knopf Publishing Group", + "type_condition": "BUY_NEW", + "price_display": "$40.00", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "31", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "HSCI", + "course_num": "2050", + "section": "10", + "instructor": "Maranda Ward", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Social Injustice & Public Health", + "edition": "3rd", + "author": "Levy", + "isbn": "9780190914646", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$36.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Social Injustice & Public Health", + "edition": "3rd", + "author": "Levy", + "isbn": "9780190914646", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$87.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Social Injustice & Public Health", + "edition": "3rd", + "author": "Levy", + "isbn": "9780190914646", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$65.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CHEM", + "course_num": "2153", + "section": "17", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lab Notebook Spiral Bound 100 Pages (Copy Page Perforated)", + "edition": "N/A", + "author": "Barbakam", + "isbn": "9780978534424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "HIST", + "course_num": "6030", + "section": "10", + "instructor": "Hope Harrison", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Dangerous Games", + "edition": "N/A", + "author": "MacMillan", + "isbn": "9780812979961", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$6.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dangerous Games", + "edition": "N/A", + "author": "MacMillan", + "isbn": "9780812979961", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dangerous Games", + "edition": "N/A", + "author": "MacMillan", + "isbn": "9780812979961", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dangerous Games", + "edition": "N/A", + "author": "MacMillan", + "isbn": "9780812979961", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History Wars", + "edition": "N/A", + "author": "Linenthal", + "isbn": "9780805043877", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Henry Holt and Co.", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History Wars", + "edition": "N/A", + "author": "Linenthal", + "isbn": "9780805043877", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Henry Holt and Co.", + "type_condition": "RENTAL_NEW", + "price_display": "$16.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History Wars", + "edition": "N/A", + "author": "Linenthal", + "isbn": "9780805043877", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Henry Holt and Co.", + "type_condition": "BUY_NEW", + "price_display": "$21.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "People's Republic of Amnesia", + "edition": "N/A", + "author": "Lim", + "isbn": "9780190227913", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$6.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "People's Republic of Amnesia", + "edition": "N/A", + "author": "Lim", + "isbn": "9780190227913", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "People's Republic of Amnesia", + "edition": "N/A", + "author": "Lim", + "isbn": "9780190227913", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$13.56", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "People's Republic of Amnesia", + "edition": "N/A", + "author": "Lim", + "isbn": "9780190227913", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Thinking in Time", + "edition": "N/A", + "author": "Neustadt", + "isbn": "9780029227916", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1988", + "publisher": "Simon & Schuster", + "type_condition": "RENTAL_USED", + "price_display": "$8.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Thinking in Time", + "edition": "N/A", + "author": "Neustadt", + "isbn": "9780029227916", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1988", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$15.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Thinking in Time", + "edition": "N/A", + "author": "Neustadt", + "isbn": "9780029227916", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1988", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Common Ground", + "edition": "N/A", + "author": "Cox", + "isbn": "9781469662671", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "University of North Carolina Press", + "type_condition": "RENTAL_USED", + "price_display": "$12.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "No Common Ground", + "edition": "N/A", + "author": "Cox", + "isbn": "9781469662671", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "University of North Carolina Press", + "type_condition": "BUY_USED", + "price_display": "$18.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "No Common Ground", + "edition": "N/A", + "author": "Cox", + "isbn": "9781469662671", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "University of North Carolina Press", + "type_condition": "RENTAL_NEW", + "price_display": "$16.80", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "No Common Ground", + "edition": "N/A", + "author": "Cox", + "isbn": "9781469662671", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "University of North Carolina Press", + "type_condition": "BUY_NEW", + "price_display": "$24.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Memory Makers", + "edition": "N/A", + "author": "McGlynn", + "isbn": "9781350280762", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bloomsbury USA", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Memory Makers", + "edition": "N/A", + "author": "McGlynn", + "isbn": "9781350280762", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bloomsbury USA", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "After the Berlin Wall", + "edition": "N/A", + "author": "Harrison", + "isbn": "9781107049314", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$27.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "After the Berlin Wall", + "edition": "N/A", + "author": "Harrison", + "isbn": "9781107049314", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$36.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "The People's Republic of Amnesia", + "edition": "N/A", + "author": "Lim", + "isbn": "9780199347728", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$7.14", + "item_type": "digital" + }, + { + "title": "The People's Republic of Amnesia", + "edition": "N/A", + "author": "Lim", + "isbn": "9780199347728", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$8.24", + "item_type": "digital" + }, + { + "title": "The People's Republic of Amnesia", + "edition": "N/A", + "author": "Lim", + "isbn": "9780199347728", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$10.99", + "item_type": "digital" + }, + { + "title": "After the Berlin Wall", + "edition": "N/A", + "author": "Harrison", + "isbn": "9781108770798", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$26.25", + "item_type": "digital" + }, + { + "title": "After the Berlin Wall", + "edition": "N/A", + "author": "Harrison", + "isbn": "9781108770798", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$32.75", + "item_type": "digital" + } + ] + }, + { + "department": "GEOG", + "course_num": "2104", + "section": "10", + "instructor": "Richard Hinton", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Essentials of Geographic Information Systems v3.0 (canon)", + "edition": "3rd", + "author": "Shin", + "isbn": "9781453337639", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Boston Academic DBA Flat World", + "type_condition": "RENTAL_NEW", + "price_display": "$48.00", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "6295", + "section": "10", + "instructor": "Damien O'Halloran", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1002", + "section": "38", + "instructor": "Roy Grinker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6011", + "section": "O11", + "instructor": "Yih-Feng Hwang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Computer Systems: Programmer's Perspective (w/out Access)", + "edition": "3rd", + "author": "Bryant", + "isbn": "9780134092669", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$169.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Computer Systems: Programmer's Perspective (w/out Access)", + "edition": "3rd", + "author": "Bryant", + "isbn": "9780134092669", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$226.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Computer Systems: Programmer's Perspective (w/out Access)", + "edition": "3rd", + "author": "Bryant", + "isbn": "9780134092669", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$181.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Computer Systems: Programmer's Perspective (w/out Access)", + "edition": "3rd", + "author": "Bryant", + "isbn": "9780134092669", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$95.03", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Computer Systems", + "edition": "3rd", + "author": "Bryant", + "isbn": "9780134092997", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "ACCY", + "course_num": "3106", + "section": "10", + "instructor": "Christopher Jones", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "2337", + "section": "12", + "instructor": "Jimmy Saw", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Microbiology: Laboratory Theory & Application, Essentials", + "edition": "2nd", + "author": "Norman-Mckay", + "isbn": "9781640434004", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Morton Publishing Company", + "type_condition": "BUY_NEW", + "price_display": "$56.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Microbiology: Laboratory Theory & Application, Essentials", + "edition": "2nd", + "author": "Norman-Mckay", + "isbn": "9781640434004", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Morton Publishing Company", + "type_condition": "BUY_USED", + "price_display": "$42.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Microbiology: Laboratory Theory and Application, Essentials, 2nd Edition", + "edition": "2nd", + "author": "Pierce", + "isbn": "9781640434011", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Morton Publishing Company", + "type_condition": "BUY_NEW", + "price_display": "$48.40", + "item_type": "digital" + } + ] + }, + { + "department": "GEOG", + "course_num": "3108", + "section": "10", + "instructor": "Nikolay Shiklomanov", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Climatology (w/Access Code)", + "edition": "4th", + "author": "Rohli", + "isbn": "9781284119985", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$141.75", + "item_type": "print" + }, + { + "title": "Climatology (w/Access Code)", + "edition": "4th", + "author": "Rohli", + "isbn": "9781284119985", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$79.36", + "item_type": "print" + }, + { + "title": "Climatology (w/Access Code)", + "edition": "4th", + "author": "Rohli", + "isbn": "9781284119985", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$188.95", + "item_type": "print" + }, + { + "title": "Global Warming", + "edition": "N/A", + "author": "Archer", + "isbn": "9780470943410", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$91.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Global Warming", + "edition": "N/A", + "author": "Archer", + "isbn": "9780470943410", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$85.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Global Warming", + "edition": "N/A", + "author": "Archer", + "isbn": "9780470943410", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$45.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Global Warming", + "edition": "N/A", + "author": "Archer", + "isbn": "9780470943410", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$114.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Global Warming", + "edition": "2nd", + "author": "Archer", + "isbn": "9781118213971", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$21.00", + "item_type": "digital" + }, + { + "title": "Global Warming", + "edition": "2nd", + "author": "Archer", + "isbn": "9781118213971", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$50.00", + "item_type": "digital" + }, + { + "title": "Climatology", + "edition": "4th", + "author": "Rohli", + "isbn": "9781284119992", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$122.82", + "item_type": "digital" + } + ] + }, + { + "department": "APSC", + "course_num": "2057", + "section": "31", + "instructor": "Danmeng Shuai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "1001", + "section": "10", + "instructor": "Phyllis Zhang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Developing Chinese Fluency: Intro Chinese Simplified (V1)", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781133309932", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$58.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Developing Chinese Fluency: Intro Chinese Simplified (V1)", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781133309932", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$77.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introductory Chinese Simplified (V1: Literacy Workbook)", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781285456799", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introductory Chinese Simplified (V1: Literacy Workbook)", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781285456799", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$54.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CTAD", + "course_num": "2240", + "section": "80", + "instructor": "Allyson Stokes", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Medea", + "edition": "N/A", + "author": "Euripides", + "isbn": "9780195145663", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$11.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Medea", + "edition": "N/A", + "author": "Euripides", + "isbn": "9780195145663", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$9.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Medea", + "edition": "N/A", + "author": "Euripides", + "isbn": "9780195145663", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$8.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chekhov: Four Essential Plays", + "edition": "N/A", + "author": "Chekhov", + "isbn": "9780375761348", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chekhov: Four Essential Plays", + "edition": "N/A", + "author": "Chekhov", + "isbn": "9780375761348", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chekhov: Four Essential Plays", + "edition": "N/A", + "author": "Chekhov", + "isbn": "9780375761348", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Machinal", + "edition": "N/A", + "author": "Treadwell", + "isbn": "9781854592118", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$8.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Machinal", + "edition": "N/A", + "author": "Treadwell", + "isbn": "9781854592118", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Machinal", + "edition": "N/A", + "author": "Treadwell", + "isbn": "9781854592118", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028579", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bloomsbury Publishing Plc", + "type_condition": "BUY_NEW", + "price_display": "$14.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028579", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bloomsbury Publishing Plc", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028579", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bloomsbury Publishing Plc", + "type_condition": "RENTAL_NEW", + "price_display": "$11.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sweat (TCG Edition)", + "edition": "N/A", + "author": "Nottage", + "isbn": "9781559365321", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sweat (TCG Edition)", + "edition": "N/A", + "author": "Nottage", + "isbn": "9781559365321", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sweat (TCG Edition)", + "edition": "N/A", + "author": "Nottage", + "isbn": "9781559365321", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$11.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fences (Trade Ed)", + "edition": "N/A", + "author": "Wilson", + "isbn": "9780452264014", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$6.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fences (Trade Ed)", + "edition": "N/A", + "author": "Wilson", + "isbn": "9780452264014", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fences (Trade Ed)", + "edition": "N/A", + "author": "Wilson", + "isbn": "9780452264014", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fences (Trade Ed)", + "edition": "N/A", + "author": "Wilson", + "isbn": "9780452264014", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Othello (Trade Ed)", + "edition": "N/A", + "author": "Shakespeare", + "isbn": "9780743482820", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$9.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Othello (Trade Ed)", + "edition": "N/A", + "author": "Shakespeare", + "isbn": "9780743482820", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$7.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Topdog/Underdog", + "edition": "N/A", + "author": "Parks", + "isbn": "9781559362016", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$7.02", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Topdog/Underdog", + "edition": "N/A", + "author": "Parks", + "isbn": "9781559362016", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Topdog/Underdog", + "edition": "N/A", + "author": "Parks", + "isbn": "9781559362016", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Topdog/Underdog", + "edition": "N/A", + "author": "Parks", + "isbn": "9781559362016", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$11.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mother Courage & Her Children", + "edition": "N/A", + "author": "Brecht", + "isbn": "9780802130822", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1966", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$9.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mother Courage & Her Children", + "edition": "N/A", + "author": "Brecht", + "isbn": "9780802130822", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1966", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$7.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mother Courage & Her Children", + "edition": "N/A", + "author": "Brecht", + "isbn": "9780802130822", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1966", + "publisher": "Grove Atlantic, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$6.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Medea", + "edition": "N/A", + "author": "Euripides", + "isbn": "9780199881857", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$5.19", + "item_type": "digital" + }, + { + "title": "Medea", + "edition": "N/A", + "author": "Euripides", + "isbn": "9780199881857", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$5.99", + "item_type": "digital" + }, + { + "title": "Medea", + "edition": "N/A", + "author": "Euripides", + "isbn": "9780199881857", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$7.99", + "item_type": "digital" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028586", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$10.00", + "item_type": "digital" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028593", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$10.00", + "item_type": "digital" + }, + { + "title": "Sweat (TCG Edition)", + "edition": "N/A", + "author": "Nottage", + "isbn": "9781559368544", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$10.75", + "item_type": "digital" + }, + { + "title": "Topdog/Underdog (TCG Edition)", + "edition": "N/A", + "author": "Parks", + "isbn": "9781559366243", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Theatre Communications Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$10.75", + "item_type": "digital" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028586", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$11.75", + "item_type": "digital" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028593", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$11.75", + "item_type": "digital" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028593", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "BUY_NEW", + "price_display": "$12.75", + "item_type": "digital" + }, + { + "title": "Top Girls", + "edition": "2nd", + "author": "Churchill", + "isbn": "9781350028586", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "BUY_NEW", + "price_display": "$12.75", + "item_type": "digital" + } + ] + }, + { + "department": "CHIN", + "course_num": "3163", + "section": "80", + "instructor": "Liana Chen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Orphan of Asia", + "edition": "N/A", + "author": "Wu", + "isbn": "9780231137263", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$23.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Orphan of Asia", + "edition": "N/A", + "author": "Wu", + "isbn": "9780231137263", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Man with the Compound Eyes", + "edition": "N/A", + "author": "Ming-Yi", + "isbn": "9780345802880", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Man with the Compound Eyes", + "edition": "N/A", + "author": "Ming-Yi", + "isbn": "9780345802880", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Orphan of Asia", + "edition": "N/A", + "author": "Wu", + "isbn": "9780231510431", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$15.50", + "item_type": "digital" + } + ] + }, + { + "department": "ENGL", + "course_num": "2210", + "section": "10", + "instructor": "Thea Brown", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Travesty Generator", + "edition": "N/A", + "author": "Bertram", + "isbn": "9781934819845", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Noemi Press", + "type_condition": "RENTAL_USED", + "price_display": "$7.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Travesty Generator", + "edition": "N/A", + "author": "Bertram", + "isbn": "9781934819845", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Noemi Press", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Travesty Generator", + "edition": "N/A", + "author": "Bertram", + "isbn": "9781934819845", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Noemi Press", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dance Dance Revolution", + "edition": "N/A", + "author": "Hong", + "isbn": "9780393333114", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dance Dance Revolution", + "edition": "N/A", + "author": "Hong", + "isbn": "9780393333114", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$11.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dance Dance Revolution", + "edition": "N/A", + "author": "Hong", + "isbn": "9780393333114", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sleeping with the Dictionary", + "edition": "N/A", + "author": "Mullen", + "isbn": "9780520231436", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "University of California Press", + "type_condition": "RENTAL_USED", + "price_display": "$9.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sleeping with the Dictionary", + "edition": "N/A", + "author": "Mullen", + "isbn": "9780520231436", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$23.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sleeping with the Dictionary", + "edition": "N/A", + "author": "Mullen", + "isbn": "9780520231436", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "University of California Press", + "type_condition": "RENTAL_NEW", + "price_display": "$17.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sleeping with the Dictionary", + "edition": "N/A", + "author": "Mullen", + "isbn": "9780520231436", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bernadette Mayer Reader", + "edition": "N/A", + "author": "Mayer", + "isbn": "9780811212038", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "New Directions Publishing Corporation", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "item_type": "print" + }, + { + "title": "Bernadette Mayer Reader", + "edition": "N/A", + "author": "Mayer", + "isbn": "9780811212038", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "New Directions Publishing Corporation", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "item_type": "print" + }, + { + "title": "Hist", + "edition": "N/A", + "author": "Klane", + "isbn": "9781940853161", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Small Press Distribution **EMAIL ORDERS**", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hist", + "edition": "N/A", + "author": "Klane", + "isbn": "9781940853161", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Small Press Distribution **EMAIL ORDERS**", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "A Bernadette Mayer Reader", + "edition": "N/A", + "author": "Mayer", + "isbn": "9780811225465", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "item_type": "digital" + }, + { + "title": "Sleeping with the Dictionary", + "edition": "1st", + "author": "Mullen", + "isbn": "9780520927834", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$23.95", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "4801", + "section": "12", + "instructor": "Herbert Davis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "4990", + "section": "13", + "instructor": "Murray Loew", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACA", + "course_num": "6223", + "section": "10", + "instructor": "Alexander Wild", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "AMST", + "course_num": "4500W", + "section": "10", + "instructor": "Jamie Cohen-Cole", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HEBR", + "course_num": "1001", + "section": "11", + "instructor": "Orian Zakai", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Brandeis Modern Hebrew", + "edition": "N/A", + "author": "Ringvald", + "isbn": "9781611689181", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Chicago Distribution Center", + "type_condition": "RENTAL_NEW", + "price_display": "$63.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brandeis Modern Hebrew", + "edition": "N/A", + "author": "Ringvald", + "isbn": "9781611689181", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Chicago Distribution Center", + "type_condition": "BUY_NEW", + "price_display": "$85.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brandeis Modern Hebrew", + "edition": "N/A", + "author": "Ringvald", + "isbn": "9781611689181", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Chicago Distribution Center", + "type_condition": "BUY_USED", + "price_display": "$63.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brandeis Modern Hebrew", + "edition": "N/A", + "author": "Ringvald", + "isbn": "9781611689181", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Chicago Distribution Center", + "type_condition": "RENTAL_USED", + "price_display": "$35.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brandeis Modern Hebrew", + "edition": "N/A", + "author": "Ringvald", + "isbn": "9781684580552", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$85.00", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "11", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Basic Math for Prin of Economics: A Modular Approach (ebook access code)", + "edition": "N/A", + "author": "Foster", + "isbn": "9781773308791", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Top Hat Monocle", + "type_condition": "BUY_NEW", + "price_display": "$63.00", + "item_type": "print" + }, + { + "title": "Top Hat Classroom-One Semester", + "edition": "N/A", + "author": "Hat", + "isbn": "9780986615108", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Top Hat Monocle", + "type_condition": "RENTAL_NEW", + "price_display": "$37.75", + "item_type": "digital" + } + ] + }, + { + "department": "AMST", + "course_num": "2410W", + "section": "80", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Bread Givers", + "edition": "3rd", + "author": "Yezierska", + "isbn": "9780892552900", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Persea Books, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bread Givers", + "edition": "3rd", + "author": "Yezierska", + "isbn": "9780892552900", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Persea Books, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$7.46", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bread Givers", + "edition": "3rd", + "author": "Yezierska", + "isbn": "9780892552900", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Persea Books, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beast", + "edition": "N/A", + "author": "Martinez", + "isbn": "9781781682975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "VERSO (USA)", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beast", + "edition": "N/A", + "author": "Martinez", + "isbn": "9781781682975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "VERSO (USA)", + "type_condition": "RENTAL_USED", + "price_display": "$7.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beast", + "edition": "N/A", + "author": "Martinez", + "isbn": "9781781682975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "VERSO (USA)", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beast", + "edition": "N/A", + "author": "Martinez", + "isbn": "9781781682975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "VERSO (USA)", + "type_condition": "RENTAL_NEW", + "price_display": "$15.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beautiful Things That Heaven Bears", + "edition": "N/A", + "author": "Mengestu", + "isbn": "9781594482854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beautiful Things That Heaven Bears", + "edition": "N/A", + "author": "Mengestu", + "isbn": "9781594482854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beautiful Things That Heaven Bears", + "edition": "N/A", + "author": "Mengestu", + "isbn": "9781594482854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beautiful Things That Heaven Bears", + "edition": "N/A", + "author": "Mengestu", + "isbn": "9781594482854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Stealing Buddhas Dinner", + "edition": "N/A", + "author": "Nguyen", + "isbn": "9780143113034", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Stealing Buddhas Dinner", + "edition": "N/A", + "author": "Nguyen", + "isbn": "9780143113034", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Stealing Buddhas Dinner", + "edition": "N/A", + "author": "Nguyen", + "isbn": "9780143113034", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "America for Americans", + "edition": "N/A", + "author": "Lee", + "isbn": "9781541672611", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Basic Books", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "America for Americans", + "edition": "N/A", + "author": "Lee", + "isbn": "9781541672611", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Basic Books", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bread Givers: A Novel", + "edition": "N/A", + "author": "Yezierska", + "isbn": "9780892553815", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$10.00", + "item_type": "digital" + }, + { + "title": "America for Americans", + "edition": "N/A", + "author": "Lee", + "isbn": "9781541672598", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Basic Books", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "item_type": "digital" + } + ] + }, + { + "department": "CHIN", + "course_num": "6163", + "section": "80", + "instructor": "Liana Chen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Man with the Compound Eyes", + "edition": "N/A", + "author": "Ming-Yi", + "isbn": "9780345802880", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Man with the Compound Eyes", + "edition": "N/A", + "author": "Ming-Yi", + "isbn": "9780345802880", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Orphan of Asia", + "edition": "N/A", + "author": "Wu", + "isbn": "9780231137263", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$23.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Orphan of Asia", + "edition": "N/A", + "author": "Wu", + "isbn": "9780231137263", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Orphan of Asia", + "edition": "N/A", + "author": "Wu", + "isbn": "9780231510431", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$15.50", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "1000", + "section": "10", + "instructor": "Cuauhtemoc Vidal-Guzman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6221", + "section": "10", + "instructor": "Walcelio Melo", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Design Patterns: Elements of Reusable Object-Oriented Software", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780201633610", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Addison Wesley", + "type_condition": "BUY_USED", + "price_display": "$45.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Design Patterns: Elements of Reusable Object-Oriented Software", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780201633610", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_USED", + "price_display": "$24.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Design Patterns: Elements of Reusable Object-Oriented Software", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780201633610", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Addison Wesley", + "type_condition": "BUY_NEW", + "price_display": "$59.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Design Patterns: Elements of Reusable Object-Oriented Software", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780201633610", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_NEW", + "price_display": "$38.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Concurrency", + "edition": "N/A", + "author": "Magee", + "isbn": "9780470093559", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$68.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Concurrency", + "edition": "N/A", + "author": "Magee", + "isbn": "9780470093559", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$90.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Concepts of Programming Languages (RRPHE)", + "edition": "12th", + "author": "Sebesta", + "isbn": "9780134997186", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Concepts of Programming Languages (RRPHE)", + "edition": "12th", + "author": "Sebesta", + "isbn": "9780134997186", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pearson eText for Concepts of Programming Languages -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "12th", + "author": "Sebesta", + "isbn": "9780135102268", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Design Patterns", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780321700698", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Higher Educ & Prof Group", + "type_condition": "BUY_NEW", + "price_display": "$48.00", + "item_type": "digital" + }, + { + "title": "Design Patterns", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780321700742", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Higher Educ & Prof Group", + "type_condition": "BUY_NEW", + "price_display": "$48.00", + "item_type": "digital" + }, + { + "title": "Concepts of Programming Languages", + "edition": "12th", + "author": "Sebesta", + "isbn": "9780135102251", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "2123W", + "section": "11", + "instructor": "LaKeisha McClary", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Scientific Writing 2.0 (w/DVD)", + "edition": "N/A", + "author": "Lebrun", + "isbn": "9789814350600", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "World Scientific Pub Co., Incorp.", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Scientific Writing 2.0 (w/DVD)", + "edition": "N/A", + "author": "Lebrun", + "isbn": "9789814350600", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "World Scientific Pub Co., Incorp.", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Scientific Writing 2.0 (w/DVD)", + "edition": "N/A", + "author": "Lebrun", + "isbn": "9789814350600", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "World Scientific Pub Co., Incorp.", + "type_condition": "RENTAL_USED", + "price_display": "$14.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "2410W", + "section": "83", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6242", + "section": "80", + "instructor": "Elizabeth Gannon", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Real Estate Finance & Investments (Edition 5.2))", + "edition": "5th", + "author": "Linneman", + "isbn": "9781792377136", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Linneman Associates", + "type_condition": "BUY_NEW", + "price_display": "$217.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Real Estate Finance & Investments (Edition 5.2))", + "edition": "5th", + "author": "Linneman", + "isbn": "9781792377136", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Linneman Associates", + "type_condition": "BUY_USED", + "price_display": "$162.75", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "2071", + "section": "80", + "instructor": "Katherine Markoski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6625", + "section": "10", + "instructor": "Daqing Yang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Heritage Management in Korea & Japan", + "edition": "N/A", + "author": "Pai", + "isbn": "9780295993058", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "University of Washington Press", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Heritage Management in Korea & Japan", + "edition": "N/A", + "author": "Pai", + "isbn": "9780295993058", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "University of Washington Press", + "type_condition": "RENTAL_USED", + "price_display": "$14.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Heritage Management in Korea & Japan", + "edition": "N/A", + "author": "Pai", + "isbn": "9780295993058", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "University of Washington Press", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Japanese Colonial Empire, 1895-1945", + "edition": "N/A", + "author": "Myers", + "isbn": "9780691102221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1984", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$56.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Japanese Colonial Empire, 1895-1945", + "edition": "N/A", + "author": "Myers", + "isbn": "9780691102221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1984", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$75.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Japanese Imperialism 1894-1945", + "edition": "N/A", + "author": "Beasley", + "isbn": "9780198221685", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1987", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$37.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Japanese Imperialism 1894-1945", + "edition": "N/A", + "author": "Beasley", + "isbn": "9780198221685", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1987", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Japanese Imperialism 1894-1945", + "edition": "N/A", + "author": "Beasley", + "isbn": "9780198221685", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1987", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$50.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Japanese Imperialism, 1894-1945", + "edition": "N/A", + "author": "Beasley", + "isbn": "9780191501302", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$32.49", + "item_type": "digital" + }, + { + "title": "Japanese Imperialism, 1894-1945", + "edition": "N/A", + "author": "Beasley", + "isbn": "9780191501302", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$37.49", + "item_type": "digital" + }, + { + "title": "Japanese Imperialism, 1894-1945", + "edition": "N/A", + "author": "Beasley", + "isbn": "9780191501302", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$49.99", + "item_type": "digital" + }, + { + "title": "The Japanese Colonial Empire, 1895-1945", + "edition": "N/A", + "author": "Myers", + "isbn": "9780691213873", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$79.00", + "item_type": "digital" + } + ] + }, + { + "department": "HIST", + "course_num": "3640", + "section": "10", + "instructor": "Shawn McHale", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Letters from Thailand", + "edition": "N/A", + "author": "Botan", + "isbn": "9789747551679", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "SILK WORM BOOKS", + "type_condition": "BUY_NEW", + "price_display": "$23.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Letters from Thailand", + "edition": "N/A", + "author": "Botan", + "isbn": "9789747551679", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "SILK WORM BOOKS", + "type_condition": "BUY_USED", + "price_display": "$17.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Art of Not Being Governed", + "edition": "N/A", + "author": "Scott", + "isbn": "9780300169171", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Yale University Press", + "type_condition": "RENTAL_USED", + "price_display": "$10.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Art of Not Being Governed", + "edition": "N/A", + "author": "Scott", + "isbn": "9780300169171", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$25.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Art of Not Being Governed", + "edition": "N/A", + "author": "Scott", + "isbn": "9780300169171", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Yale University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Art of Not Being Governed", + "edition": "N/A", + "author": "Scott", + "isbn": "9780300169171", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Yale University Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sacred Willow", + "edition": "N/A", + "author": "Elliott", + "isbn": "9780195137873", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$10.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sacred Willow", + "edition": "N/A", + "author": "Elliott", + "isbn": "9780195137873", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$24.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sacred Willow", + "edition": "N/A", + "author": "Elliott", + "isbn": "9780195137873", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$18.74", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sacred Willow", + "edition": "N/A", + "author": "Elliott", + "isbn": "9780195137873", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hadrami Awakening", + "edition": "N/A", + "author": "Mobini-Kesheh", + "isbn": "9780877277279", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Cornell University, Southeast Asia Program Publications", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hadrami Awakening", + "edition": "N/A", + "author": "Mobini-Kesheh", + "isbn": "9780877277279", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Cornell University, Southeast Asia Program Publications", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Killing Season", + "edition": "N/A", + "author": "Robinson", + "isbn": "9780691196497", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Killing Season", + "edition": "N/A", + "author": "Robinson", + "isbn": "9780691196497", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Southeast Asia", + "edition": "13th", + "author": "Osborne", + "isbn": "9781760877132", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Allen & Unwin", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Southeast Asia", + "edition": "13th", + "author": "Osborne", + "isbn": "9781760877132", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Allen & Unwin", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Killing Season", + "edition": "N/A", + "author": "Robinson", + "isbn": "9781400888863", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$23.95", + "item_type": "digital" + } + ] + }, + { + "department": "ENGL", + "course_num": "1210", + "section": "16", + "instructor": "Sylvia Jones", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Neon Vernacular", + "edition": "N/A", + "author": "Komunyakaa", + "isbn": "9780819512116", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Wesleyan University, Collection of Legal Change", + "type_condition": "RENTAL_NEW", + "price_display": "$14.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Neon Vernacular", + "edition": "N/A", + "author": "Komunyakaa", + "isbn": "9780819512116", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Wesleyan University, Collection of Legal Change", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Neon Vernacular", + "edition": "N/A", + "author": "Komunyakaa", + "isbn": "9780819512116", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Wesleyan University, Collection of Legal Change", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "3170", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "8999", + "section": "16", + "instructor": "Matthew Kay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "33", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "3709", + "section": "80", + "instructor": "Brendan Morley", + "term_name": "Fall 2023", + "texts": [ + { + "title": "What Is Japanese Cinema?", + "edition": "N/A", + "author": "Inuhiko", + "isbn": "9780231191630", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "What Is Japanese Cinema?", + "edition": "N/A", + "author": "Inuhiko", + "isbn": "9780231191630", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$26.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "3625", + "section": "80", + "instructor": "Jamie Cohen-Cole", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "34", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "12", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Voices of Decolonization: A Brief History with Documents", + "edition": "N/A", + "author": "Shepard", + "isbn": "9781457618154", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Voices of Decolonization: A Brief History with Documents", + "edition": "N/A", + "author": "Shepard", + "isbn": "9781457618154", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Voices of Decolonization: A Brief History with Documents", + "edition": "N/A", + "author": "Shepard", + "isbn": "9781457618154", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Voices of Decolonization: A Brief History with Documents", + "edition": "N/A", + "author": "Shepard", + "isbn": "9781457618154", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Matteo Ricci & the Catholic Mission to China (1583-1610)", + "edition": "N/A", + "author": "Hsia", + "isbn": "9781624664328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Matteo Ricci & the Catholic Mission to China (1583-1610)", + "edition": "N/A", + "author": "Hsia", + "isbn": "9781624664328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Matteo Ricci & the Catholic Mission to China (1583-1610)", + "edition": "N/A", + "author": "Hsia", + "isbn": "9781624664328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$11.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Two Princes of Calabar", + "edition": "N/A", + "author": "Sparks", + "isbn": "9780674032057", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$15.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Two Princes of Calabar", + "edition": "N/A", + "author": "Sparks", + "isbn": "9780674032057", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$8.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Two Princes of Calabar", + "edition": "N/A", + "author": "Sparks", + "isbn": "9780674032057", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Two Princes of Calabar", + "edition": "N/A", + "author": "Sparks", + "isbn": "9780674032057", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$15.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$30.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$16.30", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$40.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$26.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Voices of Decolonization", + "edition": "N/A", + "author": "Shepard", + "isbn": "9781319091446", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$14.99", + "item_type": "digital" + }, + { + "title": "The Great Hanoi Rat Hunt", + "edition": "1st", + "author": "Vann", + "isbn": "9780190602703", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "RENTAL_NEW", + "price_display": "$14.99", + "item_type": "digital" + }, + { + "title": "Matteo Ricci and the Catholic Mission to China, 15831610", + "edition": "N/A", + "author": "Hsia", + "isbn": "9781624664342", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.50", + "item_type": "digital" + }, + { + "title": "Voices of Decolonization", + "edition": "N/A", + "author": "Shepard", + "isbn": "9781319328252", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$15.99", + "item_type": "digital" + }, + { + "title": "The Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602703", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "RENTAL_NEW", + "price_display": "$17.30", + "item_type": "digital" + }, + { + "title": "The Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602703", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "BUY_NEW", + "price_display": "$23.06", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "43", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "2116", + "section": "10", + "instructor": "Amanda Visek", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Psychology of Exercise", + "edition": "4th", + "author": "Lox", + "isbn": "9781621590064", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "RENTAL_USED", + "price_display": "$32.38", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Psychology of Exercise", + "edition": "4th", + "author": "Lox", + "isbn": "9781621590064", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_USED", + "price_display": "$60.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Psychology of Exercise", + "edition": "4th", + "author": "Lox", + "isbn": "9781621590064", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$80.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Why Zebras Don't Get Ulcers (Now Rev & Upd)", + "edition": "3rd", + "author": "Sapolsky", + "isbn": "9780805073690", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "RAINCOAST BOOKS", + "type_condition": "RENTAL_USED", + "price_display": "$10.12", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Why Zebras Don't Get Ulcers (Now Rev & Upd)", + "edition": "3rd", + "author": "Sapolsky", + "isbn": "9780805073690", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "RAINCOAST BOOKS", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Why Zebras Don't Get Ulcers (Now Rev & Upd)", + "edition": "3rd", + "author": "Sapolsky", + "isbn": "9780805073690", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "RAINCOAST BOOKS", + "type_condition": "RENTAL_NEW", + "price_display": "$17.24", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Why Zebras Don't Get Ulcers (Now Rev & Upd)", + "edition": "3rd", + "author": "Sapolsky", + "isbn": "9780805073690", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "RAINCOAST BOOKS", + "type_condition": "BUY_NEW", + "price_display": "$22.99", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ECON", + "course_num": "2181", + "section": "13", + "instructor": "Xiaoyang Chen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "International Trade", + "edition": "5th", + "author": "Feenstra", + "isbn": "9781319218454", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$234.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Trade", + "edition": "5th", + "author": "Feenstra", + "isbn": "9781319218454", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$311.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Trade", + "edition": "5th", + "author": "Feenstra", + "isbn": "9781319344108", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$69.99", + "item_type": "digital" + } + ] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "M33", + "instructor": "Eyal Aviv", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Philosophy for Life & Other Dangerous Situations", + "edition": "N/A", + "author": "Evans", + "isbn": "9781608682294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New World Library", + "type_condition": "RENTAL_USED", + "price_display": "$7.18", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy for Life & Other Dangerous Situations", + "edition": "N/A", + "author": "Evans", + "isbn": "9781608682294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New World Library", + "type_condition": "RENTAL_NEW", + "price_display": "$11.67", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy for Life & Other Dangerous Situations", + "edition": "N/A", + "author": "Evans", + "isbn": "9781608682294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New World Library", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy for Life & Other Dangerous Situations", + "edition": "N/A", + "author": "Evans", + "isbn": "9781608682294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New World Library", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy for Life and Other Dangerous Situations", + "edition": "N/A", + "author": "Evans", + "isbn": "9781608682300", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "New World Library", + "type_condition": "BUY_NEW", + "price_display": "$12.00", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "39", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EHS", + "course_num": "6227", + "section": "10", + "instructor": "Claudia Ranniger", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Fundamentals of Aerospace Medicine", + "edition": "4th", + "author": "Davis", + "isbn": "9780781774666", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_NEW", + "price_display": "$335.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fundamentals of Aerospace Medicine", + "edition": "4th", + "author": "Davis", + "isbn": "9780781774666", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_USED", + "price_display": "$251.75", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "1100", + "section": "33", + "instructor": "Elisabeth Anker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HLWL", + "course_num": "1102", + "section": "16", + "instructor": "Cynthia Pavell", + "term_name": "Fall 2023", + "texts": [ + { + "title": "MindTap for Olpin/Hesson's Stress Management for Life: A Research-Based Experiential Approach, 1 term Instant Access", + "edition": "5th", + "author": "Michael OlpinMargie Hesson", + "isbn": "9780357730294", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$104.00", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "3001", + "section": "20", + "instructor": "Loretta Goodwin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "1000", + "section": "10", + "instructor": "Lynn Matheny", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Culture Strike", + "edition": "N/A", + "author": "Raicovich", + "isbn": "9781839760501", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Verso (UK)", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Culture Strike", + "edition": "N/A", + "author": "Raicovich", + "isbn": "9781839760501", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Verso (UK)", + "type_condition": "BUY_NEW", + "price_display": "$26.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Maus I: A Survivor's Tale: My Father Bleeds History (Volume 1)", + "edition": "N/A", + "author": "Spiegelman", + "isbn": "9780590469012", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Maus I: A Survivor's Tale: My Father Bleeds History (Volume 1)", + "edition": "N/A", + "author": "Spiegelman", + "isbn": "9780590469012", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "FREN", + "course_num": "2006", + "section": "12", + "instructor": "Noelle Levy-Gires", + "term_name": "Fall 2023", + "texts": [ + { + "title": "La France Contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664421", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "La France Contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664421", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "La France contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664438", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "La France contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664438", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$67.99", + "item_type": "digital" + }, + { + "title": "La France contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664438", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$86.49", + "item_type": "digital" + } + ] + }, + { + "department": "ENGL", + "course_num": "2100", + "section": "80", + "instructor": "Patricia Chu", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Disgraced (Play)", + "edition": "N/A", + "author": "Akhtar", + "isbn": "9780316324465", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Little Brown & Company", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Disgraced (Play)", + "edition": "N/A", + "author": "Akhtar", + "isbn": "9780316324465", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Little Brown & Company", + "type_condition": "BUY_NEW", + "price_display": "$16.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Disgraced (Play)", + "edition": "N/A", + "author": "Akhtar", + "isbn": "9780316324465", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Little Brown & Company", + "type_condition": "RENTAL_NEW", + "price_display": "$12.74", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "I Was Their American Dream", + "edition": "N/A", + "author": "Gharib", + "isbn": "9780525575115", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Clarkson Potter", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "I Was Their American Dream", + "edition": "N/A", + "author": "Gharib", + "isbn": "9780525575115", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Clarkson Potter", + "type_condition": "BUY_NEW", + "price_display": "$16.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fifth Chinese Daughter", + "edition": "N/A", + "author": "Wong", + "isbn": "9780295745909", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Washington Press", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fifth Chinese Daughter", + "edition": "N/A", + "author": "Wong", + "isbn": "9780295745909", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Washington Press", + "type_condition": "BUY_NEW", + "price_display": "$25.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey Hunting", + "edition": "N/A", + "author": "Garcia", + "isbn": "9780345466105", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2004", + "publisher": "Ballantine Books", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey Hunting", + "edition": "N/A", + "author": "Garcia", + "isbn": "9780345466105", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2004", + "publisher": "Ballantine Books", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey Hunting", + "edition": "N/A", + "author": "Garcia", + "isbn": "9780345466105", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2004", + "publisher": "Ballantine Books", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey Hunting", + "edition": "N/A", + "author": "Garcia", + "isbn": "9780345466105", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2004", + "publisher": "Ballantine Books", + "type_condition": "RENTAL_NEW", + "price_display": "$11.05", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Best We Could Do", + "edition": "N/A", + "author": "Bui", + "isbn": "9781419718786", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Harry N. Abrams Incorporated", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Best We Could Do", + "edition": "N/A", + "author": "Bui", + "isbn": "9781419718786", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Harry N. Abrams Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$19.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Best We Could Do", + "edition": "N/A", + "author": "Bui", + "isbn": "9781419718786", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Harry N. Abrams Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$7.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Passing for Perfect", + "edition": "N/A", + "author": "Ninh", + "isbn": "9781439920527", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Temple University Press", + "type_condition": "BUY_USED", + "price_display": "$24.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Passing for Perfect", + "edition": "N/A", + "author": "Ninh", + "isbn": "9781439920527", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Temple University Press", + "type_condition": "BUY_NEW", + "price_display": "$31.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China Men", + "edition": "N/A", + "author": "Kingston", + "isbn": "9780679723288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China Men", + "edition": "N/A", + "author": "Kingston", + "isbn": "9780679723288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China Men", + "edition": "N/A", + "author": "Kingston", + "isbn": "9780679723288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$6.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156034029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156034029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "BUY_NEW", + "price_display": "$17.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156034029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "RENTAL_USED", + "price_display": "$7.92", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156034029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "RENTAL_NEW", + "price_display": "$13.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Twilight: Los Angeles, 1992", + "edition": "N/A", + "author": "Smith", + "isbn": "9780385473767", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Twilight: Los Angeles, 1992", + "edition": "N/A", + "author": "Smith", + "isbn": "9780385473767", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Twilight: Los Angeles, 1992", + "edition": "N/A", + "author": "Smith", + "isbn": "9780385473767", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Minor Feelings", + "edition": "N/A", + "author": "Hong", + "isbn": "9781984820389", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Random House Adult Trade Publ", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Minor Feelings", + "edition": "N/A", + "author": "Hong", + "isbn": "9781984820389", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Random House Adult Trade Publ", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Minor Feelings", + "edition": "N/A", + "author": "Hong", + "isbn": "9781984820389", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Random House Adult Trade Publ", + "type_condition": "RENTAL_NEW", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "We Hereby Refuse: Japanese American Resistance to Wartime Incarceration", + "edition": "N/A", + "author": "Abe", + "isbn": "9781634059763", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Consortium Book Sales & Distribution", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "We Hereby Refuse: Japanese American Resistance to Wartime Incarceration", + "edition": "N/A", + "author": "Abe", + "isbn": "9781634059763", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Consortium Book Sales & Distribution", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Asian American History: a Very Short Introduction", + "edition": "2nd", + "author": "Hsu", + "isbn": "9780190219765", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$9.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Asian American History: a Very Short Introduction", + "edition": "2nd", + "author": "Hsu", + "isbn": "9780190219765", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$11.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Asian American History: A Very Short Introduction", + "edition": "N/A", + "author": "Hsu", + "isbn": "9780190219789", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$5.19", + "item_type": "digital" + }, + { + "title": "Asian American History: A Very Short Introduction", + "edition": "N/A", + "author": "Hsu", + "isbn": "9780190219789", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$5.99", + "item_type": "digital" + }, + { + "title": "Asian American History: A Very Short Introduction", + "edition": "N/A", + "author": "Hsu", + "isbn": "9780190219789", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$7.99", + "item_type": "digital" + }, + { + "title": "Disgraced", + "edition": "N/A", + "author": "Akhtar", + "isbn": "9780316324472", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hachette Book Group", + "type_condition": "BUY_NEW", + "price_display": "$9.99", + "item_type": "digital" + }, + { + "title": "The Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156033121", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Houghton Mifflin Harcourt Supplemental Publishers", + "type_condition": "BUY_NEW", + "price_display": "$10.50", + "item_type": "digital" + }, + { + "title": "The Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156033121", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$14.99", + "item_type": "digital" + }, + { + "title": "Fifth Chinese Daughter", + "edition": "N/A", + "author": "Wong", + "isbn": "9780295745916", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Washington Press", + "type_condition": "BUY_NEW", + "price_display": "$20.75", + "item_type": "digital" + } + ] + }, + { + "department": "BIOC", + "course_num": "6230", + "section": "10", + "instructor": "Brett Shook", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "6261", + "section": "80", + "instructor": "Liliana Monk", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Placing Latin America", + "edition": "4th", + "author": "Jackiewicz", + "isbn": "9781538126301", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_USED", + "price_display": "$43.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Placing Latin America", + "edition": "4th", + "author": "Jackiewicz", + "isbn": "9781538126301", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_NEW", + "price_display": "$57.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Placing Latin America", + "edition": "4th", + "author": "Jackiewicz", + "isbn": "9781538126301", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_USED", + "price_display": "$22.90", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Placing Latin America", + "edition": "4th", + "author": "Jackiewicz", + "isbn": "9781538126301", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_NEW", + "price_display": "$37.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Latin America & Caribbean", + "edition": "7th", + "author": "Blouet", + "isbn": "9781118729847", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$147.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Latin America & Caribbean", + "edition": "7th", + "author": "Blouet", + "isbn": "9781118729847", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$196.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Latin America & Caribbean", + "edition": "7th", + "author": "Blouet", + "isbn": "9781118729847", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$82.53", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Latin America & Caribbean", + "edition": "7th", + "author": "Blouet", + "isbn": "9781118729847", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$147.38", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Latin America and the Caribbean", + "edition": "7th", + "author": "Blouet", + "isbn": "9781118919521", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$36.96", + "item_type": "digital" + }, + { + "title": "Placing Latin America", + "edition": "4th", + "author": "Jackiewicz", + "isbn": "9781538126318", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$46.50", + "item_type": "digital" + }, + { + "title": "Latin America and the Caribbean", + "edition": "7th", + "author": "Blouet", + "isbn": "9781118919521", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$88.00", + "item_type": "digital" + } + ] + }, + { + "department": "ARAB", + "course_num": "1000", + "section": "11", + "instructor": "Jennifer Tobkin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "11", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [ + { + "title": "iclicker+ (Student Remote) (REV)", + "edition": "N/A", + "author": "Iclicker", + "isbn": "9781498603058", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$54.00", + "item_type": "print" + }, + { + "title": "Modified Mastering Biology with Pearson eText -- Access Card -- for Campbell Biology", + "edition": "12th", + "author": "Orr", + "isbn": "9780135855836", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$173.50", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "4990", + "section": "11", + "instructor": "Zhenyu Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "3408", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "1042", + "section": "10", + "instructor": "George Kueppers", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Communicating at Work (RRMCG RENTAL Edition)", + "edition": "13th", + "author": "Adler", + "isbn": "9781264305087", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Communicating at Work (RRMCG RENTAL Edition)", + "edition": "13th", + "author": "Adler", + "isbn": "9781264305087", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Communicating at Work", + "edition": "13th", + "author": "Adler", + "isbn": "9781265055738", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$62.25", + "item_type": "digital" + }, + { + "title": "Communicating at Work", + "edition": "13th", + "author": "Adler", + "isbn": "9781265055738", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$79.25", + "item_type": "digital" + }, + { + "title": "Communicating at Work", + "edition": "13th", + "author": "Adler", + "isbn": "9781265055738", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$94.75", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "25", + "instructor": "Emma Custis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "AMST", + "course_num": "2520", + "section": "80", + "instructor": "Philip Jacks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1003", + "section": "38", + "instructor": "Eric Cline", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "6423", + "section": "80", + "instructor": "Chester Sherwood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "2810", + "section": "10", + "instructor": "Hyung Sok Choe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "2301", + "section": "16", + "instructor": "Sunghun Chung", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EHS", + "course_num": "1058", + "section": "10", + "instructor": "Craig Evans", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Foundations of Education", + "edition": "3rd", + "author": "Naemse", + "isbn": "9781284145168", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Foundations of Education", + "edition": "3rd", + "author": "Naemse", + "isbn": "9781284145168", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$78.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Foundations of Education", + "edition": "3rd", + "author": "Naemse", + "isbn": "9781284145168", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$59.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Foundations of Education: An EMS Approach", + "edition": "3rd", + "author": "National Association of EMS Ed", + "isbn": "9781284145212", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$46.77", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "3212", + "section": "10", + "instructor": "Leon Grayfer", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Kuby Immunology Covid-19 & Digital update (LL)", + "edition": "8th", + "author": "Stranford", + "isbn": "9781319495299", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2023", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_USED", + "price_display": "$104.25", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Kuby Immunology Covid-19 & Digital update (LL)", + "edition": "8th", + "author": "Stranford", + "isbn": "9781319495299", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2023", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_NEW", + "price_display": "$139.00", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Kuby Immunology Covid-19 & Digital Update", + "edition": "8th", + "author": "Stranford", + "isbn": "9781319440930", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$62.99", + "item_type": "digital" + } + ] + }, + { + "department": "HLWL", + "course_num": "1106", + "section": "10", + "instructor": "Valerie Hadeed", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Drugs, Society & Human Behavior (RRMCG)", + "edition": "18th", + "author": "Hart", + "isbn": "9781260711059", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Drugs, Society & Human Behavior (RRMCG)", + "edition": "18th", + "author": "Hart", + "isbn": "9781260711059", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Drugs, Society, and Human Behavior", + "edition": "18th", + "author": "Hart", + "isbn": "9781264170296", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$62.25", + "item_type": "digital" + }, + { + "title": "Drugs, Society, and Human Behavior", + "edition": "18th", + "author": "Hart", + "isbn": "9781264170296", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$79.25", + "item_type": "digital" + }, + { + "title": "Drugs, Society, and Human Behavior", + "edition": "18th", + "author": "Hart", + "isbn": "9781264170296", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$94.75", + "item_type": "digital" + } + ] + }, + { + "department": "ACCY", + "course_num": "2001", + "section": "10", + "instructor": "Kee Hea Moon", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Connect Online Access for Financial Accounting", + "edition": "11th", + "author": "LIBBY", + "isbn": "9781265717254", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$189.75", + "item_type": "digital" + } + ] + }, + { + "department": "CNSL", + "course_num": "6185", + "section": "11", + "instructor": "Christie Bogle", + "term_name": "Fall 2023", + "texts": [ + { + "title": "ACA Ethical Standards Casebook", + "edition": "N/A", + "author": "Herlihy", + "isbn": "9781556201509", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "American Counseling Assn, ACA", + "type_condition": "BUY_NEW", + "price_display": "$42.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "ACA Ethical Standards Casebook", + "edition": "N/A", + "author": "Herlihy", + "isbn": "9781556201509", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "American Counseling Assn, ACA", + "type_condition": "BUY_USED", + "price_display": "$32.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Adult Psychotherapy Treatment Planner", + "edition": "6th", + "author": "Jongsma", + "isbn": "9781119629931", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2021", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$92.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Adult Psychotherapy Treatment Planner", + "edition": "6th", + "author": "Jongsma", + "isbn": "9781119629931", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2021", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$69.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "DSM-5-TR(tm) Classification", + "edition": "N/A", + "author": "American Psychiatric Association", + "isbn": "9780890425831", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "American Psychiatric Association Publishing", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "DSM-5-TR(tm) Classification", + "edition": "N/A", + "author": "American Psychiatric Association", + "isbn": "9780890425831", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "American Psychiatric Association Publishing", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "The Complete Adult Psychotherapy Treatment Planner", + "edition": "6th", + "author": "Jongsma", + "isbn": "9781119629924", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$59.00", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "1003", + "section": "36", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EHS", + "course_num": "2162", + "section": "10", + "instructor": "Raymond Whatley", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Tactical Medicine Essentials", + "edition": "2nd", + "author": "American College Of Emergency Physicians", + "isbn": "9781284030297", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$105.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Tactical Medicine Essentials", + "edition": "2nd", + "author": "American College Of Emergency Physicians", + "isbn": "9781284030297", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$141.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Tactical Medicine Essentials", + "edition": "2nd", + "author": "Campbell", + "isbn": "9781284243680", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$88.37", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "6492", + "section": "10", + "instructor": "Anne-Laure Papa", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Prin of Regenerative Medicine", + "edition": "3rd", + "author": "Atala", + "isbn": "9780128098806", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "BUY_NEW", + "price_display": "$200.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Prin of Regenerative Medicine", + "edition": "3rd", + "author": "Atala", + "isbn": "9780128098806", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "BUY_USED", + "price_display": "$150.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Prin of Regenerative Medicine", + "edition": "3rd", + "author": "Atala", + "isbn": "9780128098806", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "RENTAL_USED", + "price_display": "$84.00", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "4801", + "section": "10", + "instructor": "Jorge Walter", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Strategic Management: Concepts - Competitiveness etc (Text Only)", + "edition": "12th", + "author": "Hitt", + "isbn": "9781305502208", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$179.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Strategic Management: Concepts - Competitiveness etc (Text Only)", + "edition": "12th", + "author": "Hitt", + "isbn": "9781305502208", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$100.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Strategic Management: Concepts - Competitiveness etc (Text Only)", + "edition": "12th", + "author": "Hitt", + "isbn": "9781305502208", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$239.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Strategic Management: Concepts - Competitiveness etc (Text Only)", + "edition": "12th", + "author": "Hitt", + "isbn": "9781305502208", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$191.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Strategic Management: Concepts: Competitiveness and Globalization", + "edition": "12th", + "author": "Hitt", + "isbn": "9781337413572", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$55.49", + "item_type": "digital" + }, + { + "title": "Strategic Management: Concepts: Competitiveness and Globalization", + "edition": "12th", + "author": "Hitt", + "isbn": "9781337413572", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$75.99", + "item_type": "digital" + }, + { + "title": "Strategic Management: Concepts: Competitiveness and Globalization", + "edition": "12th", + "author": "Hitt", + "isbn": "9781337413572", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$96.99", + "item_type": "digital" + } + ] + }, + { + "department": "ECE", + "course_num": "1125", + "section": "10", + "instructor": "Samuel Farid Fahmy", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Algorithms", + "edition": "4th", + "author": "Cormen", + "isbn": "9780262046305", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MIT Press order from Random House", + "type_condition": "BUY_USED", + "price_display": "$101.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Algorithms", + "edition": "4th", + "author": "Cormen", + "isbn": "9780262046305", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MIT Press order from Random House", + "type_condition": "BUY_NEW", + "price_display": "$135.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Algorithms", + "edition": "4th", + "author": "Cormen", + "isbn": "9780262046305", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MIT Press order from Random House", + "type_condition": "RENTAL_NEW", + "price_display": "$101.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Algorithms", + "edition": "4th", + "author": "Cormen", + "isbn": "9780262046305", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MIT Press order from Random House", + "type_condition": "RENTAL_USED", + "price_display": "$56.70", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fund of Data Structures in C", + "edition": "N/A", + "author": "Horowitz", + "isbn": "9780929306407", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2007", + "publisher": "Silicon Press", + "type_condition": "BUY_USED", + "price_display": "$67.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fund of Data Structures in C", + "edition": "N/A", + "author": "Horowitz", + "isbn": "9780929306407", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2007", + "publisher": "Silicon Press", + "type_condition": "BUY_NEW", + "price_display": "$89.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "2301", + "section": "14", + "instructor": "Sunghun Chung", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6153", + "section": "10", + "instructor": "Brook Fulton", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Clinical Interviewing (w/Access Code)", + "edition": "6th", + "author": "Sommers-Flanagan", + "isbn": "9781119215585", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$66.89", + "item_type": "print" + }, + { + "title": "Clinical Interviewing (w/Access Code)", + "edition": "6th", + "author": "Sommers-Flanagan", + "isbn": "9781119215585", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$119.50", + "item_type": "print" + }, + { + "title": "Clinical Interviewing (w/Access Code)", + "edition": "6th", + "author": "Sommers-Flanagan", + "isbn": "9781119215585", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$159.25", + "item_type": "print" + }, + { + "title": "Intentional Interviewing & Counseling", + "edition": "10th", + "author": "Ivey", + "isbn": "9780357622797", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intentional Interviewing & Counseling", + "edition": "10th", + "author": "Ivey", + "isbn": "9780357622797", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intentional Interviewing and Counseling: Facilitating Client Development in a Multicultural Society", + "edition": "10th", + "author": "Ivey", + "isbn": "9780357622889", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$44.49", + "item_type": "digital" + }, + { + "title": "Intentional Interviewing and Counseling: Facilitating Client Development in a Multicultural Society", + "edition": "10th", + "author": "Ivey", + "isbn": "9780357622889", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$60.99", + "item_type": "digital" + }, + { + "title": "Clinical Interviewing", + "edition": "6th", + "author": "Sommers-Flanagan", + "isbn": "9781119365082", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$64.00", + "item_type": "digital" + }, + { + "title": "Intentional Interviewing and Counseling: Facilitating Client Development in a Multicultural Society", + "edition": "10th", + "author": "Ivey", + "isbn": "9780357622889", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$77.49", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "8999", + "section": "15", + "instructor": "Emilia Entcheva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "2003", + "section": "11", + "instructor": "Miaochun Wei", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Transitions", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781337111089", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$98.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Transitions", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781337111089", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$73.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Transitions: Developing Chinese Fluency: Intermediate Chinese", + "edition": "1st", + "author": "Zhang", + "isbn": "9781337515986", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "Transitions: Developing Chinese Fluency: Intermediate Chinese", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781337515986", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$67.99", + "item_type": "digital" + }, + { + "title": "Transitions: Developing Chinese Fluency: Intermediate Chinese", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781337515986", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$86.49", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "1004", + "section": "10", + "instructor": "Scheherazade Rehman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3601", + "section": "14", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GREK", + "course_num": "1001", + "section": "10", + "instructor": "Rebecca Boyd", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Greek", + "edition": "2nd", + "author": "Shelmerdine", + "isbn": "9781585101849", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Greek", + "edition": "2nd", + "author": "Shelmerdine", + "isbn": "9781585101849", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$41.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ACCY", + "course_num": "6998", + "section": "10", + "instructor": "Robin Tarpley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2153", + "section": "21", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lab Notebook Spiral Bound 100 Pages (Copy Page Perforated)", + "edition": "N/A", + "author": "Barbakam", + "isbn": "9780978534424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "BME", + "course_num": "4990", + "section": "18", + "instructor": "Chung Hyuk Park", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "6270", + "section": "84", + "instructor": "Lisa Lipinski", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Twentieth-Century Art of Latin America", + "edition": "2nd", + "author": "Barnitz", + "isbn": "9781477308042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "University of Texas Press Warehouse c/o Chicago Distribution Center", + "type_condition": "RENTAL_NEW", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Twentieth-Century Art of Latin America", + "edition": "2nd", + "author": "Barnitz", + "isbn": "9781477308042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "University of Texas Press Warehouse c/o Chicago Distribution Center", + "type_condition": "BUY_NEW", + "price_display": "$55.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Twentieth-Century Art of Latin America", + "edition": "2nd", + "author": "Barnitz", + "isbn": "9781477308042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "University of Texas Press Warehouse c/o Chicago Distribution Center", + "type_condition": "RENTAL_USED", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Twentieth-Century Art of Latin America", + "edition": "2nd", + "author": "Barnitz", + "isbn": "9781477308042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "University of Texas Press Warehouse c/o Chicago Distribution Center", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "COMM", + "course_num": "1041", + "section": "10", + "instructor": "Nader Chaaban", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Interpersonal Communication: Relating to Others (RRPHE)", + "edition": "9th", + "author": "Beebe", + "isbn": "9780134877174", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "item_type": "print" + }, + { + "title": "Interpersonal Communication: Relating to Others (RRPHE)", + "edition": "9th", + "author": "Beebe", + "isbn": "9780134877174", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "item_type": "print" + }, + { + "title": "Pearson eText for Interpersonal Communication: Relating to Others -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "9th", + "author": "Beebe", + "isbn": "9780137527427", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Interpersonal Communication", + "edition": "9th", + "author": "Beebe", + "isbn": "9780134875828", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "Interpersonal Communication", + "edition": "9th", + "author": "Beebe", + "isbn": "9780134875781", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "FINA", + "course_num": "4201", + "section": "10", + "instructor": "Jeffrey Stoddard", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Real Estate Principles: Value Approach (RRMCG)", + "edition": "7th", + "author": "Ling", + "isbn": "9781264500185", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2024", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "BUY_USED", + "price_display": "$180.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Real Estate Principles: Value Approach (RRMCG)", + "edition": "7th", + "author": "Ling", + "isbn": "9781264500185", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2024", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "BUY_NEW", + "price_display": "$240.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Real Estate Principles: Value Approach (RRMCG)", + "edition": "7th", + "author": "Ling", + "isbn": "9781264500185", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2024", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Real Estate Principles: A Value Approach", + "edition": "7th", + "author": "Ling", + "isbn": "9781265776039", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$67.50", + "item_type": "digital" + }, + { + "title": "Real Estate Principles: A Value Approach", + "edition": "7th", + "author": "Ling", + "isbn": "9781265776039", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$84.50", + "item_type": "digital" + }, + { + "title": "Real Estate Principles: A Value Approach", + "edition": "7th", + "author": "Ling", + "isbn": "9781265776039", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$105.50", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "8998", + "section": "10", + "instructor": "Jeffrey Blomster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1001", + "section": "36", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3601", + "section": "11", + "instructor": "Marie Matta", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ASTR", + "course_num": "1001", + "section": "31", + "instructor": "Luis Correa Borbonet", + "term_name": "Fall 2023", + "texts": [ + { + "title": "ASTR 1001 Laboratory Manual", + "edition": "4th", + "author": "George Washington University", + "isbn": "9781600369186", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Academx Publishing Serv Inc", + "type_condition": "BUY_NEW", + "price_display": "$51.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "ARAB", + "course_num": "3001", + "section": "11", + "instructor": "Nashwa Taher", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_NEW", + "price_display": "$29.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Al-Kitaab Part Two with Website PB (Lingco)", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121914", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$139.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "FINA", + "course_num": "6274", + "section": "11", + "instructor": "William Handorf", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Financial Markets & Institutions (RRMCG)", + "edition": "7th", + "author": "Saunders", + "isbn": "9781259919718", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Financial Markets & Institutions (RRMCG)", + "edition": "7th", + "author": "Saunders", + "isbn": "9781259919718", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.00", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "APSC", + "course_num": "2113", + "section": "10", + "instructor": "Arzhang Zamani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "2411", + "section": "10", + "instructor": "Daniel DeWispelare", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Fanny Hill", + "edition": "N/A", + "author": "Cleland", + "isbn": "9780140432497", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1985", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fanny Hill", + "edition": "N/A", + "author": "Cleland", + "isbn": "9780140432497", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1985", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$9.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Journal of Plague Year", + "edition": "N/A", + "author": "Defoe", + "isbn": "9780140437850", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$8.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Journal of Plague Year", + "edition": "N/A", + "author": "Defoe", + "isbn": "9780140437850", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$11.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Journal of Plague Year", + "edition": "N/A", + "author": "Defoe", + "isbn": "9780140437850", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$8.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Housing Lark", + "edition": "N/A", + "author": "Selvon", + "isbn": "9780143133964", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Penguin Classics", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Housing Lark", + "edition": "N/A", + "author": "Selvon", + "isbn": "9780143133964", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Penguin Classics", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Never Let Me Go", + "edition": "N/A", + "author": "Ishiguro", + "isbn": "9781400078776", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Never Let Me Go", + "edition": "N/A", + "author": "Ishiguro", + "isbn": "9781400078776", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$7.74", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Never Let Me Go", + "edition": "N/A", + "author": "Ishiguro", + "isbn": "9781400078776", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Our Mutual Friend", + "edition": "N/A", + "author": "Dickens", + "isbn": "9780140434972", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1997", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Our Mutual Friend", + "edition": "N/A", + "author": "Dickens", + "isbn": "9780140434972", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1997", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$13.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Our Mutual Friend", + "edition": "N/A", + "author": "Dickens", + "isbn": "9780140434972", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1997", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Confessions of an English Opium-Eater", + "edition": "N/A", + "author": "De Quincey", + "isbn": "9781551114354", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Broadview Press", + "type_condition": "BUY_NEW", + "price_display": "$17.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Confessions of an English Opium-Eater", + "edition": "N/A", + "author": "De Quincey", + "isbn": "9781551114354", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Broadview Press", + "type_condition": "BUY_USED", + "price_display": "$13.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mrs. Dalloway", + "edition": "N/A", + "author": "Woolf", + "isbn": "9780143136132", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Penguin Classics", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mrs. Dalloway", + "edition": "N/A", + "author": "Woolf", + "isbn": "9780143136132", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Penguin Classics", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Confessions of an English Opium-Eater", + "edition": "N/A", + "author": "Quincey", + "isbn": "9781460400753", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Broadview Press", + "type_condition": "RENTAL_NEW", + "price_display": "$13.39", + "item_type": "digital" + }, + { + "title": "Confessions of an English Opium-Eater", + "edition": "N/A", + "author": "Quincey", + "isbn": "9781460400753", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Broadview Press", + "type_condition": "BUY_NEW", + "price_display": "$15.75", + "item_type": "digital" + } + ] + }, + { + "department": "ACCY", + "course_num": "3601", + "section": "10", + "instructor": "Leo Moersen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6301", + "section": "10", + "instructor": "David Silverman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "I've Been Here All the While: Black Freedom on Native Land", + "edition": "N/A", + "author": "Roberts", + "isbn": "9780812253030", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "University of Pennsylvania Press c/o IPS Customer Service", + "type_condition": "BUY_NEW", + "price_display": "$34.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "I've Been Here All the While: Black Freedom on Native Land", + "edition": "N/A", + "author": "Roberts", + "isbn": "9780812253030", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "University of Pennsylvania Press c/o IPS Customer Service", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "White Man's Club", + "edition": "N/A", + "author": "Fear-Segal", + "isbn": "9780803227880", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "University of Nebraska Press", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "White Man's Club", + "edition": "N/A", + "author": "Fear-Segal", + "isbn": "9780803227880", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "University of Nebraska Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Indians & English: Facing Off in Early America", + "edition": "N/A", + "author": "Kupperman", + "isbn": "9780801482823", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Cornell University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$17.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Indians & English: Facing Off in Early America", + "edition": "N/A", + "author": "Kupperman", + "isbn": "9780801482823", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Cornell University Press", + "type_condition": "BUY_NEW", + "price_display": "$23.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Indians & English: Facing Off in Early America", + "edition": "N/A", + "author": "Kupperman", + "isbn": "9780801482823", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Cornell University Press", + "type_condition": "BUY_USED", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Indians & English: Facing Off in Early America", + "edition": "N/A", + "author": "Kupperman", + "isbn": "9780801482823", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Cornell University Press", + "type_condition": "RENTAL_USED", + "price_display": "$9.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Heartbeat of Wounded Knee", + "edition": "N/A", + "author": "Treuer", + "isbn": "9780399573194", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Riverhead Books", + "type_condition": "RENTAL_NEW", + "price_display": "$13.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Heartbeat of Wounded Knee", + "edition": "N/A", + "author": "Treuer", + "isbn": "9780399573194", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Riverhead Books", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Heartbeat of Wounded Knee", + "edition": "N/A", + "author": "Treuer", + "isbn": "9780399573194", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Riverhead Books", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Unworthy Republic", + "edition": "N/A", + "author": "Saunt", + "isbn": "9780393541564", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Unworthy Republic", + "edition": "N/A", + "author": "Saunt", + "isbn": "9780393541564", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Genocide", + "edition": "N/A", + "author": "Madley", + "isbn": "9780300230697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Yale University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Genocide", + "edition": "N/A", + "author": "Madley", + "isbn": "9780300230697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Genocide", + "edition": "N/A", + "author": "Madley", + "isbn": "9780300230697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Yale University Press", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Genocide", + "edition": "N/A", + "author": "Madley", + "isbn": "9780300230697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Yale University Press", + "type_condition": "RENTAL_USED", + "price_display": "$8.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Name of War: King Philip's War/Origins of Amer Identity", + "edition": "N/A", + "author": "Lepore", + "isbn": "9780375702624", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Name of War: King Philip's War/Origins of Amer Identity", + "edition": "N/A", + "author": "Lepore", + "isbn": "9780375702624", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "HEBR", + "course_num": "2001", + "section": "10", + "instructor": "Liora Gurvitz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Brandeis Modern Hebrew", + "edition": "N/A", + "author": "Ringvald", + "isbn": "9781611689181", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Chicago Distribution Center", + "type_condition": "BUY_USED", + "price_display": "$63.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brandeis Modern Hebrew", + "edition": "N/A", + "author": "Ringvald", + "isbn": "9781611689181", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Chicago Distribution Center", + "type_condition": "RENTAL_USED", + "price_display": "$35.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brandeis Modern Hebrew", + "edition": "N/A", + "author": "Ringvald", + "isbn": "9781611689181", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Chicago Distribution Center", + "type_condition": "RENTAL_NEW", + "price_display": "$63.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brandeis Modern Hebrew", + "edition": "N/A", + "author": "Ringvald", + "isbn": "9781611689181", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Chicago Distribution Center", + "type_condition": "BUY_NEW", + "price_display": "$85.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brandeis Modern Hebrew", + "edition": "N/A", + "author": "Ringvald", + "isbn": "9781684580552", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$85.00", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "30", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "ENGL", + "course_num": "2460", + "section": "10", + "instructor": "Virginia Hartman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Micro Fiction", + "edition": "N/A", + "author": "Stern", + "isbn": "9780393314328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$12.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Micro Fiction", + "edition": "N/A", + "author": "Stern", + "isbn": "9780393314328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Micro Fiction", + "edition": "N/A", + "author": "Stern", + "isbn": "9780393314328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$9.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing Fiction", + "edition": "10th", + "author": "Burroway", + "isbn": "9780226616698", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing Fiction", + "edition": "10th", + "author": "Burroway", + "isbn": "9780226616698", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of Chicago Press", + "type_condition": "BUY_USED", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "What about the Baby?", + "edition": "N/A", + "author": "McDermott", + "isbn": "9781250849229", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Picador", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "What about the Baby?", + "edition": "N/A", + "author": "McDermott", + "isbn": "9781250849229", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Picador", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing Fiction, Tenth Edition", + "edition": "N/A", + "author": "Burroway", + "isbn": "9780226616728", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$22.50", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "23", + "instructor": "Kevin O'Connell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "1210", + "section": "13", + "instructor": "Lisa Page", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Fiction Writer's Workshop", + "edition": "N/A", + "author": "Novakovich", + "isbn": "9781582975368", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "F&W Media, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fiction Writer's Workshop", + "edition": "N/A", + "author": "Novakovich", + "isbn": "9781582975368", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "F&W Media, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Making of a Poem", + "edition": "N/A", + "author": "Strand", + "isbn": "9780393321784", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$14.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Making of a Poem", + "edition": "N/A", + "author": "Strand", + "isbn": "9780393321784", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Making of a Poem", + "edition": "N/A", + "author": "Strand", + "isbn": "9780393321784", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$8.34", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Making of a Poem", + "edition": "N/A", + "author": "Strand", + "isbn": "9780393321784", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "10", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Matteo Ricci & the Catholic Mission to China (1583-1610)", + "edition": "N/A", + "author": "Hsia", + "isbn": "9781624664328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Matteo Ricci & the Catholic Mission to China (1583-1610)", + "edition": "N/A", + "author": "Hsia", + "isbn": "9781624664328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Matteo Ricci & the Catholic Mission to China (1583-1610)", + "edition": "N/A", + "author": "Hsia", + "isbn": "9781624664328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$11.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$16.30", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$30.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$40.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$26.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Great Hanoi Rat Hunt", + "edition": "1st", + "author": "Vann", + "isbn": "9780190602703", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "RENTAL_NEW", + "price_display": "$14.99", + "item_type": "digital" + }, + { + "title": "Matteo Ricci and the Catholic Mission to China, 15831610", + "edition": "N/A", + "author": "Hsia", + "isbn": "9781624664342", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.50", + "item_type": "digital" + }, + { + "title": "The Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602703", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "RENTAL_NEW", + "price_display": "$17.30", + "item_type": "digital" + }, + { + "title": "The Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602703", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "BUY_NEW", + "price_display": "$23.06", + "item_type": "digital" + } + ] + }, + { + "department": "ARAB", + "course_num": "1001", + "section": "14", + "instructor": "Cory Jorgensen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Al-Kitaab Part One with Website PB (Lingco): A Textbook for Beginning Arabic", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121877", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$163.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_NEW", + "price_display": "$29.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Alif Baa with Website PB (Lingco)", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121815", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$116.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "22", + "instructor": "Kevin O'Connell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EALL", + "course_num": "3881", + "section": "80", + "instructor": "Xiaofei Kang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Gendering Chinese Religion", + "edition": "N/A", + "author": "Jia", + "isbn": "9781438453088", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "State University of New York Press", + "type_condition": "BUY_NEW", + "price_display": "$34.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gendering Chinese Religion", + "edition": "N/A", + "author": "Jia", + "isbn": "9781438453088", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "State University of New York Press", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gendering Chinese Religion", + "edition": "N/A", + "author": "Jia", + "isbn": "9781438453088", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "State University of New York Press", + "type_condition": "RENTAL_NEW", + "price_display": "$26.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gendering Chinese Religion", + "edition": "N/A", + "author": "Jia", + "isbn": "9781438453095", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Suny Press", + "type_condition": "BUY_NEW", + "price_display": "$34.50", + "item_type": "digital" + }, + { + "title": "Women, Gender, and Sexuality in China", + "edition": "N/A", + "author": "Yao", + "isbn": "9781317237501", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$46.95", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "M30", + "instructor": "Carly Jordan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6371", + "section": "10", + "instructor": "Yas Nakib", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Public Policymaking", + "edition": "9th", + "author": "Anderson", + "isbn": "9780357659977", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$190.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Public Policymaking", + "edition": "9th", + "author": "Anderson", + "isbn": "9780357659977", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$253.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Public Policymaking", + "edition": "9th", + "author": "Anderson", + "isbn": "9780357659991", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$44.49", + "item_type": "digital" + }, + { + "title": "Public Policymaking", + "edition": "9th", + "author": "Anderson", + "isbn": "9780357659991", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$60.99", + "item_type": "digital" + }, + { + "title": "Public Policymaking", + "edition": "9th", + "author": "Anderson", + "isbn": "9780357659991", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$77.49", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "3504", + "section": "10", + "instructor": "Barbara Miller", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3001", + "section": "18", + "instructor": "Shannon Moran Buckhout", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2151", + "section": "13", + "instructor": "Gerard Kambou", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Economic Development", + "edition": "13th", + "author": "Todaro", + "isbn": "9781292291154", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$169.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Economic Development", + "edition": "13th", + "author": "Todaro", + "isbn": "9781292291154", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$226.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Economic Development", + "edition": "13th", + "author": "Todaro", + "isbn": "9781292291154", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$95.03", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Economic Development", + "edition": "13th", + "author": "Smith", + "isbn": "9781292291192", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$72.25", + "item_type": "digital" + } + ] + }, + { + "department": "BIOC", + "course_num": "6298", + "section": "10", + "instructor": "Manjari Dimri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ASTR", + "course_num": "1001", + "section": "30", + "instructor": "Luis Correa Borbonet", + "term_name": "Fall 2023", + "texts": [ + { + "title": "ASTR 1001 Laboratory Manual", + "edition": "4th", + "author": "George Washington University", + "isbn": "9781600369186", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Academx Publishing Serv Inc", + "type_condition": "BUY_NEW", + "price_display": "$51.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "1100", + "section": "10", + "instructor": "Elisabeth Anker", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Orgies of Feeling", + "edition": "N/A", + "author": "Anker", + "isbn": "9780822356974", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Duke University Press", + "type_condition": "BUY_NEW", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Orgies of Feeling", + "edition": "N/A", + "author": "Anker", + "isbn": "9780822356974", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Duke University Press", + "type_condition": "BUY_USED", + "price_display": "$25.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Democracy in America", + "edition": "N/A", + "author": "De Tocqueville", + "isbn": "9780553214642", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$7.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Democracy in America", + "edition": "N/A", + "author": "De Tocqueville", + "isbn": "9780553214642", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$6.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Not Too Late: Changing the Climate Story from Despair to Possibility", + "edition": "N/A", + "author": "Solnit", + "isbn": "9781642598971", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Haymarket", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Not Too Late: Changing the Climate Story from Despair to Possibility", + "edition": "N/A", + "author": "Solnit", + "isbn": "9781642598971", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Haymarket", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "3001", + "section": "13", + "instructor": "James McClellan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EAP", + "course_num": "6111", + "section": "13", + "instructor": "Natalia Dolgova", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Academic Writing for Graduate Students", + "edition": "3rd", + "author": "Swales", + "isbn": "9780472034758", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "University of Michigan Press", + "type_condition": "RENTAL_USED", + "price_display": "$10.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Academic Writing for Graduate Students", + "edition": "3rd", + "author": "Swales", + "isbn": "9780472034758", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "University of Michigan Press", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Academic Writing for Graduate Students", + "edition": "3rd", + "author": "Swales", + "isbn": "9780472034758", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "University of Michigan Press", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BME", + "course_num": "6050", + "section": "20", + "instructor": "Luyao Lu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "32", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2181", + "section": "10", + "instructor": "Xiaoyang Chen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "International Trade", + "edition": "5th", + "author": "Feenstra", + "isbn": "9781319218454", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$311.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Trade", + "edition": "5th", + "author": "Feenstra", + "isbn": "9781319218454", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$234.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "46", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "EXNS", + "course_num": "1199", + "section": "10", + "instructor": "Todd Miller", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Essen of Strength Training & Conditioning (w/HKPropel Access)", + "edition": "4th", + "author": "Haff", + "isbn": "9781718210868", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Human Kinetics Publishers", + "type_condition": "BUY_USED", + "price_display": "$95.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Essen of Strength Training & Conditioning (w/HKPropel Access)", + "edition": "4th", + "author": "Haff", + "isbn": "9781718210868", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Human Kinetics Publishers", + "type_condition": "BUY_NEW", + "price_display": "$127.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Essen of Strength Training & Conditioning (w/HKPropel Access)", + "edition": "4th", + "author": "Haff", + "isbn": "9781718210868", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Human Kinetics Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$53.34", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Essentials of Strength Training and Conditioning", + "edition": "4th", + "author": "Haff", + "isbn": "9781718210875", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$53.30", + "item_type": "digital" + }, + { + "title": "Essentials of Strength Training and Conditioning", + "edition": "4th", + "author": "Haff", + "isbn": "9781718210875", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$65.60", + "item_type": "digital" + }, + { + "title": "Essentials of Strength Training and Conditioning", + "edition": "4th", + "author": "Human Kinetics", + "isbn": "9781718210875", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$73.80", + "item_type": "digital" + }, + { + "title": "Essentials of Strength Training and Conditioning", + "edition": "4th", + "author": "Human Kinetics", + "isbn": "9781718210875", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Human Kinetics Publishers", + "type_condition": "BUY_NEW", + "price_display": "$82.00", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "2153", + "section": "18", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lab Notebook Spiral Bound 100 Pages (Copy Page Perforated)", + "edition": "N/A", + "author": "Barbakam", + "isbn": "9780978534424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "BIOC", + "course_num": "6228", + "section": "10", + "instructor": "Manjari Dimri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "31", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "1001", + "section": "11", + "instructor": "Phyllis Zhang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Introductory Chinese Simplified (V1: Literacy Workbook)", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781285456799", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$54.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introductory Chinese Simplified (V1: Literacy Workbook)", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781285456799", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Developing Chinese Fluency: Intro Chinese Simplified (V1)", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781133309932", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$77.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Developing Chinese Fluency: Intro Chinese Simplified (V1)", + "edition": "N/A", + "author": "Zhang", + "isbn": "9781133309932", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$58.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "HEBR", + "course_num": "1001", + "section": "10", + "instructor": "Liora Gurvitz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Brandeis Modern Hebrew", + "edition": "N/A", + "author": "Ringvald", + "isbn": "9781611689181", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Chicago Distribution Center", + "type_condition": "RENTAL_USED", + "price_display": "$35.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brandeis Modern Hebrew", + "edition": "N/A", + "author": "Ringvald", + "isbn": "9781611689181", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Chicago Distribution Center", + "type_condition": "BUY_USED", + "price_display": "$63.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brandeis Modern Hebrew", + "edition": "N/A", + "author": "Ringvald", + "isbn": "9781611689181", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Chicago Distribution Center", + "type_condition": "BUY_NEW", + "price_display": "$85.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brandeis Modern Hebrew", + "edition": "N/A", + "author": "Ringvald", + "isbn": "9781611689181", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Chicago Distribution Center", + "type_condition": "RENTAL_NEW", + "price_display": "$63.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brandeis Modern Hebrew", + "edition": "N/A", + "author": "Ringvald", + "isbn": "9781684580552", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$85.00", + "item_type": "digital" + } + ] + }, + { + "department": "EALL", + "course_num": "6811", + "section": "80", + "instructor": "Xiaofei Kang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Confucianism", + "edition": "N/A", + "author": "Littlejohn", + "isbn": "9781848851740", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "I. B. Tauris & Company, Limited", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Confucianism", + "edition": "N/A", + "author": "Littlejohn", + "isbn": "9781848851740", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "I. B. Tauris & Company, Limited", + "type_condition": "BUY_NEW", + "price_display": "$26.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9780872208261", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9780872208261", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9780872208261", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9780872208261", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$6.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9781624660085", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$12.50", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "2301", + "section": "11", + "instructor": "Piotr Zielinski", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Information Systems (Loose Pgs)", + "edition": "8th", + "author": "Rainer", + "isbn": "9781119607564", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$163.75", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Intro to Information Systems (Loose Pgs)", + "edition": "8th", + "author": "Rainer", + "isbn": "9781119607564", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$123.00", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Introduction to Information Systems", + "edition": "8th", + "author": "Prince", + "isbn": "9781119594635", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$50.19", + "item_type": "digital" + }, + { + "title": "Introduction to Information Systems", + "edition": "8th", + "author": "Prince", + "isbn": "9781119594635", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$119.50", + "item_type": "digital" + } + ] + }, + { + "department": "ARAB", + "course_num": "6378", + "section": "83", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "44", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "1003", + "section": "11", + "instructor": "Suzanne Vaughan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "3131W", + "section": "80", + "instructor": "Jodi Kanter", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Theory/Theatre", + "edition": "3rd", + "author": "Fortier", + "isbn": "9781138902046", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$44.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Theory/Theatre", + "edition": "3rd", + "author": "Fortier", + "isbn": "9781138902046", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$58.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Theory/Theatre", + "edition": "3rd", + "author": "Fortier", + "isbn": "9781138902046", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Routledge", + "type_condition": "RENTAL_USED", + "price_display": "$23.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Theory/Theatre", + "edition": "3rd", + "author": "Fortier", + "isbn": "9781138902046", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Routledge", + "type_condition": "RENTAL_NEW", + "price_display": "$44.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Performance: a Critical Introduction", + "edition": "3rd", + "author": "Carlson", + "isbn": "9781138281684", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$42.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Performance: a Critical Introduction", + "edition": "3rd", + "author": "Carlson", + "isbn": "9781138281684", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$57.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Performance: a Critical Introduction", + "edition": "3rd", + "author": "Carlson", + "isbn": "9781138281684", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "RENTAL_NEW", + "price_display": "$45.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Performance: A Critical Introduction", + "edition": "3rd", + "author": "Carlson", + "isbn": "9781351983822", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$48.95", + "item_type": "digital" + }, + { + "title": "Theory/Theatre", + "edition": "3rd", + "author": "Fortier", + "isbn": "9781317450405", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$58.95", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "10", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Basic Math for Prin of Economics: A Modular Approach (ebook access code)", + "edition": "N/A", + "author": "Foster", + "isbn": "9781773308791", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Top Hat Monocle", + "type_condition": "BUY_NEW", + "price_display": "$63.00", + "item_type": "print" + }, + { + "title": "Top Hat Classroom-One Semester", + "edition": "N/A", + "author": "Hat", + "isbn": "9780986615108", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Top Hat Monocle", + "type_condition": "RENTAL_NEW", + "price_display": "$37.75", + "item_type": "digital" + } + ] + }, + { + "department": "ENGL", + "course_num": "3520", + "section": "10", + "instructor": "Ormond Seavey", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Essays & Lectures", + "edition": "N/A", + "author": "Emerson", + "isbn": "9780940450158", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1983", + "publisher": "Library of America, The", + "type_condition": "RENTAL_USED", + "price_display": "$16.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Essays & Lectures", + "edition": "N/A", + "author": "Emerson", + "isbn": "9780940450158", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1983", + "publisher": "Library of America, The", + "type_condition": "BUY_USED", + "price_display": "$30.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Essays & Lectures", + "edition": "N/A", + "author": "Emerson", + "isbn": "9780940450158", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1983", + "publisher": "Library of America, The", + "type_condition": "BUY_NEW", + "price_display": "$40.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Walden, Civil Disobedience & Other Writings", + "edition": "3rd", + "author": "Thoreau", + "isbn": "9780393930900", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$18.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Walden, Civil Disobedience & Other Writings", + "edition": "3rd", + "author": "Thoreau", + "isbn": "9780393930900", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$24.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Incidents in the Life of a Slave Girl", + "edition": "2nd", + "author": "Jacobs", + "isbn": "9780393614565", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$11.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Incidents in the Life of a Slave Girl", + "edition": "2nd", + "author": "Jacobs", + "isbn": "9780393614565", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$21.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Incidents in the Life of a Slave Girl", + "edition": "2nd", + "author": "Jacobs", + "isbn": "9780393614565", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$28.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Moby-Dick", + "edition": "3rd", + "author": "Melville", + "isbn": "9780393285000", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Moby-Dick", + "edition": "3rd", + "author": "Melville", + "isbn": "9780393285000", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Moby-Dick", + "edition": "3rd", + "author": "Melville", + "isbn": "9780393285000", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_NEW", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Moby-Dick", + "edition": "3rd", + "author": "Melville", + "isbn": "9780393285000", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leaves of Grass & Other Writings", + "edition": "N/A", + "author": "Whitman", + "isbn": "9780393974966", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$14.08", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leaves of Grass & Other Writings", + "edition": "N/A", + "author": "Whitman", + "isbn": "9780393974966", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$24.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leaves of Grass & Other Writings", + "edition": "N/A", + "author": "Whitman", + "isbn": "9780393974966", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$24.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leaves of Grass & Other Writings", + "edition": "N/A", + "author": "Whitman", + "isbn": "9780393974966", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$32.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Final Harvest: Emily Dickinson's Poems (Intro Johnson)", + "edition": "N/A", + "author": "Dickinson", + "isbn": "9780316184151", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1961", + "publisher": "Little Brown & Company", + "type_condition": "RENTAL_USED", + "price_display": "$7.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Final Harvest: Emily Dickinson's Poems (Intro Johnson)", + "edition": "N/A", + "author": "Dickinson", + "isbn": "9780316184151", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1961", + "publisher": "Little Brown & Company", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Final Harvest: Emily Dickinson's Poems (Intro Johnson)", + "edition": "N/A", + "author": "Dickinson", + "isbn": "9780316184151", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1961", + "publisher": "Little Brown & Company", + "type_condition": "BUY_NEW", + "price_display": "$17.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Selected Writings", + "edition": "N/A", + "author": "Poe", + "isbn": "9780393972856", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$11.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Selected Writings", + "edition": "N/A", + "author": "Poe", + "isbn": "9780393972856", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$21.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Selected Writings", + "edition": "N/A", + "author": "Poe", + "isbn": "9780393972856", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$21.38", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Selected Writings", + "edition": "N/A", + "author": "Poe", + "isbn": "9780393972856", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$28.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Scarlet Letter & Other Writings", + "edition": "N/A", + "author": "Hawthorne", + "isbn": "9780393979534", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$9.46", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Scarlet Letter & Other Writings", + "edition": "N/A", + "author": "Hawthorne", + "isbn": "9780393979534", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$16.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Scarlet Letter & Other Writings", + "edition": "N/A", + "author": "Hawthorne", + "isbn": "9780393979534", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$21.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Moby-Dick (Third Edition) (Norton Critical Editions)", + "edition": "3rd", + "author": "Melville", + "isbn": "9780393288582", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$12.99", + "item_type": "digital" + } + ] + }, + { + "department": "ACA", + "course_num": "6209", + "section": "10", + "instructor": "Alexander Wild", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ARAB", + "course_num": "3001", + "section": "10", + "instructor": "Ebtissam Oraby", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Al-Kitaab Part Two with Website PB (Lingco)", + "edition": "3rd", + "author": "Brustad", + "isbn": "9781647121914", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$139.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arabic-English Dictionary: The Hans Wehr Dictionary of Modern Written Arabic (V1)", + "edition": "4th", + "author": "Wehr", + "isbn": "9781684119189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Ingram Book Company", + "type_condition": "BUY_NEW", + "price_display": "$29.99", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CAH", + "course_num": "6236", + "section": "80", + "instructor": "Christopher Wilson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Reclaiming Female Agency", + "edition": "N/A", + "author": "Broude", + "isbn": "9780520242524", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reclaiming Female Agency", + "edition": "N/A", + "author": "Broude", + "isbn": "9780520242524", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$54.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reclaiming Female Agency", + "edition": "N/A", + "author": "Broude", + "isbn": "9780520242524", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "University of California Press", + "type_condition": "RENTAL_USED", + "price_display": "$21.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reclaiming Female Agency", + "edition": "N/A", + "author": "Broude", + "isbn": "9780520242524", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "University of California Press", + "type_condition": "RENTAL_NEW", + "price_display": "$41.21", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "6999", + "section": "10", + "instructor": "Ilana Feldman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACA", + "course_num": "6595", + "section": "10", + "instructor": "Alexander Wild", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "1004", + "section": "33", + "instructor": "Scheherazade Rehman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6163", + "section": "10", + "instructor": "Almeta McCannon", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Counseling the Culturally Diverse", + "edition": "9th", + "author": "Sue", + "isbn": "9781119861904", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$153.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Counseling the Culturally Diverse", + "edition": "9th", + "author": "Sue", + "isbn": "9781119861904", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$114.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Counseling the Culturally Diverse", + "edition": "9th", + "author": "Sue", + "isbn": "9781119861904", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$114.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Counseling the Culturally Diverse", + "edition": "9th", + "author": "Sue", + "isbn": "9781119861904", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$64.26", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eliminating Race-Based Mental Health Disparities", + "edition": "N/A", + "author": "Williams", + "isbn": "9781684031962", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "Context Press", + "type_condition": "BUY_NEW", + "price_display": "$89.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eliminating Race-Based Mental Health Disparities", + "edition": "N/A", + "author": "Williams", + "isbn": "9781684031962", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "Context Press", + "type_condition": "BUY_USED", + "price_display": "$67.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Race, Class, & Gender in the United States", + "edition": "11th", + "author": "Rothenberg", + "isbn": "9781319143657", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$150.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Race, Class, & Gender in the United States", + "edition": "11th", + "author": "Rothenberg", + "isbn": "9781319143657", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$112.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Race, Class, & Gender in the United States", + "edition": "11th", + "author": "Rothenberg", + "isbn": "9781319143657", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$63.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Race, Class, and Gender in the United States", + "edition": "11th", + "author": "Rothenberg", + "isbn": "9781319258184", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$50.99", + "item_type": "digital" + }, + { + "title": "Counseling the Culturally Diverse", + "edition": "9th", + "author": "Sue", + "isbn": "9781119861911", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$101.00", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "49", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "EAP", + "course_num": "6111", + "section": "15", + "instructor": "Patricia DiCerbo", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Academic Writing for Graduate Students", + "edition": "3rd", + "author": "Swales", + "isbn": "9780472034758", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "University of Michigan Press", + "type_condition": "RENTAL_USED", + "price_display": "$10.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Academic Writing for Graduate Students", + "edition": "3rd", + "author": "Swales", + "isbn": "9780472034758", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "University of Michigan Press", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Academic Writing for Graduate Students", + "edition": "3rd", + "author": "Swales", + "isbn": "9780472034758", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "University of Michigan Press", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANAT", + "course_num": "2150", + "section": "10", + "instructor": "Ahdeah Pajoohesh-Ganji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "8998", + "section": "12", + "instructor": "Jeffrey Blomster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "45", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "3101", + "section": "11", + "instructor": "Scott Lancaster", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intermediate Accounting (Loose Pgs)", + "edition": "18th", + "author": "Kieso", + "isbn": "9781119790976", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$163.75", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Intermediate Accounting (Loose Pgs)", + "edition": "18th", + "author": "Kieso", + "isbn": "9781119790976", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$123.00", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Intermediate Accounting, Enhanced eText", + "edition": "18th", + "author": "Kieso", + "isbn": "9781119778899", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$50.19", + "item_type": "digital" + }, + { + "title": "Intermediate Accounting, Enhanced eText", + "edition": "18th", + "author": "Kieso", + "isbn": "9781119778899", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$119.50", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "11", + "instructor": "Sarah LaRosa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "6106", + "section": "11", + "instructor": "Christopher Jones", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "6270", + "section": "80", + "instructor": "Tanya Wetenhall", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Seeing Through Clothes", + "edition": "N/A", + "author": "Hollander", + "isbn": "9780520082311", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1978", + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$36.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Seeing Through Clothes", + "edition": "N/A", + "author": "Hollander", + "isbn": "9780520082311", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1978", + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$27.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ways of Seeing", + "edition": "N/A", + "author": "Berger", + "isbn": "9780140135152", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1972", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ways of Seeing", + "edition": "N/A", + "author": "Berger", + "isbn": "9780140135152", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1972", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "3001", + "section": "21", + "instructor": "Brittany Johnson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1002", + "section": "40", + "instructor": "Roy Grinker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "6998", + "section": "15", + "instructor": "Emilia Entcheva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "30", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "4995", + "section": "10", + "instructor": "Robin Tarpley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "2454", + "section": "10", + "instructor": "John Lill", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Ecology The Economy of Nature", + "edition": "8th", + "author": "Relyea", + "isbn": "9781319282684", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$201.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ecology The Economy of Nature", + "edition": "8th", + "author": "Relyea", + "isbn": "9781319282684", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_USED", + "price_display": "$84.74", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ecology The Economy of Nature", + "edition": "8th", + "author": "Relyea", + "isbn": "9781319282684", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_USED", + "price_display": "$151.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ecology The Economy of Nature", + "edition": "8th", + "author": "Relyea", + "isbn": "9781319282684", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_NEW", + "price_display": "$131.14", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "HSSJ", + "course_num": "3110W", + "section": "10", + "instructor": "Gretchen Van der Veer", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Nonprofit Management", + "edition": "5th", + "author": "Worth", + "isbn": "9781506396866", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_USED", + "price_display": "$93.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Nonprofit Management", + "edition": "5th", + "author": "Worth", + "isbn": "9781506396866", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "CQ Press c/o SAGE", + "type_condition": "RENTAL_USED", + "price_display": "$52.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Nonprofit Management", + "edition": "5th", + "author": "Worth", + "isbn": "9781506396866", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_NEW", + "price_display": "$125.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Forces for Good", + "edition": "2nd", + "author": "Crutchfield", + "isbn": "9781118118801", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Jossey-Bass, Incorporated Publishers", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Forces for Good", + "edition": "2nd", + "author": "Crutchfield", + "isbn": "9781118118801", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Jossey-Bass, Incorporated Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$28.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Forces for Good", + "edition": "2nd", + "author": "Crutchfield", + "isbn": "9781118118801", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Jossey-Bass, Incorporated Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$14.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Forces for Good", + "edition": "2nd", + "author": "Crutchfield", + "isbn": "9781118118801", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Jossey-Bass, Incorporated Publishers", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Complete Book Of Grant Writing", + "edition": "2nd", + "author": "Smith", + "isbn": "9781402267291", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Sourcebooks, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Book Of Grant Writing", + "edition": "2nd", + "author": "Smith", + "isbn": "9781402267291", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Sourcebooks, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$18.39", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Book Of Grant Writing", + "edition": "2nd", + "author": "Smith", + "isbn": "9781402267291", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Sourcebooks, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$22.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Forces for Good", + "edition": "2nd", + "author": "Crutchfield", + "isbn": "9781118237939", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$21.00", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "1004", + "section": "32", + "instructor": "Scheherazade Rehman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1001", + "section": "43", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "2001", + "section": "11", + "instructor": "Thomas Choate", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "6591", + "section": "10", + "instructor": "Leniqueca Welcome", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "33", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6206", + "section": "10", + "instructor": "Leah Masselink", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Biostatistics for Public Health", + "edition": "N/A", + "author": "Sullivan", + "isbn": "9781284194265", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$29.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Biostatistics for Public Health", + "edition": "N/A", + "author": "Sullivan", + "isbn": "9781284194265", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$38.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Biostatistics for Population Health: A Primer", + "edition": "N/A", + "author": "Sullivan", + "isbn": "9781284194272", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$26.62", + "item_type": "digital" + } + ] + }, + { + "department": "GEOL", + "course_num": "1005", + "section": "10", + "instructor": "Peter Nassar", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Loose Leaf for Environmental Geology", + "edition": "12th", + "author": "Montgomery", + "isbn": "9781266715969", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_USED", + "price_display": "$88.50", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Loose Leaf for Environmental Geology", + "edition": "12th", + "author": "Montgomery", + "isbn": "9781266715969", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$117.75", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Environmental Geology (RRMCG)", + "edition": "12th", + "author": "Montgomery", + "isbn": "9781264094721", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "BUY_USED", + "price_display": "$128.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Environmental Geology (RRMCG)", + "edition": "12th", + "author": "Montgomery", + "isbn": "9781264094721", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$50.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Environmental Geology (RRMCG)", + "edition": "12th", + "author": "Montgomery", + "isbn": "9781264094721", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "BUY_NEW", + "price_display": "$171.43", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Environmental Geology", + "edition": "12th", + "author": "Montgomery", + "isbn": "9781266716768", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$57.25", + "item_type": "digital" + }, + { + "title": "Environmental Geology", + "edition": "12th", + "author": "Montgomery", + "isbn": "9781266716768", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$74.25", + "item_type": "digital" + }, + { + "title": "Environmental Geology", + "edition": "12th", + "author": "Montgomery", + "isbn": "9781266716768", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$82.75", + "item_type": "digital" + } + ] + }, + { + "department": "HONR", + "course_num": "2053W", + "section": "81", + "instructor": "Maria Frawley", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Emma", + "edition": "2nd", + "author": "Austen", + "isbn": "9780198837756", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$6.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Emma", + "edition": "2nd", + "author": "Austen", + "isbn": "9780198837756", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$5.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sense & Sensibility", + "edition": "3rd", + "author": "Austen", + "isbn": "9780198793359", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$6.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sense & Sensibility", + "edition": "3rd", + "author": "Austen", + "isbn": "9780198793359", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$5.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pride & Prejudice", + "edition": "3rd", + "author": "Austen", + "isbn": "9780198826736", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$5.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pride & Prejudice", + "edition": "3rd", + "author": "Austen", + "isbn": "9780198826736", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$4.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mansfield Park", + "edition": "N/A", + "author": "Austen", + "isbn": "9780199535538", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$7.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mansfield Park", + "edition": "N/A", + "author": "Austen", + "isbn": "9780199535538", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$6.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Northanger Abbey/Lady Susan/Watsons/Sanditon", + "edition": "2nd", + "author": "Austen", + "isbn": "9780199535545", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$6.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Northanger Abbey/Lady Susan/Watsons/Sanditon", + "edition": "2nd", + "author": "Austen", + "isbn": "9780199535545", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$5.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Persuasion", + "edition": "2nd", + "author": "Austen", + "isbn": "9780199535552", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$5.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Persuasion", + "edition": "2nd", + "author": "Austen", + "isbn": "9780199535552", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$4.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Emma", + "edition": "5th", + "author": "Austen", + "isbn": "9780192574824", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$2.59", + "item_type": "digital" + }, + { + "title": "Pride and Prejudice", + "edition": "3rd", + "author": "Austen", + "isbn": "9780192561428", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$2.59", + "item_type": "digital" + }, + { + "title": "Persuasion", + "edition": "N/A", + "author": "Austen", + "isbn": "9780191624711", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$2.59", + "item_type": "digital" + }, + { + "title": "Northanger Abbey, Lady Susan, The Watsons, Sanditon", + "edition": "N/A", + "author": "Austen", + "isbn": "9780192640086", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$2.59", + "item_type": "digital" + }, + { + "title": "Northanger Abbey, Lady Susan, The Watsons, Sanditon", + "edition": "N/A", + "author": "Austen", + "isbn": "9780192669209", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$2.59", + "item_type": "digital" + }, + { + "title": "Emma", + "edition": "5th", + "author": "Austen", + "isbn": "9780192574824", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$2.99", + "item_type": "digital" + }, + { + "title": "Pride and Prejudice", + "edition": "3rd", + "author": "Austen", + "isbn": "9780192561428", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$2.99", + "item_type": "digital" + }, + { + "title": "Persuasion", + "edition": "N/A", + "author": "Austen", + "isbn": "9780191624711", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$2.99", + "item_type": "digital" + }, + { + "title": "Northanger Abbey, Lady Susan, The Watsons, Sanditon", + "edition": "N/A", + "author": "Austen", + "isbn": "9780192669209", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$2.99", + "item_type": "digital" + }, + { + "title": "Northanger Abbey, Lady Susan, The Watsons, Sanditon", + "edition": "N/A", + "author": "Austen", + "isbn": "9780192640086", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$2.99", + "item_type": "digital" + }, + { + "title": "Mansfield Park", + "edition": "N/A", + "author": "Austen", + "isbn": "9780191624704", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$3.24", + "item_type": "digital" + }, + { + "title": "Mansfield Park", + "edition": "N/A", + "author": "Austen", + "isbn": "9780191624704", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$3.74", + "item_type": "digital" + }, + { + "title": "Emma", + "edition": "5th", + "author": "Austen", + "isbn": "9780192574824", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$3.99", + "item_type": "digital" + }, + { + "title": "Pride and Prejudice", + "edition": "3rd", + "author": "Austen", + "isbn": "9780192561428", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$3.99", + "item_type": "digital" + }, + { + "title": "Northanger Abbey, Lady Susan, The Watsons, Sanditon", + "edition": "N/A", + "author": "Austen", + "isbn": "9780192669209", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$3.99", + "item_type": "digital" + }, + { + "title": "Persuasion", + "edition": "N/A", + "author": "Austen", + "isbn": "9780191624711", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$3.99", + "item_type": "digital" + }, + { + "title": "Northanger Abbey, Lady Susan, The Watsons, Sanditon", + "edition": "N/A", + "author": "Austen", + "isbn": "9780192640086", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$3.99", + "item_type": "digital" + }, + { + "title": "Mansfield Park", + "edition": "N/A", + "author": "Austen", + "isbn": "9780191624704", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$4.99", + "item_type": "digital" + }, + { + "title": "Sense and Sensibility", + "edition": "3rd", + "author": "Austen", + "isbn": "9780192522122", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$10.39", + "item_type": "digital" + }, + { + "title": "Sense and Sensibility", + "edition": "3rd", + "author": "Austen", + "isbn": "9780192522122", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$11.99", + "item_type": "digital" + }, + { + "title": "Sense and Sensibility", + "edition": "3rd", + "author": "Austen", + "isbn": "9780192522122", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$15.99", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "2153", + "section": "22", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lab Notebook Spiral Bound 100 Pages (Copy Page Perforated)", + "edition": "N/A", + "author": "Barbakam", + "isbn": "9780978534424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "BISC", + "course_num": "3261", + "section": "80", + "instructor": "Rong Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "4195W", + "section": "10", + "instructor": "LaKeisha McClary", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Scientific Writing & Communication", + "edition": "5th", + "author": "Hofmann", + "isbn": "9780197613795", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$64.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Scientific Writing & Communication", + "edition": "5th", + "author": "Hofmann", + "isbn": "9780197613795", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$48.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Scientific Writing and Communication", + "edition": "5th", + "author": "Hofmann", + "isbn": "9780197613825", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$24.99", + "item_type": "digital" + }, + { + "title": "Scientific Writing and Communication", + "edition": "5th", + "author": "Hofmann", + "isbn": "9780197613825", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$28.84", + "item_type": "digital" + }, + { + "title": "Scientific Writing and Communication", + "edition": "5th", + "author": "Hofmann", + "isbn": "9780197613825", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$38.45", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "1001", + "section": "42", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "3301", + "section": "11", + "instructor": "Min Hwang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Financial Markets & Institutions (RRMCG)", + "edition": "8th", + "author": "Saunders", + "isbn": "9781260772401", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Financial Markets & Institutions (RRMCG)", + "edition": "8th", + "author": "Saunders", + "isbn": "9781260772401", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Financial Markets and Institutions", + "edition": "8th", + "author": "Saunders", + "isbn": "9781264098712", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$67.50", + "item_type": "digital" + }, + { + "title": "Financial Markets and Institutions", + "edition": "8th", + "author": "Saunders", + "isbn": "9781264098712", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$84.50", + "item_type": "digital" + }, + { + "title": "Financial Markets and Institutions", + "edition": "8th", + "author": "Saunders", + "isbn": "9781264098712", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$105.50", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "6221", + "section": "17", + "instructor": "Yih-Feng Hwang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Design Patterns: Elements of Reusable Object-Oriented Software", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780201633610", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_NEW", + "price_display": "$38.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Design Patterns: Elements of Reusable Object-Oriented Software", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780201633610", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Addison Wesley", + "type_condition": "BUY_NEW", + "price_display": "$59.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Design Patterns: Elements of Reusable Object-Oriented Software", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780201633610", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_USED", + "price_display": "$24.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Design Patterns: Elements of Reusable Object-Oriented Software", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780201633610", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Addison Wesley", + "type_condition": "BUY_USED", + "price_display": "$45.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Concepts of Programming Languages (RRPHE)", + "edition": "12th", + "author": "Sebesta", + "isbn": "9780134997186", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Concepts of Programming Languages (RRPHE)", + "edition": "12th", + "author": "Sebesta", + "isbn": "9780134997186", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Concurrency", + "edition": "N/A", + "author": "Magee", + "isbn": "9780470093559", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$90.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Concurrency", + "edition": "N/A", + "author": "Magee", + "isbn": "9780470093559", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$68.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pearson eText for Concepts of Programming Languages -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "12th", + "author": "Sebesta", + "isbn": "9780135102268", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Design Patterns", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780321700742", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Higher Educ & Prof Group", + "type_condition": "BUY_NEW", + "price_display": "$48.00", + "item_type": "digital" + }, + { + "title": "Design Patterns", + "edition": "N/A", + "author": "Gamma", + "isbn": "9780321700698", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Higher Educ & Prof Group", + "type_condition": "BUY_NEW", + "price_display": "$48.00", + "item_type": "digital" + }, + { + "title": "Concepts of Programming Languages", + "edition": "12th", + "author": "Sebesta", + "isbn": "9780135102251", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "AMST", + "course_num": "6100", + "section": "10", + "instructor": "Elisabeth Anker", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Orgies of Feeling", + "edition": "N/A", + "author": "Anker", + "isbn": "9780822356974", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Duke University Press", + "type_condition": "BUY_USED", + "price_display": "$25.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Orgies of Feeling", + "edition": "N/A", + "author": "Anker", + "isbn": "9780822356974", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Duke University Press", + "type_condition": "BUY_NEW", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of Sexuality (Trade Ed) (V1:Intro)", + "edition": "N/A", + "author": "Foucault", + "isbn": "9780679724698", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1990", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of Sexuality (Trade Ed) (V1:Intro)", + "edition": "N/A", + "author": "Foucault", + "isbn": "9780679724698", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1990", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chocolate City", + "edition": "N/A", + "author": "Asch", + "isbn": "9781469654720", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of North Carolina Press", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chocolate City", + "edition": "N/A", + "author": "Asch", + "isbn": "9781469654720", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of North Carolina Press", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chocolate City", + "edition": "N/A", + "author": "Asch", + "isbn": "9781469654720", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of North Carolina Press", + "type_condition": "RENTAL_NEW", + "price_display": "$20.97", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wayward Lives, Beautiful Experiments", + "edition": "N/A", + "author": "Hartman", + "isbn": "9780393357622", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wayward Lives, Beautiful Experiments", + "edition": "N/A", + "author": "Hartman", + "isbn": "9780393357622", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Seeing Green", + "edition": "N/A", + "author": "Dunaway", + "isbn": "9780226597614", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Chicago Press", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Seeing Green", + "edition": "N/A", + "author": "Dunaway", + "isbn": "9780226597614", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Seeing Green", + "edition": "N/A", + "author": "Dunaway", + "isbn": "9780226597614", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Chicago Press", + "type_condition": "RENTAL_NEW", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cruel Optimism", + "edition": "N/A", + "author": "Berlant", + "isbn": "9780822351115", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Duke University Press", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cruel Optimism", + "edition": "N/A", + "author": "Berlant", + "isbn": "9780822351115", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Duke University Press", + "type_condition": "BUY_NEW", + "price_display": "$25.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cruel Optimism", + "edition": "N/A", + "author": "Berlant", + "isbn": "9780822351115", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Duke University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$19.46", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Number Our Days", + "edition": "N/A", + "author": "Myerhoff", + "isbn": "9780671254308", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1978", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Number Our Days", + "edition": "N/A", + "author": "Myerhoff", + "isbn": "9780671254308", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1978", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Number Our Days", + "edition": "N/A", + "author": "Myerhoff", + "isbn": "9780671254308", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1978", + "publisher": "Simon & Schuster", + "type_condition": "RENTAL_NEW", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Freedom's Dominion", + "edition": "N/A", + "author": "Cowie", + "isbn": "9781541672802", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Basic Books", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Freedom's Dominion", + "edition": "N/A", + "author": "Cowie", + "isbn": "9781541672802", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Basic Books", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Afrofuturism", + "edition": "N/A", + "author": "Nat'l Mus Afr Am Hist Culture", + "isbn": "9781588347404", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Smithsonian Books", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Afrofuturism", + "edition": "N/A", + "author": "Nat'l Mus Afr Am Hist Culture", + "isbn": "9781588347404", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Smithsonian Books", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Wayward Lives, Beautiful Experiments: Intimate Histories of Riotous Black Girls, Troublesome Women, and Queer Radicals", + "edition": "N/A", + "author": "Hartman", + "isbn": "9780393285680", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "1003", + "section": "40", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "43", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "38", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "1010", + "section": "12", + "instructor": "Jason Zara", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "8009", + "section": "10", + "instructor": "Robin Tarpley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1001", + "section": "35", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "3995", + "section": "10", + "instructor": "Carson Murray", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1112", + "section": "30", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "PKG ACP CER GWU CHEM 1112", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781111952099", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Cengage Learning Custom Publishing (EMAIL ORDERS)", + "type_condition": "BUY_NEW", + "price_display": "$83.25", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "ARAB", + "course_num": "3105", + "section": "80", + "instructor": "Dina El-Hefnawy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "10", + "instructor": "Adam Behensky", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6154", + "section": "10", + "instructor": "Jeffrey Dinardo", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Theory & Practice of Counseling & Psychotherapy,Updated 10th edition/Enhanced", + "edition": "10th", + "author": "Corey", + "isbn": "9780357671429", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$190.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Theory & Practice of Counseling & Psychotherapy,Updated 10th edition/Enhanced", + "edition": "10th", + "author": "Corey", + "isbn": "9780357671429", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$253.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Theory & Practice of Counseling & Psychotherapy,Updated 10th edition/Enhanced", + "edition": "10th", + "author": "Corey", + "isbn": "9780357671429", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$106.47", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Theory and Practice of Counseling and Psychotherapy, Enhanced", + "edition": "10th", + "author": "Corey", + "isbn": "9781305855953", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$44.49", + "item_type": "digital" + }, + { + "title": "Theory and Practice of Counseling and Psychotherapy, Enhanced", + "edition": "10th", + "author": "Corey", + "isbn": "9781305855953", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$60.99", + "item_type": "digital" + }, + { + "title": "Theory and Practice of Counseling and Psychotherapy, Enhanced", + "edition": "10th", + "author": "Corey", + "isbn": "9781305855953", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$77.49", + "item_type": "digital" + } + ] + }, + { + "department": "EXNS", + "course_num": "2113", + "section": "10", + "instructor": "Kyle Levers", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Kinesiology", + "edition": "12th", + "author": "Hamilton", + "isbn": "9780078022548", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_USED", + "price_display": "$106.58", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Kinesiology", + "edition": "12th", + "author": "Hamilton", + "isbn": "9780078022548", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$253.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Kinesiology", + "edition": "12th", + "author": "Hamilton", + "isbn": "9780078022548", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "McGraw-Hill", + "type_condition": "BUY_USED", + "price_display": "$190.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Kinesiology", + "edition": "12th", + "author": "Hamilton", + "isbn": "9780078022548", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$164.94", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Kinesiology: Scientific Basis of Human Motion", + "edition": "12th", + "author": "Hamilton", + "isbn": "9780077433253", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$61.50", + "item_type": "digital" + }, + { + "title": "Kinesiology: Scientific Basis of Human Motion", + "edition": "12th", + "author": "Hamilton", + "isbn": "9780077433253", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$84.50", + "item_type": "digital" + }, + { + "title": "Kinesiology: Scientific Basis of Human Motion", + "edition": "12th", + "author": "Hamilton", + "isbn": "9780077433253", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$105.50", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "3103", + "section": "11", + "instructor": "Paul Swiercz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Human Capital in Organizations (Custom GWU)", + "edition": "N/A", + "author": "McHugh", + "isbn": "9781307496994", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "MCGRAW HILL (CUSTOM PUBLISHING)", + "type_condition": "BUY_NEW", + "price_display": "$107.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "39", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "6102", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "3491", + "section": "11", + "instructor": "Tiara Jenkins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "45", + "instructor": "Ashley Mills-Thomson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "CHEM 1111 Laboratory Manual", + "edition": "N/A", + "author": "George Washington University", + "isbn": "9781533913418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "HAYDEN-MCNEIL PUBLISHING, INC.", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "print" + }, + { + "title": "WARD PRO PROTECTIVE EYEWEAR SA", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + }, + { + "title": "ANTI-FOG IMPACT/CHEMICAL SPLASH GOGGLES", + "edition": "N/A", + "author": null, + "isbn": null, + "material_type": "SUP", + "requirement_type": "CH", + "copy_right_year": "NA", + "publisher": null, + "type_condition": "BUY_NEW", + "price_display": "$7.00", + "item_type": "print" + } + ] + }, + { + "department": "BME", + "course_num": "6050", + "section": "18", + "instructor": "Hyung Sok Choe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1003", + "section": "30", + "instructor": "Eric Cline", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HEBR", + "course_num": "2003", + "section": "10", + "instructor": "Christopher Rollston", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Grammar for Biblical Hebrew (Revised Edition)", + "edition": "N/A", + "author": "Seow", + "isbn": "9781426789076", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Abingdon Press (DO NOT USE - Ended Direct Fulfillment)", + "type_condition": "BUY_NEW", + "price_display": "$39.99", + "item_type": "print" + }, + { + "title": "Grammar for Biblical Hebrew (Revised Edition)", + "edition": "N/A", + "author": "Seow", + "isbn": "9781426789076", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Abingdon Press (DO NOT USE - Ended Direct Fulfillment)", + "type_condition": "BUY_USED", + "price_display": "$30.00", + "item_type": "print" + }, + { + "title": "Biiblia Hebraica Stuttgartensia (BHS): 2020 Compact Hardcover Edition", + "edition": "N/A", + "author": "Bible", + "isbn": "9781683073529", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Hendrickson Publishers Marketing, LLC", + "type_condition": "BUY_NEW", + "price_display": "$89.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Biiblia Hebraica Stuttgartensia (BHS): 2020 Compact Hardcover Edition", + "edition": "N/A", + "author": "Bible", + "isbn": "9781683073529", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Hendrickson Publishers Marketing, LLC", + "type_condition": "BUY_USED", + "price_display": "$67.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Concise Hebrew & Aramaic Lexicon of Old Testament", + "edition": "N/A", + "author": "Holladay", + "isbn": "9780802834133", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1988", + "publisher": "William B. Eerdmans Publishing Company", + "type_condition": "BUY_NEW", + "price_display": "$44.99", + "item_type": "print" + }, + { + "title": "Concise Hebrew & Aramaic Lexicon of Old Testament", + "edition": "N/A", + "author": "Holladay", + "isbn": "9780802834133", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1988", + "publisher": "William B. Eerdmans Publishing Company", + "type_condition": "BUY_USED", + "price_display": "$33.75", + "item_type": "print" + }, + { + "title": "A Concise Hebrew and Aramaic Lexicon of the Old Testament", + "edition": "N/A", + "author": "Holladay", + "isbn": "9781467426411", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "William B. Eerdmans Publishing Company", + "type_condition": "RENTAL_NEW", + "price_display": "$10.50", + "item_type": "digital" + }, + { + "title": "A Concise Hebrew and Aramaic Lexicon of the Old Testament", + "edition": "N/A", + "author": "Holladay", + "isbn": "9781467426411", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "William B. Eerdmans Publishing Company", + "type_condition": "RENTAL_NEW", + "price_display": "$12.00", + "item_type": "digital" + }, + { + "title": "A Concise Hebrew and Aramaic Lexicon of the Old Testament", + "edition": "N/A", + "author": "Holladay", + "isbn": "9781467426411", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "William B. Eerdmans Publishing Company", + "type_condition": "RENTAL_NEW", + "price_display": "$15.00", + "item_type": "digital" + }, + { + "title": "A Concise Hebrew and Aramaic Lexicon of the Old Testament", + "edition": "N/A", + "author": "Holladay", + "isbn": "9781467426411", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "William B. Eerdmans Publishing Company", + "type_condition": "RENTAL_NEW", + "price_display": "$24.00", + "item_type": "digital" + }, + { + "title": "A Concise Hebrew and Aramaic Lexicon of the Old Testament", + "edition": "N/A", + "author": "Holladay", + "isbn": "9781467426411", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "William B. Eerdmans Publishing Company", + "type_condition": "BUY_NEW", + "price_display": "$42.00", + "item_type": "digital" + } + ] + }, + { + "department": "ANAT", + "course_num": "6150", + "section": "10", + "instructor": "Robert Hawley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "1210", + "section": "18", + "instructor": "Sylvia Jones", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Neon Vernacular", + "edition": "N/A", + "author": "Komunyakaa", + "isbn": "9780819512116", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Wesleyan University, Collection of Legal Change", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Neon Vernacular", + "edition": "N/A", + "author": "Komunyakaa", + "isbn": "9780819512116", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Wesleyan University, Collection of Legal Change", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Neon Vernacular", + "edition": "N/A", + "author": "Komunyakaa", + "isbn": "9780819512116", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Wesleyan University, Collection of Legal Change", + "type_condition": "RENTAL_NEW", + "price_display": "$14.21", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "1003", + "section": "10", + "instructor": "Suzanne Vaughan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "34", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "2470", + "section": "10", + "instructor": "Chet'la Sebree", + "term_name": "Fall 2023", + "texts": [ + { + "title": "My Trade Is Mystery", + "edition": "N/A", + "author": "Phillips", + "isbn": "9780300257878", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "My Trade Is Mystery", + "edition": "N/A", + "author": "Phillips", + "isbn": "9780300257878", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Yale University Press", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Writing & Workshopping Poetry", + "edition": "N/A", + "author": "Guppy", + "isbn": "9781554813087", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Broadview Press", + "type_condition": "BUY_NEW", + "price_display": "$36.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing & Workshopping Poetry", + "edition": "N/A", + "author": "Guppy", + "isbn": "9781554813087", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Broadview Press", + "type_condition": "BUY_USED", + "price_display": "$27.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "19", + "instructor": "Bayley Shanley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "1041", + "section": "14", + "instructor": "Colleen Kennedy", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Interpersonal Communication: Relating to Others (RRPHE)", + "edition": "9th", + "author": "Beebe", + "isbn": "9780134877174", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "item_type": "print" + }, + { + "title": "Interpersonal Communication: Relating to Others (RRPHE)", + "edition": "9th", + "author": "Beebe", + "isbn": "9780134877174", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "item_type": "print" + }, + { + "title": "Pearson eText for Interpersonal Communication: Relating to Others -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "9th", + "author": "Beebe", + "isbn": "9780137527427", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Interpersonal Communication", + "edition": "9th", + "author": "Beebe", + "isbn": "9780134875828", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "Interpersonal Communication", + "edition": "9th", + "author": "Beebe", + "isbn": "9780134875781", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "2301", + "section": "15", + "instructor": "Torrance Fennell", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Information Systems (Loose Pgs)", + "edition": "8th", + "author": "Rainer", + "isbn": "9781119607564", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$123.00", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Intro to Information Systems (Loose Pgs)", + "edition": "8th", + "author": "Rainer", + "isbn": "9781119607564", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$163.75", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Introduction to Information Systems", + "edition": "8th", + "author": "Prince", + "isbn": "9781119594635", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$50.19", + "item_type": "digital" + }, + { + "title": "Introduction to Information Systems", + "edition": "8th", + "author": "Prince", + "isbn": "9781119594635", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$119.50", + "item_type": "digital" + } + ] + }, + { + "department": "HIST", + "course_num": "3332", + "section": "10", + "instructor": "Seth Rotramel", + "term_name": "Fall 2023", + "texts": [ + { + "title": "From Development to Dictatorship", + "edition": "N/A", + "author": "Field", + "isbn": "9780801452604", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Cornell University Press", + "type_condition": "BUY_USED", + "price_display": "$93.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "From Development to Dictatorship", + "edition": "N/A", + "author": "Field", + "isbn": "9780801452604", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Cornell University Press", + "type_condition": "BUY_NEW", + "price_display": "$125.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Brothers", + "edition": "N/A", + "author": "Kinzer", + "isbn": "9781250053121", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "St. Martin's Press", + "type_condition": "RENTAL_USED", + "price_display": "$8.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brothers", + "edition": "N/A", + "author": "Kinzer", + "isbn": "9781250053121", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "St. Martin's Press", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brothers", + "edition": "N/A", + "author": "Kinzer", + "isbn": "9781250053121", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "St. Martin's Press", + "type_condition": "BUY_NEW", + "price_display": "$19.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brothers", + "edition": "N/A", + "author": "Kinzer", + "isbn": "9781250053121", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "St. Martin's Press", + "type_condition": "RENTAL_NEW", + "price_display": "$14.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "LBJ's 1968", + "edition": "N/A", + "author": "Longley", + "isbn": "9781316643471", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_USED", + "price_display": "$8.48", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "LBJ's 1968", + "edition": "N/A", + "author": "Longley", + "isbn": "9781316643471", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "LBJ's 1968", + "edition": "N/A", + "author": "Longley", + "isbn": "9781316643471", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "LBJ's 1968", + "edition": "N/A", + "author": "Longley", + "isbn": "9781316643471", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$11.87", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Checkmate in Berlin", + "edition": "N/A", + "author": "Milton", + "isbn": "9781250838995", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Henry Holt and Co.", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Checkmate in Berlin", + "edition": "N/A", + "author": "Milton", + "isbn": "9781250838995", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Henry Holt and Co.", + "type_condition": "BUY_NEW", + "price_display": "$19.99", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "1001", + "section": "40", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "3109", + "section": "80", + "instructor": "Jonathan Chaves", + "term_name": "Fall 2023", + "texts": [ + { + "title": "First Course in Literary Chinese 2", + "edition": "N/A", + "author": "Shadick", + "isbn": "9780801498381", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1968", + "publisher": "Cornell University Press", + "type_condition": "BUY_USED", + "price_display": "$36.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "First Course in Literary Chinese 2", + "edition": "N/A", + "author": "Shadick", + "isbn": "9780801498381", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1968", + "publisher": "Cornell University Press", + "type_condition": "BUY_NEW", + "price_display": "$49.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "First Course in Literary Chinese 2", + "edition": "N/A", + "author": "Shadick", + "isbn": "9780801498381", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1968", + "publisher": "Cornell University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$24.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chinese-English Dictionary", + "edition": "N/A", + "author": "Mathews", + "isbn": "9780674123502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1943", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$51.00", + "item_type": "print" + }, + { + "title": "Chinese-English Dictionary", + "edition": "N/A", + "author": "Mathews", + "isbn": "9780674123502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1943", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$34.00", + "item_type": "print" + }, + { + "title": "Chinese-English Dictionary", + "edition": "N/A", + "author": "Mathews", + "isbn": "9780674123502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1943", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$68.00", + "item_type": "print" + }, + { + "title": "First Course in Literary Chinese 1", + "edition": "N/A", + "author": "Shadick", + "isbn": "9780801498374", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1968", + "publisher": "Cornell University Press", + "type_condition": "BUY_USED", + "price_display": "$36.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "First Course in Literary Chinese 1", + "edition": "N/A", + "author": "Shadick", + "isbn": "9780801498374", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1968", + "publisher": "Cornell University Press", + "type_condition": "RENTAL_USED", + "price_display": "$24.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "First Course in Literary Chinese 1", + "edition": "N/A", + "author": "Shadick", + "isbn": "9780801498374", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1968", + "publisher": "Cornell University Press", + "type_condition": "BUY_NEW", + "price_display": "$49.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "2008W", + "section": "30", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2153", + "section": "12", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lab Notebook Spiral Bound 100 Pages (Copy Page Perforated)", + "edition": "N/A", + "author": "Barbakam", + "isbn": "9780978534424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "ACCY", + "course_num": "6701", + "section": "10", + "instructor": "Colin Goldberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2153", + "section": "19", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lab Notebook Spiral Bound 100 Pages (Copy Page Perforated)", + "edition": "N/A", + "author": "Barbakam", + "isbn": "9780978534424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "1002", + "section": "30", + "instructor": "Roy Grinker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "3454", + "section": "10", + "instructor": "Keryn Gedan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Marine Community Ecology & Conservation", + "edition": "2nd", + "author": "Bertness", + "isbn": "9781605352282", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Sinauer Associates, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$199.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Marine Community Ecology & Conservation", + "edition": "2nd", + "author": "Bertness", + "isbn": "9781605352282", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Sinauer Associates, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$84.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Marine Community Ecology & Conservation", + "edition": "2nd", + "author": "Bertness", + "isbn": "9781605352282", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Sinauer Associates, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$150.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Marine Community Ecology & Conservation", + "edition": "2nd", + "author": "Bertness", + "isbn": "9781605352282", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Sinauer Associates, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$149.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Marine Community Ecology and Conservation", + "edition": "N/A", + "author": "Bertness", + "isbn": "9781605353968", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$64.99", + "item_type": "digital" + }, + { + "title": "Marine Community Ecology and Conservation", + "edition": "N/A", + "author": "Bertness", + "isbn": "9781605353968", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$74.98", + "item_type": "digital" + }, + { + "title": "Marine Community Ecology and Conservation", + "edition": "N/A", + "author": "Bertness", + "isbn": "9781605353968", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$99.98", + "item_type": "digital" + }, + { + "title": "Marine Community Ecology and Conservation", + "edition": "N/A", + "author": "Stachowicz", + "isbn": "9781605353968", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$129.98", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "6998", + "section": "17", + "instructor": "Anne-Laure Papa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "36", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ARAB", + "course_num": "3301", + "section": "10", + "instructor": "Mohssen Esseesy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "AMST", + "course_num": "6190", + "section": "10", + "instructor": "Nicole Ivy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6555", + "section": "O10", + "instructor": "Dwayne Wright", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Practical Guide for Policy Analysis", + "edition": "6th", + "author": "Bardach", + "isbn": "9781506368887", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "CQ Press c/o SAGE", + "type_condition": "RENTAL_NEW", + "price_display": "$48.19", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Practical Guide for Policy Analysis", + "edition": "6th", + "author": "Bardach", + "isbn": "9781506368887", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_NEW", + "price_display": "$64.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Practical Guide for Policy Analysis", + "edition": "6th", + "author": "Bardach", + "isbn": "9781506368887", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "CQ Press c/o SAGE", + "type_condition": "RENTAL_USED", + "price_display": "$25.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Practical Guide for Policy Analysis", + "edition": "6th", + "author": "Bardach", + "isbn": "9781506368887", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_USED", + "price_display": "$48.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Public Policy & Higher Education", + "edition": "N/A", + "author": "St. John", + "isbn": "9780415893596", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2012", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$51.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Public Policy & Higher Education", + "edition": "N/A", + "author": "St. John", + "isbn": "9780415893596", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2012", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$39.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Policy Paradox", + "edition": "3rd", + "author": "Stone", + "isbn": "9780393912722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$69.38", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Policy Paradox", + "edition": "3rd", + "author": "Stone", + "isbn": "9780393912722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$92.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Policy Paradox", + "edition": "3rd", + "author": "Stone", + "isbn": "9780393912722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$40.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Policy Paradox", + "edition": "3rd", + "author": "Stone", + "isbn": "9780393912722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$69.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "A Practical Guide for Policy Analysis", + "edition": "6th", + "author": "Bardach", + "isbn": "9781506368870", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$24.00", + "item_type": "digital" + }, + { + "title": "A Practical Guide for Policy Analysis", + "edition": "6th", + "author": "Bardach", + "isbn": "9781506368870", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$27.00", + "item_type": "digital" + }, + { + "title": "A Practical Guide for Policy Analysis", + "edition": "6th", + "author": "Bardach", + "isbn": "9781506368870", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$30.00", + "item_type": "digital" + }, + { + "title": "A Practical Guide for Policy Analysis", + "edition": "6th", + "author": "Bardach", + "isbn": "9781506368870", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$43.50", + "item_type": "digital" + } + ] + }, + { + "department": "AMST", + "course_num": "2010", + "section": "81", + "instructor": "Nicole Ivy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "30", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3501", + "section": "10", + "instructor": "William Handorf", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Fund of Financial Management: Concise", + "edition": "10th", + "author": "Brigham", + "isbn": "9781337902571", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage South-Western", + "type_condition": "BUY_NEW", + "price_display": "$316.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fund of Financial Management: Concise", + "edition": "10th", + "author": "Brigham", + "isbn": "9781337902571", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage South-Western", + "type_condition": "RENTAL_USED", + "price_display": "$133.04", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fund of Financial Management: Concise", + "edition": "10th", + "author": "Brigham", + "isbn": "9781337902571", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage South-Western", + "type_condition": "BUY_USED", + "price_display": "$237.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fund of Financial Management: Concise", + "edition": "10th", + "author": "Brigham", + "isbn": "9781337902571", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage South-Western", + "type_condition": "RENTAL_NEW", + "price_display": "$237.56", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fundamentals of Financial Management, Concise Edition", + "edition": "10th", + "author": "Brigham", + "isbn": "9781337911054", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$55.49", + "item_type": "digital" + }, + { + "title": "Fundamentals of Financial Management, Concise Edition", + "edition": "10th", + "author": "Brigham", + "isbn": "9781337911054", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$75.99", + "item_type": "digital" + }, + { + "title": "Fundamentals of Financial Management, Concise Edition", + "edition": "10th", + "author": "Brigham", + "isbn": "9781337911054", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$96.99", + "item_type": "digital" + } + ] + }, + { + "department": "AMST", + "course_num": "1050", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3001", + "section": "29", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ARAB", + "course_num": "1001", + "section": "15", + "instructor": "Jennifer Tobkin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "2006", + "section": "11", + "instructor": "Noelle Levy-Gires", + "term_name": "Fall 2023", + "texts": [ + { + "title": "La France Contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664421", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "La France Contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664421", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "La France contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664438", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "La France contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664438", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$67.99", + "item_type": "digital" + }, + { + "title": "La France contemporaine", + "edition": "6th", + "author": "Edmiston", + "isbn": "9780357664438", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$86.49", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "14", + "instructor": "Mirasol Espanola", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1002", + "section": "41", + "instructor": "Roy Grinker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "8999", + "section": "12", + "instructor": "Luyao Lu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6412", + "section": "12", + "instructor": "William Mosher", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Elementary & Middle School Mathematics", + "edition": "11th", + "author": "Van De Walle", + "isbn": "9780136818038", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Pearson Education", + "type_condition": "BUY_NEW", + "price_display": "$101.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Elementary & Middle School Mathematics", + "edition": "11th", + "author": "Van De Walle", + "isbn": "9780136818038", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Pearson Education", + "type_condition": "BUY_USED", + "price_display": "$76.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Elementary and Middle School Mathematics", + "edition": "11th", + "author": "Van de Walle", + "isbn": "9780136818465", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "ANTH", + "course_num": "8998", + "section": "11", + "instructor": "Jeffrey Blomster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "2002", + "section": "11", + "instructor": "Edward Sul", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "AMST", + "course_num": "2410W", + "section": "85", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GER", + "course_num": "1000", + "section": "10", + "instructor": "Jean Freedman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Classic Fairy Tales", + "edition": "2nd", + "author": "Tatar", + "isbn": "9780393602975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Classic Fairy Tales", + "edition": "2nd", + "author": "Tatar", + "isbn": "9780393602975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_USED", + "price_display": "$17.88", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Classic Fairy Tales", + "edition": "2nd", + "author": "Tatar", + "isbn": "9780393602975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$35.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Annotated Brothers Grimm (Bicentennial Ed)", + "edition": "N/A", + "author": "Grimm", + "isbn": "9780393088861", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$30.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Annotated Brothers Grimm (Bicentennial Ed)", + "edition": "N/A", + "author": "Grimm", + "isbn": "9780393088861", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$39.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "The Classic Fairy Tales (Second Edition) (Norton Critical Editions)", + "edition": "2nd", + "author": "Tatar", + "isbn": "9780393289794", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$12.99", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "6050", + "section": "12", + "instructor": "Jason Zara", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "6510", + "section": "10", + "instructor": "Sarah Wagner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "AMST", + "course_num": "1050", + "section": "11", + "instructor": "James McMaster", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Minor Feelings", + "edition": "N/A", + "author": "Hong", + "isbn": "9781984820389", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Random House Adult Trade Publ", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Minor Feelings", + "edition": "N/A", + "author": "Hong", + "isbn": "9781984820389", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Random House Adult Trade Publ", + "type_condition": "RENTAL_NEW", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Minor Feelings", + "edition": "N/A", + "author": "Hong", + "isbn": "9781984820389", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Random House Adult Trade Publ", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ACCY", + "course_num": "6501", + "section": "10", + "instructor": "Donald Buzinkai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1000", + "section": "10", + "instructor": "Herbert Thorp", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Merchants of Doubt", + "edition": "N/A", + "author": "Oreskes", + "isbn": "9781608193943", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_NEW", + "price_display": "$19.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Merchants of Doubt", + "edition": "N/A", + "author": "Oreskes", + "isbn": "9781608193943", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Bloomsbury USA", + "type_condition": "RENTAL_USED", + "price_display": "$7.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Merchants of Doubt", + "edition": "N/A", + "author": "Oreskes", + "isbn": "9781608193943", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "2410W", + "section": "84", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "6998", + "section": "12", + "instructor": "Luyao Lu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "AMST", + "course_num": "8999", + "section": "10", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2001", + "section": "12", + "instructor": "Angela Zimmerman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Nevada", + "edition": "N/A", + "author": "Binnie", + "isbn": "9780374606619", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Nevada", + "edition": "N/A", + "author": "Binnie", + "isbn": "9780374606619", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Transgender History", + "edition": "2nd", + "author": "Stryker", + "isbn": "9781580056892", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Da Capo Press, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Transgender History", + "edition": "2nd", + "author": "Stryker", + "isbn": "9781580056892", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Da Capo Press, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Transgender History, second edition", + "edition": "2nd", + "author": "Stryker", + "isbn": "9781580056908", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hachette Book Group", + "type_condition": "BUY_NEW", + "price_display": "$13.99", + "item_type": "digital" + } + ] + }, + { + "department": "HIST", + "course_num": "3301", + "section": "10", + "instructor": "David Silverman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "This Land Is Their Land", + "edition": "N/A", + "author": "Silverman", + "isbn": "9781632869258", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bloomsbury Publishing Plc", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "This Land Is Their Land", + "edition": "N/A", + "author": "Silverman", + "isbn": "9781632869258", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bloomsbury Publishing Plc", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Heartbeat of Wounded Knee", + "edition": "N/A", + "author": "Treuer", + "isbn": "9780399573194", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Riverhead Books", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Heartbeat of Wounded Knee", + "edition": "N/A", + "author": "Treuer", + "isbn": "9780399573194", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Riverhead Books", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Heartbeat of Wounded Knee", + "edition": "N/A", + "author": "Treuer", + "isbn": "9780399573194", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Riverhead Books", + "type_condition": "RENTAL_NEW", + "price_display": "$13.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "First Peoples", + "edition": "6th", + "author": "Calloway", + "isbn": "9781319104917", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_USED", + "price_display": "$100.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "First Peoples", + "edition": "6th", + "author": "Calloway", + "isbn": "9781319104917", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_USED", + "price_display": "$56.39", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "First Peoples", + "edition": "6th", + "author": "Calloway", + "isbn": "9781319104917", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "BUY_NEW", + "price_display": "$134.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "First Peoples", + "edition": "6th", + "author": "Calloway", + "isbn": "9781319104917", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$100.69", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "First Peoples", + "edition": "6th", + "author": "Calloway", + "isbn": "9781319123574", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$45.99", + "item_type": "digital" + } + ] + }, + { + "department": "ENGL", + "course_num": "2411", + "section": "11", + "instructor": "Daniel DeWispelare", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Fanny Hill", + "edition": "N/A", + "author": "Cleland", + "isbn": "9780140432497", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1985", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$9.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fanny Hill", + "edition": "N/A", + "author": "Cleland", + "isbn": "9780140432497", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1985", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Journal of Plague Year", + "edition": "N/A", + "author": "Defoe", + "isbn": "9780140437850", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$8.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Journal of Plague Year", + "edition": "N/A", + "author": "Defoe", + "isbn": "9780140437850", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$8.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Journal of Plague Year", + "edition": "N/A", + "author": "Defoe", + "isbn": "9780140437850", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$11.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Our Mutual Friend", + "edition": "N/A", + "author": "Dickens", + "isbn": "9780140434972", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1997", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Our Mutual Friend", + "edition": "N/A", + "author": "Dickens", + "isbn": "9780140434972", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1997", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Our Mutual Friend", + "edition": "N/A", + "author": "Dickens", + "isbn": "9780140434972", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1997", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$13.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Never Let Me Go", + "edition": "N/A", + "author": "Ishiguro", + "isbn": "9781400078776", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$7.74", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Never Let Me Go", + "edition": "N/A", + "author": "Ishiguro", + "isbn": "9781400078776", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Never Let Me Go", + "edition": "N/A", + "author": "Ishiguro", + "isbn": "9781400078776", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Housing Lark", + "edition": "N/A", + "author": "Selvon", + "isbn": "9780143133964", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Penguin Classics", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Housing Lark", + "edition": "N/A", + "author": "Selvon", + "isbn": "9780143133964", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Penguin Classics", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Confessions of an English Opium-Eater", + "edition": "N/A", + "author": "De Quincey", + "isbn": "9781551114354", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Broadview Press", + "type_condition": "BUY_USED", + "price_display": "$13.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Confessions of an English Opium-Eater", + "edition": "N/A", + "author": "De Quincey", + "isbn": "9781551114354", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Broadview Press", + "type_condition": "BUY_NEW", + "price_display": "$17.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mrs. Dalloway", + "edition": "N/A", + "author": "Woolf", + "isbn": "9780143136132", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Penguin Classics", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mrs. Dalloway", + "edition": "N/A", + "author": "Woolf", + "isbn": "9780143136132", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Penguin Classics", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Confessions of an English Opium-Eater", + "edition": "N/A", + "author": "Quincey", + "isbn": "9781460400753", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Broadview Press", + "type_condition": "RENTAL_NEW", + "price_display": "$13.39", + "item_type": "digital" + }, + { + "title": "Confessions of an English Opium-Eater", + "edition": "N/A", + "author": "Quincey", + "isbn": "9781460400753", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Broadview Press", + "type_condition": "BUY_NEW", + "price_display": "$15.75", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "6243", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EHS", + "course_num": "1040", + "section": "10", + "instructor": "Craig Evans", + "term_name": "Fall 2023", + "texts": [ + { + "title": "MyLab BRADY with Pearson eText -- Access Card -- for Emergency Care", + "edition": "14th", + "author": "Dickinson", + "isbn": "9780135479148", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$146.75", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "1001", + "section": "28", + "instructor": "Paul Regis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "3171", + "section": "10", + "instructor": "Susan Tomasovic", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Communicating for Results (w/out MT Access)", + "edition": "11th", + "author": "Hamilton", + "isbn": "9781305280267", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$253.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Communicating for Results (w/out MT Access)", + "edition": "11th", + "author": "Hamilton", + "isbn": "9781305280267", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$190.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Communicating for Results (w/out MT Access)", + "edition": "11th", + "author": "Hamilton", + "isbn": "9781305280267", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$164.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Communicating for Results (w/out MT Access)", + "edition": "11th", + "author": "Hamilton", + "isbn": "9781305280267", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$106.47", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Communicating for Results: A Guide for Business and the Professions", + "edition": "11th", + "author": "Hamilton", + "isbn": "9781337514705", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "Communicating for Results: A Guide for Business and the Professions", + "edition": "11th", + "author": "Hamilton", + "isbn": "9781337514705", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$67.99", + "item_type": "digital" + }, + { + "title": "Communicating for Results: A Guide for Business and the Professions", + "edition": "11th", + "author": "Hamilton", + "isbn": "9781337514705", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$86.49", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "3001", + "section": "19", + "instructor": "Mary Catherine Chase", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "4107", + "section": "10", + "instructor": "Scott Lancaster", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Advanced Accounting (w/Glued-In Access Code)", + "edition": "5th", + "author": "Hamlen", + "isbn": "9781618534248", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Cambridge Business Publishers", + "type_condition": "BUY_USED", + "price_display": "$202.25", + "item_type": "print" + }, + { + "title": "Advanced Accounting (w/Glued-In Access Code)", + "edition": "5th", + "author": "Hamlen", + "isbn": "9781618534248", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Cambridge Business Publishers", + "type_condition": "BUY_NEW", + "price_display": "$269.50", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "6118", + "section": "85", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3181", + "section": "15", + "instructor": "Edward Lazarus", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Israeli-Palestinian Conflict", + "edition": "N/A", + "author": "Waxman", + "isbn": "9780190625337", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Israeli-Palestinian Conflict", + "edition": "N/A", + "author": "Waxman", + "isbn": "9780190625337", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$6.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Israeli-Palestinian Conflict", + "edition": "N/A", + "author": "Waxman", + "isbn": "9780190625337", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Israel/Palestine", + "edition": "4th", + "author": "Dowty", + "isbn": "9781509520787", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Polity Press", + "type_condition": "BUY_USED", + "price_display": "$23.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Israel/Palestine", + "edition": "4th", + "author": "Dowty", + "isbn": "9781509520787", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Polity Press", + "type_condition": "RENTAL_NEW", + "price_display": "$22.88", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Israel/Palestine", + "edition": "4th", + "author": "Dowty", + "isbn": "9781509520787", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Polity Press", + "type_condition": "RENTAL_USED", + "price_display": "$12.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Israel/Palestine", + "edition": "4th", + "author": "Dowty", + "isbn": "9781509520787", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Polity Press", + "type_condition": "BUY_NEW", + "price_display": "$30.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "BADM", + "course_num": "4101W", + "section": "12", + "instructor": "Benjamin Bronner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSCI", + "course_num": "2101", + "section": "12", + "instructor": "Kalpana Vissa", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Culture, Health & Illness", + "edition": "5th", + "author": "Helman", + "isbn": "9780340914502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "RENTAL_USED", + "price_display": "$26.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Culture, Health & Illness", + "edition": "5th", + "author": "Helman", + "isbn": "9780340914502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_USED", + "price_display": "$50.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Culture, Health & Illness", + "edition": "5th", + "author": "Helman", + "isbn": "9780340914502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$66.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Culture, Health & Illness", + "edition": "5th", + "author": "Helman", + "isbn": "9780340914502", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$53.56", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Culture, Health and Illness, Fifth edition", + "edition": "5th", + "author": "Helman", + "isbn": "9781444113631", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$66.95", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "42", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BME", + "course_num": "6998", + "section": "18", + "instructor": "Chung Hyuk Park", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "AMST", + "course_num": "3950W", + "section": "80", + "instructor": "Erin Chapman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Forgotten Fifth: African Americans in Age of Revolution", + "edition": "N/A", + "author": "Nash", + "isbn": "9780674021938", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$14.96", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Forgotten Fifth: African Americans in Age of Revolution", + "edition": "N/A", + "author": "Nash", + "isbn": "9780674021938", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$7.98", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Forgotten Fifth: African Americans in Age of Revolution", + "edition": "N/A", + "author": "Nash", + "isbn": "9780674021938", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Forgotten Fifth: African Americans in Age of Revolution", + "edition": "N/A", + "author": "Nash", + "isbn": "9780674021938", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "White Rage", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781632864130", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Bloomsbury USA", + "type_condition": "RENTAL_NEW", + "price_display": "$11.05", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "White Rage", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781632864130", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Bloomsbury USA", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "White Rage", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781632864130", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "White Rage", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781632864130", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invisible No More", + "edition": "N/A", + "author": "Ritchie", + "isbn": "9780807088982", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "RENTAL_NEW", + "price_display": "$15.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invisible No More", + "edition": "N/A", + "author": "Ritchie", + "isbn": "9780807088982", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "RENTAL_USED", + "price_display": "$8.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invisible No More", + "edition": "N/A", + "author": "Ritchie", + "isbn": "9780807088982", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$15.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invisible No More", + "edition": "N/A", + "author": "Ritchie", + "isbn": "9780807088982", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fire Next Time", + "edition": "N/A", + "author": "Baldwin", + "isbn": "9780679744726", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1963", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$10.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fire Next Time", + "edition": "N/A", + "author": "Baldwin", + "isbn": "9780679744726", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1963", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$13.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Celia, a Slave", + "edition": "N/A", + "author": "McLaurin", + "isbn": "9780820360966", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Univ of Georgia Press/Longleaf", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Celia, a Slave", + "edition": "N/A", + "author": "McLaurin", + "isbn": "9780820360966", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Univ of Georgia Press/Longleaf", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Price for Their Pound of Flesh: The Value of the Enslaved, from Womb to Grave, in the Building of a Nation", + "edition": "N/A", + "author": "Berry", + "isbn": "9780807067147", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "RENTAL_NEW", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Price for Their Pound of Flesh: The Value of the Enslaved, from Womb to Grave, in the Building of a Nation", + "edition": "N/A", + "author": "Berry", + "isbn": "9780807067147", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "RENTAL_USED", + "price_display": "$7.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Price for Their Pound of Flesh: The Value of the Enslaved, from Womb to Grave, in the Building of a Nation", + "edition": "N/A", + "author": "Berry", + "isbn": "9780807067147", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Price for Their Pound of Flesh: The Value of the Enslaved, from Womb to Grave, in the Building of a Nation", + "edition": "N/A", + "author": "Berry", + "isbn": "9780807067147", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Mercy Here", + "edition": "N/A", + "author": "Haley", + "isbn": "9781469652221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of North Carolina Press", + "type_condition": "RENTAL_NEW", + "price_display": "$26.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Mercy Here", + "edition": "N/A", + "author": "Haley", + "isbn": "9781469652221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of North Carolina Press", + "type_condition": "RENTAL_USED", + "price_display": "$14.38", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Mercy Here", + "edition": "N/A", + "author": "Haley", + "isbn": "9781469652221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of North Carolina Press", + "type_condition": "BUY_USED", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Mercy Here", + "edition": "N/A", + "author": "Haley", + "isbn": "9781469652221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of North Carolina Press", + "type_condition": "BUY_NEW", + "price_display": "$35.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Citizen", + "edition": "N/A", + "author": "Rankine", + "isbn": "9781555976903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Graywolf", + "type_condition": "RENTAL_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Citizen", + "edition": "N/A", + "author": "Rankine", + "isbn": "9781555976903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Graywolf", + "type_condition": "RENTAL_USED", + "price_display": "$8.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Citizen", + "edition": "N/A", + "author": "Rankine", + "isbn": "9781555976903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Graywolf", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Citizen", + "edition": "N/A", + "author": "Rankine", + "isbn": "9781555976903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Graywolf", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Clinging to Mammy", + "edition": "N/A", + "author": "McElya", + "isbn": "9780674024335", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$14.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Clinging to Mammy", + "edition": "N/A", + "author": "McElya", + "isbn": "9780674024335", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$22.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Clinging to Mammy", + "edition": "N/A", + "author": "McElya", + "isbn": "9780674024335", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$29.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Celia, a Slave", + "edition": "N/A", + "author": "McLaurin", + "isbn": "9780820362502", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$18.75", + "item_type": "digital" + } + ] + }, + { + "department": "GEOG", + "course_num": "6306", + "section": "80", + "instructor": "Michael Mann", + "term_name": "Fall 2023", + "texts": [ + { + "title": "GIS Fundamentals", + "edition": "6th", + "author": "Bolstad", + "isbn": "9781593995522", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "XanEdu Pub Inc", + "type_condition": "RENTAL_NEW", + "price_display": "$31.13", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "GIS Fundamentals", + "edition": "6th", + "author": "Bolstad", + "isbn": "9781593995522", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "XanEdu Pub Inc", + "type_condition": "BUY_USED", + "price_display": "$31.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "GIS Fundamentals", + "edition": "6th", + "author": "Bolstad", + "isbn": "9781593995522", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "XanEdu Pub Inc", + "type_condition": "RENTAL_USED", + "price_display": "$16.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "GIS Fundamentals", + "edition": "6th", + "author": "Bolstad", + "isbn": "9781593995522", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "XanEdu Pub Inc", + "type_condition": "BUY_NEW", + "price_display": "$41.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "11", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$30.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$16.30", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$26.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$40.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Matteo Ricci & the Catholic Mission to China (1583-1610)", + "edition": "N/A", + "author": "Hsia", + "isbn": "9781624664328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Matteo Ricci & the Catholic Mission to China (1583-1610)", + "edition": "N/A", + "author": "Hsia", + "isbn": "9781624664328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$11.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Matteo Ricci & the Catholic Mission to China (1583-1610)", + "edition": "N/A", + "author": "Hsia", + "isbn": "9781624664328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Great Hanoi Rat Hunt", + "edition": "1st", + "author": "Vann", + "isbn": "9780190602703", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "RENTAL_NEW", + "price_display": "$14.99", + "item_type": "digital" + }, + { + "title": "Matteo Ricci and the Catholic Mission to China, 15831610", + "edition": "N/A", + "author": "Hsia", + "isbn": "9781624664342", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.50", + "item_type": "digital" + }, + { + "title": "The Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602703", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "RENTAL_NEW", + "price_display": "$17.30", + "item_type": "digital" + }, + { + "title": "The Great Hanoi Rat Hunt", + "edition": "N/A", + "author": "Vann", + "isbn": "9780190602703", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "BUY_NEW", + "price_display": "$23.06", + "item_type": "digital" + } + ] + }, + { + "department": "BME", + "course_num": "1010", + "section": "11", + "instructor": "Jason Zara", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "1004", + "section": "31", + "instructor": "Scheherazade Rehman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2153", + "section": "23", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lab Notebook Spiral Bound 100 Pages (Copy Page Perforated)", + "edition": "N/A", + "author": "Barbakam", + "isbn": "9780978534424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "BISC", + "course_num": "2335", + "section": "10", + "instructor": "Adam Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BIOC", + "course_num": "6235", + "section": "10", + "instructor": "Raja Mazumder", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HLWL", + "course_num": "1116", + "section": "12", + "instructor": "Melissa Van Orman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Nutrition Essentials: Practical Applications", + "edition": "N/A", + "author": "Insel", + "isbn": "9781284251906", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$165.00", + "item_type": "print" + }, + { + "title": "Nutrition Essentials: Practical Applications", + "edition": "N/A", + "author": "Insel", + "isbn": "9781284251906", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$123.75", + "item_type": "print" + }, + { + "title": "Nutrition Essentials: Practical Applications", + "edition": "N/A", + "author": "Insel", + "isbn": "9781284251913", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$107.22", + "item_type": "digital" + } + ] + }, + { + "department": "BADM", + "course_num": "3501", + "section": "15", + "instructor": "Senan Uyanik", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1007", + "section": "10", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BIOC", + "course_num": "6243", + "section": "10", + "instructor": "Robel Kahsay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6410", + "section": "80", + "instructor": "Sevket Ozcanli", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Engineering Economy (w/MyEngineeringLab Access)", + "edition": "17th", + "author": "Sullivan", + "isbn": "9780134873206", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$312.00", + "item_type": "print" + }, + { + "title": "Engineering Economy (w/MyEngineeringLab Access)", + "edition": "17th", + "author": "Sullivan", + "isbn": "9780134873206", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$234.00", + "item_type": "print" + } + ] + }, + { + "department": "BISC", + "course_num": "4172", + "section": "10", + "instructor": "Damien O'Halloran", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ANTH", + "course_num": "1002", + "section": "31", + "instructor": "Roy Grinker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "2001", + "section": "15", + "instructor": "William Stromsem", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "AMST", + "course_num": "1000", + "section": "10", + "instructor": "Gerald Jae Sevillano", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Bitter in the Mouth", + "edition": "N/A", + "author": "Truong", + "isbn": "9780812981322", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bitter in the Mouth", + "edition": "N/A", + "author": "Truong", + "isbn": "9780812981322", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bitter in the Mouth", + "edition": "N/A", + "author": "Truong", + "isbn": "9780812981322", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Taste of Empire", + "edition": "N/A", + "author": "Sy", + "isbn": "9781772011609", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Talonbooks, Limited", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Taste of Empire", + "edition": "N/A", + "author": "Sy", + "isbn": "9781772011609", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Talonbooks, Limited", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eating Asian America", + "edition": "N/A", + "author": "Ku", + "isbn": "9781479869251", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New York University Press", + "type_condition": "BUY_NEW", + "price_display": "$29.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eating Asian America", + "edition": "N/A", + "author": "Ku", + "isbn": "9781479869251", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New York University Press", + "type_condition": "BUY_USED", + "price_display": "$21.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eating Asian America", + "edition": "N/A", + "author": "Ku", + "isbn": "9781479869251", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "New York University Press", + "type_condition": "RENTAL_USED", + "price_display": "$11.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eating Asian America", + "edition": "N/A", + "author": "Ku", + "isbn": "9781479812035", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "New York University Press", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "item_type": "digital" + } + ] + }, + { + "department": "CNSL", + "course_num": "6154", + "section": "11", + "instructor": "Almeta McCannon", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Theory & Prac of Counseling etc (Student Manual)", + "edition": "10th", + "author": "Corey", + "isbn": "9781305664470", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$56.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Theory & Prac of Counseling etc (Student Manual)", + "edition": "10th", + "author": "Corey", + "isbn": "9781305664470", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$101.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Theory & Prac of Counseling etc (Student Manual)", + "edition": "10th", + "author": "Corey", + "isbn": "9781305664470", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$134.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Theory & Practice of Counseling & Psychotherapy,Updated 10th edition/Enhanced", + "edition": "10th", + "author": "Corey", + "isbn": "9780357671429", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$106.47", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Theory & Practice of Counseling & Psychotherapy,Updated 10th edition/Enhanced", + "edition": "10th", + "author": "Corey", + "isbn": "9780357671429", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$190.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Theory & Practice of Counseling & Psychotherapy,Updated 10th edition/Enhanced", + "edition": "10th", + "author": "Corey", + "isbn": "9780357671429", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$253.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Theory and Practice of Counseling and Psychotherapy, Enhanced", + "edition": "10th", + "author": "Corey", + "isbn": "9781305855953", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$44.49", + "item_type": "digital" + }, + { + "title": "Student Manual", + "edition": "10th", + "author": "Corey", + "isbn": "9780357938836", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$44.49", + "item_type": "digital" + }, + { + "title": "Student Manual", + "edition": "10th", + "author": "Corey", + "isbn": "9780357938836", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$60.99", + "item_type": "digital" + }, + { + "title": "Theory and Practice of Counseling and Psychotherapy, Enhanced", + "edition": "10th", + "author": "Corey", + "isbn": "9781305855953", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$60.99", + "item_type": "digital" + }, + { + "title": "Student Manual", + "edition": "10th", + "author": "Corey", + "isbn": "9780357938836", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$77.49", + "item_type": "digital" + }, + { + "title": "Theory and Practice of Counseling and Psychotherapy, Enhanced", + "edition": "10th", + "author": "Corey", + "isbn": "9781305855953", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$77.49", + "item_type": "digital" + } + ] + }, + { + "department": "ISTM", + "course_num": "6224", + "section": "10", + "instructor": "Richard Donnelly", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Strategic Management of Technological Innovation (RRMCG)", + "edition": "6th", + "author": "Schilling", + "isbn": "9781260087956", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Strategic Management of Technological Innovation (RRMCG)", + "edition": "6th", + "author": "Schilling", + "isbn": "9781260087956", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "CHEM", + "course_num": "2153", + "section": "20", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lab Notebook Spiral Bound 100 Pages (Copy Page Perforated)", + "edition": "N/A", + "author": "Barbakam", + "isbn": "9780978534424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "37", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BISC", + "course_num": "1111", + "section": "31", + "instructor": "John Manubay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ACCY", + "course_num": "2001", + "section": "14", + "instructor": "Jenny Zha Giedt", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Financial Accounting (RRMCG RENTAL Edition)", + "edition": "11th", + "author": "Libby", + "isbn": "9781264229734", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Financial Accounting (RRMCG RENTAL Edition)", + "edition": "11th", + "author": "Libby", + "isbn": "9781264229734", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Connect Online Access for Financial Accounting", + "edition": "11th", + "author": "LIBBY", + "isbn": "9781265717254", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$189.75", + "item_type": "digital" + } + ] + }, + { + "department": "GEOG", + "course_num": "6265", + "section": "80", + "instructor": "Dmitry Streletskiy", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Geography of Russia & Its Neighbors", + "edition": "2nd", + "author": "Blinnikov", + "isbn": "9781462544592", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Guilford Press", + "type_condition": "BUY_USED", + "price_display": "$58.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Geography of Russia & Its Neighbors", + "edition": "2nd", + "author": "Blinnikov", + "isbn": "9781462544592", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Guilford Press", + "type_condition": "BUY_NEW", + "price_display": "$78.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "A Geography of Russia and Its Neighbors", + "edition": "2nd", + "author": "Blinnikov", + "isbn": "9781462544653", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Guilford Press", + "type_condition": "BUY_NEW", + "price_display": "$67.00", + "item_type": "digital" + } + ] + }, + { + "department": "CTAD", + "course_num": "1215", + "section": "10", + "instructor": "Tonya Beckman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Respect for Acting", + "edition": "2nd", + "author": "Hagen", + "isbn": "9780470228487", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$10.10", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Respect for Acting", + "edition": "2nd", + "author": "Hagen", + "isbn": "9780470228487", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Respect for Acting", + "edition": "2nd", + "author": "Hagen", + "isbn": "9780470228487", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Respect for Acting", + "edition": "2nd", + "author": "Hagen", + "isbn": "9780470228487", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$17.21", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Actions: Actors' Thesaurus", + "edition": "N/A", + "author": "Caldarone", + "isbn": "9780896762527", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2006", + "publisher": "Ingram Book Company", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Actions: Actors' Thesaurus", + "edition": "N/A", + "author": "Caldarone", + "isbn": "9780896762527", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2006", + "publisher": "Ingram Book Company", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Actions: Actors' Thesaurus", + "edition": "N/A", + "author": "Caldarone", + "isbn": "9780896762527", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2006", + "publisher": "Ingram Book Company", + "type_condition": "RENTAL_NEW", + "price_display": "$14.96", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ANTH", + "course_num": "6891", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ARAB", + "course_num": "2105", + "section": "10", + "instructor": "Ebtissam Oraby", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Music & Media in the Arab World", + "edition": "N/A", + "author": "Frishkopf", + "isbn": "9789774162930", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "American University in Cairo Press", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Music & Media in the Arab World", + "edition": "N/A", + "author": "Frishkopf", + "isbn": "9789774162930", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "American University in Cairo Press", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pop Culture in North Africa & the Middle East", + "edition": "N/A", + "author": "Hammond", + "isbn": "9781440833830", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "ABC-CLIO, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$118.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pop Culture in North Africa & the Middle East", + "edition": "N/A", + "author": "Hammond", + "isbn": "9781440833830", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "ABC-CLIO, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$88.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Popular Culture in the Middle East & North Africa", + "edition": "N/A", + "author": "El Hamamsy", + "isbn": "9780415509725", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Popular Culture in the Middle East & North Africa", + "edition": "N/A", + "author": "El Hamamsy", + "isbn": "9780415509725", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Food Culture in the near East, Middle East, & North Africa", + "edition": "N/A", + "author": "Heine", + "isbn": "9780313329562", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Greenwood", + "type_condition": "BUY_NEW", + "price_display": "$55.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Food Culture in the near East, Middle East, & North Africa", + "edition": "N/A", + "author": "Heine", + "isbn": "9780313329562", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Greenwood", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Veil: Women Writers on its History, Lore, & Politics", + "edition": "N/A", + "author": "Heath", + "isbn": "9780520250406", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$60.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Veil: Women Writers on its History, Lore, & Politics", + "edition": "N/A", + "author": "Heath", + "isbn": "9780520250406", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$45.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Film in the Middle East & North Africa", + "edition": "N/A", + "author": "Gugler", + "isbn": "9780292737563", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2011", + "publisher": "University of Texas Press Warehouse c/o Chicago Distribution Center", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Film in the Middle East & North Africa", + "edition": "N/A", + "author": "Gugler", + "isbn": "9780292737563", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2011", + "publisher": "University of Texas Press Warehouse c/o Chicago Distribution Center", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Anthropology of the Middle East and North Africa", + "edition": "N/A", + "author": "Slyomovics", + "isbn": "9780253007612", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Indiana University Press", + "type_condition": "BUY_NEW", + "price_display": "$9.99", + "item_type": "digital" + }, + { + "title": "Men and Popular Music in Algeria", + "edition": "N/A", + "author": "Schade-Poulsen", + "isbn": "9780292787629", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Texas Press Warehouse c/o Chicago Distribution Center", + "type_condition": "BUY_NEW", + "price_display": "$25.00", + "item_type": "digital" + }, + { + "title": "The Veil", + "edition": "1st", + "author": "Heath", + "isbn": "9780520941601", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "item_type": "digital" + }, + { + "title": "Food Culture in the Near East, Middle East, and North Africa", + "edition": "N/A", + "author": "Heine", + "isbn": "9780313062315", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$44.25", + "item_type": "digital" + }, + { + "title": "Food Culture in the Near East, Middle East, and North Africa", + "edition": "N/A", + "author": "Heine", + "isbn": "9780313062315", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$52.50", + "item_type": "digital" + }, + { + "title": "Food Culture in the Near East, Middle East, and North Africa", + "edition": "N/A", + "author": "Heine", + "isbn": "9780313062315", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Fairchild Books/Bloomsbury Publishing", + "type_condition": "BUY_NEW", + "price_display": "$56.50", + "item_type": "digital" + } + ] + }, + { + "department": "BISC", + "course_num": "1005", + "section": "46", + "instructor": "Terrance New", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "2111", + "section": "10", + "instructor": "Kyle Levers", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Exercise Physiology", + "edition": "9th", + "author": "McArdle", + "isbn": "9781975159993", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_NEW", + "price_display": "$169.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Exercise Physiology", + "edition": "9th", + "author": "McArdle", + "isbn": "9781975159993", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_USED", + "price_display": "$126.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Exercise Physiology", + "edition": "9th", + "author": "McArdle", + "isbn": "9781975160012", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_NEW", + "price_display": "$144.99", + "item_type": "digital" + } + ] + }, + { + "department": "APSC", + "course_num": "2113", + "section": "12", + "instructor": "Samir Bannout", + "term_name": "Fall 2023", + "texts": [ + { + "title": "First Course in Differential Equations with Modeling Applic", + "edition": "11th", + "author": "Zill", + "isbn": "9781305965720", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2018", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$133.04", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "First Course in Differential Equations with Modeling Applic", + "edition": "11th", + "author": "Zill", + "isbn": "9781305965720", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2018", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$316.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "First Course in Differential Equations with Modeling Applic", + "edition": "11th", + "author": "Zill", + "isbn": "9781305965720", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2018", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$237.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "First Course in Differential Equations with Modeling Applic", + "edition": "11th", + "author": "Zill", + "isbn": "9781305965720", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2018", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$253.40", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "A First Course in Differential Equations with Modeling Applications", + "edition": "11th", + "author": "Zill", + "isbn": "9781337515573", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "A First Course in Differential Equations with Modeling Applications", + "edition": "11th", + "author": "Zill", + "isbn": "9781337515573", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$67.99", + "item_type": "digital" + }, + { + "title": "A First Course in Differential Equations with Modeling Applications", + "edition": "11th", + "author": "Zill", + "isbn": "9781337515573", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$86.49", + "item_type": "digital" + } + ] + }, + { + "department": "ACCY", + "course_num": "6301", + "section": "10", + "instructor": "Angela Gore", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Auditing & Assurance Services (RRPHE)", + "edition": "17th", + "author": "Arens", + "isbn": "9780134897431", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Auditing & Assurance Services (RRPHE)", + "edition": "17th", + "author": "Arens", + "isbn": "9780134897431", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pearson eText Auditing and Assurance Services -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "17th", + "author": "Elder", + "isbn": "9780135635131", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Auditing and Assurance Services", + "edition": "17th", + "author": "Arens", + "isbn": "9780135171219", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$110.25", + "item_type": "digital" + }, + { + "title": "Auditing and Assurance Services", + "edition": "17th", + "author": "Arens", + "isbn": "9780135169216", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$110.25", + "item_type": "digital" + } + ] + }, + { + "department": "CE", + "course_num": "4411", + "section": "10", + "instructor": "Majid Manzari", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Introduction to Soil Mechanics Laboratory Testing", + "edition": "N/A", + "author": "Fratta", + "isbn": "9781420045628", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2007", + "publisher": "CRC Press LLC", + "type_condition": "BUY_USED", + "price_display": "$67.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introduction to Soil Mechanics Laboratory Testing", + "edition": "N/A", + "author": "Fratta", + "isbn": "9781420045628", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2007", + "publisher": "CRC Press LLC", + "type_condition": "BUY_NEW", + "price_display": "$89.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "AMST", + "course_num": "6930", + "section": "10", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6004", + "section": "10", + "instructor": "Jasmine Johnson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6465", + "section": "10", + "instructor": "Maureen Murphy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "2118", + "section": "33", + "instructor": "Joshua Landon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "2131", + "section": "10", + "instructor": "Chris Meyers", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Ethical Theory", + "edition": "6th", + "author": "Pojman", + "isbn": "9780495808770", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$87.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ethical Theory", + "edition": "6th", + "author": "Pojman", + "isbn": "9780495808770", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$218.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ethical Theory", + "edition": "6th", + "author": "Pojman", + "isbn": "9780495808770", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$164.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "LSPA", + "course_num": "1031", + "section": "12", + "instructor": "Chaz Berry", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6499", + "section": "10", + "instructor": "Ryan Engstrom", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "103", + "instructor": "Xitong Liu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "1000", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SUST", + "course_num": "3003", + "section": "30", + "instructor": "Tara Scully", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "1001", + "section": "10", + "instructor": "Ellen Yeung", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Achieve for Introducing Psychology, (1 term) (CUSTOM GWU)", + "edition": "5th", + "author": "Schacter", + "isbn": "9781319560218", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$75.75", + "item_type": "print" + } + ] + }, + { + "department": "DNSC", + "course_num": "4280", + "section": "10", + "instructor": "Zhengling Qi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6998", + "section": "21", + "instructor": "Omur Ozel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GTCH", + "course_num": "2003", + "section": "12", + "instructor": "Kamellia Keo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "1014", + "section": "15", + "instructor": "Eliana Parker", + "term_name": "Fall 2023", + "texts": [ + { + "title": "MyLab Spanish with Pearson eText -- Access Card -- for Gente: A task-based approach to learning Spanish (One-Semester)", + "edition": "4th", + "author": "Baulenas", + "isbn": "9780135307632", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$146.75", + "item_type": "digital" + } + ] + }, + { + "department": "PHIL", + "course_num": "3100", + "section": "10", + "instructor": "Eyal Aviv", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Satipatthana Meditation", + "edition": "N/A", + "author": "Analayo", + "isbn": "9781911407102", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Windhorse Publications", + "type_condition": "BUY_USED", + "price_display": "$22.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Satipatthana Meditation", + "edition": "N/A", + "author": "Analayo", + "isbn": "9781911407102", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Windhorse Publications", + "type_condition": "BUY_NEW", + "price_display": "$29.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bliss of Inner Fire", + "edition": "N/A", + "author": "Yeshe", + "isbn": "9780861711369", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Wisdom Publications", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bliss of Inner Fire", + "edition": "N/A", + "author": "Yeshe", + "isbn": "9780861711369", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Wisdom Publications", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Boundless Heart", + "edition": "N/A", + "author": "Feldman", + "isbn": "9781611803730", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Shambhala Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Boundless Heart", + "edition": "N/A", + "author": "Feldman", + "isbn": "9781611803730", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Shambhala Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mindfulness in Plain English", + "edition": "20th", + "author": "Gunaratana", + "isbn": "9780861719068", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Wisdom Publications", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mindfulness in Plain English", + "edition": "20th", + "author": "Gunaratana", + "isbn": "9780861719068", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Wisdom Publications", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mindfulness in Plain English", + "edition": "20th", + "author": "Gunaratana", + "isbn": "9780861719068", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Wisdom Publications", + "type_condition": "RENTAL_USED", + "price_display": "$7.18", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beyond Mindfulness in Plain English", + "edition": "N/A", + "author": "Gunaratana", + "isbn": "9780861715299", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Wisdom Publications", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beyond Mindfulness in Plain English", + "edition": "N/A", + "author": "Gunaratana", + "isbn": "9780861715299", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Wisdom Publications", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wakeful Body", + "edition": "N/A", + "author": "Baker", + "isbn": "9781611808742", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Shambhala Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wakeful Body", + "edition": "N/A", + "author": "Baker", + "isbn": "9781611808742", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Shambhala Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "OT", + "course_num": "8403", + "section": "10", + "instructor": "Sheila Moyle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1311", + "section": "10", + "instructor": "Timothy Shenk", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1014", + "section": "10", + "instructor": "Mimi Malfitano", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8999", + "section": "14", + "instructor": "Majid Manzari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "1003", + "section": "10", + "instructor": "Robert Eisen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Invitation to World Religions", + "edition": "4th", + "author": "Brodd", + "isbn": "9780197543788", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$119.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invitation to World Religions", + "edition": "4th", + "author": "Brodd", + "isbn": "9780197543788", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$90.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invitation to World Religions", + "edition": "4th", + "author": "Brodd", + "isbn": "9780197543788", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$50.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invitation to World Religions", + "edition": "4th", + "author": "Brodd", + "isbn": "9780197570722", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$54.99", + "item_type": "digital" + }, + { + "title": "Invitation to World Religions", + "edition": "4th", + "author": "Brodd", + "isbn": "9780197570722", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$63.45", + "item_type": "digital" + }, + { + "title": "Invitation to World Religions", + "edition": "4th", + "author": "Brodd", + "isbn": "9780197570722", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$84.60", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "6510", + "section": "10", + "instructor": "Beth Maclin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "18", + "instructor": "Pedro Silva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "4160", + "section": "80", + "instructor": "Gina Adam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "8999", + "section": "10", + "instructor": "Jennifer Spencer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "1090", + "section": "MV", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8415", + "section": "10", + "instructor": "Janet Heinrich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6145", + "section": "10", + "instructor": "Scott Pace", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Spaceflight & Myth of Presidential Leadership", + "edition": "N/A", + "author": "Launius", + "isbn": "9780252066320", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "University of Illinois Press", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "item_type": "print" + }, + { + "title": "Spaceflight & Myth of Presidential Leadership", + "edition": "N/A", + "author": "Launius", + "isbn": "9780252066320", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "University of Illinois Press", + "type_condition": "BUY_NEW", + "price_display": "$23.00", + "item_type": "print" + }, + { + "title": "Penguin Book of Outer Space Exploration", + "edition": "N/A", + "author": "Logsdon", + "isbn": "9780143129950", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Classics", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Penguin Book of Outer Space Exploration", + "edition": "N/A", + "author": "Logsdon", + "isbn": "9780143129950", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Classics", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Heavens & Earth", + "edition": "N/A", + "author": "McDougall", + "isbn": "9780801857485", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1985", + "publisher": "The Johns Hopkins University Press", + "type_condition": "BUY_USED", + "price_display": "$35.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Heavens & Earth", + "edition": "N/A", + "author": "McDougall", + "isbn": "9780801857485", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1985", + "publisher": "The Johns Hopkins University Press", + "type_condition": "BUY_NEW", + "price_display": "$47.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "SMPA", + "course_num": "2173", + "section": "10", + "instructor": "Michael Nilsson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "23", + "instructor": "Timothy Wood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1002", + "section": "32", + "instructor": "Forrest Maltzman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6102", + "section": "10", + "instructor": "Stacey Schamber", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HLWL", + "course_num": "1109", + "section": "16", + "instructor": "Sarah Axelson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2181", + "section": "14", + "instructor": "Yingyan Zhao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "3170", + "section": "81", + "instructor": "Patricia Chu", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Best We Could Do", + "edition": "N/A", + "author": "Bui", + "isbn": "9781419718786", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Harry N. Abrams Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$19.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Best We Could Do", + "edition": "N/A", + "author": "Bui", + "isbn": "9781419718786", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Harry N. Abrams Incorporated", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "We Hereby Refuse: Japanese American Resistance to Wartime Incarceration", + "edition": "N/A", + "author": "Abe", + "isbn": "9781634059763", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Consortium Book Sales & Distribution", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "We Hereby Refuse: Japanese American Resistance to Wartime Incarceration", + "edition": "N/A", + "author": "Abe", + "isbn": "9781634059763", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Consortium Book Sales & Distribution", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156034029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "RENTAL_USED", + "price_display": "$7.92", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156034029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "BUY_NEW", + "price_display": "$17.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156034029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156034029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "RENTAL_NEW", + "price_display": "$13.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Asian American History: a Very Short Introduction", + "edition": "2nd", + "author": "Hsu", + "isbn": "9780190219765", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$11.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Asian American History: a Very Short Introduction", + "edition": "2nd", + "author": "Hsu", + "isbn": "9780190219765", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$9.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China Men", + "edition": "N/A", + "author": "Kingston", + "isbn": "9780679723288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$6.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China Men", + "edition": "N/A", + "author": "Kingston", + "isbn": "9780679723288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China Men", + "edition": "N/A", + "author": "Kingston", + "isbn": "9780679723288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China Men", + "edition": "N/A", + "author": "Kingston", + "isbn": "9780679723288", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$11.02", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fifth Chinese Daughter", + "edition": "N/A", + "author": "Wong", + "isbn": "9780295745909", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Washington Press", + "type_condition": "BUY_NEW", + "price_display": "$25.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fifth Chinese Daughter", + "edition": "N/A", + "author": "Wong", + "isbn": "9780295745909", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Washington Press", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "I Was Their American Dream", + "edition": "N/A", + "author": "Gharib", + "isbn": "9780525575115", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Clarkson Potter", + "type_condition": "BUY_NEW", + "price_display": "$16.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "I Was Their American Dream", + "edition": "N/A", + "author": "Gharib", + "isbn": "9780525575115", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Clarkson Potter", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Passing for Perfect", + "edition": "N/A", + "author": "Ninh", + "isbn": "9781439920527", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Temple University Press", + "type_condition": "BUY_NEW", + "price_display": "$31.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Passing for Perfect", + "edition": "N/A", + "author": "Ninh", + "isbn": "9781439920527", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Temple University Press", + "type_condition": "BUY_USED", + "price_display": "$24.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Minor Feelings", + "edition": "N/A", + "author": "Hong", + "isbn": "9781984820389", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Random House Adult Trade Publ", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Minor Feelings", + "edition": "N/A", + "author": "Hong", + "isbn": "9781984820389", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Random House Adult Trade Publ", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Minor Feelings", + "edition": "N/A", + "author": "Hong", + "isbn": "9781984820389", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Random House Adult Trade Publ", + "type_condition": "RENTAL_NEW", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Twilight: Los Angeles, 1992", + "edition": "N/A", + "author": "Smith", + "isbn": "9780385473767", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Twilight: Los Angeles, 1992", + "edition": "N/A", + "author": "Smith", + "isbn": "9780385473767", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Twilight: Los Angeles, 1992", + "edition": "N/A", + "author": "Smith", + "isbn": "9780385473767", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey Hunting", + "edition": "N/A", + "author": "Garcia", + "isbn": "9780345466105", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2004", + "publisher": "Ballantine Books", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey Hunting", + "edition": "N/A", + "author": "Garcia", + "isbn": "9780345466105", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2004", + "publisher": "Ballantine Books", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey Hunting", + "edition": "N/A", + "author": "Garcia", + "isbn": "9780345466105", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2004", + "publisher": "Ballantine Books", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Monkey Hunting", + "edition": "N/A", + "author": "Garcia", + "isbn": "9780345466105", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2004", + "publisher": "Ballantine Books", + "type_condition": "RENTAL_NEW", + "price_display": "$11.05", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Asian American History: A Very Short Introduction", + "edition": "N/A", + "author": "Hsu", + "isbn": "9780190219789", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$5.19", + "item_type": "digital" + }, + { + "title": "Asian American History: A Very Short Introduction", + "edition": "N/A", + "author": "Hsu", + "isbn": "9780190219789", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$5.99", + "item_type": "digital" + }, + { + "title": "Asian American History: A Very Short Introduction", + "edition": "N/A", + "author": "Hsu", + "isbn": "9780190219789", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$7.99", + "item_type": "digital" + }, + { + "title": "The Reluctant Fundamentalist", + "edition": "N/A", + "author": "Hamid", + "isbn": "9780156033121", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$14.99", + "item_type": "digital" + }, + { + "title": "Fifth Chinese Daughter", + "edition": "N/A", + "author": "Wong", + "isbn": "9780295745916", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Washington Press", + "type_condition": "BUY_NEW", + "price_display": "$20.75", + "item_type": "digital" + } + ] + }, + { + "department": "GEOG", + "course_num": "2104", + "section": "33", + "instructor": "Richard Hinton", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6999", + "section": "22", + "instructor": "Volker Sorger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "KOR", + "course_num": "3162", + "section": "10", + "instructor": "Immanuel Kim", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "4595", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "15", + "instructor": "Yin-Lin Shen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "3118", + "section": "10", + "instructor": "Majid Fotuhi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOMP", + "course_num": "6202", + "section": "10", + "instructor": "Brenda Bradley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "6281", + "section": "80", + "instructor": "Holly Wade", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSCI", + "course_num": "6291", + "section": "PT6", + "instructor": "Marisa Birkmeier", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1003", + "section": "30", + "instructor": "Adam Dean", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6503", + "section": "12", + "instructor": "Andrea Bertone", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3190", + "section": "22", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "1001", + "section": "12", + "instructor": "Elene KeKelia", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Presentation of Self in Everyday Life (Trade Ed)", + "edition": "N/A", + "author": "Goffman", + "isbn": "9780385094023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1959", + "publisher": "Doubleday Books", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Presentation of Self in Everyday Life (Trade Ed)", + "edition": "N/A", + "author": "Goffman", + "isbn": "9780385094023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1959", + "publisher": "Doubleday Books", + "type_condition": "RENTAL_NEW", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Presentation of Self in Everyday Life (Trade Ed)", + "edition": "N/A", + "author": "Goffman", + "isbn": "9780385094023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1959", + "publisher": "Doubleday Books", + "type_condition": "RENTAL_USED", + "price_display": "$7.92", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Presentation of Self in Everyday Life (Trade Ed)", + "edition": "N/A", + "author": "Goffman", + "isbn": "9780385094023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1959", + "publisher": "Doubleday Books", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Sociology (w/ Inquizitive Access Code)", + "edition": "12th", + "author": "Giddens", + "isbn": "9780393538021", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$79.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Sociology (w/ Inquizitive Access Code)", + "edition": "12th", + "author": "Giddens", + "isbn": "9780393538021", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_USED", + "price_display": "$33.39", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Sociology (w/ Inquizitive Access Code)", + "edition": "12th", + "author": "Giddens", + "isbn": "9780393538021", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$59.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introduction to Sociology (Seagull Twelfth Edition)", + "edition": "12th", + "author": "Giddens", + "isbn": "9780393537963", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$37.47", + "item_type": "digital" + }, + { + "title": "Introduction to Sociology (Seagull Twelfth Edition)", + "edition": "12th", + "author": "Giddens", + "isbn": "9780393537963", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$47.69", + "item_type": "digital" + } + ] + }, + { + "department": "PHIL", + "course_num": "2135", + "section": "10", + "instructor": "Lloyd Eby", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "49", + "instructor": "Gerald Daigle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "3100W", + "section": "11", + "instructor": "Manuel Cuellar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GTCH", + "course_num": "3202", + "section": "10", + "instructor": "Jonathon Grooms", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "3390", + "section": "11", + "instructor": "Chet'la Sebree", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "10", + "instructor": "Robert Pless", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3090", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "6293", + "section": "80", + "instructor": "Aman Luthra", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "4401", + "section": "11", + "instructor": "Anupama Phene", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "10", + "instructor": "Hao Huang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "6234", + "section": "G80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1102", + "section": "31", + "instructor": "Douglas Boyce", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JAPN", + "course_num": "1001", + "section": "30", + "instructor": "Kaori Iwai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6995", + "section": "18", + "instructor": "Ekundayo Shittu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2221", + "section": "10", + "instructor": "Jasmine Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6264", + "section": "10", + "instructor": "Susannah Jenkins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8203", + "section": "15", + "instructor": "Karen Weise", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "6265", + "section": "80", + "instructor": "Harald Anderson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Relational Database Design & Implementation", + "edition": "4th", + "author": "Harrington", + "isbn": "9780128043998", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "BUY_USED", + "price_display": "$52.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Relational Database Design & Implementation", + "edition": "4th", + "author": "Harrington", + "isbn": "9780128043998", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "BUY_NEW", + "price_display": "$70.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Customer Relationship Management", + "edition": "3rd", + "author": "Kumar", + "isbn": "9783662553800", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Springer Nature", + "type_condition": "RENTAL_USED", + "price_display": "$37.80", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Customer Relationship Management", + "edition": "3rd", + "author": "Kumar", + "isbn": "9783662553800", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Springer Nature", + "type_condition": "BUY_USED", + "price_display": "$67.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Customer Relationship Management", + "edition": "3rd", + "author": "Kumar", + "isbn": "9783662553800", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$67.49", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Customer Relationship Management", + "edition": "3rd", + "author": "Kumar", + "isbn": "9783662553800", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$89.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Relational Database Design and Implementation", + "edition": "4th", + "author": "Harrington", + "isbn": "9780128499023", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Elsevier", + "type_condition": "BUY_NEW", + "price_display": "$59.95", + "item_type": "digital" + }, + { + "title": "Customer Relationship Management", + "edition": "3rd", + "author": "Kumar", + "isbn": "9783662553817", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$64.99", + "item_type": "digital" + }, + { + "title": "Customer Relationship Management", + "edition": "3rd", + "author": "Kumar", + "isbn": "9783662553817", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$64.99", + "item_type": "digital" + }, + { + "title": "Customer Relationship Management", + "edition": "3rd", + "author": "Kumar", + "isbn": "9783662553817", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$64.99", + "item_type": "digital" + }, + { + "title": "Customer Relationship Management", + "edition": "3rd", + "author": "Kumar", + "isbn": "9783662553817", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$64.99", + "item_type": "digital" + } + ] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "45", + "instructor": "Hugo Junghenn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3190", + "section": "86", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6275", + "section": "80", + "instructor": "Patricia Kabra", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "3182", + "section": "10", + "instructor": "Maida Withers", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "11", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "3191", + "section": "10", + "instructor": "Steven Shooter", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Machine Design (Loose pgs)", + "edition": "6th", + "author": "Norton", + "isbn": "9780135214800", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson Education", + "type_condition": "BUY_USED", + "price_display": "$99.50", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Machine Design (Loose pgs)", + "edition": "6th", + "author": "Norton", + "isbn": "9780135214800", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson Education", + "type_condition": "BUY_NEW", + "price_display": "$132.50", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Machine Design", + "edition": "6th", + "author": "Norton", + "isbn": "9780135184233", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2020", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$263.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Machine Design", + "edition": "6th", + "author": "Norton", + "isbn": "9780135184233", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2020", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$147.32", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Machine Design", + "edition": "6th", + "author": "Norton", + "isbn": "9780135184233", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2020", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$350.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pearson eText for Machine Design: An Integrated Approach -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "6th", + "author": "Norton", + "isbn": "9780137516872", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Machine Design", + "edition": "6th", + "author": "Norton", + "isbn": "9780134997605", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "WGSS", + "course_num": "1360", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "1109", + "section": "10", + "instructor": "Gabrielle Headrick", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3513", + "section": "10", + "instructor": "Raquel Sofia Rodrigues Rosa Machaqueiro", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Not Enough", + "edition": "N/A", + "author": "Moyn", + "isbn": "9780674241398", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Not Enough", + "edition": "N/A", + "author": "Moyn", + "isbn": "9780674241398", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$15.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "SMPA", + "course_num": "3469", + "section": "10", + "instructor": "Silvio Waisbord", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8101", + "section": "22", + "instructor": "William Dardick", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "76", + "instructor": "Daniel Jaqua", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2449", + "section": "10", + "instructor": "Richard Chasdi", + "term_name": "Fall 2023", + "texts": [ + { + "title": "All Quiet on the Western Front (Rack Size)", + "edition": "N/A", + "author": "Remarque", + "isbn": "9780449213940", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1958", + "publisher": "Ballantine Books", + "type_condition": "RENTAL_NEW", + "price_display": "$6.74", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "All Quiet on the Western Front (Rack Size)", + "edition": "N/A", + "author": "Remarque", + "isbn": "9780449213940", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1958", + "publisher": "Ballantine Books", + "type_condition": "RENTAL_USED", + "price_display": "$3.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "All Quiet on the Western Front (Rack Size)", + "edition": "N/A", + "author": "Remarque", + "isbn": "9780449213940", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1958", + "publisher": "Ballantine Books", + "type_condition": "BUY_NEW", + "price_display": "$8.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "All Quiet on the Western Front (Rack Size)", + "edition": "N/A", + "author": "Remarque", + "isbn": "9780449213940", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1958", + "publisher": "Ballantine Books", + "type_condition": "BUY_USED", + "price_display": "$6.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding Global Conflict & Cooperation (RRPHE)", + "edition": "10th", + "author": "Nye", + "isbn": "9780135571439", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "item_type": "print" + }, + { + "title": "Understanding Global Conflict & Cooperation (RRPHE)", + "edition": "10th", + "author": "Nye", + "isbn": "9780135571439", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "item_type": "print" + }, + { + "title": "Pearson eText for Understanding Global Conflict and Cooperation: An Introduction to Theory and History -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "10th", + "author": "Nye", + "isbn": "9780137477609", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Understanding Global Conflict and Cooperation", + "edition": "10th", + "author": "Nye", + "isbn": "9780134404998", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "6023", + "section": "10", + "instructor": "Susan Wood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "8999", + "section": "21", + "instructor": "Ahmed Louri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "35", + "instructor": "Hugo Junghenn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3186", + "section": "15", + "instructor": "Albert Keidel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "26", + "instructor": "Lauren Philips", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "4598", + "section": "10", + "instructor": "Carl Gudenius", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8730", + "section": "10", + "instructor": "Eugene Migliaccio", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEHD", + "course_num": "8999", + "section": "15", + "instructor": "Ryan Watkins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M1", + "instructor": "Gordon Mantler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "NSC", + "course_num": "2151", + "section": "10", + "instructor": "Joseph Ellis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "3811", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "8999", + "section": "10", + "instructor": "Michael Doering", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6502", + "section": "18", + "instructor": "Yasaman Sutton", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "44", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "4401", + "section": "10", + "instructor": "Anupama Phene", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPP", + "course_num": "6202", + "section": "10", + "instructor": "John Forrer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1121", + "section": "10", + "instructor": "Angela Zimmerman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3304", + "section": "10", + "instructor": "Denver Brunsman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "OT", + "course_num": "8503", + "section": "10", + "instructor": "Sarah Doerrer", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Foundations of Clinical Research", + "edition": "4th", + "author": "Portney", + "isbn": "9780803661134", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "F. A. Davis Company", + "type_condition": "RENTAL_NEW", + "price_display": "$91.65", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Foundations of Clinical Research", + "edition": "4th", + "author": "Portney", + "isbn": "9780803661134", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$141.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Foundations of Clinical Research", + "edition": "4th", + "author": "Portney", + "isbn": "9780803661134", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_USED", + "price_display": "$105.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Foundations of Clinical Research", + "edition": "4th", + "author": "Portney", + "isbn": "9780803661134", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "F. A. Davis Company", + "type_condition": "RENTAL_USED", + "price_display": "$59.22", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Foundations of Clinical Research", + "edition": "N/A", + "author": "Portney", + "isbn": "9781719642477", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$80.50", + "item_type": "digital" + } + ] + }, + { + "department": "FORS", + "course_num": "2107", + "section": "MV", + "instructor": "Megan Foley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M65", + "instructor": "Nabila Hijazi", + "term_name": "Fall 2023", + "texts": [ + { + "title": "No Refuge for Women", + "edition": "N/A", + "author": "Von Welser", + "isbn": "9781771643078", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Greystone Books", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Refuge for Women", + "edition": "N/A", + "author": "Von Welser", + "isbn": "9781771643078", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Greystone Books", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "M35", + "instructor": "Joseph Trullinger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6999", + "section": "13", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "6243", + "section": "10", + "instructor": "Ehsan Naranji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2334", + "section": "11", + "instructor": "Logan Puck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLAV", + "course_num": "2785", + "section": "10", + "instructor": "Peter Rollberg", + "term_name": "Fall 2023", + "texts": [ + { + "title": "A to Z of Russian and Soviet Cinema", + "edition": "N/A", + "author": "Rollberg", + "isbn": "9780810876194", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Scarecrow Press, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$55.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "A to Z of Russian and Soviet Cinema", + "edition": "N/A", + "author": "Rollberg", + "isbn": "9780810876194", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Scarecrow Press, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "A to Z of Russian and Soviet Cinema", + "edition": "N/A", + "author": "Rollberg", + "isbn": "9780810876194", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Scarecrow Press, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "GEOL", + "course_num": "1002", + "section": "31", + "instructor": "James Kerr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "6216", + "section": "80", + "instructor": "Anu Juneja", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2219", + "section": "10", + "instructor": "Vincent Stine", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Party Politics in America", + "edition": "18th", + "author": "Hershey", + "isbn": "9780367472573", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$128.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Party Politics in America", + "edition": "18th", + "author": "Hershey", + "isbn": "9780367472573", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_USED", + "price_display": "$96.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Third Parties in America (Rev & Exp)", + "edition": "N/A", + "author": "Rosenstone", + "isbn": "9780691026138", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$45.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Third Parties in America (Rev & Exp)", + "edition": "N/A", + "author": "Rosenstone", + "isbn": "9780691026138", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Party Wars", + "edition": "N/A", + "author": "Sinclair", + "isbn": "9780806137797", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "University of Oklahoma Press", + "type_condition": "BUY_NEW", + "price_display": "$29.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Party Wars", + "edition": "N/A", + "author": "Sinclair", + "isbn": "9780806137797", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "University of Oklahoma Press", + "type_condition": "RENTAL_USED", + "price_display": "$11.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Party Wars", + "edition": "N/A", + "author": "Sinclair", + "isbn": "9780806137797", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "University of Oklahoma Press", + "type_condition": "BUY_USED", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Third Parties in America", + "edition": "2nd", + "author": "Rosenstone", + "isbn": "9780691190525", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$58.00", + "item_type": "digital" + }, + { + "title": "Party Politics in America", + "edition": "18th", + "author": "Hershey", + "isbn": "9781000220865", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$110.00", + "item_type": "digital" + } + ] + }, + { + "department": "EMSE", + "course_num": "4198", + "section": "18", + "instructor": "Ekundayo Shittu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6898", + "section": "23", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "6261", + "section": "10", + "instructor": "Todd Miller", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2214", + "section": "11", + "instructor": "Daniel Ericson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Constitutional Law for a Changing America: Institutional Powers and Constraints", + "edition": "11th", + "author": "Epstein", + "isbn": "9781071822128", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_NEW", + "price_display": "$174.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Constitutional Law for a Changing America: Institutional Powers and Constraints", + "edition": "11th", + "author": "Epstein", + "isbn": "9781071822128", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_USED", + "price_display": "$131.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Constitutional Law for a Changing America", + "edition": "11th", + "author": "Epstein", + "isbn": "9781071822142", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$59.99", + "item_type": "digital" + }, + { + "title": "Constitutional Law for a Changing America", + "edition": "11th", + "author": "Epstein", + "isbn": "9781071822142", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$67.49", + "item_type": "digital" + }, + { + "title": "Constitutional Law for a Changing America", + "edition": "11th", + "author": "Epstein", + "isbn": "9781071822142", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$75.00", + "item_type": "digital" + }, + { + "title": "Constitutional Law for a Changing America", + "edition": "11th", + "author": "Epstein", + "isbn": "9781071822142", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$108.74", + "item_type": "digital" + } + ] + }, + { + "department": "CNSL", + "course_num": "8998", + "section": "14", + "instructor": "Harvey Peters", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "4991", + "section": "10", + "instructor": "Susan Wiley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "6288", + "section": "10", + "instructor": "Elisabeth Rice", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "34", + "instructor": "Briana Doyle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "6246", + "section": "10", + "instructor": "Kyle Crandall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "14", + "instructor": "Zhenyu Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "6241", + "section": "10", + "instructor": "Michael Bamdad", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6998", + "section": "12", + "instructor": "Jonathan Deason", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "3162", + "section": "11", + "instructor": "Steven Hamilton", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8291", + "section": "11", + "instructor": "Katherine Marshall Woods", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2490", + "section": "81", + "instructor": "Emily Bock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "3190", + "section": "82", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "63", + "instructor": "Jonathan Deason", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2010", + "section": "83", + "instructor": "Nicole Ivy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JSTD", + "course_num": "3061", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6998", + "section": "20", + "instructor": "Ahmed Louri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "1011", + "section": "13", + "instructor": "Andrea Carosso", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "24", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "6221", + "section": "10", + "instructor": "Lauryn King", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6295", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8271", + "section": "11", + "instructor": "Loring Ingraham", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1005", + "section": "35", + "instructor": "Alexander Downes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6999", + "section": "24", + "instructor": "Guru Prasadh Venkataramani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHAR", + "course_num": "8214", + "section": "10", + "instructor": "Paul Marvar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2013", + "section": "10", + "instructor": "Stephen Forssell", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Sage Vantage: Lifespan Development in Context: A Topical Approach", + "edition": "2nd", + "author": "Kuther", + "isbn": "9781071891025", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$93.00", + "item_type": "digital" + } + ] + }, + { + "department": "LSPA", + "course_num": "1012", + "section": "10", + "instructor": "Angela Ingram", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "3288W", + "section": "10", + "instructor": "Johnston Hall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "4040", + "section": "10", + "instructor": "Antonio Lopez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6102", + "section": "11", + "instructor": "Hazim Shatnawi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "2800W", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6898", + "section": "17", + "instructor": "Christopher Kojm", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6274", + "section": "10", + "instructor": "Wayne Psek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6416", + "section": "11", + "instructor": "Paul Ndebele", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "2192", + "section": "10", + "instructor": "Hayley Cutler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "40", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "6372", + "section": "10", + "instructor": "Robert Sutter", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Chinese Foreign Relations", + "edition": "5th", + "author": "Sutter", + "isbn": "9781538138298", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_NEW", + "price_display": "$45.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Chinese Foreign Relations", + "edition": "5th", + "author": "Sutter", + "isbn": "9781538138298", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_USED", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China & the World", + "edition": "N/A", + "author": "Shambaugh", + "isbn": "9780190062323", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$14.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China & the World", + "edition": "N/A", + "author": "Shambaugh", + "isbn": "9780190062323", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$23.56", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China & the World", + "edition": "N/A", + "author": "Shambaugh", + "isbn": "9780190062323", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$36.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China & the World", + "edition": "N/A", + "author": "Shambaugh", + "isbn": "9780190062323", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$27.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "World According to China", + "edition": "N/A", + "author": "Economy", + "isbn": "9781509537495", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Polity Press", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "World According to China", + "edition": "N/A", + "author": "Economy", + "isbn": "9781509537495", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Polity Press", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Dragon Roars Back", + "edition": "N/A", + "author": "Zhao", + "isbn": "9781503634145", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Stanford University Press", + "type_condition": "BUY_NEW", + "price_display": "$32.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dragon Roars Back", + "edition": "N/A", + "author": "Zhao", + "isbn": "9781503634145", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Stanford University Press", + "type_condition": "BUY_USED", + "price_display": "$24.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China and the World", + "edition": "N/A", + "author": "Shambaugh", + "isbn": "9780190062347", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$13.64", + "item_type": "digital" + }, + { + "title": "China and the World", + "edition": "N/A", + "author": "Shambaugh", + "isbn": "9780190062347", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$15.74", + "item_type": "digital" + }, + { + "title": "China and the World", + "edition": "N/A", + "author": "Shambaugh", + "isbn": "9780190062347", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$20.99", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "6022", + "section": "10", + "instructor": "Angela Hinzey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6500", + "section": "10", + "instructor": "Nisha Sachdev", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "6268", + "section": "10", + "instructor": "Ivy Ken", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Introducing Intersectionality", + "edition": "N/A", + "author": "Romero", + "isbn": "9780745663678", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Polity Press", + "type_condition": "BUY_NEW", + "price_display": "$26.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introducing Intersectionality", + "edition": "N/A", + "author": "Romero", + "isbn": "9780745663678", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Polity Press", + "type_condition": "RENTAL_USED", + "price_display": "$10.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introducing Intersectionality", + "edition": "N/A", + "author": "Romero", + "isbn": "9780745663678", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Polity Press", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Black Feminist Thought", + "edition": "3rd", + "author": "Collins", + "isbn": "9780415964722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Black Feminist Thought", + "edition": "3rd", + "author": "Collins", + "isbn": "9780415964722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$17.55", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Black Feminist Thought", + "edition": "3rd", + "author": "Collins", + "isbn": "9780415964722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "RENTAL_USED", + "price_display": "$10.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Black Feminist Thought", + "edition": "3rd", + "author": "Collins", + "isbn": "9780415964722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Indigenous Dispossession", + "edition": "N/A", + "author": "Castellanos", + "isbn": "9781503614345", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Stanford University Press", + "type_condition": "BUY_NEW", + "price_display": "$25.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Indigenous Dispossession", + "edition": "N/A", + "author": "Castellanos", + "isbn": "9781503614345", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Stanford University Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Struggling in the Land of Plenty", + "edition": "N/A", + "author": "Roschelle", + "isbn": "9781793600783", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Lexington Books", + "type_condition": "BUY_NEW", + "price_display": "$41.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Struggling in the Land of Plenty", + "edition": "N/A", + "author": "Roschelle", + "isbn": "9781793600783", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Lexington Books", + "type_condition": "BUY_USED", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brown & Gay in La", + "edition": "N/A", + "author": "Ocampo", + "isbn": "9781479824250", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "New York University Press", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Brown & Gay in La", + "edition": "N/A", + "author": "Ocampo", + "isbn": "9781479824250", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "New York University Press", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Webbed Connectivities", + "edition": "N/A", + "author": "Patil", + "isbn": "9781517911089", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "University of Minnesota Press", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Webbed Connectivities", + "edition": "N/A", + "author": "Patil", + "isbn": "9781517911089", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "University of Minnesota Press", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Flatlining", + "edition": "N/A", + "author": "Wingfield", + "isbn": "9780520300347", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Flatlining", + "edition": "N/A", + "author": "Wingfield", + "isbn": "9780520300347", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of California Press", + "type_condition": "RENTAL_NEW", + "price_display": "$20.97", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Flatlining", + "edition": "N/A", + "author": "Wingfield", + "isbn": "9780520300347", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of California Press", + "type_condition": "RENTAL_USED", + "price_display": "$14.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Flatlining", + "edition": "N/A", + "author": "Wingfield", + "isbn": "9780520300347", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fearing the Black Body", + "edition": "N/A", + "author": "Strings", + "isbn": "9781479886753", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "New York University Press", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fearing the Black Body", + "edition": "N/A", + "author": "Strings", + "isbn": "9781479886753", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "New York University Press", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introducing Intersectionality", + "edition": "1st", + "author": "Romero", + "isbn": "9781509525294", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$21.00", + "item_type": "digital" + }, + { + "title": "Fearing the Black Body", + "edition": "N/A", + "author": "Strings", + "isbn": "9781479831098", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "New York University Press", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "item_type": "digital" + }, + { + "title": "Black Feminist Thought, 30th Anniversary Edition", + "edition": "N/A", + "author": "Collins", + "isbn": "9781000506808", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$37.95", + "item_type": "digital" + } + ] + }, + { + "department": "SPAN", + "course_num": "1014", + "section": "12", + "instructor": "Eliana Parker", + "term_name": "Fall 2023", + "texts": [ + { + "title": "MyLab Spanish with Pearson eText -- Access Card -- for Gente: A task-based approach to learning Spanish (One-Semester)", + "edition": "4th", + "author": "Baulenas", + "isbn": "9780135307632", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$146.75", + "item_type": "digital" + } + ] + }, + { + "department": "CNSL", + "course_num": "8999", + "section": "15", + "instructor": "Bagmi Das", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6385", + "section": "12", + "instructor": "Scott Edwards", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1214", + "section": "12", + "instructor": "Morgan Duncan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EHS", + "course_num": "1002", + "section": "12", + "instructor": "Andrew Garrett", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "4205", + "section": "10", + "instructor": "Faith Bradley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1003", + "section": "35", + "instructor": "Adam Dean", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "101", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6551", + "section": "10", + "instructor": "Amita Vyas", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8999", + "section": "10", + "instructor": "Scott Beveridge", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PMGT", + "course_num": "6402", + "section": "10", + "instructor": "Evan Tracey", + "term_name": "Fall 2023", + "texts": [ + { + "title": "So You Think You Want to Run for Congress", + "edition": "N/A", + "author": "Franklin", + "isbn": "9781733444408", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Foreign Policy Association", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "So You Think You Want to Run for Congress", + "edition": "N/A", + "author": "Franklin", + "isbn": "9781733444408", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Foreign Policy Association", + "type_condition": "BUY_NEW", + "price_display": "$14.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Responsive Chord", + "edition": "2nd", + "author": "Schwartz", + "isbn": "9781633536050", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "MANGO PUBLISHING", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Responsive Chord", + "edition": "2nd", + "author": "Schwartz", + "isbn": "9781633536050", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "MANGO PUBLISHING", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Responsive Chord", + "edition": "2nd", + "author": "Schwartz", + "isbn": "9781633536050", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "MANGO PUBLISHING", + "type_condition": "RENTAL_NEW", + "price_display": "$12.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing on the Job", + "edition": "N/A", + "author": "Coven", + "isbn": "9780691229959", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing on the Job", + "edition": "N/A", + "author": "Coven", + "isbn": "9780691229959", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "MAE", + "course_num": "3166w", + "section": "10", + "instructor": "Yongsheng Leng", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "74", + "instructor": "Daniel Jaqua", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "2111", + "section": "10", + "instructor": "John Morgan Christoph", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M45", + "instructor": "Joshua Paiz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "New Laws of Robotics", + "edition": "N/A", + "author": "Pasquale", + "isbn": "9780674975224", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Belknap Press", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "New Laws of Robotics", + "edition": "N/A", + "author": "Pasquale", + "isbn": "9780674975224", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Belknap Press", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Atlas of AI", + "edition": "N/A", + "author": "Crawford", + "isbn": "9780300209570", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Yale University Press", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Atlas of AI", + "edition": "N/A", + "author": "Crawford", + "isbn": "9780300209570", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Atlas of AI", + "edition": "N/A", + "author": "Crawford", + "isbn": "9780300252392", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "item_type": "digital" + } + ] + }, + { + "department": "TSTD", + "course_num": "6298", + "section": "10", + "instructor": "Lisa Neirotti", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "3142W", + "section": "10", + "instructor": "Johan Ferreira", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Consumer Behavior", + "edition": "7th", + "author": "Hoyer", + "isbn": "9781305507272", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$133.04", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Consumer Behavior", + "edition": "7th", + "author": "Hoyer", + "isbn": "9781305507272", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$237.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Consumer Behavior", + "edition": "7th", + "author": "Hoyer", + "isbn": "9781305507272", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$205.89", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Consumer Behavior", + "edition": "7th", + "author": "Hoyer", + "isbn": "9781305507272", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$316.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "MindTap Marketing, 1 term (6 months) Instant Access for Hoyer/MacInnis/Pieters/Close-Scheinbaum's Consumer Behavior", + "edition": "7th", + "author": "Hoyer Wayne D. MacInnis Deb", + "isbn": "9781305640078", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$133.50", + "item_type": "digital" + }, + { + "title": "Cengage Unlimited, 1 term (4 months), 1st Edition", + "edition": "N/A", + "author": "Cengage Unlimited", + "isbn": "9780357700006", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cengage Unlimited", + "type_condition": "RENTAL_NEW", + "price_display": "$156.30", + "item_type": "digital" + }, + { + "title": "Cengage Unlimited, Multi-term (12 months)", + "edition": "N/A", + "author": "Cengage", + "isbn": "9780357700013", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cengage Unlimited", + "type_condition": "RENTAL_NEW", + "price_display": "$237.50", + "item_type": "digital" + }, + { + "title": "Cengage Unlimited, Multi-term (24 months), 1st Edition", + "edition": "N/A", + "author": "Cengage Unlimited", + "isbn": "9780357700020", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cengage Unlimited", + "type_condition": "RENTAL_NEW", + "price_display": "$312.50", + "item_type": "digital" + } + ] + }, + { + "department": "HIST", + "course_num": "2001", + "section": "M10", + "instructor": "Theodore Christov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "3127", + "section": "32", + "instructor": "Megan Leftwich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6999", + "section": "13", + "instructor": "Tarek El-Ghazawi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4454", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "1000", + "section": "10", + "instructor": "Evelyn Schreiber", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "73", + "instructor": "Hernan Abeledo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "6258", + "section": "10", + "instructor": "Carlos Bustamante", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8999", + "section": "11", + "instructor": "Pedro Silva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2136", + "section": "10", + "instructor": "Sarah Lynch", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOMP", + "course_num": "6203", + "section": "10", + "instructor": "William Barr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "6201", + "section": "80", + "instructor": "Daniel Ullman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Course in Real Analysis (w/Bind-In Access)", + "edition": "N/A", + "author": "Junghenn", + "isbn": "9781482219272", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$128.25", + "item_type": "print" + }, + { + "title": "Course in Real Analysis (w/Bind-In Access)", + "edition": "N/A", + "author": "Junghenn", + "isbn": "9781482219272", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$96.25", + "item_type": "print" + }, + { + "title": "A Course in Real Analysis", + "edition": "N/A", + "author": "Junghenn", + "isbn": "9781482219289", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$110.00", + "item_type": "digital" + } + ] + }, + { + "department": "PSYC", + "course_num": "3120", + "section": "10", + "instructor": "Stephen Dopkins", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Science of Consciousness", + "edition": "N/A", + "author": "Harley", + "isbn": "9781107563308", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$65.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Science of Consciousness", + "edition": "N/A", + "author": "Harley", + "isbn": "9781107563308", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$49.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Science of Consciousness", + "edition": "N/A", + "author": "Harley", + "isbn": "9781009038294", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$49.50", + "item_type": "digital" + }, + { + "title": "The Science of Consciousness", + "edition": "N/A", + "author": "Harley", + "isbn": "9781009038294", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$61.75", + "item_type": "digital" + } + ] + }, + { + "department": "ISTM", + "course_num": "6201", + "section": "10", + "instructor": "William Meeks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "2112", + "section": "10", + "instructor": "Monica Ruiz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Essen of Health Behavior", + "edition": "3rd", + "author": "Edberg", + "isbn": "9781284069341", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$88.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Behavior", + "edition": "3rd", + "author": "Edberg", + "isbn": "9781284069341", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$66.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Behavior", + "edition": "3rd", + "author": "Edberg", + "isbn": "9781284069341", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$66.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Behavior", + "edition": "3rd", + "author": "Edberg", + "isbn": "9781284069341", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$37.36", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essentials of Health Behavior", + "edition": "3rd", + "author": "Edberg", + "isbn": "9781284145366", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$51.32", + "item_type": "digital" + } + ] + }, + { + "department": "PSYC", + "course_num": "2015", + "section": "10", + "instructor": "Haedar Abuirqeba", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Brain & Behavior", + "edition": "7th", + "author": "Kolb", + "isbn": "9781319254384", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$349.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Brain & Behavior", + "edition": "7th", + "author": "Kolb", + "isbn": "9781319254384", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$261.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "An Introduction to Brain and Behavior", + "edition": "7th", + "author": "Kolb", + "isbn": "9781319452667", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$80.99", + "item_type": "digital" + } + ] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "87", + "instructor": "Emily Marchese", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HLWL", + "course_num": "1116", + "section": "10", + "instructor": "Stephen Chavez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4198", + "section": "14", + "instructor": "Joseph Barbera", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6502", + "section": "26", + "instructor": "Barney Singer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "4995", + "section": "10", + "instructor": "Subhasish Dasgupta", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6186", + "section": "12", + "instructor": "John Wise", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6205", + "section": "10A", + "instructor": "Ayman El Tarabishy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6101", + "section": "12", + "instructor": "Yas Nakib", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1112", + "section": "31", + "instructor": "James Taylor", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6999", + "section": "12", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "3127", + "section": "31", + "instructor": "Megan Leftwich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "1014", + "section": "16", + "instructor": "Christine Bistline-Bonilla", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "6266", + "section": "10", + "instructor": "Keesha Blythe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "33", + "instructor": "Celeste Johnston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "2110", + "section": "31", + "instructor": "Amir Aslani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6601", + "section": "O10", + "instructor": "Jihae Cha", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3190", + "section": "85", + "instructor": "Claudine Kuradusenge-McLeod", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "23", + "instructor": "Kinga Dobolyi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6118", + "section": "83", + "instructor": "Dana Dolan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Rocking Qualitative Social Science", + "edition": "N/A", + "author": "Rubin", + "isbn": "9781503628236", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Stanford University Press", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Rocking Qualitative Social Science", + "edition": "N/A", + "author": "Rubin", + "isbn": "9781503628236", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Stanford University Press", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CE", + "course_num": "6998", + "section": "13", + "instructor": "Xitong Liu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M86", + "instructor": "Danika Myers", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lake Superior", + "edition": "N/A", + "author": "Niedecker", + "isbn": "9781933517667", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Wave Books C/O Consortium (Perseus) per the pub \"stop sending orders to the editorial office\"", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Lake Superior", + "edition": "N/A", + "author": "Niedecker", + "isbn": "9781933517667", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Wave Books C/O Consortium (Perseus) per the pub \"stop sending orders to the editorial office\"", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Zong!", + "edition": "N/A", + "author": "Philip", + "isbn": "9780819571694", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Wesleyan University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$12.32", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Zong!", + "edition": "N/A", + "author": "Philip", + "isbn": "9780819571694", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Wesleyan University Press", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Zong!", + "edition": "N/A", + "author": "Philip", + "isbn": "9780819571694", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Wesleyan University Press", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "One with Others", + "edition": "N/A", + "author": "Wright", + "isbn": "9781556593888", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2010", + "publisher": "Copper Canyon Press", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "One with Others", + "edition": "N/A", + "author": "Wright", + "isbn": "9781556593888", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2010", + "publisher": "Copper Canyon Press", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Whereas", + "edition": "N/A", + "author": "Soldier", + "isbn": "9781555977672", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Graywolf", + "type_condition": "RENTAL_NEW", + "price_display": "$8.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Whereas", + "edition": "N/A", + "author": "Soldier", + "isbn": "9781555977672", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Graywolf", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Whereas", + "edition": "N/A", + "author": "Soldier", + "isbn": "9781555977672", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Graywolf", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sand Opera", + "edition": "N/A", + "author": "Metres", + "isbn": "9781938584091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Alice James Books", + "type_condition": "RENTAL_NEW", + "price_display": "$12.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sand Opera", + "edition": "N/A", + "author": "Metres", + "isbn": "9781938584091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Alice James Books", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sand Opera", + "edition": "N/A", + "author": "Metres", + "isbn": "9781938584091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Alice James Books", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Field Study", + "edition": "N/A", + "author": "Sebree", + "isbn": "9780374539023", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Field Study", + "edition": "N/A", + "author": "Sebree", + "isbn": "9780374539023", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "One With Others", + "edition": "N/A", + "author": "Wright", + "isbn": "9781619320161", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "AUSABLE PRESS", + "type_condition": "BUY_NEW", + "price_display": "$10.00", + "item_type": "digital" + }, + { + "title": "Sand Opera", + "edition": "N/A", + "author": "Metres", + "isbn": "9781938584237", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Alice James Books", + "type_condition": "BUY_NEW", + "price_display": "$10.75", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "2410", + "section": "30", + "instructor": "Sibin Mohan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6623", + "section": "80", + "instructor": "Sarah Buscher", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "10", + "instructor": "Charles Garris", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "6298", + "section": "10", + "instructor": "Ravi Achrol", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSSJ", + "course_num": "3100W", + "section": "10", + "instructor": "Erica Walls", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6862", + "section": "10", + "instructor": "Angelo Elmi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "33", + "instructor": "Srinivasan Balaji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "1210", + "section": "24", + "instructor": "Michelle Von Euw", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "3101", + "section": "13", + "instructor": "Ariel Weinberger", + "term_name": "Fall 2023", + "texts": [ + { + "title": "International Economics (RRMCG)", + "edition": "17th", + "author": "Pugel", + "isbn": "9781260004731", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Economics (RRMCG)", + "edition": "17th", + "author": "Pugel", + "isbn": "9781260004731", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Economics", + "edition": "17th", + "author": "Pugel", + "isbn": "9781260484052", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$62.25", + "item_type": "digital" + }, + { + "title": "International Economics", + "edition": "17th", + "author": "Pugel", + "isbn": "9781260484052", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$79.25", + "item_type": "digital" + }, + { + "title": "International Economics", + "edition": "17th", + "author": "Pugel", + "isbn": "9781260484052", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$94.75", + "item_type": "digital" + } + ] + }, + { + "department": "PSYD", + "course_num": "8221", + "section": "30", + "instructor": "Sarah Hedlund", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MICR", + "course_num": "8214", + "section": "10", + "instructor": "Rebecca Lynch", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1009", + "section": "10", + "instructor": "Eric Dunn", + "term_name": "Fall 2023", + "texts": [ + { + "title": "For All Practical Purposes", + "edition": "11th", + "author": "Comap", + "isbn": "9781319055707", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2022", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_NEW", + "price_display": "$254.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "For All Practical Purposes", + "edition": "11th", + "author": "Comap", + "isbn": "9781319055707", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2022", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_USED", + "price_display": "$191.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "For All Practical Purposes(LL)", + "edition": "11th", + "author": "Comap", + "isbn": "9781319057466", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2022", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_NEW", + "price_display": "$169.00", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "For All Practical Purposes(LL)", + "edition": "11th", + "author": "Comap", + "isbn": "9781319057466", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2022", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_USED", + "price_display": "$126.75", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "For All Practical Purposes", + "edition": "11th", + "author": "Comap", + "isbn": "9781319057480", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$66.99", + "item_type": "digital" + } + ] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "49", + "instructor": "Leah Kuppermann", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2446", + "section": "11", + "instructor": "Colin Cleary", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "4900", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8101", + "section": "17", + "instructor": "Mikyong Kim", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "4198W", + "section": "10", + "instructor": "Donald Parsons", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UNIV", + "course_num": "0992", + "section": "51", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6186", + "section": "23", + "instructor": "Corinne Graff", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8720", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "24", + "instructor": "Hao Huang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8998", + "section": "17", + "instructor": "Kenneth Hergenrather", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6050", + "section": "11", + "instructor": "Payman Dehghanian", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6290", + "section": "10", + "instructor": "Suneel Grover", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "49", + "instructor": "Tammy Wiles", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8505", + "section": "10", + "instructor": "Isaac Agbeshie-Noye", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "6998", + "section": "10", + "instructor": "Todd Miller", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "2410W", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2047", + "section": "82", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8998", + "section": "11", + "instructor": "Curtis Pyke", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6525", + "section": "O10", + "instructor": "Deniece Dortch", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "6999", + "section": "10", + "instructor": "David Rain", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "19", + "instructor": "Tammy Wiles", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6118", + "section": "11", + "instructor": "Christopher Kojm", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Bad Leadership", + "edition": "N/A", + "author": "Kellerman", + "isbn": "9781591391661", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Harvard Business School Press", + "type_condition": "BUY_USED", + "price_display": "$30.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Bad Leadership", + "edition": "N/A", + "author": "Kellerman", + "isbn": "9781591391661", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Harvard Business School Press", + "type_condition": "RENTAL_NEW", + "price_display": "$30.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Bad Leadership", + "edition": "N/A", + "author": "Kellerman", + "isbn": "9781591391661", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Harvard Business School Press", + "type_condition": "RENTAL_USED", + "price_display": "$16.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Bad Leadership", + "edition": "N/A", + "author": "Kellerman", + "isbn": "9781591391661", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Harvard Business School Press", + "type_condition": "BUY_NEW", + "price_display": "$40.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "End of Leadership", + "edition": "N/A", + "author": "Kellerman", + "isbn": "9780062069160", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "End of Leadership", + "edition": "N/A", + "author": "Kellerman", + "isbn": "9780062069160", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "HarperCollins Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$20.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "End of Leadership", + "edition": "N/A", + "author": "Kellerman", + "isbn": "9780062069160", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "HarperCollins Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$11.20", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "End of Leadership", + "edition": "N/A", + "author": "Kellerman", + "isbn": "9780062069160", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$27.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Culture Code", + "edition": "N/A", + "author": "Coyle", + "isbn": "9780804176989", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Culture Code", + "edition": "N/A", + "author": "Coyle", + "isbn": "9780804176989", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$21.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Culture Code", + "edition": "N/A", + "author": "Coyle", + "isbn": "9780804176989", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$11.20", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Culture Code", + "edition": "N/A", + "author": "Coyle", + "isbn": "9780804176989", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "HBR's 10 Must Reads On Leadership", + "edition": "N/A", + "author": "Drucker", + "isbn": "9781422157978", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Harvard Business School Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "HBR's 10 Must Reads On Leadership", + "edition": "N/A", + "author": "Drucker", + "isbn": "9781422157978", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Harvard Business School Press", + "type_condition": "RENTAL_USED", + "price_display": "$10.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "HBR's 10 Must Reads On Leadership", + "edition": "N/A", + "author": "Drucker", + "isbn": "9781422157978", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Harvard Business School Press", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "HBR's 10 Must Reads on Women & Leadership", + "edition": "N/A", + "author": "Harvard Business", + "isbn": "9781633696723", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Harvard Business School Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "HBR's 10 Must Reads on Women & Leadership", + "edition": "N/A", + "author": "Harvard Business", + "isbn": "9781633696723", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Harvard Business School Press", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bureaucratic Entrepreneur", + "edition": "N/A", + "author": "Haass", + "isbn": "9780815733539", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Brookings Institution Press", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "item_type": "print" + }, + { + "title": "Bureaucratic Entrepreneur", + "edition": "N/A", + "author": "Haass", + "isbn": "9780815733539", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Brookings Institution Press", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "item_type": "print" + }, + { + "title": "Leading Change", + "edition": "N/A", + "author": "Kotter", + "isbn": "9780875847474", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "HARVARD BUSINESS REVIEW & REPR", + "type_condition": "BUY_USED", + "price_display": "$24.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Leading Change", + "edition": "N/A", + "author": "Kotter", + "isbn": "9780875847474", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "HARVARD BUSINESS REVIEW & REPR", + "type_condition": "RENTAL_USED", + "price_display": "$14.08", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Leading Change", + "edition": "N/A", + "author": "Kotter", + "isbn": "9780875847474", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "HARVARD BUSINESS REVIEW & REPR", + "type_condition": "BUY_NEW", + "price_display": "$32.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "HBR's 10 Must Reads on Leadership (with featured article What Makes an Effective Executive, by Peter F. Drucker)", + "edition": "N/A", + "author": "Review", + "isbn": "9781422172025", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Harvard Business School Press", + "type_condition": "BUY_NEW", + "price_display": "$16.75", + "item_type": "digital" + }, + { + "title": "The End of Leadership", + "edition": "N/A", + "author": "Kellerman", + "isbn": "9780062069177", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$19.99", + "item_type": "digital" + }, + { + "title": "The Bureaucratic Entrepreneur", + "edition": "N/A", + "author": "Haass", + "isbn": "9780815791041", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "RENTAL_NEW", + "price_display": "$20.50", + "item_type": "digital" + }, + { + "title": "The Bureaucratic Entrepreneur", + "edition": "N/A", + "author": "Haass", + "isbn": "9780815791041", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "RENTAL_NEW", + "price_display": "$24.00", + "item_type": "digital" + }, + { + "title": "Bad Leadership", + "edition": "N/A", + "author": "Kellerman", + "isbn": "9781422163238", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Harvard Business School Press", + "type_condition": "BUY_NEW", + "price_display": "$26.75", + "item_type": "digital" + }, + { + "title": "The Bureaucratic Entrepreneur", + "edition": "N/A", + "author": "Haass", + "isbn": "9780815791041", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$27.25", + "item_type": "digital" + } + ] + }, + { + "department": "LSPA", + "course_num": "1055", + "section": "10", + "instructor": "Alexandra Keen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "23", + "instructor": "Daniel Hayes", + "term_name": "Fall 2023", + "texts": [ + { + "title": "News Hole", + "edition": "N/A", + "author": "Hayes", + "isbn": "9781108819848", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$29.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "News Hole", + "edition": "N/A", + "author": "Hayes", + "isbn": "9781108819848", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "PT", + "course_num": "8272", + "section": "10", + "instructor": "David Scalzitti", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Evidence Based Physical Therapy", + "edition": "2nd", + "author": "Fetters", + "isbn": "9780803661158", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_USED", + "price_display": "$55.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Evidence Based Physical Therapy", + "edition": "2nd", + "author": "Fetters", + "isbn": "9780803661158", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$73.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Evidence Based Physical Therapy", + "edition": "2nd", + "author": "Fetters", + "isbn": "9780803661158", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "F. A. Davis Company", + "type_condition": "RENTAL_USED", + "price_display": "$31.06", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Foundations of Clinical Research", + "edition": "4th", + "author": "Portney", + "isbn": "9780803661134", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_USED", + "price_display": "$105.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Foundations of Clinical Research", + "edition": "4th", + "author": "Portney", + "isbn": "9780803661134", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "F. A. Davis Company", + "type_condition": "RENTAL_NEW", + "price_display": "$91.65", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Foundations of Clinical Research", + "edition": "4th", + "author": "Portney", + "isbn": "9780803661134", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$141.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Foundations of Clinical Research", + "edition": "4th", + "author": "Portney", + "isbn": "9780803661134", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "F. A. Davis Company", + "type_condition": "RENTAL_USED", + "price_display": "$59.22", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Evidence Based Physical Therapy", + "edition": "2nd", + "author": "Fetters", + "isbn": "9780803695436", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$65.50", + "item_type": "digital" + }, + { + "title": "Foundations of Clinical Research", + "edition": "N/A", + "author": "Portney", + "isbn": "9781719642477", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$80.50", + "item_type": "digital" + } + ] + }, + { + "department": "CE", + "course_num": "6505", + "section": "10", + "instructor": "Yaolin Fennell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1003", + "section": "10", + "instructor": "Adam Dean", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "74", + "instructor": "Johan van Dorp", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6353", + "section": "11", + "instructor": "A Eakle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "41", + "instructor": "Mallory McPherson-Wehan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8999", + "section": "18", + "instructor": "Toshimitsu Hamasaki", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "10", + "instructor": "Paul Wagner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3187", + "section": "89", + "instructor": "Liliana Monk", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "4163", + "section": "10", + "instructor": "Murray Snyder", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Aircraft Performance", + "edition": "N/A", + "author": "Sadraey", + "isbn": "9781498776554", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press LLC", + "type_condition": "BUY_NEW", + "price_display": "$209.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Aircraft Performance", + "edition": "N/A", + "author": "Sadraey", + "isbn": "9781498776554", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press LLC", + "type_condition": "BUY_USED", + "price_display": "$157.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Aircraft Performance", + "edition": "N/A", + "author": "Sadraey", + "isbn": "9781498776554", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press LLC", + "type_condition": "RENTAL_USED", + "price_display": "$83.90", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "STAT", + "course_num": "2183W", + "section": "10", + "instructor": "Reza Modarres", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Statistical Methods & Data Analysis", + "edition": "7th", + "author": "Ott", + "isbn": "9781305269477", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$240.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Statistical Methods & Data Analysis", + "edition": "7th", + "author": "Ott", + "isbn": "9781305269477", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$100.91", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Statistical Methods & Data Analysis", + "edition": "7th", + "author": "Ott", + "isbn": "9781305269477", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$180.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "An Introduction to Statistical Methods and Data Analysis", + "edition": "7th", + "author": "Ott", + "isbn": "9781305465527", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$46.99", + "item_type": "digital" + }, + { + "title": "An Introduction to Statistical Methods and Data Analysis", + "edition": "7th", + "author": "Ott", + "isbn": "9781305465527", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$69.99", + "item_type": "digital" + }, + { + "title": "An Introduction to Statistical Methods and Data Analysis", + "edition": "7th", + "author": "Ott", + "isbn": "9781305465527", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$81.99", + "item_type": "digital" + } + ] + }, + { + "department": "REL", + "course_num": "3999", + "section": "10", + "instructor": "Irene Koukios", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "57", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "M31", + "instructor": "Qi Chen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1000", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1051", + "section": "34", + "instructor": "Michael Moses", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1083", + "section": "10", + "instructor": "Michael Schmitz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6315", + "section": "10", + "instructor": "Stephen Fortier", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1214", + "section": "14", + "instructor": "Sidney Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "3192W", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8221", + "section": "31", + "instructor": "Sarah Hedlund", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "39", + "instructor": "Kelly Charwat", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3195", + "section": "83", + "instructor": "John Sutter", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6995", + "section": "11", + "instructor": "Joost Santos", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "6245", + "section": "10", + "instructor": "David DeGrazia", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Theory of Bioethics", + "edition": "N/A", + "author": "Degrazia", + "isbn": "9781009011747", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Theory of Bioethics", + "edition": "N/A", + "author": "Degrazia", + "isbn": "9781009011747", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$24.99", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "HOMP", + "course_num": "8999", + "section": "10", + "instructor": "Chester Sherwood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "12", + "instructor": "Michael Plesniak", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6010", + "section": "11", + "instructor": "Kyle Levers", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3186", + "section": "81", + "instructor": "Alasdair Bowie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "39", + "instructor": "Sudip Bose", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "2339", + "section": "11", + "instructor": "Carl Gudenius", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8203", + "section": "13", + "instructor": "Marta Miranda", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "0940", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "13", + "instructor": "Erik Cederholm", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6313", + "section": "10", + "instructor": "Reza Jafari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "3195", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "53", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6186", + "section": "33", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6101", + "section": "17", + "instructor": "Bagmi Das", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "1110", + "section": "37", + "instructor": "Christopher Duncan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "KOR", + "course_num": "3105", + "section": "10", + "instructor": "Gayeon Kim", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Routledge Course in Business Korean", + "edition": "N/A", + "author": "Kim-Renaud", + "isbn": "9781138291393", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$43.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Routledge Course in Business Korean", + "edition": "N/A", + "author": "Kim-Renaud", + "isbn": "9781138291393", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$32.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Routledge Course in Business Korean", + "edition": "N/A", + "author": "Kim-Renaud", + "isbn": "9781351967242", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$48.95", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "4198W", + "section": "13", + "instructor": "Chao Wei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6015", + "section": "10", + "instructor": "Joseph Schmitthenner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "2134", + "section": "10", + "instructor": "Scott Sklar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GER", + "course_num": "1001", + "section": "11", + "instructor": "Silke Reeves", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2373", + "section": "80", + "instructor": "Alasdair Bowie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "38", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "2110", + "section": "30", + "instructor": "Amir Aslani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "8397", + "section": "10", + "instructor": "Robert Van Order", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "2185", + "section": "10", + "instructor": "Jasmine Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6851", + "section": "10", + "instructor": "Juan Klopper", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "3111W", + "section": "11", + "instructor": "Tianshu Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6003", + "section": "10", + "instructor": "Debra Bernat", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2111W", + "section": "10", + "instructor": "Jesse Holland Jr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "2129W", + "section": "10", + "instructor": "Zachary Posnik", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8998", + "section": "15", + "instructor": "Bagmi Das", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3097", + "section": "10", + "instructor": "Steven Brady", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8999", + "section": "17", + "instructor": "Yoshie Nakamura", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "4165", + "section": "80", + "instructor": "Mika Natif", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6035", + "section": "11", + "instructor": "John Helveston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "29", + "instructor": "Katharine MacDonnell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1012", + "section": "12", + "instructor": "Hanney Shaban", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6151", + "section": "11", + "instructor": "Nichole Tichy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M70", + "instructor": "Katharine Carter", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6014", + "section": "21", + "instructor": "Michelle Stevens", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "6085", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2151", + "section": "11", + "instructor": "Stephen Boyes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "28", + "instructor": "Lorena Barba", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "10", + "instructor": "Xiaofeng Ren", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6995", + "section": "19", + "instructor": "Hernan Abeledo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "0940", + "section": "11", + "instructor": "A Eakle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "1001", + "section": "13", + "instructor": "Stephen Forssell", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Achieve for Psychology (1-Term Access)", + "edition": "6th", + "author": "Schacter", + "isbn": "9781319469740", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2023", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$122.50", + "item_type": "print" + }, + { + "title": "Psychology Package (Loose-Leaf with Achieve 1-Term Access)", + "edition": "6th", + "author": "Schacter", + "isbn": "9781319527815", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2023", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$180.50", + "item_type": "print" + } + ] + }, + { + "department": "ECON", + "course_num": "6198", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "4165", + "section": "80", + "instructor": "Harald Anderson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Customer Relationship Management", + "edition": "3rd", + "author": "Kumar", + "isbn": "9783662553800", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$67.49", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Customer Relationship Management", + "edition": "3rd", + "author": "Kumar", + "isbn": "9783662553800", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$89.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Customer Relationship Management", + "edition": "3rd", + "author": "Kumar", + "isbn": "9783662553800", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Springer Nature", + "type_condition": "BUY_USED", + "price_display": "$67.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Customer Relationship Management", + "edition": "3rd", + "author": "Kumar", + "isbn": "9783662553800", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Springer Nature", + "type_condition": "RENTAL_USED", + "price_display": "$37.80", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Relational Database Design & Implementation", + "edition": "4th", + "author": "Harrington", + "isbn": "9780128043998", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "BUY_NEW", + "price_display": "$70.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Relational Database Design & Implementation", + "edition": "4th", + "author": "Harrington", + "isbn": "9780128043998", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "BUY_USED", + "price_display": "$52.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Relational Database Design and Implementation", + "edition": "4th", + "author": "Harrington", + "isbn": "9780128499023", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Elsevier", + "type_condition": "BUY_NEW", + "price_display": "$59.95", + "item_type": "digital" + }, + { + "title": "Customer Relationship Management", + "edition": "3rd", + "author": "Kumar", + "isbn": "9783662553817", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$64.99", + "item_type": "digital" + }, + { + "title": "Customer Relationship Management", + "edition": "3rd", + "author": "Kumar", + "isbn": "9783662553817", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$64.99", + "item_type": "digital" + }, + { + "title": "Customer Relationship Management", + "edition": "3rd", + "author": "Kumar", + "isbn": "9783662553817", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$64.99", + "item_type": "digital" + }, + { + "title": "Customer Relationship Management", + "edition": "3rd", + "author": "Kumar", + "isbn": "9783662553817", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$64.99", + "item_type": "digital" + } + ] + }, + { + "department": "WGSS", + "course_num": "2105", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2218", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLAV", + "course_num": "1001", + "section": "10", + "instructor": "Galina Shatalina", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Golosa Student Workbook, Book One", + "edition": "6th", + "author": "Robin", + "isbn": "9780367612894", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$87.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "GOLOSA: Basic Course in Russian Book 1", + "edition": "6th", + "author": "Robin", + "isbn": "9780367612801", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$110.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "GOLOSA: Basic Course in Russian Book 1", + "edition": "6th", + "author": "Robin", + "isbn": "9780367612801", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$83.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Golosa", + "edition": "6th", + "author": "Robin", + "isbn": "9781000597059", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$94.95", + "item_type": "digital" + } + ] + }, + { + "department": "DNSC", + "course_num": "4211", + "section": "10", + "instructor": "Edward Hulseman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2181", + "section": "11", + "instructor": "Michael Moore", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "2006", + "section": "13", + "instructor": "Ariadna Pichs", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Puntos de Encuentro w/ Active Learning Code", + "edition": "3rd", + "author": "De La Fuente", + "isbn": "9781793569295", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Cognella, INC", + "type_condition": "BUY_NEW", + "price_display": "$162.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Puntos de encuentro Semester II Active Learning Access", + "edition": "N/A", + "author": "Cognella Inc", + "isbn": "9781793593788", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cognella, INC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.95", + "item_type": "digital" + }, + { + "title": "Puntos de encuentro ebook with Active Learning courseware", + "edition": "N/A", + "author": "Fuente", + "isbn": "9781793569301", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cognella, INC", + "type_condition": "RENTAL_NEW", + "price_display": "$98.96", + "item_type": "digital" + }, + { + "title": "Puntos de encuentro ebook with Active Learning courseware", + "edition": "N/A", + "author": "Fuente", + "isbn": "9781793569301", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cognella, INC", + "type_condition": "BUY_NEW", + "price_display": "$109.95", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "6461", + "section": "11", + "instructor": "Lei He", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6101", + "section": "12", + "instructor": "Darcy Morris", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "6257", + "section": "10", + "instructor": "Diane Bridge", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSTD", + "course_num": "3190", + "section": "10", + "instructor": "Derek Malone-France", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "1032", + "section": "10", + "instructor": "Paul Reuther", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "OT", + "course_num": "8202", + "section": "10", + "instructor": "Sarah Doerrer", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Occupational Therapy in Acute Care", + "edition": "2nd", + "author": "Smith-Gabai", + "isbn": "9781569003930", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "AMER OCCUPATION THERAPY ASSN", + "type_condition": "RENTAL_USED", + "price_display": "$93.66", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Occupational Therapy in Acute Care", + "edition": "2nd", + "author": "Smith-Gabai", + "isbn": "9781569003930", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "AMER OCCUPATION THERAPY ASSN", + "type_condition": "BUY_USED", + "price_display": "$167.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Occupational Therapy in Acute Care", + "edition": "2nd", + "author": "Smith-Gabai", + "isbn": "9781569003930", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "AMER OCCUPATION THERAPY ASSN", + "type_condition": "RENTAL_NEW", + "price_display": "$167.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Occupational Therapy in Acute Care", + "edition": "2nd", + "author": "Smith-Gabai", + "isbn": "9781569003930", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "AMER OCCUPATION THERAPY ASSN", + "type_condition": "BUY_NEW", + "price_display": "$223.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Screening Adult Neurologic Populations (Pt 900466)", + "edition": "3rd", + "author": "Gutman", + "isbn": "9781569004661", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "AMER OCCUPATION THERAPY ASSN", + "type_condition": "BUY_USED", + "price_display": "$159.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Screening Adult Neurologic Populations (Pt 900466)", + "edition": "3rd", + "author": "Gutman", + "isbn": "9781569004661", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "AMER OCCUPATION THERAPY ASSN", + "type_condition": "BUY_NEW", + "price_display": "$212.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Occupational Therapy for Physical Dysfunction", + "edition": "8th", + "author": "Dirette", + "isbn": "9781975110550", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_USED", + "price_display": "$87.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Occupational Therapy for Physical Dysfunction", + "edition": "8th", + "author": "Dirette", + "isbn": "9781975110550", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_NEW", + "price_display": "$115.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Stroke Rehabilitation", + "edition": "5th", + "author": "Gillen", + "isbn": "9780323639941", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Mosby, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$90.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Stroke Rehabilitation", + "edition": "5th", + "author": "Gillen", + "isbn": "9780323639941", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Mosby, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$120.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Orthotics", + "edition": "5th", + "author": "Coppard", + "isbn": "9780323523615", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "Mosby, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$42.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Orthotics", + "edition": "5th", + "author": "Coppard", + "isbn": "9780323523615", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "Mosby, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$75.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Orthotics", + "edition": "5th", + "author": "Coppard", + "isbn": "9780323523615", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "Mosby, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$99.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introduction to Orthotics E-Book", + "edition": "5th", + "author": "Coppard", + "isbn": "9780323549707", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Elsevier HlthSciences Division", + "type_condition": "BUY_NEW", + "price_display": "$79.99", + "item_type": "digital" + }, + { + "title": "Stroke Rehabilitation E-Book", + "edition": "5th", + "author": "Gillen", + "isbn": "9780323639965", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Elsevier HlthSciences Division", + "type_condition": "BUY_NEW", + "price_display": "$95.99", + "item_type": "digital" + }, + { + "title": "Occupational Therapy for Physical Dysfunction", + "edition": "8th", + "author": "Dirette", + "isbn": "9781975154967", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_NEW", + "price_display": "$115.99", + "item_type": "digital" + } + ] + }, + { + "department": "SPAN", + "course_num": "2006", + "section": "10", + "instructor": "Israel Rolon-Barada", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1701", + "section": "10", + "instructor": "Eugene Montague", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3352", + "section": "10", + "instructor": "Frank Maisano", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2190W", + "section": "12", + "instructor": "Charles Kiamie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "6261", + "section": "10", + "instructor": "Melissa Boston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "6222", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "0940", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3908", + "section": "14", + "instructor": "James Taylor", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1002", + "section": "35", + "instructor": "Forrest Maltzman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6367", + "section": "10", + "instructor": "Janet Heinrich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "33", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6254", + "section": "11", + "instructor": "Melissa Goldstein", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "2233", + "section": "36", + "instructor": "Michael Coleman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6002", + "section": "31", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2040", + "section": "11", + "instructor": "Katherine Norton", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8218", + "section": "10", + "instructor": "Huynh-Nhu Le", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6263", + "section": "10A", + "instructor": "D. Kayes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "16", + "instructor": "Emilia Entcheva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "6270", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8250", + "section": "11", + "instructor": "Stephen Mitroff", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "3995", + "section": "11", + "instructor": "Amanda Visek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "48", + "instructor": "Mariam Martinez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8999", + "section": "16", + "instructor": "Julia Storberg-Walker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PT", + "course_num": "8312", + "section": "10", + "instructor": "Erin Wentzell", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Mobility in Context", + "edition": "2nd", + "author": "Johansson", + "isbn": "9780803658172", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_USED", + "price_display": "$79.50", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Mobility in Context", + "edition": "2nd", + "author": "Johansson", + "isbn": "9780803658172", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "F. A. Davis Company", + "type_condition": "RENTAL_NEW", + "price_display": "$68.87", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Mobility in Context", + "edition": "2nd", + "author": "Johansson", + "isbn": "9780803658172", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$105.95", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Mobility in Context", + "edition": "2nd", + "author": "Johansson", + "isbn": "9780803658172", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "F. A. Davis Company", + "type_condition": "RENTAL_USED", + "price_display": "$44.50", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Therapeutic Exercise", + "edition": "7th", + "author": "Kisner", + "isbn": "9780803658509", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_USED", + "price_display": "$86.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Therapeutic Exercise", + "edition": "7th", + "author": "Kisner", + "isbn": "9780803658509", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "F. A. Davis Company", + "type_condition": "RENTAL_NEW", + "price_display": "$92.20", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Therapeutic Exercise", + "edition": "7th", + "author": "Kisner", + "isbn": "9780803658509", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$115.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Therapeutic Exercise", + "edition": "7th", + "author": "Kisner", + "isbn": "9780803658509", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "F. A. Davis Company", + "type_condition": "RENTAL_USED", + "price_display": "$48.41", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Documentation for Rehabilitation", + "edition": "3rd", + "author": "Quinn", + "isbn": "9780323312332", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Elsevier HlthSciences Division", + "type_condition": "BUY_USED", + "price_display": "$44.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Documentation for Rehabilitation", + "edition": "3rd", + "author": "Quinn", + "isbn": "9780323312332", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Elsevier HlthSciences Division", + "type_condition": "RENTAL_NEW", + "price_display": "$44.24", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Documentation for Rehabilitation", + "edition": "3rd", + "author": "Quinn", + "isbn": "9780323312332", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Elsevier HlthSciences Division", + "type_condition": "BUY_NEW", + "price_display": "$58.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Documentation for Rehabilitation", + "edition": "3rd", + "author": "Quinn", + "isbn": "9780323312332", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Elsevier HlthSciences Division", + "type_condition": "RENTAL_USED", + "price_display": "$23.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Documentation for Rehabilitation - E-Book", + "edition": "3rd", + "author": "Quinn", + "isbn": "9780323312349", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Elsevier HlthSciences Division", + "type_condition": "BUY_NEW", + "price_display": "$46.99", + "item_type": "digital" + }, + { + "title": "Therapeutic Exercise", + "edition": "7th", + "author": "Carolyn", + "isbn": "9780803658547", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$87.75", + "item_type": "digital" + }, + { + "title": "Therapeutic Exercise", + "edition": "N/A", + "author": "Kisner", + "isbn": "9780803676312", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$92.50", + "item_type": "digital" + }, + { + "title": "Mobility in Context", + "edition": "N/A", + "author": "Johansson", + "isbn": "9780803677302", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$99.00", + "item_type": "digital" + } + ] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M69", + "instructor": "Nabila Hijazi", + "term_name": "Fall 2023", + "texts": [ + { + "title": "No Refuge for Women", + "edition": "N/A", + "author": "Von Welser", + "isbn": "9781771643078", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Greystone Books", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Refuge for Women", + "edition": "N/A", + "author": "Von Welser", + "isbn": "9781771643078", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Greystone Books", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "PSYD", + "course_num": "8270", + "section": "11", + "instructor": "Loring Ingraham", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Unquiet Mind", + "edition": "N/A", + "author": "Jamison", + "isbn": "9780679763307", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$7.92", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Unquiet Mind", + "edition": "N/A", + "author": "Jamison", + "isbn": "9780679763307", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Unquiet Mind", + "edition": "N/A", + "author": "Jamison", + "isbn": "9780679763307", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Madness Within Us", + "edition": "N/A", + "author": "Freedman", + "isbn": "9780195307474", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$68.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Madness Within Us", + "edition": "N/A", + "author": "Freedman", + "isbn": "9780195307474", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$51.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Dual Disorders", + "edition": "3rd", + "author": "Daley", + "isbn": "9781568388021", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2002", + "publisher": "Hazelden Publishing & Educational Services", + "type_condition": "RENTAL_USED", + "price_display": "$13.18", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dual Disorders", + "edition": "3rd", + "author": "Daley", + "isbn": "9781568388021", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2002", + "publisher": "Hazelden Publishing & Educational Services", + "type_condition": "RENTAL_NEW", + "price_display": "$26.36", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dual Disorders", + "edition": "3rd", + "author": "Daley", + "isbn": "9781568388021", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2002", + "publisher": "Hazelden Publishing & Educational Services", + "type_condition": "BUY_NEW", + "price_display": "$32.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dual Disorders", + "edition": "3rd", + "author": "Daley", + "isbn": "9781568388021", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2002", + "publisher": "Hazelden Publishing & Educational Services", + "type_condition": "BUY_USED", + "price_display": "$24.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "I am Not Sick I Don't Need help! How to Help Someone with Mental Illness Accept", + "edition": "N/A", + "author": "Amador", + "isbn": "9780967718934", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Vida Press LLC", + "type_condition": "BUY_NEW", + "price_display": "$21.95", + "item_type": "print" + }, + { + "title": "I am Not Sick I Don't Need help! How to Help Someone with Mental Illness Accept", + "edition": "N/A", + "author": "Amador", + "isbn": "9780967718934", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Vida Press LLC", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "item_type": "print" + }, + { + "title": "Psychotherapy for Psychosis", + "edition": "N/A", + "author": "Garrett", + "isbn": "9781462540563", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Guilford Press", + "type_condition": "BUY_NEW", + "price_display": "$52.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Psychotherapy for Psychosis", + "edition": "N/A", + "author": "Garrett", + "isbn": "9781462540563", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Guilford Press", + "type_condition": "BUY_USED", + "price_display": "$39.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "The Madness Within Us", + "edition": "N/A", + "author": "Freedman", + "isbn": "9780199736591", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$37.69", + "item_type": "digital" + }, + { + "title": "The Madness Within Us", + "edition": "N/A", + "author": "Freedman", + "isbn": "9780199736591", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$43.49", + "item_type": "digital" + }, + { + "title": "The Madness Within Us", + "edition": "N/A", + "author": "Freedman", + "isbn": "9780199736591", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$57.99", + "item_type": "digital" + } + ] + }, + { + "department": "MBAD", + "course_num": "6263", + "section": "10G", + "instructor": "Jungho Suh", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M3", + "instructor": "B. Tomlinson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Little Seagull Handbook (2021 MLA Update)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393888959", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$28.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Seagull Handbook (2021 MLA Update)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393888959", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$16.72", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Seagull Handbook (2021 MLA Update)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393888959", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$38.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Seagull Handbook (2021 MLA Update)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393888959", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$28.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Little Seagull Handbook: 2021 MLA Update (Fourth Edition)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393536980", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$17.88", + "item_type": "digital" + }, + { + "title": "The Little Seagull Handbook: 2021 MLA Update (Fourth Edition)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393536980", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$22.75", + "item_type": "digital" + } + ] + }, + { + "department": "DNSC", + "course_num": "6252", + "section": "80", + "instructor": "Ernest Forman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8171", + "section": "10", + "instructor": "Jaehwa Choi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "16", + "instructor": "Gerald Daigle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "8998", + "section": "10", + "instructor": "Holly Dugan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0930", + "section": "ME", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6998", + "section": "16", + "instructor": "Can Korman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8708", + "section": "10", + "instructor": "Emily Peca", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "6095", + "section": "10", + "instructor": "Michele Carlson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2410W", + "section": "83", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "6280", + "section": "10", + "instructor": "Ashwini Tambe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8998", + "section": "12", + "instructor": "Jonathan Deason", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6299", + "section": "10", + "instructor": "Craig Dearfield", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "OT", + "course_num": "8000", + "section": "DE", + "instructor": "Roger Ideishi", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Neuroanatomy Atlas in Clinical Context", + "edition": "10th", + "author": "Haines", + "isbn": "9781496384164", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_NEW", + "price_display": "$94.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Neuroanatomy Atlas in Clinical Context", + "edition": "10th", + "author": "Haines", + "isbn": "9781496384164", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_USED", + "price_display": "$71.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Neuroscience", + "edition": "6th", + "author": "Lundy-Ekman", + "isbn": "9780323792677", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. B. Saunders", + "type_condition": "BUY_NEW", + "price_display": "$104.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Neuroscience", + "edition": "6th", + "author": "Lundy-Ekman", + "isbn": "9780323792677", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. B. Saunders", + "type_condition": "BUY_USED", + "price_display": "$78.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Neuroscience - E-Book", + "edition": "6th", + "author": "Lundy-Ekman", + "isbn": "9780323792684", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Elsevier HlthSciences Division", + "type_condition": "BUY_NEW", + "price_display": "$85.99", + "item_type": "digital" + }, + { + "title": "Neuroanatomy Atlas in Clinical Context", + "edition": "10th", + "author": "Haines", + "isbn": "9781496387929", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_NEW", + "price_display": "$95.99", + "item_type": "digital" + } + ] + }, + { + "department": "MBAD", + "course_num": "6274", + "section": "G81", + "instructor": "David Brown", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Framework for Marketing Management", + "edition": "6th", + "author": "Kotler", + "isbn": "9780133871319", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$108.05", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Framework for Marketing Management", + "edition": "6th", + "author": "Kotler", + "isbn": "9780133871319", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$193.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Framework for Marketing Management", + "edition": "6th", + "author": "Kotler", + "isbn": "9780133871319", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$205.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Framework for Marketing Management", + "edition": "6th", + "author": "Kotler", + "isbn": "9780133871319", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$257.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pearson eText for Framework for Marketing Management -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "6th", + "author": "Kotler", + "isbn": "9780137554881", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Framework for Marketing Management", + "edition": "6th", + "author": "Kotler", + "isbn": "9780133871517", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$110.25", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6358", + "section": "84", + "instructor": "Diego Abente Brun", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Latin American Politics & Society", + "edition": "N/A", + "author": "Munck", + "isbn": "9781108708555", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Latin American Politics & Society", + "edition": "N/A", + "author": "Munck", + "isbn": "9781108708555", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$44.99", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CPED", + "course_num": "8999", + "section": "16", + "instructor": "Jonathon Grooms", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "32", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "2233", + "section": "33", + "instructor": "Frank Baginski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3187", + "section": "81", + "instructor": "Diego Abente Brun", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Latin American Politics & Society", + "edition": "N/A", + "author": "Munck", + "isbn": "9781108708555", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$44.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Latin American Politics & Society", + "edition": "N/A", + "author": "Munck", + "isbn": "9781108708555", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "MBAD", + "course_num": "6207", + "section": "10G", + "instructor": "Margaret Ormiston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHAR", + "course_num": "6207", + "section": "10", + "instructor": "Travis O'Brien", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6998", + "section": "25", + "instructor": "Chung Hyuk Park", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6013", + "section": "30", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "3195", + "section": "10", + "instructor": "Ashwini Tambe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2446", + "section": "10", + "instructor": "Matthew Boyse", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "3192", + "section": "10", + "instructor": "Yin-Lin Shen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Manufacturing Engineering & Tech (w/Bind-In Access)", + "edition": "6th", + "author": "Kalpakjian", + "isbn": "9780136081685", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$239.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Manufacturing Engineering & Tech (w/Bind-In Access)", + "edition": "6th", + "author": "Kalpakjian", + "isbn": "9780136081685", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$180.00", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "ORSC", + "course_num": "3159", + "section": "10", + "instructor": "Nils Olsen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Thinking, Fast & Slow", + "edition": "N/A", + "author": "Kahneman", + "isbn": "9780374533557", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Thinking, Fast & Slow", + "edition": "N/A", + "author": "Kahneman", + "isbn": "9780374533557", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Judgment in Managerial Decision Making", + "edition": "8th", + "author": "Bazerman", + "isbn": "9781118065709", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$104.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Judgment in Managerial Decision Making", + "edition": "8th", + "author": "Bazerman", + "isbn": "9781118065709", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$111.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Judgment in Managerial Decision Making", + "edition": "8th", + "author": "Bazerman", + "isbn": "9781118065709", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$58.28", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Judgment in Managerial Decision Making", + "edition": "8th", + "author": "Bazerman", + "isbn": "9781118065709", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$138.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Predictably Irrational", + "edition": "N/A", + "author": "Ariely", + "isbn": "9780061353246", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Predictably Irrational", + "edition": "N/A", + "author": "Ariely", + "isbn": "9780061353246", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "HarperCollins Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$14.24", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Predictably Irrational", + "edition": "N/A", + "author": "Ariely", + "isbn": "9780061353246", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "HarperCollins Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$8.36", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Predictably Irrational", + "edition": "N/A", + "author": "Ariely", + "isbn": "9780061353246", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Predictably Irrational, Revised and Expanded Edition", + "edition": "N/A", + "author": "Ariely", + "isbn": "9780061958724", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$15.99", + "item_type": "digital" + }, + { + "title": "Judgment in Managerial Decision Making", + "edition": "8th", + "author": "Bazerman", + "isbn": "9781118475959", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$38.22", + "item_type": "digital" + }, + { + "title": "Judgment in Managerial Decision Making", + "edition": "8th", + "author": "Bazerman", + "isbn": "9781118475959", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$91.00", + "item_type": "digital" + } + ] + }, + { + "department": "PSYC", + "course_num": "2544", + "section": "80", + "instructor": "Yisheng Peng", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Psychology & Work", + "edition": "2nd", + "author": "Truxillo", + "isbn": "9780367151287", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$150.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Psychology & Work", + "edition": "2nd", + "author": "Truxillo", + "isbn": "9780367151287", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$112.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Psychology and Work", + "edition": "2nd", + "author": "Truxillo", + "isbn": "9780429618932", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$150.00", + "item_type": "digital" + } + ] + }, + { + "department": "PSYC", + "course_num": "4201W", + "section": "10", + "instructor": "Fallon Goodman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "38", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "31", + "instructor": "Katharine MacDonnell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JAPN", + "course_num": "4185", + "section": "10", + "instructor": "Takae Tsujioka", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "1001", + "section": "14", + "instructor": "Saadia Erradi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6998", + "section": "10", + "instructor": "Sarah Denes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "57", + "instructor": "Guru Prasadh Venkataramani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6003", + "section": "10", + "instructor": "Stephanie Cellini", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "66", + "instructor": "Erica Gralla", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8225", + "section": "30", + "instructor": "Karen Weise", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6760", + "section": "80", + "instructor": "Johan van Dorp", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2330", + "section": "10", + "instructor": "Harvey Feigenbaum", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Politics in Europe", + "edition": "7th", + "author": "Hancock", + "isbn": "9781506399096", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_USED", + "price_display": "$131.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Politics in Europe", + "edition": "7th", + "author": "Hancock", + "isbn": "9781506399096", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_NEW", + "price_display": "$174.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Politics in Europe", + "edition": "7th", + "author": "Hancock", + "isbn": "9781506399096", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "CQ Press c/o SAGE", + "type_condition": "RENTAL_NEW", + "price_display": "$131.06", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Politics in Europe", + "edition": "7th", + "author": "Hancock", + "isbn": "9781506399096", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "CQ Press c/o SAGE", + "type_condition": "RENTAL_USED", + "price_display": "$73.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Inside the Radical Right", + "edition": "N/A", + "author": "Art", + "isbn": "9780521720328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$23.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Inside the Radical Right", + "edition": "N/A", + "author": "Art", + "isbn": "9780521720328", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$30.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Social Origins of Dictatorship etc (with New Foreward)", + "edition": "N/A", + "author": "Moore", + "isbn": "9780807050736", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Social Origins of Dictatorship etc (with New Foreward)", + "edition": "N/A", + "author": "Moore", + "isbn": "9780807050736", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Social Origins of Dictatorship etc (with New Foreward)", + "edition": "N/A", + "author": "Moore", + "isbn": "9780807050736", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Beacon Press c/o Random House", + "type_condition": "RENTAL_NEW", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Social Origins of Dictatorship etc (with New Foreward)", + "edition": "N/A", + "author": "Moore", + "isbn": "9780807050736", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Beacon Press c/o Random House", + "type_condition": "RENTAL_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Small City in France", + "edition": "N/A", + "author": "Gaspard", + "isbn": "9780674810976", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Small City in France", + "edition": "N/A", + "author": "Gaspard", + "isbn": "9780674810976", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Small City in France", + "edition": "N/A", + "author": "Gaspard", + "isbn": "9780674810976", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$8.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Politics in Europe", + "edition": "7th", + "author": "Hancock", + "isbn": "9781506399089", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$59.99", + "item_type": "digital" + }, + { + "title": "Politics in Europe", + "edition": "7th", + "author": "Hancock", + "isbn": "9781506399089", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$67.49", + "item_type": "digital" + }, + { + "title": "Politics in Europe", + "edition": "7th", + "author": "Hancock", + "isbn": "9781506399089", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$75.00", + "item_type": "digital" + }, + { + "title": "Politics in Europe", + "edition": "7th", + "author": "Hancock", + "isbn": "9781506399089", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$108.74", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "2312", + "section": "31", + "instructor": "Kartik Bulusu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6503", + "section": "17", + "instructor": "Michael Wasserman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6256", + "section": "2U1", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1502", + "section": "10", + "instructor": "Eugene Montague", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "8022", + "section": "10", + "instructor": "Leah Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6186", + "section": "17", + "instructor": "Min Jung Kim", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "35", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8206", + "section": "10", + "instructor": "George Howe", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Data Analysis with Mplus", + "edition": "N/A", + "author": "Geiser", + "isbn": "9781462502455", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Guilford Press", + "type_condition": "BUY_NEW", + "price_display": "$64.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Data Analysis with Mplus", + "edition": "N/A", + "author": "Geiser", + "isbn": "9781462502455", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Guilford Press", + "type_condition": "BUY_USED", + "price_display": "$48.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Confirmatory Factor Analysis for Applied Research", + "edition": "2nd", + "author": "Brown", + "isbn": "9781462515363", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Guilford Press", + "type_condition": "BUY_NEW", + "price_display": "$69.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Confirmatory Factor Analysis for Applied Research", + "edition": "2nd", + "author": "Brown", + "isbn": "9781462515363", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Guilford Press", + "type_condition": "BUY_USED", + "price_display": "$51.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Confirmatory Factor Analysis for Applied Research", + "edition": "2nd", + "author": "Brown", + "isbn": "9781462515363", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Guilford Press", + "type_condition": "RENTAL_NEW", + "price_display": "$51.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Confirmatory Factor Analysis for Applied Research", + "edition": "2nd", + "author": "Brown", + "isbn": "9781462515363", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Guilford Press", + "type_condition": "RENTAL_USED", + "price_display": "$27.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Prin & Practice of Structural Equation Modeling", + "edition": "4th", + "author": "Kline", + "isbn": "9781462523344", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2015", + "publisher": "Guilford Press", + "type_condition": "BUY_NEW", + "price_display": "$69.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Prin & Practice of Structural Equation Modeling", + "edition": "4th", + "author": "Kline", + "isbn": "9781462523344", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2015", + "publisher": "Guilford Press", + "type_condition": "BUY_USED", + "price_display": "$51.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Prin & Practice of Structural Equation Modeling", + "edition": "4th", + "author": "Kline", + "isbn": "9781462523344", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2015", + "publisher": "Guilford Press", + "type_condition": "RENTAL_NEW", + "price_display": "$51.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Prin & Practice of Structural Equation Modeling", + "edition": "4th", + "author": "Kline", + "isbn": "9781462523344", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2015", + "publisher": "Guilford Press", + "type_condition": "RENTAL_USED", + "price_display": "$27.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Data Analysis with Mplus", + "edition": "N/A", + "author": "Geiser", + "isbn": "9781462507849", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Guilford Press", + "type_condition": "BUY_NEW", + "price_display": "$55.00", + "item_type": "digital" + }, + { + "title": "Confirmatory Factor Analysis for Applied Research", + "edition": "2nd", + "author": "Brown", + "isbn": "9781462517817", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Guilford Press", + "type_condition": "BUY_NEW", + "price_display": "$69.00", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6158", + "section": "10", + "instructor": "Carol Kuntz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "3172", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6886", + "section": "10", + "instructor": "Adam Ciarleglio", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "20", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "1210", + "section": "15", + "instructor": "Margot Pavone", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "1031", + "section": "30", + "instructor": "Christopher Wilson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "6238", + "section": "80", + "instructor": "Lijie Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8999", + "section": "17", + "instructor": "Samer Hamdar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "50", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "2003", + "section": "32", + "instructor": "Miaochun Wei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "1022", + "section": "11", + "instructor": "Michael Doering", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Physics for Scientists & Engineers (RRPHE) (Cs1-42)", + "edition": "5th", + "author": "Knight", + "isbn": "9780136956297", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Scientists & Engineers (RRPHE) (Cs1-42)", + "edition": "5th", + "author": "Knight", + "isbn": "9780136956297", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Sci & Eng with Mod Physics (w/out Mstg Access)", + "edition": "4th", + "author": "Knight", + "isbn": "9780133942651", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2017", + "publisher": "Addison Wesley", + "type_condition": "BUY_NEW", + "price_display": "$382.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Sci & Eng with Mod Physics (w/out Mstg Access)", + "edition": "4th", + "author": "Knight", + "isbn": "9780133942651", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2017", + "publisher": "Addison Wesley", + "type_condition": "BUY_USED", + "price_display": "$286.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Sci & Eng with Mod Physics (w/out Mstg Access)", + "edition": "4th", + "author": "Knight", + "isbn": "9780133942651", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2017", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_USED", + "price_display": "$160.44", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Sci & Eng with Mod Physics (w/out Mstg Access)", + "edition": "4th", + "author": "Knight", + "isbn": "9780133942651", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2017", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_NEW", + "price_display": "$248.30", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Sci & Eng w/Mod Physics(w/out MastPhysAccess)", + "edition": "3rd", + "author": "Knight", + "isbn": "9780321740908", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2013", + "publisher": "Addison Wesley", + "type_condition": "BUY_NEW", + "price_display": "$358.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Sci & Eng w/Mod Physics(w/out MastPhysAccess)", + "edition": "3rd", + "author": "Knight", + "isbn": "9780321740908", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2013", + "publisher": "Addison Wesley", + "type_condition": "BUY_USED", + "price_display": "$269.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Sci & Eng w/Mod Physics(w/out MastPhysAccess)", + "edition": "3rd", + "author": "Knight", + "isbn": "9780321740908", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2013", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_USED", + "price_display": "$89.69", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Scientists and Engineers", + "edition": "4th", + "author": "Knight", + "isbn": "9780134080826", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$116.25", + "item_type": "digital" + }, + { + "title": "Physics for Scientists and Engineers", + "edition": "5th", + "author": "Knight", + "isbn": "9780137344819", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$116.25", + "item_type": "digital" + }, + { + "title": "Physics for Scientists and Engineers", + "edition": "5th", + "author": "Knight", + "isbn": "9780137344796", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$116.25", + "item_type": "digital" + } + ] + }, + { + "department": "SPAN", + "course_num": "1014", + "section": "13", + "instructor": "Isabel Rodriguez-Melguizo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6335", + "section": "10", + "instructor": "Kenneth Danger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CULI", + "course_num": "1810", + "section": "01", + "instructor": "Timothy Harlan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1051", + "section": "36", + "instructor": "Farshad Foroozan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PT", + "course_num": "8201", + "section": "10", + "instructor": "Ellen Costello", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Atlas of Human Anatomy (w/Access Code)", + "edition": "6th", + "author": "Netter", + "isbn": "9781455704187", + "material_type": "BDL", + "requirement_type": "RM", + "copy_right_year": "2014", + "publisher": "Elsevier Hlth Science", + "type_condition": "RENTAL_USED", + "price_display": "$36.50", + "item_type": "print" + }, + { + "title": "Atlas of Human Anatomy (w/Access Code)", + "edition": "6th", + "author": "Netter", + "isbn": "9781455704187", + "material_type": "BDL", + "requirement_type": "RM", + "copy_right_year": "2014", + "publisher": "Elsevier Hlth Science", + "type_condition": "BUY_USED", + "price_display": "$62.25", + "item_type": "print" + }, + { + "title": "Atlas of Human Anatomy (w/Access Code)", + "edition": "6th", + "author": "Netter", + "isbn": "9781455704187", + "material_type": "BDL", + "requirement_type": "RM", + "copy_right_year": "2014", + "publisher": "Elsevier Hlth Science", + "type_condition": "BUY_NEW", + "price_display": "$82.95", + "item_type": "print" + }, + { + "title": "Moore's Clinically Oriented Anatomy", + "edition": "9th", + "author": "Dalley II", + "isbn": "9781975209544", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2023", + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_USED", + "price_display": "$76.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Moore's Clinically Oriented Anatomy", + "edition": "9th", + "author": "Dalley II", + "isbn": "9781975209544", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2023", + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_NEW", + "price_display": "$101.99", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "MV5", + "instructor": "Joseph Trullinger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3189", + "section": "12", + "instructor": "Lakeisha Harrison", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8101", + "section": "10", + "instructor": "Maria Cseh", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLAV", + "course_num": "2005", + "section": "10", + "instructor": "Galina Shatalina", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Russian: From Intermediate to Advanced", + "edition": "N/A", + "author": "Kagan", + "isbn": "9780415712279", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$139.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Russian: From Intermediate to Advanced", + "edition": "N/A", + "author": "Kagan", + "isbn": "9780415712279", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$105.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Russian: From Intermediate to Advanced", + "edition": "N/A", + "author": "Kagan", + "isbn": "9780415712279", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Routledge", + "type_condition": "RENTAL_NEW", + "price_display": "$104.81", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "TSTD", + "course_num": "6998", + "section": "10", + "instructor": "Lisa Neirotti", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "4157", + "section": "10", + "instructor": "Philippe Bardet", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1007", + "section": "10", + "instructor": "Farshad Foroozan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "RENTAL_NEW", + "price_display": "$87.38", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "BUY_NEW", + "price_display": "$116.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "BUY_USED", + "price_display": "$87.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "RENTAL_USED", + "price_display": "$48.93", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "The Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798907", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$54.95", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "6000", + "section": "20", + "instructor": "Michelle Stevens", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "3481", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "4198", + "section": "11", + "instructor": "Bethany Kung", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "3199", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "39", + "instructor": "Rahul Simha", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6014", + "section": "20", + "instructor": "Michelle Stevens", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "36", + "instructor": "Charles Garris", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "4098", + "section": "10", + "instructor": "Allyson Vieira", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6050", + "section": "23", + "instructor": "Suresh Subramaniam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2110W", + "section": "12", + "instructor": "Delberg Wilber", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$79.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$45.99", + "item_type": "digital" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$62.99", + "item_type": "digital" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$80.48", + "item_type": "digital" + } + ] + }, + { + "department": "EMSE", + "course_num": "6998", + "section": "17", + "instructor": "David Broniatowski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "2161", + "section": "10", + "instructor": "Andrew Toy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "18", + "instructor": "Alvin Kaltman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Cigars, Whiskey & Winning", + "edition": "N/A", + "author": "Kaltman", + "isbn": "9780735201637", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Prentice Hall Press", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cigars, Whiskey & Winning", + "edition": "N/A", + "author": "Kaltman", + "isbn": "9780735201637", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Prentice Hall Press", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cigars, Whiskey & Winning", + "edition": "N/A", + "author": "Kaltman", + "isbn": "9780735201637", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Prentice Hall Press", + "type_condition": "RENTAL_USED", + "price_display": "$6.78", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "PUBH", + "course_num": "6009", + "section": "10", + "instructor": "Bolatito Ogunbiyi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6731", + "section": "10", + "instructor": "Zhengtian Xu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2180", + "section": "12", + "instructor": "Dina Rady", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "6298", + "section": "11", + "instructor": "Mika Natif", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EPID", + "course_num": "6999", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6101", + "section": "13", + "instructor": "Ellen Goldman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8415", + "section": "15", + "instructor": "Keith Crandall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6308", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2812", + "section": "80", + "instructor": "Arie Dubnov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "3360", + "section": "10", + "instructor": "Anna Liontas", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "4001", + "section": "12", + "instructor": "Badrinath Kottimukkalur Renganatharaja", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6014", + "section": "10", + "instructor": "Joseph Schmitthenner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "35", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6002", + "section": "32", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6602", + "section": "O10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6007", + "section": "10", + "instructor": "Leah Brooks", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Microeconomics", + "edition": "3rd", + "author": "Goolsbee", + "isbn": "9781319105563", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$428.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Microeconomics", + "edition": "3rd", + "author": "Goolsbee", + "isbn": "9781319105563", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$179.87", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Microeconomics", + "edition": "3rd", + "author": "Goolsbee", + "isbn": "9781319105563", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$321.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Microeconomics", + "edition": "3rd", + "author": "Goolsbee", + "isbn": "9781319105570", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$95.99", + "item_type": "digital" + } + ] + }, + { + "department": "ECE", + "course_num": "6999", + "section": "16", + "instructor": "Can Korman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "13", + "instructor": "Deborah Boucoyannis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8700", + "section": "10", + "instructor": "Jennifer Skillicorn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6505", + "section": "DE", + "instructor": "Yaolin Fennell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1051", + "section": "11", + "instructor": "Hamidreza Semiyari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1010", + "section": "31", + "instructor": "Kartik Bulusu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1051", + "section": "34", + "instructor": "Xiaoke Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "4199", + "section": "10", + "instructor": "Loren Kajikawa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CLAS", + "course_num": "3116", + "section": "80", + "instructor": "Andrew Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6461", + "section": "12", + "instructor": "Morris Lancaster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6010", + "section": "15", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4198", + "section": "13", + "instructor": "Erica Gralla", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "4098W", + "section": "11", + "instructor": "Christopher Klemek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLAV", + "course_num": "1391W", + "section": "80", + "instructor": "Rickie McPeak", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Eugene Onegin (New Trans Mitchell)", + "edition": "N/A", + "author": "Pushkin", + "isbn": "9780140448108", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$11.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eugene Onegin (New Trans Mitchell)", + "edition": "N/A", + "author": "Pushkin", + "isbn": "9780140448108", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$14.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eugene Onegin (New Trans Mitchell)", + "edition": "N/A", + "author": "Pushkin", + "isbn": "9780140448108", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$10.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Overcoat & Other Tales of Good & Evil", + "edition": "N/A", + "author": "Gogol", + "isbn": "9780393003048", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1965", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$12.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Overcoat & Other Tales of Good & Evil", + "edition": "N/A", + "author": "Gogol", + "isbn": "9780393003048", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1965", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fathers & Children", + "edition": "2nd", + "author": "Turgenev", + "isbn": "9780393927979", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$17.63", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fathers & Children", + "edition": "2nd", + "author": "Turgenev", + "isbn": "9780393927979", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$23.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fathers & Children", + "edition": "2nd", + "author": "Turgenev", + "isbn": "9780393927979", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$17.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fathers & Children", + "edition": "2nd", + "author": "Turgenev", + "isbn": "9780393927979", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$9.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Prose Tales of Pushkin", + "edition": "N/A", + "author": "Pushkin", + "isbn": "9780393004656", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1966", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Prose Tales of Pushkin", + "edition": "N/A", + "author": "Pushkin", + "isbn": "9780393004656", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1966", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Prose Tales of Pushkin", + "edition": "N/A", + "author": "Pushkin", + "isbn": "9780393004656", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1966", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$7.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hero of Our Time", + "edition": "N/A", + "author": "Lermontov", + "isbn": "9780143105633", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hero of Our Time", + "edition": "N/A", + "author": "Lermontov", + "isbn": "9780143105633", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "IAFF", + "course_num": "6186", + "section": "28", + "instructor": "Sharon Squassoni", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "4197", + "section": "10", + "instructor": "Olivia Bullock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "4102", + "section": "10", + "instructor": "Rodney Lake", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6274", + "section": "10A", + "instructor": "Sheryl Elliott", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6412", + "section": "10", + "instructor": "John Sandberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6221", + "section": "10", + "instructor": "Can Korman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6622", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6101", + "section": "34", + "instructor": "Eleni Ekmektsioglou", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2135", + "section": "10", + "instructor": "Zimife Umeh", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Juvenile Delinquency", + "edition": "N/A", + "author": "Mallett", + "isbn": "9781506361024", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$109.31", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Juvenile Delinquency", + "edition": "N/A", + "author": "Mallett", + "isbn": "9781506361024", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$145.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Juvenile Delinquency", + "edition": "N/A", + "author": "Mallett", + "isbn": "9781506361024", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$109.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Juvenile Delinquency", + "edition": "N/A", + "author": "Mallett", + "isbn": "9781506361024", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$61.22", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Juvenile Delinquency", + "edition": "N/A", + "author": "Mallett", + "isbn": "9781544337777", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$51.99", + "item_type": "digital" + }, + { + "title": "Juvenile Delinquency", + "edition": "N/A", + "author": "Mallett", + "isbn": "9781544337777", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$58.49", + "item_type": "digital" + }, + { + "title": "Juvenile Delinquency", + "edition": "N/A", + "author": "Mallett", + "isbn": "9781544337777", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$65.00", + "item_type": "digital" + }, + { + "title": "Juvenile Delinquency", + "edition": "1st", + "author": "Mallett", + "isbn": "9781544337777", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$94.24", + "item_type": "digital" + } + ] + }, + { + "department": "PSC", + "course_num": "2440", + "section": "10", + "instructor": "Lawrence Olson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "International Relations Theories", + "edition": "4th", + "author": "Dunne", + "isbn": "9780198707561", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$32.18", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Relations Theories", + "edition": "4th", + "author": "Dunne", + "isbn": "9780198707561", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$91.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Relations Theories", + "edition": "4th", + "author": "Dunne", + "isbn": "9780198707561", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$69.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "34", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6599", + "section": "10", + "instructor": "Mark Edberg", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Essen of Health, Culture, & Diversity", + "edition": "2nd", + "author": "Edberg", + "isbn": "9781284226256", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$79.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health, Culture, & Diversity", + "edition": "2nd", + "author": "Edberg", + "isbn": "9781284226256", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$63.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health, Culture, & Diversity", + "edition": "2nd", + "author": "Edberg", + "isbn": "9781284226256", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$31.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health, Culture, & Diversity", + "edition": "2nd", + "author": "Edberg", + "isbn": "9781284226256", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$60.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fresh Fruit, Broken Bodies", + "edition": "N/A", + "author": "Holmes", + "isbn": "9780520275140", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2013", + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fresh Fruit, Broken Bodies", + "edition": "N/A", + "author": "Holmes", + "isbn": "9780520275140", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2013", + "publisher": "University of California Press", + "type_condition": "RENTAL_USED", + "price_display": "$13.63", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fresh Fruit, Broken Bodies", + "edition": "N/A", + "author": "Holmes", + "isbn": "9780520275140", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2013", + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Spirit Catches You & You Fall Down", + "edition": "N/A", + "author": "Fadiman", + "isbn": "9780374533403", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2012", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Spirit Catches You & You Fall Down", + "edition": "N/A", + "author": "Fadiman", + "isbn": "9780374533403", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2012", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "RENTAL_USED", + "price_display": "$8.19", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Spirit Catches You & You Fall Down", + "edition": "N/A", + "author": "Fadiman", + "isbn": "9780374533403", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2012", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fresh Fruit, Broken Bodies", + "edition": "1st", + "author": "Holmes", + "isbn": "9780520954793", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "item_type": "digital" + } + ] + }, + { + "department": "ECE", + "course_num": "2110", + "section": "10", + "instructor": "Amir Aslani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "98", + "instructor": "Luyao Lu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8998", + "section": "13", + "instructor": "Sylvia Marotta-Walters", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "3995", + "section": "10", + "instructor": "Gholamali Rahnavard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6014", + "section": "12", + "instructor": "Peter LaPuma", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1051", + "section": "12", + "instructor": "Xiaoke Zhang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Statistics for Business & Economics (RRPHE)", + "edition": "14th", + "author": "Mcclave", + "isbn": "9780136855354", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistics for Business & Economics (RRPHE)", + "edition": "14th", + "author": "Mcclave", + "isbn": "9780136855354", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistics", + "edition": "4th", + "author": "Freedman", + "isbn": "9780393929720", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$182.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistics", + "edition": "4th", + "author": "Freedman", + "isbn": "9780393929720", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$136.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistics", + "edition": "4th", + "author": "Freedman", + "isbn": "9780393929720", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$118.46", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistics", + "edition": "4th", + "author": "Freedman", + "isbn": "9780393929720", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$76.55", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pearson eText Statistics for Business and Economics -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "14th", + "author": "McClave", + "isbn": "9780137335428", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Statistics for Business and Economics", + "edition": "14th", + "author": "McClave", + "isbn": "9780137376629", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$104.00", + "item_type": "digital" + }, + { + "title": "Statistics for Business and Economics", + "edition": "14th", + "author": "McClave", + "isbn": "9780137376575", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$104.00", + "item_type": "digital" + }, + { + "title": "Statistics (Fourth Edition)", + "edition": "4th", + "author": "Freedman", + "isbn": "9780393522105", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$109.54", + "item_type": "digital" + } + ] + }, + { + "department": "ENGL", + "course_num": "2053W", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "13", + "instructor": "Anne Harrison", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "31", + "instructor": "Srinivasan Balaji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6170", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "6996", + "section": "10", + "instructor": "Ingrid Creppell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "8489", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "6590", + "section": "10", + "instructor": "Kalvir Dhuga", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6014", + "section": "15", + "instructor": "Sabrina McCormick", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "26", + "instructor": "Peng Wei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "67", + "instructor": "Daniel Jaqua", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "54", + "instructor": "Sarah-Kay Hurst", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "2100", + "section": "80", + "instructor": "Savreen Hundal", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6101", + "section": "19", + "instructor": "Toby Egan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4198", + "section": "16", + "instructor": "Thomas Mazzuchi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "6630", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "4900", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "2006", + "section": "11", + "instructor": "Mylord Reyes-Tosta", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Puntos de Encuentro w/ Active Learning Code", + "edition": "3rd", + "author": "De La Fuente", + "isbn": "9781793569295", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Cognella, INC", + "type_condition": "BUY_NEW", + "price_display": "$162.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Puntos de encuentro Semester II Active Learning Access", + "edition": "N/A", + "author": "Cognella Inc", + "isbn": "9781793593788", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cognella, INC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.95", + "item_type": "digital" + }, + { + "title": "Puntos de encuentro ebook with Active Learning courseware", + "edition": "N/A", + "author": "Fuente", + "isbn": "9781793569301", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cognella, INC", + "type_condition": "RENTAL_NEW", + "price_display": "$98.96", + "item_type": "digital" + }, + { + "title": "Puntos de encuentro ebook with Active Learning courseware", + "edition": "N/A", + "author": "Fuente", + "isbn": "9781793569301", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cognella, INC", + "type_condition": "BUY_NEW", + "price_display": "$109.95", + "item_type": "digital" + } + ] + }, + { + "department": "MBAD", + "course_num": "6211", + "section": "11P", + "instructor": "Kyle Welch", + "term_name": "Fall 2023", + "texts": [ + { + "title": "International Financial Statement Analysis (Workbook)", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628095", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$49.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Financial Statement Analysis (Workbook)", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628095", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$37.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Financial Statement Analysis", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628057", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$110.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Financial Statement Analysis", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628057", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$82.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Financial Statement Analysis Workbook", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628125", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$40.00", + "item_type": "digital" + }, + { + "title": "International Financial Statement Analysis", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628149", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$88.00", + "item_type": "digital" + } + ] + }, + { + "department": "REL", + "course_num": "2562", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EHS", + "course_num": "1041", + "section": "14", + "instructor": "Craig Evans", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6290", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6211", + "section": "10A", + "instructor": "Kyle Welch", + "term_name": "Fall 2023", + "texts": [ + { + "title": "International Financial Statement Analysis (Workbook)", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628095", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$49.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Financial Statement Analysis (Workbook)", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628095", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$37.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Financial Statement Analysis", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628057", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$110.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Financial Statement Analysis", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628057", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$82.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Financial Statement Analysis Workbook", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628125", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$40.00", + "item_type": "digital" + }, + { + "title": "International Financial Statement Analysis", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628149", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$88.00", + "item_type": "digital" + } + ] + }, + { + "department": "SMPA", + "course_num": "2101", + "section": "10", + "instructor": "Efrat Nechushtai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2102", + "section": "11", + "instructor": "Pao-Lin Tien", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6101", + "section": "11", + "instructor": "Delishia Pittman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6503", + "section": "15", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "23", + "instructor": "Jessica Hills", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SUST", + "course_num": "3097", + "section": "10", + "instructor": "Christopher Klemek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8199", + "section": "10", + "instructor": "Zoe Szajnfarber", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "33", + "instructor": "Hugo Junghenn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6480", + "section": "10", + "instructor": "Adam Richards", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "8358", + "section": "10", + "instructor": "Paul Carrillo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6358", + "section": "83", + "instructor": "Jason Marczak", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6242", + "section": "10G", + "instructor": "Nam Pham", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "KOR", + "course_num": "1001", + "section": "33", + "instructor": "Gayeon Kim", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "51", + "instructor": "E'Quince Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1232", + "section": "35", + "instructor": "Valentina Harizanov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "3199", + "section": "12", + "instructor": "Qing Pan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2224", + "section": "10", + "instructor": "Janice Butler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "28", + "instructor": "Sibin Mohan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1101", + "section": "30", + "instructor": "Eugene Montague", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "8998", + "section": "10", + "instructor": "Tapan Nayak", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "2003", + "section": "31", + "instructor": "Miaochun Wei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6421", + "section": "10", + "instructor": "Lorien Abroms", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4198", + "section": "11", + "instructor": "Joost Santos", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "28", + "instructor": "Poorvi Vora", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6254", + "section": "80", + "instructor": "Ernest Forman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8999", + "section": "10", + "instructor": "A Eakle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "44", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "8324", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1055", + "section": "14", + "instructor": "Alexandra Keen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "3601", + "section": "15", + "instructor": "Marie Matta", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M2", + "instructor": "Christine Zink", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "3161", + "section": "10", + "instructor": "Heather Stebbins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6565", + "section": "80", + "instructor": "Sayed Hussein", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "29", + "instructor": "Emily Applegate", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "20", + "instructor": "Andrea Davis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6378", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "8311", + "section": "10", + "instructor": "Elisabeth Kutscher", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832178", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "BUY_NEW", + "price_display": "$49.25", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832178", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "RENTAL_USED", + "price_display": "$21.67", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832178", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "BUY_USED", + "price_display": "$37.00", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832178", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "RENTAL_NEW", + "price_display": "$36.94", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Academic Writing for Graduate Students", + "edition": "3rd", + "author": "Swales", + "isbn": "9780472034758", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "University of Michigan Press", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Academic Writing for Graduate Students", + "edition": "3rd", + "author": "Swales", + "isbn": "9780472034758", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "University of Michigan Press", + "type_condition": "RENTAL_USED", + "price_display": "$10.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Academic Writing for Graduate Students", + "edition": "3rd", + "author": "Swales", + "isbn": "9780472034758", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "University of Michigan Press", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Publication Manual (OFFICIAL) 7th Edition of the American Psychological Association", + "edition": "7th", + "author": "Association", + "isbn": "9781433832185", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "American Psychological Association", + "type_condition": "RENTAL_NEW", + "price_display": "$31.99", + "item_type": "digital" + }, + { + "title": "Publication Manual (OFFICIAL) 7th Edition of the American Psychological Association", + "edition": "7th", + "author": "Association", + "isbn": "9781433832185", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "American Psychological Association", + "type_condition": "BUY_NEW", + "price_display": "$35.99", + "item_type": "digital" + } + ] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "67", + "instructor": "Quest Morris", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "1071", + "section": "11", + "instructor": "Francys Subiaul", + "term_name": "Fall 2023", + "texts": [ + { + "title": "MindTap English, 1 term (6 months) Instant Access for Fromkin/Rodman/Hyams' An Introduction to Language", + "edition": "11th", + "author": "Victoria FromkinRobert Rodman", + "isbn": "9781337559614", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$77.50", + "item_type": "digital" + } + ] + }, + { + "department": "PHYS", + "course_num": "8110", + "section": "10", + "instructor": "Michael Doering", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "2000", + "section": "10", + "instructor": "Elizabeth Chacko", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "1010", + "section": "10", + "instructor": "William Boyce", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6274", + "section": "80D", + "instructor": "David Brown", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Framework for Marketing Management", + "edition": "6th", + "author": "Kotler", + "isbn": "9780133871319", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$205.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Framework for Marketing Management", + "edition": "6th", + "author": "Kotler", + "isbn": "9780133871319", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$257.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Framework for Marketing Management", + "edition": "6th", + "author": "Kotler", + "isbn": "9780133871319", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$193.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Framework for Marketing Management", + "edition": "6th", + "author": "Kotler", + "isbn": "9780133871319", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$108.05", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pearson eText for Framework for Marketing Management -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "6th", + "author": "Kotler", + "isbn": "9780137554881", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Framework for Marketing Management", + "edition": "6th", + "author": "Kotler", + "isbn": "9780133871517", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$110.25", + "item_type": "digital" + } + ] + }, + { + "department": "SOC", + "course_num": "2101", + "section": "10", + "instructor": "Laryssa Mykyta", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "6720", + "section": "10", + "instructor": "Holly Dugan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "68", + "instructor": "Daniel Jaqua", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3246", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6102", + "section": "12", + "instructor": "Hazim Shatnawi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "TSTD", + "course_num": "6267", + "section": "10", + "instructor": "Meredith Geisler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "95", + "instructor": "Robert Pless", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6138", + "section": "11", + "instructor": "Laura Adams", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Civil Society", + "edition": "4th", + "author": "Edwards", + "isbn": "9781509537358", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Polity Press", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Civil Society", + "edition": "4th", + "author": "Edwards", + "isbn": "9781509537358", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Polity Press", + "type_condition": "BUY_NEW", + "price_display": "$23.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Civil Society", + "edition": "4th", + "author": "Edwards", + "isbn": "9781509537365", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "item_type": "digital" + } + ] + }, + { + "department": "MATH", + "course_num": "1051", + "section": "10", + "instructor": "Michael Moses", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "14", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "2560", + "section": "10", + "instructor": "Julia Drake", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M66", + "instructor": "Rachel Pollack", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6899", + "section": "11", + "instructor": "Pramita Bagchi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8101", + "section": "11", + "instructor": "Shaista Khilji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "MV3", + "instructor": "Mark Croatti", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Cases & Concepts etc (w/Ebook & AC)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532890", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_USED", + "price_display": "$50.82", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cases & Concepts etc (w/Ebook & AC)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532890", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_NEW", + "price_display": "$96.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cases & Concepts etc (w/Ebook & AC)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532890", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$121.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cases & Concepts etc (w/Ebook & AC)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532890", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$90.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cases and Concepts in Comparative Politics (Second Edition)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532869", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$57.07", + "item_type": "digital" + }, + { + "title": "Cases and Concepts in Comparative Politics (Second Edition)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532869", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$72.63", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "6137", + "section": "11", + "instructor": "Lance Price", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "8999", + "section": "10", + "instructor": "Yanxiang Zhao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4710", + "section": "80", + "instructor": "Hernan Abeledo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6030", + "section": "11", + "instructor": "Adam Howard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6050", + "section": "24", + "instructor": "Guru Prasadh Venkataramani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6021", + "section": "14", + "instructor": "Angela Hinzey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6186", + "section": "14", + "instructor": "Sharon Melzer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6050", + "section": "15", + "instructor": "Hao Huang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "40", + "instructor": "Gerald Daigle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1051", + "section": "33", + "instructor": "Michael Moses", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "1502", + "section": "12", + "instructor": "Chan Chao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PERS", + "course_num": "1001", + "section": "10", + "instructor": "Maziar Valamotamed", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Persian in Use", + "edition": "3rd", + "author": "Sedighi", + "isbn": "9789087282172", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "AMSTERDAM UNIVERSITY PRESS", + "type_condition": "BUY_USED", + "price_display": "$79.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Persian in Use", + "edition": "3rd", + "author": "Sedighi", + "isbn": "9789087282172", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "AMSTERDAM UNIVERSITY PRESS", + "type_condition": "BUY_NEW", + "price_display": "$106.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "MBAD", + "course_num": "6250", + "section": "10P", + "instructor": "Peter Ghavami", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1025", + "section": "10", + "instructor": "William Largess", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "13", + "instructor": "Bhagirath Narahari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "30", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1012", + "section": "10", + "instructor": "Joseph Goldfrank", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "4203W", + "section": "10", + "instructor": "Marguerite Barratt", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Development Through Adulthood", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781352009590", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Palgrave Macmillan", + "type_condition": "BUY_NEW", + "price_display": "$82.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Development Through Adulthood", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781352009590", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Palgrave Macmillan", + "type_condition": "BUY_USED", + "price_display": "$62.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "79", + "instructor": "Lauren Philips", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "33", + "instructor": "Sharon Roosevelt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "6262", + "section": "80", + "instructor": "Gil Appel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6030", + "section": "13", + "instructor": "Milorad Lazic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "6450", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6255", + "section": "80", + "instructor": "Nicholas Vonortas", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "45", + "instructor": "Payman Dehghanian", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6101", + "section": "10", + "instructor": "A Eakle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2331", + "section": "10", + "instructor": "Sharon Wolchik", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Return to Diversity", + "edition": "4th", + "author": "Rothschild", + "isbn": "9780195334753", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$39.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Return to Diversity", + "edition": "4th", + "author": "Rothschild", + "isbn": "9780195334753", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$99.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Return to Diversity", + "edition": "4th", + "author": "Rothschild", + "isbn": "9780195334753", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$74.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Central & East European Politics", + "edition": "5th", + "author": "Csergo", + "isbn": "9781538142806", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_NEW", + "price_display": "$67.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Central & East European Politics", + "edition": "5th", + "author": "Csergo", + "isbn": "9781538142806", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_USED", + "price_display": "$50.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "From Stalinism to Pluralism", + "edition": "2nd", + "author": "Stokes", + "isbn": "9780195094466", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$37.30", + "item_type": "print" + }, + { + "title": "From Stalinism to Pluralism", + "edition": "2nd", + "author": "Stokes", + "isbn": "9780195094466", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$93.25", + "item_type": "print" + }, + { + "title": "From Stalinism to Pluralism", + "edition": "2nd", + "author": "Stokes", + "isbn": "9780195094466", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$70.00", + "item_type": "print" + }, + { + "title": "Central and East European Politics", + "edition": "5th", + "author": "Csergo", + "isbn": "9781538142813", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$39.00", + "item_type": "digital" + } + ] + }, + { + "department": "CAMA", + "course_num": "6003", + "section": "81", + "instructor": "Danny Leipziger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6261", + "section": "DE", + "instructor": "Young Kwak", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6138", + "section": "12", + "instructor": "Sara Gilmer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6202", + "section": "10", + "instructor": "Steven Livingston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "2005", + "section": "10", + "instructor": "Tania Leyva", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Puntos de Encuentro w/ Active Learning Code", + "edition": "3rd", + "author": "De La Fuente", + "isbn": "9781793569295", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Cognella, INC", + "type_condition": "BUY_NEW", + "price_display": "$162.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Puntos de encuentro ebook with Active Learning courseware", + "edition": "N/A", + "author": "Fuente", + "isbn": "9781793569301", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cognella, INC", + "type_condition": "RENTAL_NEW", + "price_display": "$98.96", + "item_type": "digital" + }, + { + "title": "Puntos de encuentro ebook with Active Learning courseware", + "edition": "N/A", + "author": "Fuente", + "isbn": "9781793569301", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cognella, INC", + "type_condition": "BUY_NEW", + "price_display": "$109.95", + "item_type": "digital" + } + ] + }, + { + "department": "EMSE", + "course_num": "6765", + "section": "10", + "instructor": "Johan van Dorp", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8870", + "section": "10", + "instructor": "Guoqing Diao", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Statistical Inference", + "edition": "2nd", + "author": "Casella", + "isbn": "9780534243128", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$274.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistical Inference", + "edition": "2nd", + "author": "Casella", + "isbn": "9780534243128", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$178.26", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistical Inference", + "edition": "2nd", + "author": "Casella", + "isbn": "9780534243128", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$115.19", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistical Inference", + "edition": "2nd", + "author": "Casella", + "isbn": "9780534243128", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$205.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistical Inference", + "edition": "2nd", + "author": "Casella", + "isbn": "9780357753132", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$50.99", + "item_type": "digital" + }, + { + "title": "Statistical Inference", + "edition": "2nd", + "author": "Casella", + "isbn": "9780357753132", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$69.99", + "item_type": "digital" + }, + { + "title": "Statistical Inference", + "edition": "2nd", + "author": "Casella", + "isbn": "9780357753132", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$89.23", + "item_type": "digital" + } + ] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "27", + "instructor": "Roy Montgomery", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8423", + "section": "13", + "instructor": "Wolfgang Munar Angulo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6151", + "section": "10", + "instructor": "Mina Attia", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "19", + "instructor": "Bhagirath Narahari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6254", + "section": "10", + "instructor": "Melissa Goldstein", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6235", + "section": "80P", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEHD", + "course_num": "8100", + "section": "12", + "instructor": "Joshua Glazer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6101", + "section": "11", + "instructor": "Michael Casemore", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "25", + "instructor": "Celeste Johnston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEHD", + "course_num": "8100", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2011", + "section": "13", + "instructor": "Amber Mcdonald", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "1010", + "section": "16", + "instructor": "Heather Renault", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8999", + "section": "19", + "instructor": "Scott Evans", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6220", + "section": "10", + "instructor": "Jacob Rubin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6280", + "section": "10", + "instructor": "Rafael Lopez-Monti", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "30", + "instructor": "Srinivasan Balaji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8354", + "section": "QE2", + "instructor": "Tiffany-Rose Sikorski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "1002", + "section": "10", + "instructor": "Nazanin Khavari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "MV3", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EHS", + "course_num": "4197", + "section": "SD", + "instructor": "Kevin Davey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6101", + "section": "10", + "instructor": "Nicholas Anderson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8239", + "section": "10", + "instructor": "Jody Ganiban", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "3177", + "section": "10", + "instructor": "Wendy Riemann", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6998", + "section": "21", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6193", + "section": "80", + "instructor": "Maroun Medlej", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "3995", + "section": "10", + "instructor": "Allison Sylvetsky", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8999", + "section": "18", + "instructor": "Elisabeth Rice", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3479", + "section": "10", + "instructor": "Jason Osder", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Documentary (Revised)", + "edition": "N/A", + "author": "Barnouw", + "isbn": "9780195078985", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$25.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Documentary (Revised)", + "edition": "N/A", + "author": "Barnouw", + "isbn": "9780195078985", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$10.30", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Documentary (Revised)", + "edition": "N/A", + "author": "Barnouw", + "isbn": "9780195078985", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Documentary (Revised)", + "edition": "N/A", + "author": "Barnouw", + "isbn": "9780195078985", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$16.74", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Documentary Film: Very Short Intro", + "edition": "N/A", + "author": "Aufderheide", + "isbn": "9780195182705", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$11.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Documentary Film: Very Short Intro", + "edition": "N/A", + "author": "Aufderheide", + "isbn": "9780195182705", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$4.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Documentary Film: Very Short Intro", + "edition": "N/A", + "author": "Aufderheide", + "isbn": "9780195182705", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$9.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Documentary Film: Very Short Intro", + "edition": "N/A", + "author": "Aufderheide", + "isbn": "9780195182705", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$7.77", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Documentary", + "edition": "3rd", + "author": "Nichols", + "isbn": "9780253026859", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Indiana University Press", + "type_condition": "BUY_NEW", + "price_display": "$25.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Documentary", + "edition": "3rd", + "author": "Nichols", + "isbn": "9780253026859", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Indiana University Press", + "type_condition": "RENTAL_USED", + "price_display": "$10.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Documentary", + "edition": "3rd", + "author": "Nichols", + "isbn": "9780253026859", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Indiana University Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Documentary", + "edition": "3rd", + "author": "Nichols", + "isbn": "9780253026859", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Indiana University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$16.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Documentary Film: A Very Short Introduction", + "edition": "N/A", + "author": "Aufderheide", + "isbn": "9780199720392", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "RENTAL_NEW", + "price_display": "$5.19", + "item_type": "digital" + }, + { + "title": "Documentary Film: A Very Short Introduction", + "edition": "N/A", + "author": "Aufderheide", + "isbn": "9780199720392", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "RENTAL_NEW", + "price_display": "$5.99", + "item_type": "digital" + }, + { + "title": "Documentary Film: A Very Short Introduction", + "edition": "N/A", + "author": "Aufderheide", + "isbn": "9780199720392", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "BUY_NEW", + "price_display": "$7.99", + "item_type": "digital" + }, + { + "title": "Introduction to Documentary, Third Edition", + "edition": "3rd", + "author": "Nichols", + "isbn": "9780253026903", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Indiana University Press", + "type_condition": "BUY_NEW", + "price_display": "$24.99", + "item_type": "digital" + } + ] + }, + { + "department": "STAT", + "course_num": "2118", + "section": "30", + "instructor": "Joshua Landon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M61", + "instructor": "Carol Hayes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8010", + "section": "13", + "instructor": "Keith Crandall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEHD", + "course_num": "8101", + "section": "10", + "instructor": "Yas Nakib", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "84", + "instructor": "Michael Keidar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6602", + "section": "10", + "instructor": "Benjamin Hopkins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "1001", + "section": "21", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "6320", + "section": "10", + "instructor": "Helmut Haberzettl", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CLAS", + "course_num": "2001", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "1010", + "section": "30", + "instructor": "Majid Manzari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3908", + "section": "16", + "instructor": "James Hahn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLAV", + "course_num": "2365", + "section": "10", + "instructor": "Peter Rollberg", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Collected Short Stories of Maxim Gorky", + "edition": "N/A", + "author": "Gorky", + "isbn": "9780806510750", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1988", + "publisher": "Kensington Publishing Corporation", + "type_condition": "BUY_NEW", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Collected Short Stories of Maxim Gorky", + "edition": "N/A", + "author": "Gorky", + "isbn": "9780806510750", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1988", + "publisher": "Kensington Publishing Corporation", + "type_condition": "BUY_USED", + "price_display": "$15.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Master & Margarita (50th-Anniversary Edition)", + "edition": "N/A", + "author": "Bulgakov", + "isbn": "9780143108276", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Master & Margarita (50th-Anniversary Edition)", + "edition": "N/A", + "author": "Bulgakov", + "isbn": "9780143108276", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Soul & Other Stories", + "edition": "N/A", + "author": "Platonov", + "isbn": "9781590172544", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "New York Review of Books, Incorporated, The", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Soul & Other Stories", + "edition": "N/A", + "author": "Platonov", + "isbn": "9781590172544", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "New York Review of Books, Incorporated, The", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Country Doctor's Notebook", + "edition": "N/A", + "author": "Bulgakov", + "isbn": "9781612191904", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Melville House Publishing", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Country Doctor's Notebook", + "edition": "N/A", + "author": "Bulgakov", + "isbn": "9781612191904", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Melville House Publishing", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "We", + "edition": "N/A", + "author": "Zamyatin", + "isbn": "9780812974621", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "We", + "edition": "N/A", + "author": "Zamyatin", + "isbn": "9780812974621", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "SMPA", + "course_num": "2111W", + "section": "11", + "instructor": "Cheryl Thompson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M19", + "instructor": "Michael Svoboda", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Little Seagull Handbook (w/Guide to MLA 2021)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393877939", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$24.19", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Seagull Handbook (w/Guide to MLA 2021)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393877939", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$32.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Seagull Handbook (w/Guide to MLA 2021)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393877939", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$12.90", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Seagull Handbook (w/Guide to MLA 2021)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393877939", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$24.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Little Seagull Handbook: 2021 MLA Update (Fourth Edition)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393536980", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$17.88", + "item_type": "digital" + }, + { + "title": "The Little Seagull Handbook: 2021 MLA Update (Fourth Edition)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393536980", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$22.75", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "15", + "instructor": "Peng Wei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "2104", + "section": "10", + "instructor": "Abdi Awl", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "3222", + "section": "10", + "instructor": "Tonya Beckman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "51", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6002", + "section": "13", + "instructor": "Dylan Conger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "1000", + "section": "10", + "instructor": "Laura Papish", + "term_name": "Fall 2023", + "texts": [ + { + "title": "On Evil", + "edition": "N/A", + "author": "Morton", + "isbn": "9780415305198", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Routledge", + "type_condition": "RENTAL_USED", + "price_display": "$13.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "On Evil", + "edition": "N/A", + "author": "Morton", + "isbn": "9780415305198", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$34.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "On Evil", + "edition": "N/A", + "author": "Morton", + "isbn": "9780415305198", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Billy Budd, Sailor", + "edition": "N/A", + "author": "Melville", + "isbn": "9780226321325", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1962", + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$14.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Billy Budd, Sailor", + "edition": "N/A", + "author": "Melville", + "isbn": "9780226321325", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1962", + "publisher": "University of Chicago Press", + "type_condition": "BUY_USED", + "price_display": "$10.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Billy Budd, Sailor", + "edition": "N/A", + "author": "Melville", + "isbn": "9780226321325", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1962", + "publisher": "University of Chicago Press", + "type_condition": "RENTAL_NEW", + "price_display": "$10.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eichmann in Jerusalem", + "edition": "N/A", + "author": "Arendt", + "isbn": "9780143039884", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_USED", + "price_display": "$7.92", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eichmann in Jerusalem", + "edition": "N/A", + "author": "Arendt", + "isbn": "9780143039884", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eichmann in Jerusalem", + "edition": "N/A", + "author": "Arendt", + "isbn": "9780143039884", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eichmann in Jerusalem", + "edition": "N/A", + "author": "Arendt", + "isbn": "9780143039884", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "EMSE", + "course_num": "6999", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2110W", + "section": "18", + "instructor": "Nicole Mayo", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$79.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$45.99", + "item_type": "digital" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$62.99", + "item_type": "digital" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$80.48", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "6563", + "section": "10", + "instructor": "Emily Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "2490", + "section": "85", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "6305", + "section": "10", + "instructor": "Brendan Hurley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3411", + "section": "32", + "instructor": "Gabriel Parmer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "6100", + "section": "80", + "instructor": "Savreen Hundal", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "4184", + "section": "10", + "instructor": "Hayley Cutler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "20", + "instructor": "Rahul Simha", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2444", + "section": "11", + "instructor": "Benjamin Farley", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Principles of International Law (Concise Hornbook Series)", + "edition": "3rd", + "author": "Murphy", + "isbn": "9781683286776", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2018", + "publisher": "West Academic", + "type_condition": "RENTAL_USED", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Principles of International Law (Concise Hornbook Series)", + "edition": "3rd", + "author": "Murphy", + "isbn": "9781683286776", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2018", + "publisher": "West Academic", + "type_condition": "BUY_USED", + "price_display": "$52.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Principles of International Law (Concise Hornbook Series)", + "edition": "3rd", + "author": "Murphy", + "isbn": "9781683286776", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2018", + "publisher": "West Academic", + "type_condition": "RENTAL_NEW", + "price_display": "$52.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Principles of International Law (Concise Hornbook Series)", + "edition": "3rd", + "author": "Murphy", + "isbn": "9781683286776", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2018", + "publisher": "West Academic", + "type_condition": "BUY_NEW", + "price_display": "$70.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Law (Casebook)", + "edition": "7th", + "author": "Damrosch", + "isbn": "9781640200678", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "West Academic", + "type_condition": "RENTAL_USED", + "price_display": "$136.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Law (Casebook)", + "edition": "7th", + "author": "Damrosch", + "isbn": "9781640200678", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "West Academic", + "type_condition": "BUY_USED", + "price_display": "$243.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Law (Casebook)", + "edition": "7th", + "author": "Damrosch", + "isbn": "9781640200678", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "West Academic", + "type_condition": "RENTAL_NEW", + "price_display": "$243.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Law (Casebook)", + "edition": "7th", + "author": "Damrosch", + "isbn": "9781640200678", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "West Academic", + "type_condition": "BUY_NEW", + "price_display": "$325.00", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "EMSE", + "course_num": "6998", + "section": "19", + "instructor": "Hernan Abeledo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "8310", + "section": "10", + "instructor": "Elizabeth Tuckwiller", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "4470", + "section": "10", + "instructor": "Antonio Lopez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "4595", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "3119", + "section": "10", + "instructor": "Stephen Mitroff", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3105", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "0940", + "section": "10", + "instructor": "Nicole Davidson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "2110", + "section": "35", + "instructor": "Amir Aslani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "6997", + "section": "10", + "instructor": "Ingrid Creppell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2449W", + "section": "10", + "instructor": "James Lebovic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6299", + "section": "10", + "instructor": "Wayne Psek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "6243", + "section": "80", + "instructor": "David Ashley", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Marketing Research in Practice (Access Code)", + "edition": "3rd", + "author": "Ashley", + "isbn": "9781792492228", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Kendall Hunt Publishing Company", + "type_condition": "BUY_NEW", + "price_display": "$110.75", + "item_type": "print" + } + ] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "23", + "instructor": "Leila Farhadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "13", + "instructor": "David Throup", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LATN", + "course_num": "2001", + "section": "80", + "instructor": "Elise Friedland", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Caesar Reader", + "edition": "N/A", + "author": "Caesar", + "isbn": "9780865166967", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Bolchazy-Carducci Publishers", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Caesar Reader", + "edition": "N/A", + "author": "Caesar", + "isbn": "9780865166967", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Bolchazy-Carducci Publishers", + "type_condition": "BUY_NEW", + "price_display": "$19.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "30", + "instructor": "Xiaofeng Ren", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "8998", + "section": "10", + "instructor": "Pamela Labadie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1232", + "section": "34", + "instructor": "Valentina Harizanov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "6295", + "section": "10", + "instructor": "Fran Buntman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6101", + "section": "39", + "instructor": "Eleni Ekmektsioglou", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6171", + "section": "11", + "instructor": "Lyda Holguin-Gaviria", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HLWL", + "course_num": "1102", + "section": "14", + "instructor": "Aimee Simmons", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "2125", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "6303", + "section": "80", + "instructor": "Ryan Engstrom", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2011", + "section": "10", + "instructor": "Roblyn Lewter", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Psychopathology & Life", + "edition": "4th", + "author": "Kearney", + "isbn": "9780357797846", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$240.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Psychopathology & Life", + "edition": "4th", + "author": "Kearney", + "isbn": "9780357797846", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$180.25", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "EDUC", + "course_num": "8170", + "section": "10", + "instructor": "William Dardick", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6015", + "section": "13", + "instructor": "Joseph Schmitthenner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6270", + "section": "82", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ORSC", + "course_num": "2560", + "section": "80", + "instructor": "Tiffany Bisbey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "1001", + "section": "32", + "instructor": "Phyllis Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "1001", + "section": "10", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3354", + "section": "10", + "instructor": "Oren Shur", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3212", + "section": "10", + "instructor": "Rahul Simha", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2101", + "section": "13", + "instructor": "Hogai Aryoubi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8525", + "section": "10", + "instructor": "Deanna Kerrigan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6299", + "section": "11", + "instructor": "Nate'le'ge' Wardlow", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2190W", + "section": "13", + "instructor": "Sabeeha Quereshi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M22", + "instructor": "Paul Michiels", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Writer's Reference", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319169404", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_USED", + "price_display": "$50.30", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Writer's Reference", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319169404", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$119.75", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Writer's Reference", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319169404", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_USED", + "price_display": "$90.00", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Miniature Guide to Critical Thinking Concepts & Tools", + "edition": "8th", + "author": "Elder", + "isbn": "9781538134948", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_NEW", + "price_display": "$10.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Miniature Guide to Critical Thinking Concepts & Tools", + "edition": "8th", + "author": "Elder", + "isbn": "9781538134948", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_USED", + "price_display": "$5.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Miniature Guide to Critical Thinking Concepts & Tools", + "edition": "8th", + "author": "Elder", + "isbn": "9781538134948", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_NEW", + "price_display": "$13.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Miniature Guide to Critical Thinking Concepts & Tools", + "edition": "8th", + "author": "Elder", + "isbn": "9781538134948", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning How to Learn", + "edition": "N/A", + "author": "Oakley", + "isbn": "9780143132547", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning How to Learn", + "edition": "N/A", + "author": "Oakley", + "isbn": "9780143132547", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning How to Learn", + "edition": "N/A", + "author": "Oakley", + "isbn": "9780143132547", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning How to Learn", + "edition": "N/A", + "author": "Oakley", + "isbn": "9780143132547", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Miniature Guide to Critical Thinking Concepts and Tools", + "edition": "8th", + "author": "Paul", + "isbn": "9781538134955", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$11.00", + "item_type": "digital" + }, + { + "title": "A Writer's Reference", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319332969", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$43.99", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "43", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3908", + "section": "17", + "instructor": "Adam Aviv", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6240", + "section": "G80", + "instructor": "Bonnie Pierce", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "41", + "instructor": "Gerald Daigle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "64", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "4157", + "section": "10", + "instructor": "Zhaohai Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6898", + "section": "10", + "instructor": "Gholamali Rahnavard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2340W", + "section": "31", + "instructor": "James Hershberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1232", + "section": "37", + "instructor": "Yanxiang Zhao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "8140", + "section": "10", + "instructor": "Xiangyun Qiu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "3199", + "section": "11", + "instructor": "Robert Bonar", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Leadership in Practice", + "edition": "N/A", + "author": "Helm-Murtagh", + "isbn": "9780826149237", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Publishing Company", + "type_condition": "BUY_NEW", + "price_display": "$105.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leadership in Practice", + "edition": "N/A", + "author": "Helm-Murtagh", + "isbn": "9780826149237", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Publishing Company", + "type_condition": "BUY_USED", + "price_display": "$78.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leadership in Practice", + "edition": "N/A", + "author": "Helm-Murtagh", + "isbn": "9780826149244", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Publishing Company", + "type_condition": "BUY_NEW", + "price_display": "$104.99", + "item_type": "digital" + } + ] + }, + { + "department": "PSC", + "course_num": "2993", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8999", + "section": "12", + "instructor": "Colin Green", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6501", + "section": "10", + "instructor": "Karen McDonnell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1232", + "section": "11", + "instructor": "Valentina Harizanov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "3740W", + "section": "30", + "instructor": "Erica Gralla", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6240", + "section": "10", + "instructor": "Stanley Sloter", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "34", + "instructor": "Srinivasan Balaji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "3305", + "section": "10", + "instructor": "Diane Bridge", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "6292", + "section": "10", + "instructor": "Marie Price", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "2111", + "section": "34", + "instructor": "Kyle Levers", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "2801", + "section": "10", + "instructor": "Eric Dano", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "MV", + "instructor": "Hadas Aron", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "1011", + "section": "35", + "instructor": "Melanie-Joy Dorn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8999", + "section": "16", + "instructor": "Gholamali Rahnavard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "2121", + "section": "10", + "instructor": "Beverly Westerman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6303", + "section": "10", + "instructor": "Joseph Siryani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2001", + "section": "82", + "instructor": "Aaron Bateman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "47", + "instructor": "Hugo Junghenn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "19", + "instructor": "Michael Keidar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "1001", + "section": "15", + "instructor": "Saadia Erradi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3500", + "section": "12", + "instructor": "Omar Garcia Ponce", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "3142W", + "section": "10", + "instructor": "Chris Meyers", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Philosophy of Law", + "edition": "N/A", + "author": "Brand", + "isbn": "9781441104847", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Bloomsbury Academic", + "type_condition": "BUY_USED", + "price_display": "$131.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Philosophy of Law", + "edition": "N/A", + "author": "Brand", + "isbn": "9781441104847", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Bloomsbury Academic", + "type_condition": "BUY_NEW", + "price_display": "$175.00", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "24", + "instructor": "Kausik Sarkar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "65", + "instructor": "Marina Sanchez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8413", + "section": "11", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6898", + "section": "24", + "instructor": "Attaullah Nasib", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1001", + "section": "31", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "27", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "3165", + "section": "10", + "instructor": "Michael Massiah", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CULI", + "course_num": "1810", + "section": "02", + "instructor": "Timothy Harlan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "MV9", + "instructor": "Mark Ralkowski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "32", + "instructor": "Celeste Johnston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CLAS", + "course_num": "2112", + "section": "80", + "instructor": "Rebecca Boyd", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3150", + "section": "10", + "instructor": "Lee Huebner", + "term_name": "Fall 2023", + "texts": [ + { + "title": "New Ethics of Journalism", + "edition": "N/A", + "author": "McBride", + "isbn": "9781604265613", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "CQ PRESS, c/o SAGE", + "type_condition": "BUY_NEW", + "price_display": "$45.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "New Ethics of Journalism", + "edition": "N/A", + "author": "McBride", + "isbn": "9781604265613", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "CQ PRESS, c/o SAGE", + "type_condition": "RENTAL_USED", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "New Ethics of Journalism", + "edition": "N/A", + "author": "McBride", + "isbn": "9781604265613", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "CQ PRESS, c/o SAGE", + "type_condition": "BUY_USED", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The New Ethics of Journalism", + "edition": "N/A", + "author": "McBride", + "isbn": "9781483320953", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$26.40", + "item_type": "digital" + }, + { + "title": "The New Ethics of Journalism", + "edition": "N/A", + "author": "McBride", + "isbn": "9781483320953", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$29.70", + "item_type": "digital" + }, + { + "title": "The New Ethics of Journalism", + "edition": "N/A", + "author": "McBride", + "isbn": "9781483320953", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$33.00", + "item_type": "digital" + }, + { + "title": "The New Ethics of Journalism", + "edition": "1st", + "author": "McBride", + "isbn": "9781483320953", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$47.85", + "item_type": "digital" + } + ] + }, + { + "department": "PPPA", + "course_num": "6013", + "section": "10", + "instructor": "Dylan Conger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "4597", + "section": "10", + "instructor": "Carl Gudenius", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "10", + "instructor": "Daniel Jaqua", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "1003", + "section": "12", + "instructor": "Mohana Mukherjee", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Criminal Justice: Systems, Diversity, & Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398730", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$61.22", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Criminal Justice: Systems, Diversity, & Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398730", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$145.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Criminal Justice: Systems, Diversity, & Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398730", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$109.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Criminal Justice: Systems, Diversity, & Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398730", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$116.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introduction to Criminal Justice", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398754", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$51.99", + "item_type": "digital" + }, + { + "title": "Introduction to Criminal Justice", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398754", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$58.49", + "item_type": "digital" + }, + { + "title": "Introduction to Criminal Justice", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398754", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$65.00", + "item_type": "digital" + }, + { + "title": "Sage Vantage: Introduction to Criminal Justice: Systems, Diversity, and Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781071821336", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$83.00", + "item_type": "digital" + }, + { + "title": "Introduction to Criminal Justice", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398754", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$94.24", + "item_type": "digital" + } + ] + }, + { + "department": "MATH", + "course_num": "2233", + "section": "34", + "instructor": "Frank Baginski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "58", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6702", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "TSTD", + "course_num": "6249", + "section": "10", + "instructor": "Cevat Tosun", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6325", + "section": "10", + "instructor": "Maureen Byrnes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "0940", + "section": "14", + "instructor": "Russell Korte", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2001", + "section": "83", + "instructor": "Aaron Bateman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "80", + "instructor": "Marissa Gallo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "10", + "instructor": "Dong Quan Nguyen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Just-in-Time Algebra & Trig for Calculus", + "edition": "4th", + "author": "Mueller", + "isbn": "9780321671042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$52.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just-in-Time Algebra & Trig for Calculus", + "edition": "4th", + "author": "Mueller", + "isbn": "9780321671042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$45.66", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just-in-Time Algebra & Trig for Calculus", + "edition": "4th", + "author": "Mueller", + "isbn": "9780321671042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$28.10", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just-in-Time Algebra & Trig for Calculus", + "edition": "4th", + "author": "Mueller", + "isbn": "9780321671042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$70.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "PSC", + "course_num": "2383", + "section": "10", + "instructor": "Cynthia McClintock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6186", + "section": "30", + "instructor": "Nicholas Anderson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SUST", + "course_num": "3003", + "section": "31", + "instructor": "Tara Scully", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6295", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8998", + "section": "15", + "instructor": "Andrea Casey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "13", + "instructor": "Dong Quan Nguyen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Just-in-Time Algebra & Trig for Calculus", + "edition": "4th", + "author": "Mueller", + "isbn": "9780321671042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$28.10", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just-in-Time Algebra & Trig for Calculus", + "edition": "4th", + "author": "Mueller", + "isbn": "9780321671042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$45.66", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just-in-Time Algebra & Trig for Calculus", + "edition": "4th", + "author": "Mueller", + "isbn": "9780321671042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$52.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just-in-Time Algebra & Trig for Calculus", + "edition": "4th", + "author": "Mueller", + "isbn": "9780321671042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$70.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "EDUC", + "course_num": "6314", + "section": "10", + "instructor": "Joshua Glazer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "4502", + "section": "10", + "instructor": "Loren Kajikawa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3116", + "section": "80", + "instructor": "Andrew Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3907", + "section": "10", + "instructor": "Neil Wasserman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2993", + "section": "80", + "instructor": "Henry Hale", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "4104", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6001", + "section": "11", + "instructor": "Lori Brainard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3908", + "section": "24", + "instructor": "Abdou Youssef", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "18", + "instructor": "Peng Wei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "6999", + "section": "10", + "instructor": "James Sham", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "6290", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6120", + "section": "10", + "instructor": "Malwina Huzarska", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6723", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "2123", + "section": "85", + "instructor": "Benjamin Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1005", + "section": "34", + "instructor": "Peter Nassar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "11", + "instructor": "Sharon Roosevelt", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Just-in-Time Algebra & Trig for Calculus", + "edition": "4th", + "author": "Mueller", + "isbn": "9780321671042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$52.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just-in-Time Algebra & Trig for Calculus", + "edition": "4th", + "author": "Mueller", + "isbn": "9780321671042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$45.66", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just-in-Time Algebra & Trig for Calculus", + "edition": "4th", + "author": "Mueller", + "isbn": "9780321671042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$28.10", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just-in-Time Algebra & Trig for Calculus", + "edition": "4th", + "author": "Mueller", + "isbn": "9780321671042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$70.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "SLHS", + "course_num": "1011", + "section": "12", + "instructor": "Matthew McKeon", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Your Voice Is Your Business", + "edition": "2nd", + "author": "Barone", + "isbn": "9781597567220", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$70.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Your Voice Is Your Business", + "edition": "2nd", + "author": "Barone", + "isbn": "9781597567220", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Your Voice Is Your Business", + "edition": "2nd", + "author": "Barone", + "isbn": "9781597567220", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$52.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ECE", + "course_num": "6998", + "section": "24", + "instructor": "Guru Prasadh Venkataramani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6312", + "section": "11", + "instructor": "Amir Hossein Jafari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "2711W", + "section": "10", + "instructor": "Leenu Sugathan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8203", + "section": "19", + "instructor": "Helen DeVinney", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "12", + "instructor": "Subrata Kundu", + "term_name": "Fall 2023", + "texts": [ + { + "title": "MyLab Statistics with eText Standalone Access Card for Statistics for GEORGE WASHINGTON UNIVERSITY", + "edition": "N/A", + "author": "Education", + "isbn": "9780137347667", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$98.00", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "47", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2001", + "section": "10", + "instructor": "Katrin Schultheiss", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "2120", + "section": "10", + "instructor": "Shweta Krishnan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CLAS", + "course_num": "3901W", + "section": "10", + "instructor": "Christopher Rollston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6007", + "section": "10", + "instructor": "Tamara Henry", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Health Behavior: Theory, Research & Practice", + "edition": "5th", + "author": "Glanz", + "isbn": "9781118628980", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$120.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Health Behavior: Theory, Research & Practice", + "edition": "5th", + "author": "Glanz", + "isbn": "9781118628980", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$50.51", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Health Behavior: Theory, Research & Practice", + "edition": "5th", + "author": "Glanz", + "isbn": "9781118628980", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$90.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Health Behavior: Theory, Research & Practice", + "edition": "5th", + "author": "Glanz", + "isbn": "9781118628980", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$96.20", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Health Behavior", + "edition": "5th", + "author": "Glanz", + "isbn": "9781118629055", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$79.00", + "item_type": "digital" + } + ] + }, + { + "department": "SPED", + "course_num": "0920", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6998", + "section": "10", + "instructor": "Zoe Szajnfarber", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "0940", + "section": "15", + "instructor": "Andrea Casey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "4195", + "section": "10", + "instructor": "LaKeisha McClary", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6898", + "section": "21", + "instructor": "Osmel Manzano Mazzali", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6258", + "section": "80", + "instructor": "Ernest Forman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6614", + "section": "10", + "instructor": "Rob van Dam", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Nutritional Epidemiology", + "edition": "3rd", + "author": "Willett", + "isbn": "9780199754038", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$126.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Nutritional Epidemiology", + "edition": "3rd", + "author": "Willett", + "isbn": "9780199754038", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$67.60", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Nutritional Epidemiology", + "edition": "3rd", + "author": "Willett", + "isbn": "9780199754038", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$169.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Nutritional Epidemiology", + "edition": "3rd", + "author": "Willett", + "isbn": "9780190240844", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$94.24", + "item_type": "digital" + }, + { + "title": "Nutritional Epidemiology", + "edition": "3rd", + "author": "Willett", + "isbn": "9780190240844", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$108.74", + "item_type": "digital" + }, + { + "title": "Nutritional Epidemiology", + "edition": "3rd", + "author": "Willett", + "isbn": "9780190240844", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$144.99", + "item_type": "digital" + } + ] + }, + { + "department": "SLHS", + "course_num": "1071W", + "section": "10", + "instructor": "Melanie-Joy Dorn", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Language", + "edition": "11th", + "author": "Fromkin", + "isbn": "9781337559577", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$123.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Language", + "edition": "11th", + "author": "Fromkin", + "isbn": "9781337559577", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Language", + "edition": "11th", + "author": "Fromkin", + "isbn": "9781337559577", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Language", + "edition": "11th", + "author": "Fromkin", + "isbn": "9781337559577", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$79.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "An Introduction to Language (w/ MLA9E Updates)", + "edition": "11th", + "author": "Fromkin", + "isbn": "9781337671279", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$45.99", + "item_type": "digital" + }, + { + "title": "An Introduction to Language (w/ MLA9E Updates)", + "edition": "11th", + "author": "Fromkin", + "isbn": "9781337671279", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$62.99", + "item_type": "digital" + }, + { + "title": "An Introduction to Language (w/ MLA9E Updates)", + "edition": "11th", + "author": "Fromkin", + "isbn": "9781337671279", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$80.48", + "item_type": "digital" + } + ] + }, + { + "department": "LSPA", + "course_num": "1014", + "section": "12", + "instructor": "Mimi Malfitano", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "51", + "instructor": "Tian Lan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "2091", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EAP", + "course_num": "6111", + "section": "12", + "instructor": "Natalia Romanova", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "3001W", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "3101", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "53", + "instructor": "Frances Sun", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "1001", + "section": "19", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSCI", + "course_num": "6291", + "section": "PT5", + "instructor": "Holly Jonely", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3186", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "65", + "instructor": "Joseph Barbera", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6998", + "section": "15", + "instructor": "Royce Francis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2520", + "section": "10", + "instructor": "George Clay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "6268", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6138", + "section": "13", + "instructor": "Rajeev Colaco", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "26", + "instructor": "Martha Finnemore", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Half the Sky", + "edition": "N/A", + "author": "Kristof", + "isbn": "9780307387097", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Half the Sky", + "edition": "N/A", + "author": "Kristof", + "isbn": "9780307387097", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Half the Sky", + "edition": "N/A", + "author": "Kristof", + "isbn": "9780307387097", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$7.28", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "For Love of Country", + "edition": "N/A", + "author": "Nussbaum", + "isbn": "9780807043295", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "For Love of Country", + "edition": "N/A", + "author": "Nussbaum", + "isbn": "9780807043295", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Beacon Press c/o Random House", + "type_condition": "RENTAL_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "For Love of Country", + "edition": "N/A", + "author": "Nussbaum", + "isbn": "9780807043295", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Life You Can Save", + "edition": "N/A", + "author": "Singer", + "isbn": "9780812981568", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Life You Can Save", + "edition": "N/A", + "author": "Singer", + "isbn": "9780812981568", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Conquest of Violence (New Rev)", + "edition": "N/A", + "author": "Bondurant", + "isbn": "9780691022819", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1988", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$42.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Conquest of Violence (New Rev)", + "edition": "N/A", + "author": "Bondurant", + "isbn": "9780691022819", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1988", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Conquest of Violence (New Rev)", + "edition": "N/A", + "author": "Bondurant", + "isbn": "9780691022819", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1988", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "RENTAL_USED", + "price_display": "$16.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Basic Rights (with New Afterword)", + "edition": "N/A", + "author": "Shue", + "isbn": "9780691029290", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$28.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Basic Rights (with New Afterword)", + "edition": "N/A", + "author": "Shue", + "isbn": "9780691029290", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$21.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Basic Rights (with New Afterword)", + "edition": "N/A", + "author": "Shue", + "isbn": "9780691029290", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "RENTAL_USED", + "price_display": "$11.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just & Unjust Wars", + "edition": "5th", + "author": "Walzer", + "isbn": "9780465052714", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Basic Books", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just & Unjust Wars", + "edition": "5th", + "author": "Walzer", + "isbn": "9780465052714", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Basic Books", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eichmann in Jerusalem", + "edition": "N/A", + "author": "Arendt", + "isbn": "9780143039884", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eichmann in Jerusalem", + "edition": "N/A", + "author": "Arendt", + "isbn": "9780143039884", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eichmann in Jerusalem", + "edition": "N/A", + "author": "Arendt", + "isbn": "9780143039884", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eichmann in Jerusalem", + "edition": "N/A", + "author": "Arendt", + "isbn": "9780143039884", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_USED", + "price_display": "$7.92", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Development as Freedom", + "edition": "N/A", + "author": "Sen", + "isbn": "9780385720274", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Doubleday Books", + "type_condition": "BUY_NEW", + "price_display": "$19.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Development as Freedom", + "edition": "N/A", + "author": "Sen", + "isbn": "9780385720274", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Doubleday Books", + "type_condition": "RENTAL_NEW", + "price_display": "$12.35", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Development as Freedom", + "edition": "N/A", + "author": "Sen", + "isbn": "9780385720274", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Doubleday Books", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Development as Freedom", + "edition": "N/A", + "author": "Sen", + "isbn": "9780385720274", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Doubleday Books", + "type_condition": "RENTAL_USED", + "price_display": "$7.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Conquest of Violence", + "edition": "N/A", + "author": "Bondurant", + "isbn": "9780691218045", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$42.00", + "item_type": "digital" + } + ] + }, + { + "department": "ISTM", + "course_num": "4120", + "section": "10", + "instructor": "Abdi Awl", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "43", + "instructor": "Srinivasan Balaji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6262", + "section": "80", + "instructor": "Homayoun Khamooshi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1232", + "section": "12", + "instructor": "Yanxiang Zhao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GER", + "course_num": "1000", + "section": "11", + "instructor": "Margaret Gonglewski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PMGT", + "course_num": "6401", + "section": "10", + "instructor": "Stamatia Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "3133", + "section": "11", + "instructor": "Kimberly Gamble-Payne", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "6225", + "section": "10", + "instructor": "Hua Liang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6186", + "section": "25", + "instructor": "Margaux Repellin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MICR", + "course_num": "8999", + "section": "10", + "instructor": "David Leitenberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "4404", + "section": "10", + "instructor": "Noel Maurer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3190", + "section": "87", + "instructor": "Christopher Bright", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "37", + "instructor": "Abdou Youssef", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1002", + "section": "38", + "instructor": "Forrest Maltzman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "6305", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "3332", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M7", + "instructor": "Julie Donovan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Kari", + "edition": "N/A", + "author": "Patil", + "isbn": "9788172237103", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins Publishers India", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kari", + "edition": "N/A", + "author": "Patil", + "isbn": "9788172237103", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins Publishers India", + "type_condition": "BUY_NEW", + "price_display": "$19.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Aya: Life in Yop City", + "edition": "N/A", + "author": "Abouet", + "isbn": "9781770460829", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Aya: Life in Yop City", + "edition": "N/A", + "author": "Abouet", + "isbn": "9781770460829", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_NEW", + "price_display": "$22.46", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Aya: Life in Yop City", + "edition": "N/A", + "author": "Abouet", + "isbn": "9781770460829", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Aya: Life in Yop City", + "edition": "N/A", + "author": "Abouet", + "isbn": "9781770460829", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_USED", + "price_display": "$11.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Shubeik Lubeik", + "edition": "N/A", + "author": "Mohamed", + "isbn": "9781524748418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Shubeik Lubeik", + "edition": "N/A", + "author": "Mohamed", + "isbn": "9781524748418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Photographic: The Life of Graciela Iturbide", + "edition": "N/A", + "author": "Quintero", + "isbn": "9781947440005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Harry N. Abrams Incorporated", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Photographic: The Life of Graciela Iturbide", + "edition": "N/A", + "author": "Quintero", + "isbn": "9781947440005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Harry N. Abrams Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Photographic: The Life of Graciela Iturbide", + "edition": "N/A", + "author": "Quintero", + "isbn": "9781947440005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Harry N. Abrams Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$7.98", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fun Home", + "edition": "N/A", + "author": "Bechdel", + "isbn": "9780618871711", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fun Home", + "edition": "N/A", + "author": "Bechdel", + "isbn": "9780618871711", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fun Home", + "edition": "N/A", + "author": "Bechdel", + "isbn": "9780618871711", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "RENTAL_USED", + "price_display": "$8.64", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Persepolis", + "edition": "N/A", + "author": "Satrapi", + "isbn": "9780375714832", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Pantheon", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Persepolis", + "edition": "N/A", + "author": "Satrapi", + "isbn": "9780375714832", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Pantheon", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Persepolis", + "edition": "N/A", + "author": "Satrapi", + "isbn": "9780375714832", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Pantheon", + "type_condition": "RENTAL_USED", + "price_display": "$12.29", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Aya: Life in Yop City", + "edition": "N/A", + "author": "Abouet", + "isbn": "9781770465589", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$10.00", + "item_type": "digital" + }, + { + "title": "Kari", + "edition": "N/A", + "author": "Patil", + "isbn": "9789351779179", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$12.99", + "item_type": "digital" + } + ] + }, + { + "department": "SMPP", + "course_num": "6210", + "section": "80", + "instructor": "Jorge Rivera", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "3110", + "section": "80", + "instructor": "Daniel Sude", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "2134", + "section": "10", + "instructor": "James Gledhill", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6058", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "6241", + "section": "MV", + "instructor": "Daniele Podini", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2121", + "section": "11", + "instructor": "Pamela Labadie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8999", + "section": "15", + "instructor": "Leighton Ku", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UNIV", + "course_num": "0991", + "section": "51", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "6255", + "section": "10", + "instructor": "Salah Hassan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M57", + "instructor": "Caroline Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "4199", + "section": "10", + "instructor": "David Rain", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "2172", + "section": "10", + "instructor": "Anna Kimmel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "4600", + "section": "10", + "instructor": "Kathryn Kleppinger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6399", + "section": "13", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "3600", + "section": "10", + "instructor": "Heather Bamford", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2013", + "section": "11", + "instructor": "Ramezan Dowlati", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Developing Person Through the Life Span", + "edition": "12th", + "author": "Berger", + "isbn": "9781319332006", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$320.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Developing Person Through the Life Span", + "edition": "12th", + "author": "Berger", + "isbn": "9781319332006", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_USED", + "price_display": "$240.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Developing Person Through the Life Span", + "edition": "12th", + "author": "Berger", + "isbn": "9781319466220", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$71.99", + "item_type": "digital" + } + ] + }, + { + "department": "PSC", + "course_num": "2223", + "section": "10", + "instructor": "Christopher Warshaw", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Campaigns & Elections", + "edition": "4th", + "author": "Sides", + "isbn": "9780393441680", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$47.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Campaigns & Elections", + "edition": "4th", + "author": "Sides", + "isbn": "9780393441680", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$62.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Campaigns & Elections", + "edition": "4th", + "author": "Sides", + "isbn": "9780393441680", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Campaigns & Elections", + "edition": "4th", + "author": "Sides", + "isbn": "9780393441680", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$50.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Public Opinion", + "edition": "10th", + "author": "Erikson", + "isbn": "9781138490703", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$87.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Public Opinion", + "edition": "10th", + "author": "Erikson", + "isbn": "9781138490703", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$116.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Public Opinion", + "edition": "10th", + "author": "Erikson", + "isbn": "9781138490703", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "Routledge", + "type_condition": "RENTAL_USED", + "price_display": "$48.93", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "American Public Opinion", + "edition": "10th", + "author": "Erikson", + "isbn": "9781351034722", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$100.00", + "item_type": "digital" + } + ] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "42", + "instructor": "Erin Sonn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "1011", + "section": "11", + "instructor": "Melanie-Joy Dorn", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Your Voice Is Your Business", + "edition": "2nd", + "author": "Barone", + "isbn": "9781597567220", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$70.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Your Voice Is Your Business", + "edition": "2nd", + "author": "Barone", + "isbn": "9781597567220", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$52.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Your Voice Is Your Business", + "edition": "2nd", + "author": "Barone", + "isbn": "9781597567220", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "HOL", + "course_num": "8999", + "section": "14", + "instructor": "Russell Korte", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8126", + "section": "10", + "instructor": "Robert Canales", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8205", + "section": "10", + "instructor": "Helen DeVinney", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "6291", + "section": "10", + "instructor": "M. Ashraf Imam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8999", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "1210", + "section": "11", + "instructor": "Emily Holland", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8999", + "section": "15", + "instructor": "Tiffany-Rose Sikorski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8101", + "section": "12", + "instructor": "Michael Casemore", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6511", + "section": "80", + "instructor": "Stephen Kaisler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "8998", + "section": "10", + "instructor": "Michael Plesniak", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "6998", + "section": "10", + "instructor": "Michael Plesniak", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2313", + "section": "10", + "instructor": "Bell Clement", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M64", + "instructor": "Rachel Pollack", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "25", + "instructor": "Sameh Badie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "6290", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6270", + "section": "10", + "instructor": "Robert Bonar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6998", + "section": "18", + "instructor": "Ekundayo Shittu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6572", + "section": "80", + "instructor": "John Helveston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "3604", + "section": "80", + "instructor": "Leila Farhadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "0940", + "section": "10", + "instructor": "Maria Cseh", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1030", + "section": "10", + "instructor": "Joseph Simms", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "4198", + "section": "10", + "instructor": "Michael Plesniak", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6241", + "section": "10", + "instructor": "Cynthia Ogden", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6101", + "section": "21", + "instructor": "Pavan Zaveri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8295", + "section": "10", + "instructor": "Cynthia Rohrbeck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "4192", + "section": "10", + "instructor": "Fran Buntman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "1014", + "section": "11", + "instructor": "Christine Bistline-Bonilla", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CLAS", + "course_num": "4111", + "section": "10", + "instructor": "Christopher Rollston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1061", + "section": "10", + "instructor": "Renford Powell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "6202", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2011", + "section": "12", + "instructor": "Sherry Molock", + "term_name": "Fall 2023", + "texts": [ + { + "title": "MindTap for Sue's Understanding Abnormal Behavior, 1 term Instant Access", + "edition": "12th", + "author": "David SueDerald SueDiane M.", + "isbn": "9780357365168", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$145.50", + "item_type": "digital" + } + ] + }, + { + "department": "PSC", + "course_num": "2101", + "section": "14", + "instructor": "Alicia Cooperman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Data Analysis for Social Science", + "edition": "N/A", + "author": "Llaudet", + "isbn": "9780691199436", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Data Analysis for Social Science", + "edition": "N/A", + "author": "Llaudet", + "isbn": "9780691199436", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$45.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Data Analysis for Social Science", + "edition": "N/A", + "author": "Llaudet", + "isbn": "9780691229348", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$45.00", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6898", + "section": "20", + "instructor": "Lynne Weil", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "6231", + "section": "11", + "instructor": "Jessica Jocelyn", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Ghost Boy", + "edition": "N/A", + "author": "Pistorius", + "isbn": "9781400205837", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Thomas Nelson Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$19.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ghost Boy", + "edition": "N/A", + "author": "Pistorius", + "isbn": "9781400205837", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Thomas Nelson Incorporated", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ghost Boy", + "edition": "N/A", + "author": "Pistorius", + "isbn": "9781400205837", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Thomas Nelson Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$8.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Child & Adolescent Communication Disorders", + "edition": "N/A", + "author": "Kerins", + "isbn": "9781597566568", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$119.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Child & Adolescent Communication Disorders", + "edition": "N/A", + "author": "Kerins", + "isbn": "9781597566568", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$90.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Child & Adolescent Communication Disorders", + "edition": "N/A", + "author": "Kerins", + "isbn": "9781597566568", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$47.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ghost Boy", + "edition": "N/A", + "author": "Pistorius", + "isbn": "9781400205844", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Thomas Nelson Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$12.99", + "item_type": "digital" + }, + { + "title": "Child and Adolescent Communication Disorders", + "edition": "N/A", + "author": "Kerins", + "isbn": "9781597569125", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$139.95", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "4123", + "section": "10", + "instructor": "Erik Rodriguez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6008", + "section": "10", + "instructor": "Rachel Emas", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "72", + "instructor": "Rachel Riedner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "34", + "instructor": "Hugo Junghenn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8999", + "section": "12", + "instructor": "Rick Jakeman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "4003", + "section": "10", + "instructor": "Katherine Frey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6097", + "section": "11", + "instructor": "David Silverman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6118", + "section": "15", + "instructor": "Jane Henrici", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M84", + "instructor": "Jessica McCaughey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6050", + "section": "16", + "instructor": "Can Korman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M30", + "instructor": "Caroline Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "10", + "instructor": "Robert Pless", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6999", + "section": "18", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "12", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3908", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JAPN", + "course_num": "1001", + "section": "33", + "instructor": "Kaori Iwai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6021", + "section": "17", + "instructor": "Angela Hinzey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "2410", + "section": "10", + "instructor": "Sibin Mohan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6185", + "section": "10", + "instructor": "Mina Attia", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "8108", + "section": "10", + "instructor": "Matthew Barberio", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1055", + "section": "11", + "instructor": "Alexandra Keen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "4360", + "section": "10", + "instructor": "Antonio Lopez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8510", + "section": "10", + "instructor": "Mikyong Kim", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "6290", + "section": "80D", + "instructor": "Michael Provance", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "12", + "instructor": "Vesna Zderic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6444", + "section": "10", + "instructor": "Benjamin Harvey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PT", + "course_num": "8315", + "section": "10", + "instructor": "Holly Jonely", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Dutton's Orthopaedic: Examination, Evaluation & Intervention, Sixth Edition", + "edition": "6th", + "author": "Dutton", + "isbn": "9781264259076", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "McGraw-Hill", + "type_condition": "BUY_USED", + "price_display": "$104.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Dutton's Orthopaedic: Examination, Evaluation & Intervention, Sixth Edition", + "edition": "6th", + "author": "Dutton", + "isbn": "9781264259076", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$138.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Manual Mobilization of Joints (V1)(w/DVD)", + "edition": "8th", + "author": "Kaltenborn", + "isbn": "9788270542017", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "OPTP", + "type_condition": "BUY_USED", + "price_display": "$51.50", + "item_type": "print" + }, + { + "title": "Manual Mobilization of Joints (V1)(w/DVD)", + "edition": "8th", + "author": "Kaltenborn", + "isbn": "9788270542017", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "OPTP", + "type_condition": "BUY_NEW", + "price_display": "$68.50", + "item_type": "print" + }, + { + "title": "Orthopedic Physical Exam Tests", + "edition": "2nd", + "author": "Cook", + "isbn": "9780132544788", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$99.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Orthopedic Physical Exam Tests", + "edition": "2nd", + "author": "Cook", + "isbn": "9780132544788", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$132.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Orthopedic Physical Exam Tests", + "edition": "2nd", + "author": "Cook", + "isbn": "9780132544788", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$99.38", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Orthopedic Physical Examination Tests", + "edition": "2nd", + "author": "Hegedus", + "isbn": "9780133463286", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$55.00", + "item_type": "digital" + }, + { + "title": "Orthopedic Physical Examination Tests", + "edition": "2nd", + "author": "Hegedus", + "isbn": "9780133463286", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "Dutton's Orthopaedic: Examination, Evaluation and Intervention, Sixth Edition", + "edition": "6th", + "author": "Dutton", + "isbn": "9781264946112", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill Professional Publishing", + "type_condition": "BUY_NEW", + "price_display": "$150.00", + "item_type": "digital" + } + ] + }, + { + "department": "SPAN", + "course_num": "1001", + "section": "10", + "instructor": "Tania Leyva", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Gente: A task-based approach to learning Spanish (RRPHE)", + "edition": "4th", + "author": "De La Fuente", + "isbn": "9780135162903", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "item_type": "print" + }, + { + "title": "Gente: A task-based approach to learning Spanish (RRPHE)", + "edition": "4th", + "author": "De La Fuente", + "isbn": "9780135162903", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "item_type": "print" + }, + { + "title": "MyLab Spanish with Pearson eText -- Access Card -- for Gente: A task-based approach to learning Spanish (One-Semester)", + "edition": "4th", + "author": "Baulenas", + "isbn": "9780135307632", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$146.75", + "item_type": "digital" + }, + { + "title": "MyLab Spanish with Pearson eText -- Access Card -- for Gente: A task-based approach to learning Spanish (Multi-Semester)", + "edition": "4th", + "author": "Baulenas", + "isbn": "9780135307618", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$173.50", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "21", + "instructor": "Abdou Youssef", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6014", + "section": "17", + "instructor": "Katie Fernandez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6210", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6755", + "section": "80", + "instructor": "Royce Francis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "3101", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6118", + "section": "20", + "instructor": "Gordon Gray", + "term_name": "Fall 2023", + "texts": [ + { + "title": "War of Necessity, War of Choice", + "edition": "N/A", + "author": "Haass", + "isbn": "9781416549031", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "War of Necessity, War of Choice", + "edition": "N/A", + "author": "Haass", + "isbn": "9781416549031", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "War of Necessity, War of Choice", + "edition": "N/A", + "author": "Haass", + "isbn": "9781416549031", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Simon & Schuster", + "type_condition": "RENTAL_USED", + "price_display": "$7.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Statecraft", + "edition": "N/A", + "author": "Ross", + "isbn": "9780374299286", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_NEW", + "price_display": "$26.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statecraft", + "edition": "N/A", + "author": "Ross", + "isbn": "9780374299286", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Losing the Long Game", + "edition": "N/A", + "author": "Gordon", + "isbn": "9781250217035", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$29.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Losing the Long Game", + "edition": "N/A", + "author": "Gordon", + "isbn": "9781250217035", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "National Security Through a Cockeyed Lens", + "edition": "N/A", + "author": "Yetiv", + "isbn": "9781421411255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "The Johns Hopkins University Press", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "National Security Through a Cockeyed Lens", + "edition": "N/A", + "author": "Yetiv", + "isbn": "9781421411255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "The Johns Hopkins University Press", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Elements of Style", + "edition": "4th", + "author": "Strunk", + "isbn": "9780205309023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$9.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Elements of Style", + "edition": "4th", + "author": "Strunk", + "isbn": "9780205309023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$7.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "National Security through a Cockeyed Lens", + "edition": "N/A", + "author": "Yetiv", + "isbn": "9781421411262", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "The Johns Hopkins University Press", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "item_type": "digital" + } + ] + }, + { + "department": "HOL", + "course_num": "6101", + "section": "22", + "instructor": "Arshad Ali", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "68", + "instructor": "Jasmine Jefferies", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6502", + "section": "12", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSCI", + "course_num": "6291", + "section": "PT9", + "instructor": "Amber Weinheimer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6907", + "section": "80", + "instructor": "Philip Cho", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "3122", + "section": "80", + "instructor": "Sarah Shomstein", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6001", + "section": "10", + "instructor": "Lori Brainard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "14", + "instructor": "Lance Hoffman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6260", + "section": "81", + "instructor": "Gina Adam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3185", + "section": "10", + "instructor": "Erwan Lagadec", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "54", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "TSTD", + "course_num": "6296", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6050", + "section": "22", + "instructor": "Volker Sorger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1005", + "section": "11", + "instructor": "Lauren Philips", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6160", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6999", + "section": "15", + "instructor": "Hao Huang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "6110", + "section": "10", + "instructor": "Weiqun Peng", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Mathematical Methods for Physicists", + "edition": "7th", + "author": "Arfken", + "isbn": "9780123846549", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Academic Press, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$93.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematical Methods for Physicists", + "edition": "7th", + "author": "Arfken", + "isbn": "9780123846549", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Academic Press, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$124.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematical Methods for Physicists", + "edition": "7th", + "author": "Arfken", + "isbn": "9780123846549", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Academic Press, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$52.48", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematical Methods for Physicists", + "edition": "7th", + "author": "Arfken", + "isbn": "9780123846549", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Academic Press, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$93.71", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematical Methods for Physicists", + "edition": "7th", + "author": "Arfken", + "isbn": "9780123846556", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Elsevier", + "type_condition": "BUY_NEW", + "price_display": "$98.99", + "item_type": "digital" + } + ] + }, + { + "department": "SMPA", + "course_num": "2113", + "section": "12", + "instructor": "Jason Osder", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Don't Make Me Think, Revisited: A Common Sense Approach to Web Usability", + "edition": "3rd", + "author": "Krug", + "isbn": "9780321965516", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Addison Wesley", + "type_condition": "BUY_NEW", + "price_display": "$45.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Don't Make Me Think, Revisited: A Common Sense Approach to Web Usability", + "edition": "3rd", + "author": "Krug", + "isbn": "9780321965516", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_NEW", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Don't Make Me Think, Revisited: A Common Sense Approach to Web Usability", + "edition": "3rd", + "author": "Krug", + "isbn": "9780321965516", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_USED", + "price_display": "$19.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Don't Make Me Think, Revisited: A Common Sense Approach to Web Usability", + "edition": "3rd", + "author": "Krug", + "isbn": "9780321965516", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Addison Wesley", + "type_condition": "BUY_USED", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Don't Make Me Think, Revisited", + "edition": "3rd", + "author": "Krug", + "isbn": "9780133597257", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Higher Educ & Prof Group", + "type_condition": "BUY_NEW", + "price_display": "$24.00", + "item_type": "digital" + }, + { + "title": "Don't Make Me Think, Revisited", + "edition": "3rd", + "author": "Krug", + "isbn": "9780133597264", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Higher Educ & Prof Group", + "type_condition": "BUY_NEW", + "price_display": "$24.00", + "item_type": "digital" + }, + { + "title": "Pearson eText for Don't Make Me Think, Revisited: A Common Sense Approach to Web Usability -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "3rd", + "author": "Krug", + "isbn": "9780137460434", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6158", + "section": "11", + "instructor": "Anthony Eames", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6261", + "section": "10", + "instructor": "Nate'le'ge' Wardlow", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SUST", + "course_num": "3097", + "section": "30", + "instructor": "Christopher Klemek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2218W", + "section": "10", + "instructor": "Sarah Binder", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Congress", + "edition": "N/A", + "author": "Mayhew", + "isbn": "9780300105872", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$24.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Congress", + "edition": "N/A", + "author": "Mayhew", + "isbn": "9780300105872", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Yale University Press", + "type_condition": "RENTAL_USED", + "price_display": "$9.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Congress", + "edition": "N/A", + "author": "Mayhew", + "isbn": "9780300105872", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Yale University Press", + "type_condition": "BUY_USED", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Congress and Its Members", + "edition": "19th", + "author": "Davidson", + "isbn": "9781071901793", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + } + ] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "42", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6378", + "section": "83", + "instructor": "Dina El-Hefnawy", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Media Arabic: Journalistic Discourse for Advanced Students of Arabic", + "edition": "N/A", + "author": "Elbousty", + "isbn": "9781032044460", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$42.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Media Arabic: Journalistic Discourse for Advanced Students of Arabic", + "edition": "N/A", + "author": "Elbousty", + "isbn": "9781032044460", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$32.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "SEHD", + "course_num": "8999", + "section": "17", + "instructor": "Lionel Howard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8700", + "section": "10", + "instructor": "Julia Storberg-Walker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "77", + "instructor": "Jaryn Gessesse", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1161", + "section": "10", + "instructor": "Heather Stebbins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6295", + "section": "82", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "4020W", + "section": "10", + "instructor": "Susan Sterner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "66", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "8354", + "section": "10", + "instructor": "Elizabeth Tuckwiller", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "46", + "instructor": "Hugo Junghenn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2444", + "section": "10", + "instructor": "Yonatan Lupu", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Akehurst's Modern Intro to Intl Law", + "edition": "8th", + "author": "Orakhelashvili", + "isbn": "9780415243568", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$57.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Akehurst's Modern Intro to Intl Law", + "edition": "8th", + "author": "Orakhelashvili", + "isbn": "9780415243568", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$42.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "IAFF", + "course_num": "6338", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "38", + "instructor": "Katherine Norton", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "20", + "instructor": "Abdou Youssef", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6223", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2012", + "section": "11", + "instructor": "Michelle Stock", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Social Psychology (RRPHE)", + "edition": "11th", + "author": "Aronson", + "isbn": "9780137633647", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Social Psychology (RRPHE)", + "edition": "11th", + "author": "Aronson", + "isbn": "9780137633647", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Social Psychology", + "edition": "11th", + "author": "Aronson", + "isbn": "9780137634057", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$61.25", + "item_type": "digital" + }, + { + "title": "Social Psychology", + "edition": "11th", + "author": "Aronson", + "isbn": "9780137634057", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$98.00", + "item_type": "digital" + } + ] + }, + { + "department": "MGT", + "course_num": "4085", + "section": "10", + "instructor": "Seleni Matus", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8202", + "section": "10", + "instructor": "George Howe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "2161", + "section": "11", + "instructor": "Andrew Toy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "M34", + "instructor": "Joseph Trullinger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1005", + "section": "35", + "instructor": "Peter Nassar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "4199", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "3142W", + "section": "11", + "instructor": "Johan Ferreira", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Consumer Behavior", + "edition": "7th", + "author": "Hoyer", + "isbn": "9781305507272", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$237.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Consumer Behavior", + "edition": "7th", + "author": "Hoyer", + "isbn": "9781305507272", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$205.89", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Consumer Behavior", + "edition": "7th", + "author": "Hoyer", + "isbn": "9781305507272", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$133.04", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Consumer Behavior", + "edition": "7th", + "author": "Hoyer", + "isbn": "9781305507272", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$316.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "MindTap Marketing, 1 term (6 months) Instant Access for Hoyer/MacInnis/Pieters/Close-Scheinbaum's Consumer Behavior", + "edition": "7th", + "author": "Hoyer Wayne D. MacInnis Deb", + "isbn": "9781305640078", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$133.50", + "item_type": "digital" + }, + { + "title": "Cengage Unlimited, 1 term (4 months), 1st Edition", + "edition": "N/A", + "author": "Cengage Unlimited", + "isbn": "9780357700006", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cengage Unlimited", + "type_condition": "RENTAL_NEW", + "price_display": "$156.30", + "item_type": "digital" + }, + { + "title": "Cengage Unlimited, Multi-term (12 months)", + "edition": "N/A", + "author": "Cengage", + "isbn": "9780357700013", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cengage Unlimited", + "type_condition": "RENTAL_NEW", + "price_display": "$237.50", + "item_type": "digital" + }, + { + "title": "Cengage Unlimited, Multi-term (24 months), 1st Edition", + "edition": "N/A", + "author": "Cengage Unlimited", + "isbn": "9780357700020", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cengage Unlimited", + "type_condition": "RENTAL_NEW", + "price_display": "$312.50", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "3190W", + "section": "11", + "instructor": "Laxman Belbase", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "1153", + "section": "10", + "instructor": "Dimiter Kirilov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1012", + "section": "34", + "instructor": "Ronald Bird", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6217", + "section": "30", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2001", + "section": "83", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6376", + "section": "10", + "instructor": "Scott Beveridge", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6998", + "section": "19", + "instructor": "Roger Lang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4243W", + "section": "10", + "instructor": "Timothy Wood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "3170", + "section": "82", + "instructor": "Patricia Chu", + "term_name": "Fall 2023", + "texts": [ + { + "title": "MLA Handbook", + "edition": "8th", + "author": "Modern Language Association Of America", + "isbn": "9781603292627", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2016", + "publisher": "Modern Language Association of America (Use HOPFU)", + "type_condition": "RENTAL_USED", + "price_display": "$7.26", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "MLA Handbook", + "edition": "8th", + "author": "Modern Language Association Of America", + "isbn": "9781603292627", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2016", + "publisher": "Modern Language Association of America (Use HOPFU)", + "type_condition": "BUY_NEW", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "MLA Handbook", + "edition": "8th", + "author": "Modern Language Association Of America", + "isbn": "9781603292627", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2016", + "publisher": "Modern Language Association of America (Use HOPFU)", + "type_condition": "BUY_USED", + "price_display": "$12.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Classic Fairy Tales", + "edition": "2nd", + "author": "Tatar", + "isbn": "9780393602975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_USED", + "price_display": "$17.88", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Classic Fairy Tales", + "edition": "2nd", + "author": "Tatar", + "isbn": "9780393602975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$35.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Classic Fairy Tales", + "edition": "2nd", + "author": "Tatar", + "isbn": "9780393602975", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "King Must Die", + "edition": "N/A", + "author": "Renault", + "isbn": "9780394751047", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$13.46", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "King Must Die", + "edition": "N/A", + "author": "Renault", + "isbn": "9780394751047", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "King Must Die", + "edition": "N/A", + "author": "Renault", + "isbn": "9780394751047", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1986", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kindred", + "edition": "N/A", + "author": "Butler", + "isbn": "9780807083697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kindred", + "edition": "N/A", + "author": "Butler", + "isbn": "9780807083697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gilgamesh: New English Version", + "edition": "N/A", + "author": "Mitchell", + "isbn": "9780743261692", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Simon & Schuster", + "type_condition": "RENTAL_USED", + "price_display": "$8.64", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gilgamesh: New English Version", + "edition": "N/A", + "author": "Mitchell", + "isbn": "9780743261692", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gilgamesh: New English Version", + "edition": "N/A", + "author": "Mitchell", + "isbn": "9780743261692", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hero with a Thousand Faces", + "edition": "N/A", + "author": "Campbell", + "isbn": "9781577315933", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "New World Library", + "type_condition": "RENTAL_NEW", + "price_display": "$18.71", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Hero with a Thousand Faces", + "edition": "N/A", + "author": "Campbell", + "isbn": "9781577315933", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "New World Library", + "type_condition": "RENTAL_USED", + "price_display": "$10.98", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Hero with a Thousand Faces", + "edition": "N/A", + "author": "Campbell", + "isbn": "9781577315933", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "New World Library", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Hero with a Thousand Faces", + "edition": "N/A", + "author": "Campbell", + "isbn": "9781577315933", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "New World Library", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Seraphina", + "edition": "N/A", + "author": "Hartman", + "isbn": "9780375866227", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Random House Children's Books", + "type_condition": "RENTAL_NEW", + "price_display": "$10.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Seraphina", + "edition": "N/A", + "author": "Hartman", + "isbn": "9780375866227", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Random House Children's Books", + "type_condition": "BUY_NEW", + "price_display": "$13.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Seraphina", + "edition": "N/A", + "author": "Hartman", + "isbn": "9780375866227", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Random House Children's Books", + "type_condition": "BUY_USED", + "price_display": "$10.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sir Gawain & the Green Knight", + "edition": "N/A", + "author": "Stone", + "isbn": "9780140440928", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1974", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$9.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sir Gawain & the Green Knight", + "edition": "N/A", + "author": "Stone", + "isbn": "9780140440928", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1974", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_USED", + "price_display": "$5.28", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sir Gawain & the Green Knight", + "edition": "N/A", + "author": "Stone", + "isbn": "9780140440928", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1974", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sir Gawain & the Green Knight", + "edition": "N/A", + "author": "Stone", + "isbn": "9780140440928", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1974", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$9.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Classic Fairy Tales (Second Edition) (Norton Critical Editions)", + "edition": "2nd", + "author": "Tatar", + "isbn": "9780393289794", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$12.99", + "item_type": "digital" + } + ] + }, + { + "department": "MAE", + "course_num": "6238", + "section": "81", + "instructor": "Lijie Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "44", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6255", + "section": "2U1", + "instructor": "Leonard Friedman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1051", + "section": "14", + "instructor": "Xiaoke Zhang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Statistics for Business & Economics (RRPHE)", + "edition": "14th", + "author": "Mcclave", + "isbn": "9780136855354", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistics for Business & Economics (RRPHE)", + "edition": "14th", + "author": "Mcclave", + "isbn": "9780136855354", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistics", + "edition": "4th", + "author": "Freedman", + "isbn": "9780393929720", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$118.46", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistics", + "edition": "4th", + "author": "Freedman", + "isbn": "9780393929720", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$182.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistics", + "edition": "4th", + "author": "Freedman", + "isbn": "9780393929720", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$136.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistics", + "edition": "4th", + "author": "Freedman", + "isbn": "9780393929720", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$76.55", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pearson eText Statistics for Business and Economics -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "14th", + "author": "McClave", + "isbn": "9780137335428", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Statistics for Business and Economics", + "edition": "14th", + "author": "McClave", + "isbn": "9780137376629", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$104.00", + "item_type": "digital" + }, + { + "title": "Statistics for Business and Economics", + "edition": "14th", + "author": "McClave", + "isbn": "9780137376575", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$104.00", + "item_type": "digital" + }, + { + "title": "Statistics (Fourth Edition)", + "edition": "4th", + "author": "Freedman", + "isbn": "9780393522105", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$109.54", + "item_type": "digital" + } + ] + }, + { + "department": "GEOG", + "course_num": "2136", + "section": "10", + "instructor": "Michael Focazio", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "16", + "instructor": "Vincent Stine", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Challenge of Pluralism", + "edition": "3rd", + "author": "Monsma", + "isbn": "9781442250437", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$42.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Challenge of Pluralism", + "edition": "3rd", + "author": "Monsma", + "isbn": "9781442250437", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Challenge of Pluralism", + "edition": "3rd", + "author": "Monsma", + "isbn": "9781442250437", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$16.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Politics & Religion in United States", + "edition": "2nd", + "author": "Corbett", + "isbn": "9780415644631", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$87.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Politics & Religion in United States", + "edition": "2nd", + "author": "Corbett", + "isbn": "9780415644631", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$65.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Politics & Religion in United States", + "edition": "2nd", + "author": "Corbett", + "isbn": "9780415644631", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Routledge", + "type_condition": "RENTAL_USED", + "price_display": "$35.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Politics & Religion in United States", + "edition": "2nd", + "author": "Corbett", + "isbn": "9780415644631", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Routledge", + "type_condition": "RENTAL_NEW", + "price_display": "$65.63", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Church & State in America", + "edition": "N/A", + "author": "Hutson", + "isbn": "9780521683432", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$25.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Church & State in America", + "edition": "N/A", + "author": "Hutson", + "isbn": "9780521683432", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Our First Revolution", + "edition": "N/A", + "author": "Barone", + "isbn": "9781400097937", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Crown Publishing Group", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Our First Revolution", + "edition": "N/A", + "author": "Barone", + "isbn": "9781400097937", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Crown Publishing Group", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Challenge of Pluralism", + "edition": "3rd", + "author": "Soper", + "isbn": "9781442250444", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$32.00", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "2040", + "section": "13", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "1001", + "section": "11", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6000", + "section": "12", + "instructor": "Veronica Southerland", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6358", + "section": "10", + "instructor": "Eric Olson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M72", + "instructor": "Nabila Hijazi", + "term_name": "Fall 2023", + "texts": [ + { + "title": "No Refuge for Women", + "edition": "N/A", + "author": "Von Welser", + "isbn": "9781771643078", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Greystone Books", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Refuge for Women", + "edition": "N/A", + "author": "Von Welser", + "isbn": "9781771643078", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Greystone Books", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ECE", + "course_num": "6050", + "section": "13", + "instructor": "Tarek El-Ghazawi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "81", + "instructor": "Andrew Cutler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "6370", + "section": "10", + "instructor": "Bruce Dickson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Politics of China", + "edition": "3rd", + "author": "Macfarquhar", + "isbn": "9780521145312", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$51.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Politics of China", + "edition": "3rd", + "author": "Macfarquhar", + "isbn": "9780521145312", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$39.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wealth & Power", + "edition": "N/A", + "author": "Schell", + "isbn": "9780812976250", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Random House Adult Trade Publ", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wealth & Power", + "edition": "N/A", + "author": "Schell", + "isbn": "9780812976250", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Random House Adult Trade Publ", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wealth & Power", + "edition": "N/A", + "author": "Schell", + "isbn": "9780812976250", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Random House Adult Trade Publ", + "type_condition": "RENTAL_USED", + "price_display": "$7.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Party & the People", + "edition": "N/A", + "author": "Dickson", + "isbn": "9780691216973", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Party & the People", + "edition": "N/A", + "author": "Dickson", + "isbn": "9780691216973", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Party and the People", + "edition": "N/A", + "author": "Dickson", + "isbn": "9780691216966", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "item_type": "digital" + } + ] + }, + { + "department": "CSA", + "course_num": "3090", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8999", + "section": "10", + "instructor": "Heather Young", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6320", + "section": "11", + "instructor": "Anushree Vichare", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "4592", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "48", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "8999", + "section": "13", + "instructor": "Tarek El-Ghazawi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6998", + "section": "13", + "instructor": "Tarek El-Ghazawi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6898", + "section": "19", + "instructor": "Kathleen Donahue", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6335", + "section": "10", + "instructor": "Naomi Seiler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6210", + "section": "10", + "instructor": "Patricia Kabra", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CANC", + "course_num": "8999", + "section": "10", + "instructor": "Norman Lee", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2152", + "section": "12", + "instructor": "Nicholas Bell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "8999", + "section": "10", + "instructor": "Robert Phillips", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6998", + "section": "15", + "instructor": "Hao Huang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "70", + "instructor": "David Broniatowski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6101", + "section": "16", + "instructor": "Mina Attia", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8999", + "section": "18", + "instructor": "Maggie Parker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6504", + "section": "10", + "instructor": "Jeffrey Bingenheimer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "6288", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6998", + "section": "26", + "instructor": "Sibin Mohan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "4182", + "section": "30", + "instructor": "Taeyoung Lee", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "6010", + "section": "10", + "instructor": "Maria del Carmen Montoya", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3500", + "section": "13", + "instructor": "Jeffrey Ding", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "3100W", + "section": "13", + "instructor": "Christopher Britt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "4099", + "section": "10", + "instructor": "Steven Brady", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3186", + "section": "82", + "instructor": "Deepa Ollapally", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2476", + "section": "11", + "instructor": "Joyce Karam", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lemon Tree", + "edition": "N/A", + "author": "Tolan", + "isbn": "9781596913431", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Lemon Tree", + "edition": "N/A", + "author": "Tolan", + "isbn": "9781596913431", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of the Arab Israeli Conflict", + "edition": "7th", + "author": "Bickerton", + "isbn": "9780205968138", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_USED", + "price_display": "$78.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of the Arab Israeli Conflict", + "edition": "7th", + "author": "Bickerton", + "isbn": "9780205968138", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$105.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of the Arab Israeli Conflict", + "edition": "7th", + "author": "Bickerton", + "isbn": "9780205968138", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "RENTAL_USED", + "price_display": "$42.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "DATS", + "course_num": "6450", + "section": "15", + "instructor": "Neil Johnson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8221", + "section": "10", + "instructor": "Sarah Hedlund", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EHS", + "course_num": "1002", + "section": "11", + "instructor": "Andrew Garrett", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "8101", + "section": "10", + "instructor": "Elizabeth Tuckwiller", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2102", + "section": "10", + "instructor": "Laryssa Mykyta", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "35", + "instructor": "Steven Wallace", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "4001", + "section": "81", + "instructor": "Edwin Lo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "3135W", + "section": "11", + "instructor": "Andrew Chasin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6102", + "section": "13", + "instructor": "Hazim Shatnawi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "0940", + "section": "12", + "instructor": "Michael Casemore", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4364", + "section": "82", + "instructor": "Sardar Hamidian", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "KOR", + "course_num": "2003", + "section": "30", + "instructor": "Miok Pak", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FILM", + "course_num": "2151", + "section": "10", + "instructor": "Michael Shull", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3185", + "section": "80", + "instructor": "Marlene Laruelle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PT", + "course_num": "8351", + "section": "10", + "instructor": "Matthew Garber", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Evidence Based Physical Therapy", + "edition": "2nd", + "author": "Fetters", + "isbn": "9780803661158", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_USED", + "price_display": "$55.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Evidence Based Physical Therapy", + "edition": "2nd", + "author": "Fetters", + "isbn": "9780803661158", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$73.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Evidence Based Physical Therapy", + "edition": "2nd", + "author": "Fetters", + "isbn": "9780803661158", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "F. A. Davis Company", + "type_condition": "RENTAL_USED", + "price_display": "$31.06", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Evidence Based Physical Therapy", + "edition": "2nd", + "author": "Fetters", + "isbn": "9780803695436", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$65.50", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "6212", + "section": "11", + "instructor": "Amrinder Arora", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "6720", + "section": "10", + "instructor": "Valentina Harizanov", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Computability Theory", + "edition": "N/A", + "author": "Weber", + "isbn": "9780821873922", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "American Mathematical Society", + "type_condition": "BUY_NEW", + "price_display": "$59.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Computability Theory", + "edition": "N/A", + "author": "Weber", + "isbn": "9780821873922", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "American Mathematical Society", + "type_condition": "BUY_USED", + "price_display": "$44.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "HONR", + "course_num": "1033", + "section": "12", + "instructor": "Bernard Wood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ORSC", + "course_num": "3141", + "section": "10", + "instructor": "Lori Peters", + "term_name": "Fall 2023", + "texts": [ + { + "title": "HBR's 10 Must Reads On Strategy", + "edition": "N/A", + "author": "Harvard Business Review", + "isbn": "9781422157985", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Harvard Business School Press", + "type_condition": "RENTAL_USED", + "price_display": "$9.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "HBR's 10 Must Reads On Strategy", + "edition": "N/A", + "author": "Harvard Business Review", + "isbn": "9781422157985", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Harvard Business School Press", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "HBR's 10 Must Reads On Strategy", + "edition": "N/A", + "author": "Harvard Business Review", + "isbn": "9781422157985", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Harvard Business School Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "HBR's 10 Must Reads On Strategy", + "edition": "N/A", + "author": "Harvard Business Review", + "isbn": "9781422157985", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Harvard Business School Press", + "type_condition": "RENTAL_NEW", + "price_display": "$16.22", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Crafting & Executing Strategy (RRMCG)", + "edition": "23rd", + "author": "THOMPSON", + "isbn": "9781264250189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.00", + "item_type": "print" + }, + { + "title": "Crafting & Executing Strategy (RRMCG)", + "edition": "23rd", + "author": "THOMPSON", + "isbn": "9781264250189", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.00", + "item_type": "print" + }, + { + "title": "HBR's 10 Must Reads on Strategy (including featured article What Is Strategy? by Michael E. Porter)", + "edition": "N/A", + "author": "Harvard Business Review", + "isbn": "9781422172056", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Harvard Business School Press", + "type_condition": "BUY_NEW", + "price_display": "$16.75", + "item_type": "digital" + }, + { + "title": "Crafting and Executing Strategy: Concepts", + "edition": "23rd", + "author": "Thompson", + "isbn": "9781264250240", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$62.25", + "item_type": "digital" + }, + { + "title": "Crafting and Executing Strategy: Concepts", + "edition": "23rd", + "author": "Thompson", + "isbn": "9781264250240", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$79.25", + "item_type": "digital" + }, + { + "title": "Crafting and Executing Strategy: Concepts", + "edition": "23rd", + "author": "Thompson", + "isbn": "9781264250240", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$94.75", + "item_type": "digital" + } + ] + }, + { + "department": "SMPA", + "course_num": "2151", + "section": "12", + "instructor": "Efrat Nechushtai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "8999", + "section": "13", + "instructor": "Doran Gresham", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8998", + "section": "10", + "instructor": "Robert Pless", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "8190", + "section": "10", + "instructor": "Sanjay Pandey", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Philosophy of Social Science", + "edition": "5th", + "author": "Rosenberg", + "isbn": "9780813349732", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Westview Press", + "type_condition": "BUY_USED", + "price_display": "$42.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy of Social Science", + "edition": "5th", + "author": "Rosenberg", + "isbn": "9780813349732", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Westview Press", + "type_condition": "RENTAL_NEW", + "price_display": "$45.56", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy of Social Science", + "edition": "5th", + "author": "Rosenberg", + "isbn": "9780813349732", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Westview Press", + "type_condition": "BUY_NEW", + "price_display": "$56.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Structure of Scientific Revolutions (50th ANNIV ED)", + "edition": "4th", + "author": "Kuhn", + "isbn": "9780226458120", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "University of Chicago Press", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Structure of Scientific Revolutions (50th ANNIV ED)", + "edition": "4th", + "author": "Kuhn", + "isbn": "9780226458120", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "University of Chicago Press", + "type_condition": "RENTAL_USED", + "price_display": "$6.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Structure of Scientific Revolutions (50th ANNIV ED)", + "edition": "4th", + "author": "Kuhn", + "isbn": "9780226458120", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "University of Chicago Press", + "type_condition": "RENTAL_NEW", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Structure of Scientific Revolutions (50th ANNIV ED)", + "edition": "4th", + "author": "Kuhn", + "isbn": "9780226458120", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy of Social Science", + "edition": "5th", + "author": "Rosenberg", + "isbn": "9780429974472", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$56.95", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "57", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "1210", + "section": "19", + "instructor": "Michelle Von Euw", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "0940", + "section": "13", + "instructor": "Ellen Goldman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1106", + "section": "10", + "instructor": "Eugene Montague", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "86", + "instructor": "Nakiella Strickland", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6005", + "section": "10", + "instructor": "Joseph Cordes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "1013", + "section": "15", + "instructor": "Eliana Parker", + "term_name": "Fall 2023", + "texts": [ + { + "title": "MyLab Spanish with Pearson eText -- Access Card -- for Gente: A task-based approach to learning Spanish (Multi-Semester)", + "edition": "4th", + "author": "Baulenas", + "isbn": "9780135307618", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$173.50", + "item_type": "digital" + } + ] + }, + { + "department": "PSC", + "course_num": "2476", + "section": "10", + "instructor": "Nicholas Heras", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HLWL", + "course_num": "1116", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "58", + "instructor": "Mona Zaghloul", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "26", + "instructor": "Danmeng Shuai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "30", + "instructor": "Santiago Solares", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1001", + "section": "32", + "instructor": "James Kerr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6441", + "section": "10", + "instructor": "Wolfgang Munar Angulo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "6223", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "3501", + "section": "83", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "14", + "instructor": "Courtney Zsitek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0920", + "section": "CS1", + "instructor": "Timothy Wood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6604", + "section": "80", + "instructor": "Leila Farhadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "2118", + "section": "10", + "instructor": "Joshua Landon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1071", + "section": "13", + "instructor": "Barry Moton", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEHD", + "course_num": "8999", + "section": "11", + "instructor": "James Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "3130", + "section": "10", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "2113", + "section": "32", + "instructor": "Kinga Dobolyi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "4193", + "section": "10", + "instructor": "Fran Buntman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "3100", + "section": "81", + "instructor": "Xiaofei Kang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Confucianism", + "edition": "N/A", + "author": "Littlejohn", + "isbn": "9781848851740", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "I. B. Tauris & Company, Limited", + "type_condition": "BUY_USED", + "price_display": "$33.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Confucianism", + "edition": "N/A", + "author": "Littlejohn", + "isbn": "9781848851740", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "I. B. Tauris & Company, Limited", + "type_condition": "BUY_NEW", + "price_display": "$43.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Memoirs of Lady Hyegyong", + "edition": "N/A", + "author": "Haboush", + "isbn": "9780520280489", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$24.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Memoirs of Lady Hyegyong", + "edition": "N/A", + "author": "Haboush", + "isbn": "9780520280489", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$31.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Memoirs of Lady Hyegyong", + "edition": "N/A", + "author": "Haboush", + "isbn": "9780520280489", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "University of California Press", + "type_condition": "RENTAL_NEW", + "price_display": "$23.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9780872208261", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9780872208261", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9780872208261", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9781624660085", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$12.50", + "item_type": "digital" + }, + { + "title": "The Memoirs of Lady Hyegyong", + "edition": "1st", + "author": "Haboush", + "isbn": "9780520957299", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$31.95", + "item_type": "digital" + } + ] + }, + { + "department": "LSPA", + "course_num": "1014", + "section": "11", + "instructor": "Mimi Malfitano", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "8999", + "section": "11", + "instructor": "Elisabeth Rice", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JAPN", + "course_num": "2003", + "section": "10", + "instructor": "Takae Tsujioka", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intermediate Japanese", + "edition": "N/A", + "author": "Hamano", + "isbn": "9780415498593", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2012", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$52.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intermediate Japanese", + "edition": "N/A", + "author": "Hamano", + "isbn": "9780415498593", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2012", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$69.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CLAS", + "course_num": "3102", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M54", + "instructor": "Pamela Presser", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6015", + "section": "18", + "instructor": "Karen McDonnell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "22", + "instructor": "Timothy Wood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6703", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6418", + "section": "11", + "instructor": "Sarah Baird", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2102", + "section": "12", + "instructor": "Chuanhao Lin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2190", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "4203W", + "section": "31", + "instructor": "Marguerite Barratt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "6395", + "section": "10", + "instructor": "Martin Zysmilich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6500", + "section": "11", + "instructor": "Melissa Napolitano", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAMA", + "course_num": "6004", + "section": "81", + "instructor": "Philippe Delquie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "3300", + "section": "10", + "instructor": "Cevat Tosun", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1002", + "section": "34", + "instructor": "James Kerr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1214", + "section": "11", + "instructor": "Ricky Ramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "42", + "instructor": "Srinivasan Balaji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1005", + "section": "31", + "instructor": "Peter Nassar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6725", + "section": "10", + "instructor": "Sarah Ray", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1091", + "section": "11", + "instructor": "Erin Freeman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8998", + "section": "10", + "instructor": "Maria Cseh", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "4535", + "section": "80", + "instructor": "Ahmed Louri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "2502", + "section": "10", + "instructor": "Ning Yu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "2111", + "section": "31", + "instructor": "Kyle Levers", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6338", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8999", + "section": "11", + "instructor": "Shaista Khilji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6121", + "section": "12", + "instructor": "Christina Fink", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "1501", + "section": "13", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6443", + "section": "80", + "instructor": "Abdelghani Bellaachia", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ITAL", + "course_num": "4800", + "section": "10", + "instructor": "Lynn Westwater", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "54", + "instructor": "Omur Ozel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ORSC", + "course_num": "2123", + "section": "10", + "instructor": "Lori Peters", + "term_name": "Fall 2023", + "texts": [ + { + "title": "On Negotiation", + "edition": "N/A", + "author": "Harvard Business Review", + "isbn": "9781633697751", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Harvard Business School Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "On Negotiation", + "edition": "N/A", + "author": "Harvard Business Review", + "isbn": "9781633697751", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Harvard Business School Press", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Negotiation", + "edition": "N/A", + "author": "Rockmann", + "isbn": "9781544320441", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Nelson Education *EMAIL ONLY*", + "type_condition": "BUY_USED", + "price_display": "$93.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Negotiation", + "edition": "N/A", + "author": "Rockmann", + "isbn": "9781544320441", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Nelson Education *EMAIL ONLY*", + "type_condition": "BUY_NEW", + "price_display": "$125.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Getting to Yes", + "edition": "3rd", + "author": "Ury", + "isbn": "9781844131464", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Random House Trade Paperbacks", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Getting to Yes", + "edition": "3rd", + "author": "Ury", + "isbn": "9781844131464", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Random House Trade Paperbacks", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Negotiation", + "edition": "N/A", + "author": "Rockmann", + "isbn": "9781544397481", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$51.99", + "item_type": "digital" + }, + { + "title": "Negotiation", + "edition": "N/A", + "author": "Rockmann", + "isbn": "9781544397481", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$58.49", + "item_type": "digital" + }, + { + "title": "Negotiation", + "edition": "N/A", + "author": "Rockmann", + "isbn": "9781544397481", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$65.00", + "item_type": "digital" + }, + { + "title": "Negotiation", + "edition": "N/A", + "author": "Rockmann", + "isbn": "9781544397481", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$94.24", + "item_type": "digital" + } + ] + }, + { + "department": "CE", + "course_num": "8998", + "section": "16", + "instructor": "Yun Shen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "4098W", + "section": "10", + "instructor": "Steven Brady", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6263", + "section": "10", + "instructor": "Michael Johnson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "36", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8100", + "section": "10", + "instructor": "Michael Casemore", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M83", + "instructor": "Kristi Janzen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0920", + "section": "ECE", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSCI", + "course_num": "6291", + "section": "11", + "instructor": "Marisa Birkmeier", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "23", + "instructor": "Kahlil Kuykendall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8999", + "section": "12", + "instructor": "Mina Attia", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "1210", + "section": "12", + "instructor": "Margot Pavone", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2005W", + "section": "10", + "instructor": "Jennifer Wells", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1051", + "section": "38", + "instructor": "Farshad Foroozan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "1110", + "section": "30", + "instructor": "Christopher Duncan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "8998", + "section": "10", + "instructor": "Elizabeth Tuckwiller", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "6291", + "section": "12", + "instructor": "Cynthia Core", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "6999", + "section": "10", + "instructor": "Reza Modarres", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "6210", + "section": "80", + "instructor": "Subhasish Dasgupta", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "4196", + "section": "10", + "instructor": "Mark Reeves", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "3315", + "section": "10", + "instructor": "Roger Lang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1003", + "section": "33", + "instructor": "Adam Dean", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8724", + "section": "10", + "instructor": "Yoshie Nakamura", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6105", + "section": "10", + "instructor": "Tarek El-Ghazawi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6501", + "section": "10", + "instructor": "Grady Wilburn", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Elementary Statistics in Social Research", + "edition": "12th", + "author": "Levin", + "isbn": "9780205845484", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Allyn & Bacon, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$117.71", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Elementary Statistics in Social Research", + "edition": "12th", + "author": "Levin", + "isbn": "9780205845484", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Allyn & Bacon, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$210.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Elementary Statistics in Social Research", + "edition": "12th", + "author": "Levin", + "isbn": "9780205845484", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Allyn & Bacon, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$280.25", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "PSC", + "course_num": "2101", + "section": "31", + "instructor": "Alicia Cooperman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8101", + "section": "12", + "instructor": "Yoshie Nakamura", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "80", + "instructor": "Ingrid Creppell", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Origins of Totalitarianism", + "edition": "N/A", + "author": "Arendt", + "isbn": "9780156701532", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1973", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$24.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Origins of Totalitarianism", + "edition": "N/A", + "author": "Arendt", + "isbn": "9780156701532", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1973", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Origins of Totalitarianism", + "edition": "N/A", + "author": "Arendt", + "isbn": "9780156701532", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1973", + "publisher": "HarperCollins Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$10.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Origins Of Totalitarianism", + "edition": "N/A", + "author": "Arendt", + "isbn": "9780547543154", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$15.99", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6186", + "section": "19", + "instructor": "Daniel Peck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1063", + "section": "10", + "instructor": "Ning Yu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "36", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "24", + "instructor": "Peng Wei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2010", + "section": "80", + "instructor": "Nicole Ivy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "33", + "instructor": "Caitlin Casapao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "6881", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "1001", + "section": "35", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "M36", + "instructor": "William Winstead", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "21", + "instructor": "Majid Manzari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6502", + "section": "16", + "instructor": "Samia Melhem", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3187", + "section": "85", + "instructor": "Michael Shifter", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "18", + "instructor": "Stephen Redmon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2113", + "section": "11", + "instructor": "Jason Osder", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Don't Make Me Think, Revisited: A Common Sense Approach to Web Usability", + "edition": "3rd", + "author": "Krug", + "isbn": "9780321965516", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Addison Wesley", + "type_condition": "BUY_NEW", + "price_display": "$45.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Don't Make Me Think, Revisited: A Common Sense Approach to Web Usability", + "edition": "3rd", + "author": "Krug", + "isbn": "9780321965516", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_NEW", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Don't Make Me Think, Revisited: A Common Sense Approach to Web Usability", + "edition": "3rd", + "author": "Krug", + "isbn": "9780321965516", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_USED", + "price_display": "$19.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Don't Make Me Think, Revisited: A Common Sense Approach to Web Usability", + "edition": "3rd", + "author": "Krug", + "isbn": "9780321965516", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Addison Wesley", + "type_condition": "BUY_USED", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Don't Make Me Think, Revisited", + "edition": "3rd", + "author": "Krug", + "isbn": "9780133597264", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Higher Educ & Prof Group", + "type_condition": "BUY_NEW", + "price_display": "$24.00", + "item_type": "digital" + }, + { + "title": "Don't Make Me Think, Revisited", + "edition": "3rd", + "author": "Krug", + "isbn": "9780133597257", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Higher Educ & Prof Group", + "type_condition": "BUY_NEW", + "price_display": "$24.00", + "item_type": "digital" + }, + { + "title": "Pearson eText for Don't Make Me Think, Revisited: A Common Sense Approach to Web Usability -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "3rd", + "author": "Krug", + "isbn": "9780137460434", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + } + ] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "33", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "3170", + "section": "84", + "instructor": "Rebecca Boyd", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Women in the Classical World", + "edition": "N/A", + "author": "Fantham", + "isbn": "9780195098624", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$131.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Women in the Classical World", + "edition": "N/A", + "author": "Fantham", + "isbn": "9780195098624", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$131.06", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Women in the Classical World", + "edition": "N/A", + "author": "Fantham", + "isbn": "9780195098624", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$174.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Women in the Classical World", + "edition": "N/A", + "author": "Fantham", + "isbn": "9780195098624", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$69.90", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Women in the Classical World", + "edition": "N/A", + "author": "Fantham", + "isbn": "9780199879212", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$29.87", + "item_type": "digital" + }, + { + "title": "Women in the Classical World", + "edition": "N/A", + "author": "Fantham", + "isbn": "9780199879212", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$34.46", + "item_type": "digital" + }, + { + "title": "Women in the Classical World", + "edition": "N/A", + "author": "Fantham", + "isbn": "9780199879212", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$45.95", + "item_type": "digital" + } + ] + }, + { + "department": "PSC", + "course_num": "2225", + "section": "10", + "instructor": "Nicole Bartels", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3161", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "41", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6999", + "section": "18", + "instructor": "Tian Lan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "2100", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6610", + "section": "O11", + "instructor": "James Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "2005", + "section": "15", + "instructor": "Isabel Rodriguez-Melguizo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8001", + "section": "10", + "instructor": "Erica Gralla", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "19", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "8304", + "section": "10", + "instructor": "Elisabeth Rice", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "6287", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "4320", + "section": "10", + "instructor": "Pedro Silva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "1011", + "section": "31", + "instructor": "Melanie-Joy Dorn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "2233", + "section": "10", + "instructor": "Lien-Yung Kao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JAPN", + "course_num": "3124", + "section": "10", + "instructor": "Takae Tsujioka", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Japanese Linguistics", + "edition": "3rd", + "author": "Tsujimura", + "isbn": "9781444337730", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2014", + "publisher": "Vista Higher Learning, Incorp", + "type_condition": "RENTAL_USED", + "price_display": "$26.10", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Japanese Linguistics", + "edition": "3rd", + "author": "Tsujimura", + "isbn": "9781444337730", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2014", + "publisher": "Vista Higher Learning, Incorp", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Japanese Linguistics", + "edition": "3rd", + "author": "Tsujimura", + "isbn": "9781444337730", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2014", + "publisher": "Vista Higher Learning, Incorp", + "type_condition": "BUY_USED", + "price_display": "$49.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "GTCH", + "course_num": "3103", + "section": "10", + "instructor": "SuJin Choi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M27", + "instructor": "Jacob Richter", + "term_name": "Fall 2023", + "texts": [ + { + "title": "One Person, No Vote", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781635571394", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "One Person, No Vote", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781635571394", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ECE", + "course_num": "8999", + "section": "19", + "instructor": "Tian Lan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6635", + "section": "10", + "instructor": "Sylven Beck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1051", + "section": "11", + "instructor": "Michael Moses", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GER", + "course_num": "4197", + "section": "10", + "instructor": "Mary Beth Stein", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6050", + "section": "21", + "instructor": "Omur Ozel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "8998", + "section": "10", + "instructor": "D. Kayes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1111", + "section": "30", + "instructor": "Kinga Dobolyi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "14", + "instructor": "Hyeong-Ah Choi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "28", + "instructor": "Sibin Mohan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SUST", + "course_num": "1001", + "section": "31", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "40", + "instructor": "Caitlin Daw", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "18", + "instructor": "Adam Aviv", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6005", + "section": "10", + "instructor": "Arie Dubnov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "42", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "1001", + "section": "20", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M12", + "instructor": "Jameta Barlow", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "3142", + "section": "10", + "instructor": "Nicholas Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8010", + "section": "11", + "instructor": "Gholamali Rahnavard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "1001", + "section": "14", + "instructor": "Haedar Abuirqeba", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6376", + "section": "10", + "instructor": "Gary Cornwall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "3173", + "section": "10", + "instructor": "Savreen Hundal", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6050", + "section": "12", + "instructor": "Milos Doroslovacki", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6198", + "section": "81", + "instructor": "Simon Schropp", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Economics of World Trading System", + "edition": "N/A", + "author": "Bagwell", + "isbn": "9780262524346", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "MIT Press order from Random House", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Economics of World Trading System", + "edition": "N/A", + "author": "Bagwell", + "isbn": "9780262524346", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "MIT Press order from Random House", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Legal Texts", + "edition": "N/A", + "author": "World Trade", + "isbn": "9780521785808", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1999", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$93.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Legal Texts", + "edition": "N/A", + "author": "World Trade", + "isbn": "9780521785808", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1999", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$69.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Trade Law", + "edition": "3rd", + "author": "Pauwelyn", + "isbn": "9781454873105", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Aspen Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$241.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Trade Law", + "edition": "3rd", + "author": "Pauwelyn", + "isbn": "9781454873105", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Aspen Publishing", + "type_condition": "BUY_NEW", + "price_display": "$322.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Trade Law", + "edition": "3rd", + "author": "Pauwelyn", + "isbn": "9781454873105", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Aspen Publishing", + "type_condition": "BUY_USED", + "price_display": "$241.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Trade Law", + "edition": "3rd", + "author": "Pauwelyn", + "isbn": "9781454873105", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Aspen Publishing", + "type_condition": "RENTAL_USED", + "price_display": "$135.24", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Regulation of International Trade, Volume 1", + "edition": "N/A", + "author": "Mavroidis", + "isbn": "9780262029841", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "MIT Press order from Random House", + "type_condition": "BUY_NEW", + "price_display": "$120.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Regulation of International Trade, Volume 1", + "edition": "N/A", + "author": "Mavroidis", + "isbn": "9780262029841", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "MIT Press order from Random House", + "type_condition": "BUY_USED", + "price_display": "$90.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Regulation of International Trade, Volume 2", + "edition": "N/A", + "author": "Mavroidis", + "isbn": "9780262029995", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2016", + "publisher": "MIT Press order from Random House", + "type_condition": "BUY_NEW", + "price_display": "$120.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Regulation of International Trade, Volume 2", + "edition": "N/A", + "author": "Mavroidis", + "isbn": "9780262029995", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2016", + "publisher": "MIT Press order from Random House", + "type_condition": "BUY_USED", + "price_display": "$90.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Legal & Economic Prin of World Trade Law", + "edition": "N/A", + "author": "Horn", + "isbn": "9781107459649", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$45.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Legal & Economic Prin of World Trade Law", + "edition": "N/A", + "author": "Horn", + "isbn": "9781107459649", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$34.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Legal Texts", + "edition": "N/A", + "author": "Organization", + "isbn": "9781107385559", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$69.50", + "item_type": "digital" + }, + { + "title": "The Legal Texts", + "edition": "N/A", + "author": "Organization", + "isbn": "9781107385559", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$87.00", + "item_type": "digital" + }, + { + "title": "International Trade Law", + "edition": "3rd", + "author": "Pauwelyn", + "isbn": "9781454877479", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Aspen Publishing", + "type_condition": "BUY_NEW", + "price_display": "$322.00", + "item_type": "digital" + } + ] + }, + { + "department": "IBUS", + "course_num": "3001", + "section": "14", + "instructor": "Anoma Kulathunga", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Connect 1-Semester Online Access for International Business", + "edition": "14th", + "author": "HILL", + "isbn": "9781264383863", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$180.25", + "item_type": "digital" + } + ] + }, + { + "department": "JAPN", + "course_num": "4109", + "section": "10", + "instructor": "Brendan Morley", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Classical Japanese", + "edition": "N/A", + "author": "Shirane", + "isbn": "9780231135245", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$48.75", + "item_type": "print" + }, + { + "title": "Classical Japanese", + "edition": "N/A", + "author": "Shirane", + "isbn": "9780231135245", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "RENTAL_USED", + "price_display": "$27.30", + "item_type": "print" + }, + { + "title": "Classical Japanese", + "edition": "N/A", + "author": "Shirane", + "isbn": "9780231135245", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$65.00", + "item_type": "print" + }, + { + "title": "Classical Japanese Reader & Essential Dictionary", + "edition": "N/A", + "author": "Shirane", + "isbn": "9780231139908", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$48.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Classical Japanese Reader & Essential Dictionary", + "edition": "N/A", + "author": "Shirane", + "isbn": "9780231139908", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$65.00", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "FREN", + "course_num": "1001", + "section": "11", + "instructor": "David Marshall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "1003", + "section": "14", + "instructor": "Sepideh Vistamehr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2338", + "section": "10", + "instructor": "Logan Puck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "19", + "instructor": "Holly Dugan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "6269", + "section": "80", + "instructor": "Alexander Dumbadze", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8999", + "section": "11", + "instructor": "Sylven Beck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "4995", + "section": "10", + "instructor": "Ravi Achrol", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "6293", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "4199", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "1001", + "section": "13", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3105", + "section": "10", + "instructor": "Brendan Hurley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6306", + "section": "11", + "instructor": "Philippe Delquie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6101", + "section": "36", + "instructor": "Jessica Dorsch", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6442", + "section": "10", + "instructor": "Seble Frehywot", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "6280", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "14", + "instructor": "Dong Quan Nguyen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4364", + "section": "81", + "instructor": "John Sipple", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8101", + "section": "11", + "instructor": "Richard Lanthier", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6591", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "M30", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6015", + "section": "11", + "instructor": "Tamara Taggart", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WLP", + "course_num": "4198", + "section": "M2", + "instructor": "Carly Jordan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "76", + "instructor": "Jazmine Newkirk", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6266", + "section": "10", + "instructor": "Nate'le'ge' Wardlow", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "6225", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1110", + "section": "10", + "instructor": "Tabitha Razunguzwa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8403", + "section": "10", + "instructor": "Eugene Migliaccio", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "11", + "instructor": "Vladislav Sadtchenko", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6186", + "section": "31", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3106", + "section": "10", + "instructor": "Brendan Hurley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8470", + "section": "10", + "instructor": "John Sandberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3350", + "section": "10", + "instructor": "Christopher Teal", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1111", + "section": "10", + "instructor": "Saeid Amini", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3187", + "section": "88", + "instructor": "Carla Maenza", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EAP", + "course_num": "1010", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "15", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8101", + "section": "12", + "instructor": "Delishia Pittman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1063", + "section": "17", + "instructor": "Erin Freeman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GER", + "course_num": "1001", + "section": "10", + "instructor": "Silke Reeves", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6098", + "section": "10", + "instructor": "Mary Tschirhart", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M5", + "instructor": "Jacob Richter", + "term_name": "Fall 2023", + "texts": [ + { + "title": "One Person, No Vote", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781635571394", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "One Person, No Vote", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781635571394", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "49", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2101", + "section": "16", + "instructor": "Julia Radomski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "1210", + "section": "10", + "instructor": "Margot Pavone", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSSJ", + "course_num": "1000", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6016", + "section": "10", + "instructor": "Kathryn Newcomer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6103", + "section": "10", + "instructor": "Delishia Pittman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3188", + "section": "80", + "instructor": "Sina Azodi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "23", + "instructor": "Adam Aviv", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "4199", + "section": "10", + "instructor": "Tadeusz Zawidzki", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "2120", + "section": "10", + "instructor": "Gina Adam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "6252", + "section": "81", + "instructor": "Robert Cottrol", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Long, Lingering Shadow", + "edition": "N/A", + "author": "Cottrol", + "isbn": "9780820344317", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Univ of Georgia Press/Longleaf", + "type_condition": "BUY_NEW", + "price_display": "$32.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Long, Lingering Shadow", + "edition": "N/A", + "author": "Cottrol", + "isbn": "9780820344317", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Univ of Georgia Press/Longleaf", + "type_condition": "RENTAL_USED", + "price_display": "$13.18", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Long, Lingering Shadow", + "edition": "N/A", + "author": "Cottrol", + "isbn": "9780820344317", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Univ of Georgia Press/Longleaf", + "type_condition": "BUY_USED", + "price_display": "$24.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Long, Lingering Shadow", + "edition": "N/A", + "author": "Cottrol", + "isbn": "9780820344317", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Univ of Georgia Press/Longleaf", + "type_condition": "RENTAL_NEW", + "price_display": "$24.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "To Trust the People with Arms", + "edition": "N/A", + "author": "Cottrol", + "isbn": "9780700635719", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "University Press of Kansas email orders to LNGLF", + "type_condition": "BUY_NEW", + "price_display": "$49.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "To Trust the People with Arms", + "edition": "N/A", + "author": "Cottrol", + "isbn": "9780700635719", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "University Press of Kansas email orders to LNGLF", + "type_condition": "BUY_USED", + "price_display": "$37.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Magic Mirror: Law in American History", + "edition": "2nd", + "author": "Hall", + "isbn": "9780195081800", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$119.99", + "item_type": "print" + }, + { + "title": "Magic Mirror: Law in American History", + "edition": "2nd", + "author": "Hall", + "isbn": "9780195081800", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$50.40", + "item_type": "print" + }, + { + "title": "Magic Mirror: Law in American History", + "edition": "2nd", + "author": "Hall", + "isbn": "9780195081800", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$90.00", + "item_type": "print" + }, + { + "title": "The Long, Lingering Shadow", + "edition": "N/A", + "author": "Cottrol", + "isbn": "9780820344768", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$30.75", + "item_type": "digital" + }, + { + "title": "The Magic Mirror", + "edition": "2nd", + "author": "Hall", + "isbn": "9780197558799", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$52.99", + "item_type": "digital" + }, + { + "title": "The Magic Mirror", + "edition": "2nd", + "author": "Hall", + "isbn": "9780197558799", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$61.14", + "item_type": "digital" + }, + { + "title": "The Magic Mirror", + "edition": "2nd", + "author": "Hall", + "isbn": "9780197558799", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$81.52", + "item_type": "digital" + } + ] + }, + { + "department": "CMUS", + "course_num": "1063", + "section": "14", + "instructor": "Dumisani Ndlovu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PMGT", + "course_num": "6404", + "section": "O10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8101", + "section": "16", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8416", + "section": "10", + "instructor": "Jeffrey Bingenheimer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "3126W", + "section": "10", + "instructor": "Sherry Molock", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Privilege, Power & Difference", + "edition": "3rd", + "author": "Johnson", + "isbn": "9780073404226", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$110.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Privilege, Power & Difference", + "edition": "3rd", + "author": "Johnson", + "isbn": "9780073404226", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$60.64", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Privilege, Power & Difference", + "edition": "3rd", + "author": "Johnson", + "isbn": "9780073404226", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_USED", + "price_display": "$46.31", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Privilege, Power & Difference", + "edition": "3rd", + "author": "Johnson", + "isbn": "9780073404226", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "McGraw-Hill", + "type_condition": "BUY_USED", + "price_display": "$82.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Multicultural Psychology", + "edition": "6th", + "author": "Mio", + "isbn": "9780197641279", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$89.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Multicultural Psychology", + "edition": "6th", + "author": "Mio", + "isbn": "9780197641279", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$67.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Multicultural Psychology", + "edition": "6th", + "author": "Scott Mio", + "isbn": "9780197641286", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$49.99", + "item_type": "digital" + }, + { + "title": "Multicultural Psychology", + "edition": "6th", + "author": "Scott Mio", + "isbn": "9780197641286", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$57.68", + "item_type": "digital" + }, + { + "title": "Privilege, Power, and Difference", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781259951831", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$62.25", + "item_type": "digital" + }, + { + "title": "Multicultural Psychology", + "edition": "6th", + "author": "Scott Mio", + "isbn": "9780197641286", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$76.91", + "item_type": "digital" + }, + { + "title": "Privilege, Power, and Difference", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781259951831", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$79.25", + "item_type": "digital" + }, + { + "title": "Privilege, Power, and Difference", + "edition": "3rd", + "author": "Johnson", + "isbn": "9781259951831", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$94.75", + "item_type": "digital" + } + ] + }, + { + "department": "CTAD", + "course_num": "3335", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "38", + "instructor": "James Hahn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PT", + "course_num": "8492", + "section": "10", + "instructor": "Marisa Birkmeier", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6998", + "section": "11", + "instructor": "Payman Dehghanian", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8101", + "section": "13", + "instructor": "Bagmi Das", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "4210", + "section": "80", + "instructor": "Subhasish Dasgupta", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6897", + "section": "10", + "instructor": "Gholamali Rahnavard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "1001", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6014", + "section": "18", + "instructor": "Katie Fernandez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6306", + "section": "10", + "instructor": "Philippe Delquie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "OT", + "course_num": "8232", + "section": "10", + "instructor": "Kellie Sawyer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8099", + "section": "11", + "instructor": "Lorien Abroms", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "6991", + "section": "10", + "instructor": "Yanxiang Zhao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "2117", + "section": "80", + "instructor": "Robert Betz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1000", + "section": "12", + "instructor": "Jasmine Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1002", + "section": "10", + "instructor": "Forrest Maltzman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Logic of American Politics", + "edition": "N/A", + "author": "Kernell", + "isbn": "9781071861257", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$150.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Logic of American Politics", + "edition": "N/A", + "author": "Kernell", + "isbn": "9781071861257", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$112.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Logic of American Politics", + "edition": "11th", + "author": "Kernell", + "isbn": "9781071861271", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$59.99", + "item_type": "digital" + }, + { + "title": "The Logic of American Politics", + "edition": "11th", + "author": "Kernell", + "isbn": "9781071861271", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$67.49", + "item_type": "digital" + }, + { + "title": "The Logic of American Politics", + "edition": "11th", + "author": "Kernell", + "isbn": "9781071861271", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$75.00", + "item_type": "digital" + }, + { + "title": "The Logic of American Politics", + "edition": "11th", + "author": "Kernell", + "isbn": "9781071861271", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$108.74", + "item_type": "digital" + } + ] + }, + { + "department": "SLHS", + "course_num": "6295", + "section": "10", + "instructor": "Shelley Brundage", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "19", + "instructor": "Poorvi Vora", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "3300", + "section": "11", + "instructor": "Katherine Frey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6118", + "section": "80", + "instructor": "Muqaddesa Yourish", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "49", + "instructor": "Hao Huang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6252", + "section": "10", + "instructor": "Sean Cleary", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8998", + "section": "12", + "instructor": "Scott Beveridge", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPJ", + "course_num": "3233", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "6248", + "section": "10", + "instructor": "Lynda Maddox", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Contemporary Advertising & Integrated Marketing Communications (RRMCG)", + "edition": "17th", + "author": "Arens", + "isbn": "9781266128882", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2024", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "BUY_USED", + "price_display": "$180.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Contemporary Advertising & Integrated Marketing Communications (RRMCG)", + "edition": "17th", + "author": "Arens", + "isbn": "9781266128882", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2024", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Contemporary Advertising & Integrated Marketing Communications (RRMCG)", + "edition": "17th", + "author": "Arens", + "isbn": "9781266128882", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2024", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "BUY_NEW", + "price_display": "$240.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Contemporary Advertising", + "edition": "17th", + "author": "Weigold", + "isbn": "9781266855801", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$67.50", + "item_type": "digital" + }, + { + "title": "Contemporary Advertising", + "edition": "17th", + "author": "Weigold", + "isbn": "9781266855801", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$84.50", + "item_type": "digital" + }, + { + "title": "Contemporary Advertising", + "edition": "17th", + "author": "Weigold", + "isbn": "9781266855801", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$105.50", + "item_type": "digital" + } + ] + }, + { + "department": "PHYS", + "course_num": "8150", + "section": "10", + "instructor": "Kalvir Dhuga", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "25", + "instructor": "David Costanza", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2151", + "section": "35", + "instructor": "Martin Zysmilich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "4203", + "section": "10", + "instructor": "Anna Helm", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3411", + "section": "10", + "instructor": "Gabriel Parmer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "6358", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "36", + "instructor": "Erin Heramb", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "2118", + "section": "36", + "instructor": "Hua Liang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2102", + "section": "31", + "instructor": "Laryssa Mykyta", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6998", + "section": "16", + "instructor": "Timothy Wood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "6015", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "53", + "instructor": "Ahmed Louri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "1001", + "section": "33", + "instructor": "Phyllis Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8998", + "section": "20", + "instructor": "Johan van Dorp", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "15", + "instructor": "Mohammad Ghaedi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6212", + "section": "12", + "instructor": "Amrinder Arora", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6101", + "section": "15", + "instructor": "Harvey Peters", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "1110", + "section": "38", + "instructor": "Christopher Duncan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "63", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1002", + "section": "33", + "instructor": "Forrest Maltzman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "4140", + "section": "81", + "instructor": "Mona Zaghloul", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6998", + "section": "10", + "instructor": "Robert Pless", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HLWL", + "course_num": "1114", + "section": "11", + "instructor": "Allison Collins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "NRSC", + "course_num": "8283", + "section": "10", + "instructor": "Leo Chalupa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "4411", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "2104", + "section": "80", + "instructor": "Erin Cardman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801476", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$132.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801476", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$99.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801476", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$106.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801476", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$55.65", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introduction to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801575", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "Introduction to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801599", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "FREN", + "course_num": "2005", + "section": "13", + "instructor": "Maja Milicevic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "1225", + "section": "10", + "instructor": "Paul Hayes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "13", + "instructor": "Jason Zara", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "4990", + "section": "10", + "instructor": "Tarek El-Ghazawi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "1110", + "section": "39", + "instructor": "Christopher Duncan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "3233", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8999", + "section": "16", + "instructor": "Joan Kester", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6000", + "section": "21", + "instructor": "Michelle Stevens", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3194", + "section": "10", + "instructor": "Lee Huebner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6574", + "section": "10", + "instructor": "Michael Rossetti", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "NSC", + "course_num": "1051", + "section": "10", + "instructor": "Roy Richardson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "3301", + "section": "80", + "instructor": "Holly Wade", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "0920", + "section": "10", + "instructor": "A Eakle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "78", + "instructor": "Michael Plesniak", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "44", + "instructor": "Erin Sonn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2189", + "section": "80", + "instructor": "Mohamed Mohamed", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "1002", + "section": "11", + "instructor": "Nazanin Khavari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "6251", + "section": "10", + "instructor": "Shelley Brundage", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "31", + "instructor": "Kelly Charwat", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1012", + "section": "34", + "instructor": "Joseph Goldfrank", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CANC", + "course_num": "8222", + "section": "10", + "instructor": "Xiaoyan Zheng", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "2118", + "section": "31", + "instructor": "Joshua Landon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "6467", + "section": "10", + "instructor": "Mike Mochizuki", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2167W", + "section": "10", + "instructor": "Fran Buntman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "32", + "instructor": "Srinivasan Balaji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "OT", + "course_num": "8110", + "section": "DE", + "instructor": "Kimberly Conrad", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Group Dynamics in Occupational Therapy", + "edition": "5th", + "author": "Cole", + "isbn": "9781630913670", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "SLACK, Inc", + "type_condition": "RENTAL_USED", + "price_display": "$45.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Group Dynamics in Occupational Therapy", + "edition": "5th", + "author": "Cole", + "isbn": "9781630913670", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "SLACK, Inc", + "type_condition": "BUY_NEW", + "price_display": "$109.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Group Dynamics in Occupational Therapy", + "edition": "5th", + "author": "Cole", + "isbn": "9781630913670", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "SLACK, Inc", + "type_condition": "BUY_USED", + "price_display": "$82.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Group Dynamics in Occupational Therapy", + "edition": "5th", + "author": "Cole", + "isbn": "9781630913670", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "SLACK, Inc", + "type_condition": "RENTAL_NEW", + "price_display": "$87.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intentional Relationship", + "edition": "2nd", + "author": "Taylor", + "isbn": "9780803669772", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "F. A. Davis Company", + "type_condition": "RENTAL_USED", + "price_display": "$33.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intentional Relationship", + "edition": "2nd", + "author": "Taylor", + "isbn": "9780803669772", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$79.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intentional Relationship", + "edition": "2nd", + "author": "Taylor", + "isbn": "9780803669772", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_USED", + "price_display": "$60.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Intentional Relationship", + "edition": "N/A", + "author": "Taylor", + "isbn": "9781719642507", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$71.00", + "item_type": "digital" + } + ] + }, + { + "department": "SEAS", + "course_num": "0930", + "section": "EM", + "instructor": "Johan van Dorp", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PMGT", + "course_num": "6416", + "section": "10", + "instructor": "Eduardo Zapien", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6342", + "section": "80", + "instructor": "Rahul Simha", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6225", + "section": "10", + "instructor": "Jonathan Deason", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6118", + "section": "12", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "43", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8201", + "section": "31", + "instructor": "Katherine Marshall Woods", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3187", + "section": "10", + "instructor": "Lino Gutierrez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLAV", + "course_num": "2005", + "section": "11", + "instructor": "Galina Shatalina", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "1013", + "section": "11", + "instructor": "Mylord Reyes-Tosta", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Gente: A task-based approach to learning Spanish (RRPHE)", + "edition": "4th", + "author": "De La Fuente", + "isbn": "9780135162903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "item_type": "print" + }, + { + "title": "Gente: A task-based approach to learning Spanish (RRPHE)", + "edition": "4th", + "author": "De La Fuente", + "isbn": "9780135162903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "item_type": "print" + }, + { + "title": "Pearson eText for Gente: nivel basico -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "4th", + "author": "Fuente", + "isbn": "9780137617609", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Gente", + "edition": "4th", + "author": "de la Fuente", + "isbn": "9780135305577", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "Gente", + "edition": "4th", + "author": "de la Fuente", + "isbn": "9780135305614", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "17", + "instructor": "Byron Knight", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "6503", + "section": "10", + "instructor": "Bonnie Pierce", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "2339", + "section": "10", + "instructor": "Carl Gudenius", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2112", + "section": "12", + "instructor": "Barbara Benitez-Curry", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Bare Bones Camera Course for Film & Video", + "edition": "3rd", + "author": "Schroeppel", + "isbn": "9781621535263", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Allworth Press", + "type_condition": "BUY_NEW", + "price_display": "$14.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bare Bones Camera Course for Film & Video", + "edition": "3rd", + "author": "Schroeppel", + "isbn": "9781621535263", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Allworth Press", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "SEAS", + "course_num": "0920", + "section": "ME", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6401", + "section": "10", + "instructor": "Marc Lajoie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "6220", + "section": "10", + "instructor": "Cynthia Core", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8415", + "section": "13", + "instructor": "Wolfgang Munar Angulo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "4900", + "section": "10", + "instructor": "Laura D'Antonio", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "1101", + "section": "12", + "instructor": "Richard Riegelman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Public Health 101 (w/Bind-in Access Code)(Enh)", + "edition": "3rd", + "author": "Riegelman", + "isbn": "9781284118445", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$88.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Public Health 101 (w/Bind-in Access Code)(Enh)", + "edition": "3rd", + "author": "Riegelman", + "isbn": "9781284118445", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$35.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Public Health 101 (w/Bind-in Access Code)(Enh)", + "edition": "3rd", + "author": "Riegelman", + "isbn": "9781284118445", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$66.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Public Health 101: Improving Community Health", + "edition": "3rd", + "author": "Riegelman", + "isbn": "9781284118469", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$63.67", + "item_type": "digital" + } + ] + }, + { + "department": "OT", + "course_num": "8101", + "section": "DE", + "instructor": "Roger Ideishi", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832178", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "RENTAL_USED", + "price_display": "$21.67", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832178", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "BUY_USED", + "price_display": "$37.00", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832178", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "RENTAL_NEW", + "price_display": "$36.94", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832178", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "BUY_NEW", + "price_display": "$49.25", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832154", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "RENTAL_USED", + "price_display": "$26.51", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832154", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "BUY_USED", + "price_display": "$45.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832154", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "RENTAL_NEW", + "price_display": "$45.19", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832154", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "BUY_NEW", + "price_display": "$60.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Willard & Spackman's Occupational Therapy", + "edition": "14th", + "author": "Schell", + "isbn": "9781975174880", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_USED", + "price_display": "$90.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Willard & Spackman's Occupational Therapy", + "edition": "14th", + "author": "Schell", + "isbn": "9781975174880", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_NEW", + "price_display": "$119.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Publication Manual (OFFICIAL) 7th Edition of the American Psychological Association", + "edition": "7th", + "author": "Association", + "isbn": "9781433832185", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "American Psychological Association", + "type_condition": "RENTAL_NEW", + "price_display": "$31.99", + "item_type": "digital" + }, + { + "title": "Publication Manual (OFFICIAL) 7th Edition of the American Psychological Association", + "edition": "7th", + "author": "Association", + "isbn": "9781433832185", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": "2020", + "publisher": "American Psychological Association", + "type_condition": "BUY_NEW", + "price_display": "$35.99", + "item_type": "digital" + } + ] + }, + { + "department": "SPED", + "course_num": "6290", + "section": "10", + "instructor": "Karen Ihrig", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "3101", + "section": "10", + "instructor": "Beverly Westerman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8999", + "section": "13", + "instructor": "Jeffrey Bingenheimer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6503", + "section": "10", + "instructor": "James Wylde", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "4995", + "section": "10", + "instructor": "D. Kayes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAMA", + "course_num": "6001", + "section": "81", + "instructor": "Edward Bartholomew", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "2005", + "section": "12", + "instructor": "Maja Milicevic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "8305", + "section": "10", + "instructor": "Roberto Samaniego", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8179", + "section": "10", + "instructor": "Jaehwa Choi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "8997", + "section": "10", + "instructor": "Ingrid Creppell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4243W", + "section": "11", + "instructor": "Xiaodong Qu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPJ", + "course_num": "3501", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2101", + "section": "10", + "instructor": "Maryam Zarnegar Deloffre", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2169", + "section": "10", + "instructor": "Joseph Pelzman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8999", + "section": "20", + "instructor": "Hernan Abeledo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4243W", + "section": "30", + "instructor": "Timothy Wood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1002", + "section": "36", + "instructor": "Forrest Maltzman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "6201", + "section": "10", + "instructor": "Tadeusz Zawidzki", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2152", + "section": "10", + "instructor": "Matthew Hindman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6998", + "section": "14", + "instructor": "Kie-Bum Eom", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "43", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "31", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "6295", + "section": "10", + "instructor": "Ashwini Tambe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1051", + "section": "37", + "instructor": "Farshad Foroozan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6267", + "section": "10", + "instructor": "Aaron Henry", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0920", + "section": "EM", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "2110", + "section": "34", + "instructor": "Can Korman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3908", + "section": "26", + "instructor": "Sibin Mohan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1021", + "section": "10", + "instructor": "Hunter Higgison", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6400", + "section": "10", + "instructor": "James Tielsch", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EHS", + "course_num": "1041", + "section": "13", + "instructor": "Craig Evans", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8998", + "section": "13", + "instructor": "Samer Hamdar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "21", + "instructor": "Danya Ellman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SUST", + "course_num": "3096", + "section": "30", + "instructor": "Royce Francis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6271", + "section": "10", + "instructor": "Elias Semaan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "27", + "instructor": "Chung Hyuk Park", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6081", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "13", + "instructor": "Gabriel Parmer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1005", + "section": "32", + "instructor": "Alexander Downes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "4199", + "section": "10", + "instructor": "Courtney Zsitek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2112", + "section": "10", + "instructor": "Barbara Benitez-Curry", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Bare Bones Camera Course for Film & Video", + "edition": "3rd", + "author": "Schroeppel", + "isbn": "9781621535263", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Allworth Press", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bare Bones Camera Course for Film & Video", + "edition": "3rd", + "author": "Schroeppel", + "isbn": "9781621535263", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Allworth Press", + "type_condition": "BUY_NEW", + "price_display": "$14.99", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "76", + "instructor": "Shahram Sarkani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6010", + "section": "14", + "instructor": "Jennifer Seager", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3107", + "section": "80", + "instructor": "Ryan Engstrom", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3190", + "section": "21", + "instructor": "Thomas Parker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "3001", + "section": "15", + "instructor": "Anoma Kulathunga", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Connect 1-Semester Online Access for International Business", + "edition": "14th", + "author": "HILL", + "isbn": "9781264383863", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$180.25", + "item_type": "digital" + } + ] + }, + { + "department": "SLHS", + "course_num": "6207", + "section": "10", + "instructor": "Sana Smaoui", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "50", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6357", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "2191", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "6442", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "TSTD", + "course_num": "4102", + "section": "10", + "instructor": "Lisa Neirotti", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3001W", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1104", + "section": "80", + "instructor": "Douglas Boyce", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6118", + "section": "18", + "instructor": "Linda Bishai", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Use of Force in International Law", + "edition": "N/A", + "author": "Ruys", + "isbn": "9780198784364", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$78.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Use of Force in International Law", + "edition": "N/A", + "author": "Ruys", + "isbn": "9780198784364", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$105.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Internationalists", + "edition": "N/A", + "author": "Hathaway", + "isbn": "9781501109874", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Simon & Schuster", + "type_condition": "RENTAL_USED", + "price_display": "$8.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Internationalists", + "edition": "N/A", + "author": "Hathaway", + "isbn": "9781501109874", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Internationalists", + "edition": "N/A", + "author": "Hathaway", + "isbn": "9781501109874", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Law & the Use of Force", + "edition": "N/A", + "author": "Scott", + "isbn": "9780313362590", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "ABC-CLIO, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$100.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Law & the Use of Force", + "edition": "N/A", + "author": "Scott", + "isbn": "9780313362590", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "ABC-CLIO, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$134.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "The Use of Force in International Law", + "edition": "N/A", + "author": "Ruys", + "isbn": "9780191087196", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$58.49", + "item_type": "digital" + }, + { + "title": "The Use of Force in International Law", + "edition": "N/A", + "author": "Ruys", + "isbn": "9780191087196", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$67.49", + "item_type": "digital" + }, + { + "title": "The Use of Force in International Law", + "edition": "N/A", + "author": "Ruys", + "isbn": "9780191087196", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$89.99", + "item_type": "digital" + } + ] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "18", + "instructor": "Yongsheng Leng", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8999", + "section": "17", + "instructor": "Guoqing Diao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSCI", + "course_num": "6291", + "section": "PT", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6313", + "section": "11", + "instructor": "Reza Jafari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6148", + "section": "10", + "instructor": "Peter Hays", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "52", + "instructor": "Elisa Hovander", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "1022", + "section": "10", + "instructor": "Giovanni Angelini", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Physics for Scientists & Engineers (RRPHE) (Cs1-42)", + "edition": "5th", + "author": "Knight", + "isbn": "9780136956297", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Scientists & Engineers (RRPHE) (Cs1-42)", + "edition": "5th", + "author": "Knight", + "isbn": "9780136956297", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Sci & Eng with Mod Physics (w/out Mstg Access)", + "edition": "4th", + "author": "Knight", + "isbn": "9780133942651", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2017", + "publisher": "Addison Wesley", + "type_condition": "BUY_NEW", + "price_display": "$382.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Sci & Eng with Mod Physics (w/out Mstg Access)", + "edition": "4th", + "author": "Knight", + "isbn": "9780133942651", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2017", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_USED", + "price_display": "$160.44", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Sci & Eng with Mod Physics (w/out Mstg Access)", + "edition": "4th", + "author": "Knight", + "isbn": "9780133942651", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2017", + "publisher": "Addison Wesley", + "type_condition": "BUY_USED", + "price_display": "$286.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Sci & Eng with Mod Physics (w/out Mstg Access)", + "edition": "4th", + "author": "Knight", + "isbn": "9780133942651", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2017", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_NEW", + "price_display": "$248.30", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Sci & Eng w/Mod Physics(w/out MastPhysAccess)", + "edition": "3rd", + "author": "Knight", + "isbn": "9780321740908", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2013", + "publisher": "Addison Wesley", + "type_condition": "BUY_NEW", + "price_display": "$358.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Sci & Eng w/Mod Physics(w/out MastPhysAccess)", + "edition": "3rd", + "author": "Knight", + "isbn": "9780321740908", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2013", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_USED", + "price_display": "$89.69", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Sci & Eng w/Mod Physics(w/out MastPhysAccess)", + "edition": "3rd", + "author": "Knight", + "isbn": "9780321740908", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2013", + "publisher": "Addison Wesley", + "type_condition": "BUY_USED", + "price_display": "$269.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physics for Scientists and Engineers", + "edition": "4th", + "author": "Knight", + "isbn": "9780134080826", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$116.25", + "item_type": "digital" + }, + { + "title": "Physics for Scientists and Engineers", + "edition": "5th", + "author": "Knight", + "isbn": "9780137344796", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$116.25", + "item_type": "digital" + }, + { + "title": "Physics for Scientists and Engineers", + "edition": "5th", + "author": "Knight", + "isbn": "9780137344819", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$116.25", + "item_type": "digital" + } + ] + }, + { + "department": "SLHS", + "course_num": "1071", + "section": "10", + "instructor": "Laura Barrett", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Language", + "edition": "11th", + "author": "Fromkin", + "isbn": "9781337559577", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Language", + "edition": "11th", + "author": "Fromkin", + "isbn": "9781337559577", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$79.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Language", + "edition": "11th", + "author": "Fromkin", + "isbn": "9781337559577", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$123.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Language", + "edition": "11th", + "author": "Fromkin", + "isbn": "9781337559577", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "MindTap English, 1 term (6 months) Instant Access for Fromkin/Rodman/Hyams' An Introduction to Language", + "edition": "11th", + "author": "Victoria FromkinRobert Rodman", + "isbn": "9781337559614", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$77.50", + "item_type": "digital" + } + ] + }, + { + "department": "MBAD", + "course_num": "6235", + "section": "80P", + "instructor": "Maroun Medlej", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6995", + "section": "12", + "instructor": "Jonathan Deason", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6378", + "section": "84", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6669", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "8999", + "section": "10", + "instructor": "David Silverman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6443", + "section": "81", + "instructor": "Abdelghani Bellaachia", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "6208", + "section": "80", + "instructor": "James Malouff", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "14", + "instructor": "Mohammad Ghaedi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8240", + "section": "10", + "instructor": "Joshua DeSilva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UNIV", + "course_num": "0991", + "section": "0", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "8441", + "section": "10", + "instructor": "Michael Barnett", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6450", + "section": "13", + "instructor": "Walcelio Melo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6157", + "section": "10", + "instructor": "Richard Leshner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2094", + "section": "10", + "instructor": "Iulia-Sabina Joja", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "97", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6158", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3500", + "section": "15", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1005", + "section": "38", + "instructor": "Alexander Downes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2224", + "section": "11", + "instructor": "Janice Butler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "37", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "6205", + "section": "10", + "instructor": "Faith Bradley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "2191W", + "section": "10", + "instructor": "Mary Buckley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1005", + "section": "41", + "instructor": "Alexander Downes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JSTD", + "course_num": "6097", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6015", + "section": "17", + "instructor": "Jeffrey Bingenheimer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6208", + "section": "10", + "instructor": "Laura Murphy-Sobocinski", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Extraordinary PR, Ordinary Budget", + "edition": "N/A", + "author": "Farmer", + "isbn": "9781626569959", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$12.00", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "6021", + "section": "13", + "instructor": "Angela Hinzey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0920", + "section": "CS", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "41", + "instructor": "Xiuzhen Cheng", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8101", + "section": "13", + "instructor": "Deniece Dortch", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6268", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "11", + "instructor": "Hugo Junghenn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2121", + "section": "10", + "instructor": "Pamela Labadie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2340W", + "section": "35", + "instructor": "James Hershberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3194", + "section": "84", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ITAL", + "course_num": "3201", + "section": "10", + "instructor": "Lynn Westwater", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2211", + "section": "10", + "instructor": "Michael Hankinson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3183", + "section": "10", + "instructor": "Kayla Brochu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8998", + "section": "12", + "instructor": "Michael Casemore", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "42", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "13", + "instructor": "Joshua Sparks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6101", + "section": "20", + "instructor": "Priti Bhansali", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M88", + "instructor": "Katharine Carter", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "1013", + "section": "12", + "instructor": "Herminia Gil Guerrero", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "78", + "instructor": "Karen Johnson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JAPN", + "course_num": "1001", + "section": "10", + "instructor": "Wakana Cavanaugh", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6330", + "section": "10", + "instructor": "James Hershberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "MV4", + "instructor": "Joseph Trullinger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "2001", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "3135", + "section": "10", + "instructor": "Michele Onwochei", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Language Files: Materials for Intro to Lang & Linguistics", + "edition": "12th", + "author": "Department of Linguistics", + "isbn": "9780814252703", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Ohio State Univserity Press", + "type_condition": "BUY_NEW", + "price_display": "$74.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Language Files: Materials for Intro to Lang & Linguistics", + "edition": "12th", + "author": "Department of Linguistics", + "isbn": "9780814252703", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Ohio State Univserity Press", + "type_condition": "BUY_USED", + "price_display": "$56.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Language Files: Materials for Intro to Lang & Linguistics", + "edition": "12th", + "author": "Department of Linguistics", + "isbn": "9780814252703", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Ohio State Univserity Press", + "type_condition": "RENTAL_NEW", + "price_display": "$56.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Language Files: Materials for Intro to Lang & Linguistics", + "edition": "12th", + "author": "Department of Linguistics", + "isbn": "9780814252703", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Ohio State Univserity Press", + "type_condition": "RENTAL_USED", + "price_display": "$32.98", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "SPAN", + "course_num": "1002", + "section": "11", + "instructor": "Ariadna Pichs", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Gente: A task-based approach to learning Spanish (RRPHE)", + "edition": "4th", + "author": "De La Fuente", + "isbn": "9780135162903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "item_type": "print" + }, + { + "title": "Gente: A task-based approach to learning Spanish (RRPHE)", + "edition": "4th", + "author": "De La Fuente", + "isbn": "9780135162903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "item_type": "print" + }, + { + "title": "Pearson eText for Gente: nivel basico -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "4th", + "author": "Fuente", + "isbn": "9780137617609", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Gente", + "edition": "4th", + "author": "de la Fuente", + "isbn": "9780135305614", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "Gente", + "edition": "4th", + "author": "de la Fuente", + "isbn": "9780135305577", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "HONR", + "course_num": "2047", + "section": "11", + "instructor": "Mesbah Motamed", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6318", + "section": "82", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "3106", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1010", + "section": "30", + "instructor": "Kartik Bulusu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6305", + "section": "81", + "instructor": "Ali Obaidi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2123", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8418", + "section": "10", + "instructor": "Leighton Ku", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8435", + "section": "10", + "instructor": "Leighton Ku", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "3130", + "section": "30", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "6800", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "35", + "instructor": "Subrata Kundu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAMA", + "course_num": "6002", + "section": "81", + "instructor": "Maroun Medlej", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1330", + "section": "33", + "instructor": "Carl Gudenius", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3908", + "section": "13", + "instructor": "Hyeong-Ah Choi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8999", + "section": "18", + "instructor": "Ellen Scully-Russ", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "6289", + "section": "13", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3185", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6241", + "section": "11", + "instructor": "William Youmans", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "4233", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6999", + "section": "23", + "instructor": "Suresh Subramaniam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6202", + "section": "DE", + "instructor": "Milad Hallaji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "2107", + "section": "M31", + "instructor": "Megan Foley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1232", + "section": "33", + "instructor": "Valentina Harizanov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6138", + "section": "80", + "instructor": "Jorge Rivera", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1014", + "section": "14", + "instructor": "Katharine MacDonnell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "TSAP", + "course_num": "6000", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "4121", + "section": "10", + "instructor": "Robert Won", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Contemporary Abstract Algebra", + "edition": "9th", + "author": "Gallian", + "isbn": "9781305657960", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$106.47", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Contemporary Abstract Algebra", + "edition": "9th", + "author": "Gallian", + "isbn": "9781305657960", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$253.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Contemporary Abstract Algebra", + "edition": "9th", + "author": "Gallian", + "isbn": "9781305657960", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$190.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Contemporary Abstract Algebra", + "edition": "9th", + "author": "Gallian", + "isbn": "9781305657960", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$202.80", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Contemporary Abstract Algebra", + "edition": "9th", + "author": "Gallian", + "isbn": "9781305887855", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "Contemporary Abstract Algebra", + "edition": "9th", + "author": "Gallian", + "isbn": "9781305887855", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$67.99", + "item_type": "digital" + }, + { + "title": "Contemporary Abstract Algebra", + "edition": "9th", + "author": "Gallian", + "isbn": "9781305887855", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$86.49", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "1012", + "section": "32", + "instructor": "Joseph Goldfrank", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "8199", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3189", + "section": "10", + "instructor": "David Rain", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1005", + "section": "38", + "instructor": "Peter Nassar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "45", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "1001", + "section": "10", + "instructor": "Michael Plesniak", + "term_name": "Fall 2023", + "texts": [ + { + "title": "WebAssign for Wickert/Lewis' An Introduction to Mechanical Engineering, Enhanced, Single-Term Instant Access", + "edition": "4th", + "author": "Jonathan WickertKemper Lewis", + "isbn": "9780357382370", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$148.00", + "item_type": "digital" + } + ] + }, + { + "department": "HLWL", + "course_num": "1102", + "section": "12", + "instructor": "Aimee Simmons", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "3153", + "section": "11", + "instructor": "Alexander Dumbadze", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "2410", + "section": "32", + "instructor": "Sibin Mohan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6660", + "section": "O10", + "instructor": "Bernhard Streitwieser", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2991", + "section": "10", + "instructor": "Dennis McGrath", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Democracy in America (Perennial Classics Ed)", + "edition": "N/A", + "author": "De Tocqueville", + "isbn": "9780061127922", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$22.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Democracy in America (Perennial Classics Ed)", + "edition": "N/A", + "author": "De Tocqueville", + "isbn": "9780061127922", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Righteous Mind", + "edition": "N/A", + "author": "Haidt", + "isbn": "9780307455772", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Doubleday Books", + "type_condition": "RENTAL_NEW", + "price_display": "$11.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Righteous Mind", + "edition": "N/A", + "author": "Haidt", + "isbn": "9780307455772", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Doubleday Books", + "type_condition": "RENTAL_USED", + "price_display": "$7.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Righteous Mind", + "edition": "N/A", + "author": "Haidt", + "isbn": "9780307455772", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Doubleday Books", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Righteous Mind", + "edition": "N/A", + "author": "Haidt", + "isbn": "9780307455772", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Doubleday Books", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Federalist Papers", + "edition": "N/A", + "author": "Hamilton", + "isbn": "9780451528810", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$7.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Federalist Papers", + "edition": "N/A", + "author": "Hamilton", + "isbn": "9780451528810", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$6.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ECON", + "course_num": "4199", + "section": "10", + "instructor": "Pao-Lin Tien", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6907", + "section": "81", + "instructor": "Rolando Fernandez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "3125", + "section": "10", + "instructor": "Beverly Westerman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6011", + "section": "10", + "instructor": "Peter LaPuma", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Environmental Health", + "edition": "3rd", + "author": "Frumkin", + "isbn": "9781118984765", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$146.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Environmental Health", + "edition": "3rd", + "author": "Frumkin", + "isbn": "9781118984765", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$95.39", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Environmental Health", + "edition": "3rd", + "author": "Frumkin", + "isbn": "9781118984765", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$61.64", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Environmental Health", + "edition": "3rd", + "author": "Frumkin", + "isbn": "9781118984765", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$110.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Environmental Health", + "edition": "3rd", + "author": "Frumkin", + "isbn": "9781118988077", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$97.00", + "item_type": "digital" + } + ] + }, + { + "department": "CNSL", + "course_num": "8999", + "section": "19", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "71", + "instructor": "Daniel Jaqua", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3190", + "section": "89", + "instructor": "Muqaddesa Yourish", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "6278", + "section": "10", + "instructor": "John Miller", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GER", + "course_num": "1003", + "section": "11", + "instructor": "Beatrix Marguerre", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6204", + "section": "11", + "instructor": "Peter Loge", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "3170", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "47", + "instructor": "Tarek El-Ghazawi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6101", + "section": "11", + "instructor": "Mikyong Kim", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6047", + "section": "10", + "instructor": "Emily Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "1014", + "section": "14", + "instructor": "Isabel Rodriguez-Melguizo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M75", + "instructor": "Phyllis Ryder", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1005", + "section": "36", + "instructor": "Alexander Downes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "3001", + "section": "12", + "instructor": "Anoma Kulathunga", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Connect 1-Semester Online Access for International Business", + "edition": "14th", + "author": "HILL", + "isbn": "9781264383863", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$180.25", + "item_type": "digital" + } + ] + }, + { + "department": "HIST", + "course_num": "2124", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6002", + "section": "33", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6399", + "section": "13", + "instructor": "Feygele Jacobs", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6999", + "section": "17", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6999", + "section": "14", + "instructor": "Kie-Bum Eom", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6501", + "section": "30", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8999", + "section": "13", + "instructor": "Arshad Ali", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6418", + "section": "10", + "instructor": "Sarah Baird", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "6377", + "section": "10", + "instructor": "Daniel Neep", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6998", + "section": "23", + "instructor": "Suresh Subramaniam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8205", + "section": "11", + "instructor": "Helen DeVinney", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M62", + "instructor": "Andrew Gretes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6010", + "section": "10", + "instructor": "George Gray", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "4239W", + "section": "80", + "instructor": "Daniel Ullman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Course in Real Analysis (w/Bind-In Access)", + "edition": "N/A", + "author": "Junghenn", + "isbn": "9781482219272", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$96.25", + "item_type": "print" + }, + { + "title": "Course in Real Analysis (w/Bind-In Access)", + "edition": "N/A", + "author": "Junghenn", + "isbn": "9781482219272", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$128.25", + "item_type": "print" + }, + { + "title": "A Course in Real Analysis", + "edition": "N/A", + "author": "Junghenn", + "isbn": "9781482219289", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$110.00", + "item_type": "digital" + } + ] + }, + { + "department": "WGSS", + "course_num": "3481", + "section": "80", + "instructor": "Kelly Pemberton", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Women & Gender in Islam", + "edition": "N/A", + "author": "Ahmed", + "isbn": "9780300055832", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Yale University Press", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "item_type": "print" + }, + { + "title": "Women & Gender in Islam", + "edition": "N/A", + "author": "Ahmed", + "isbn": "9780300055832", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$22.00", + "item_type": "print" + }, + { + "title": "Women & Gender in Islam", + "edition": "N/A", + "author": "Ahmed", + "isbn": "9780300055832", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Yale University Press", + "type_condition": "RENTAL_USED", + "price_display": "$8.80", + "item_type": "print" + }, + { + "title": "Wrapping Authority", + "edition": "N/A", + "author": "Hill", + "isbn": "9781487522445", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "University of Toronto Press", + "type_condition": "BUY_USED", + "price_display": "$29.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wrapping Authority", + "edition": "N/A", + "author": "Hill", + "isbn": "9781487522445", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "University of Toronto Press", + "type_condition": "BUY_NEW", + "price_display": "$38.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wrapping Authority", + "edition": "N/A", + "author": "Hill", + "isbn": "9781487522445", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "University of Toronto Press", + "type_condition": "RENTAL_USED", + "price_display": "$15.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Women and Gender in Islam", + "edition": "N/A", + "author": "Ahmed", + "isbn": "9780300258172", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "item_type": "digital" + }, + { + "title": "Muslim Women at Work", + "edition": "N/A", + "author": "Sidani", + "isbn": "9783319632216", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$89.00", + "item_type": "digital" + }, + { + "title": "Muslim Women at Work", + "edition": "N/A", + "author": "Sidani", + "isbn": "9783319632216", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$89.00", + "item_type": "digital" + }, + { + "title": "Muslim Women at Work", + "edition": "N/A", + "author": "Sidani", + "isbn": "9783319632216", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$89.00", + "item_type": "digital" + }, + { + "title": "Muslim Women at Work", + "edition": "N/A", + "author": "Sidani", + "isbn": "9783319632216", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$89.00", + "item_type": "digital" + } + ] + }, + { + "department": "MATH", + "course_num": "2233", + "section": "30", + "instructor": "Lien-Yung Kao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "3600", + "section": "10", + "instructor": "Charlee Bezilla", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "1010", + "section": "15", + "instructor": "Kreda Boci", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3711", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4431", + "section": "80", + "instructor": "Mohamed Tamer Refaei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6374", + "section": "10", + "instructor": "Anthony Kassekert", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3187", + "section": "86", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8203", + "section": "10", + "instructor": "Joseph Kosowsky", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8998", + "section": "16", + "instructor": "Thomas Mazzuchi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6101", + "section": "15", + "instructor": "Curtis Pyke", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6022", + "section": "12", + "instructor": "Angela Hinzey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "11", + "instructor": "Poorvi Vora", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2440", + "section": "11", + "instructor": "Lawrence Olson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "International Relations Theories", + "edition": "4th", + "author": "Dunne", + "isbn": "9780198707561", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$91.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Relations Theories", + "edition": "4th", + "author": "Dunne", + "isbn": "9780198707561", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$69.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Relations Theories", + "edition": "4th", + "author": "Dunne", + "isbn": "9780198707561", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$32.18", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M85", + "instructor": "Danika Myers", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lake Superior", + "edition": "N/A", + "author": "Niedecker", + "isbn": "9781933517667", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Wave Books C/O Consortium (Perseus) per the pub \"stop sending orders to the editorial office\"", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Lake Superior", + "edition": "N/A", + "author": "Niedecker", + "isbn": "9781933517667", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Wave Books C/O Consortium (Perseus) per the pub \"stop sending orders to the editorial office\"", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "One with Others", + "edition": "N/A", + "author": "Wright", + "isbn": "9781556593888", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2010", + "publisher": "Copper Canyon Press", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "One with Others", + "edition": "N/A", + "author": "Wright", + "isbn": "9781556593888", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2010", + "publisher": "Copper Canyon Press", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Zong!", + "edition": "N/A", + "author": "Philip", + "isbn": "9780819571694", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Wesleyan University Press", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Zong!", + "edition": "N/A", + "author": "Philip", + "isbn": "9780819571694", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Wesleyan University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$12.32", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Zong!", + "edition": "N/A", + "author": "Philip", + "isbn": "9780819571694", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Wesleyan University Press", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Whereas", + "edition": "N/A", + "author": "Soldier", + "isbn": "9781555977672", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Graywolf", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Whereas", + "edition": "N/A", + "author": "Soldier", + "isbn": "9781555977672", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Graywolf", + "type_condition": "RENTAL_NEW", + "price_display": "$8.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Whereas", + "edition": "N/A", + "author": "Soldier", + "isbn": "9781555977672", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Graywolf", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Field Study", + "edition": "N/A", + "author": "Sebree", + "isbn": "9780374539023", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Field Study", + "edition": "N/A", + "author": "Sebree", + "isbn": "9780374539023", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sand Opera", + "edition": "N/A", + "author": "Metres", + "isbn": "9781938584091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Alice James Books", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sand Opera", + "edition": "N/A", + "author": "Metres", + "isbn": "9781938584091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Alice James Books", + "type_condition": "RENTAL_NEW", + "price_display": "$12.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sand Opera", + "edition": "N/A", + "author": "Metres", + "isbn": "9781938584091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Alice James Books", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "One With Others", + "edition": "N/A", + "author": "Wright", + "isbn": "9781619320161", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "AUSABLE PRESS", + "type_condition": "BUY_NEW", + "price_display": "$10.00", + "item_type": "digital" + }, + { + "title": "Sand Opera", + "edition": "N/A", + "author": "Metres", + "isbn": "9781938584237", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Alice James Books", + "type_condition": "BUY_NEW", + "price_display": "$10.75", + "item_type": "digital" + } + ] + }, + { + "department": "PSYC", + "course_num": "2556", + "section": "10", + "instructor": "Paul Poppen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Dynamics of Persuasion", + "edition": "N/A", + "author": "Perloff", + "isbn": "9781032268187", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$82.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dynamics of Persuasion", + "edition": "N/A", + "author": "Perloff", + "isbn": "9781032268187", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$110.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "IAFF", + "course_num": "3186", + "section": "83", + "instructor": "Mustafa Aksu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6299", + "section": "10", + "instructor": "Brandon Beattie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "3127", + "section": "30", + "instructor": "Megan Leftwich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "46", + "instructor": "Timothy Dodd", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "32", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6274", + "section": "13", + "instructor": "Robert Bonar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EAP", + "course_num": "6111", + "section": "14", + "instructor": "Natalia Romanova", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "42", + "instructor": "Kylie Stamm", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1000", + "section": "11", + "instructor": "Caleb Schmotter", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Defining a Nation", + "edition": "N/A", + "author": "Embree", + "isbn": "9781469670799", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of North Carolina Press", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Defining a Nation", + "edition": "N/A", + "author": "Embree", + "isbn": "9781469670799", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of North Carolina Press", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Threshold of Democracy", + "edition": "4th", + "author": "Ober", + "isbn": "9781469670751", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "University of North Carolina Press", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Threshold of Democracy", + "edition": "4th", + "author": "Ober", + "isbn": "9781469670751", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "University of North Carolina Press", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Threshold of Democracy", + "edition": "4th", + "author": "Ober", + "isbn": "9781469672342", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of North Carolina Press", + "type_condition": "BUY_NEW", + "price_display": "$19.99", + "item_type": "digital" + }, + { + "title": "Defining a Nation", + "edition": "N/A", + "author": "Embree", + "isbn": "9781469672298", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of North Carolina Press", + "type_condition": "BUY_NEW", + "price_display": "$19.99", + "item_type": "digital" + } + ] + }, + { + "department": "IBUS", + "course_num": "6290", + "section": "12", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GER", + "course_num": "1003", + "section": "10", + "instructor": "Beatrix Marguerre", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3180", + "section": "80", + "instructor": "Thomas Russo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "42", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "1001", + "section": "18", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "2104W", + "section": "80", + "instructor": "Erin Cardman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801476", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$55.65", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801476", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$132.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801476", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$99.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801476", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$106.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introduction to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801575", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "Introduction to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801599", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "75", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8999", + "section": "13", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "35", + "instructor": "Sharon Roosevelt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PATH", + "course_num": "6295", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "6239", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6240", + "section": "80D", + "instructor": "Bonnie Pierce", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "6241", + "section": "10", + "instructor": "Catherine Hill", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Gender Law & Policy", + "edition": "N/A", + "author": "Bartlett", + "isbn": "9781543813739", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Aspen Publishing", + "type_condition": "BUY_NEW", + "price_display": "$185.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gender Law & Policy", + "edition": "N/A", + "author": "Bartlett", + "isbn": "9781543813739", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Aspen Publishing", + "type_condition": "BUY_USED", + "price_display": "$139.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gender Law and Policy", + "edition": "3rd", + "author": "Bartlett", + "isbn": "9781543823400", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Aspen Publishing", + "type_condition": "BUY_NEW", + "price_display": "$188.95", + "item_type": "digital" + } + ] + }, + { + "department": "EMSE", + "course_num": "6995", + "section": "21", + "instructor": "Thomas Mazzuchi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3172", + "section": "10", + "instructor": "Chukwuma Onyia", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "33", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "41", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "KOR", + "course_num": "1001", + "section": "10", + "instructor": "Insung Ko", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8101", + "section": "10", + "instructor": "Kenneth Hergenrather", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "2233", + "section": "32", + "instructor": "Lien-Yung Kao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "35", + "instructor": "Erin Heramb", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3186W", + "section": "10", + "instructor": "Christina Fink", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "40", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PMGT", + "course_num": "6424", + "section": "O10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "2111", + "section": "33", + "instructor": "Kyle Levers", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "1001", + "section": "31", + "instructor": "Phyllis Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6114", + "section": "10", + "instructor": "Emily Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6338", + "section": "81", + "instructor": "Marlene Laruelle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "52", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "6265", + "section": "80", + "instructor": "Mika Natif", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6270", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3357W", + "section": "10", + "instructor": "Lee Huebner", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Elements of Speechwriting etc (Trade Ed)", + "edition": "N/A", + "author": "Cook", + "isbn": "9780028614526", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1989", + "publisher": "Longman", + "type_condition": "BUY_USED", + "price_display": "$8.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Elements of Speechwriting etc (Trade Ed)", + "edition": "N/A", + "author": "Cook", + "isbn": "9780028614526", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1989", + "publisher": "Longman", + "type_condition": "BUY_NEW", + "price_display": "$10.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "PUBH", + "course_num": "8890", + "section": "10", + "instructor": "Keith Crandall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1007", + "section": "13", + "instructor": "Stephen Kcenich", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "BUY_USED", + "price_display": "$87.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "RENTAL_NEW", + "price_display": "$87.38", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "RENTAL_USED", + "price_display": "$48.93", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "BUY_NEW", + "price_display": "$116.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "The Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798907", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$54.95", + "item_type": "digital" + } + ] + }, + { + "department": "FREN", + "course_num": "1003", + "section": "12", + "instructor": "Hadia Anaye", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6323", + "section": "10", + "instructor": "Suneel Grover", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6358", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "3220", + "section": "10", + "instructor": "Amir Aslani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8998", + "section": "14", + "instructor": "Sameh Badie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "34", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M60", + "instructor": "Pamela Presser", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6101", + "section": "17", + "instructor": "Raymond Lucas", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WLP", + "course_num": "4198", + "section": "M4", + "instructor": "Mary Buckley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "6995", + "section": "10", + "instructor": "Jennifer Spencer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6318", + "section": "80", + "instructor": "Kuniko Ashizawa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6085", + "section": "10", + "instructor": "Kathryn Newcomer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6410", + "section": "10", + "instructor": "Nino Paichadze", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "70", + "instructor": "Jaryn Gessesse", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3195", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1003", + "section": "39", + "instructor": "Adam Dean", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M41", + "instructor": "Danika Myers", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Lake Superior", + "edition": "N/A", + "author": "Niedecker", + "isbn": "9781933517667", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Wave Books C/O Consortium (Perseus) per the pub \"stop sending orders to the editorial office\"", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Lake Superior", + "edition": "N/A", + "author": "Niedecker", + "isbn": "9781933517667", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Wave Books C/O Consortium (Perseus) per the pub \"stop sending orders to the editorial office\"", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Whereas", + "edition": "N/A", + "author": "Soldier", + "isbn": "9781555977672", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Graywolf", + "type_condition": "RENTAL_NEW", + "price_display": "$8.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Whereas", + "edition": "N/A", + "author": "Soldier", + "isbn": "9781555977672", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Graywolf", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Whereas", + "edition": "N/A", + "author": "Soldier", + "isbn": "9781555977672", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Graywolf", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Zong!", + "edition": "N/A", + "author": "Philip", + "isbn": "9780819571694", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Wesleyan University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$12.32", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Zong!", + "edition": "N/A", + "author": "Philip", + "isbn": "9780819571694", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Wesleyan University Press", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Zong!", + "edition": "N/A", + "author": "Philip", + "isbn": "9780819571694", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Wesleyan University Press", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "One with Others", + "edition": "N/A", + "author": "Wright", + "isbn": "9781556593888", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2010", + "publisher": "Copper Canyon Press", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "One with Others", + "edition": "N/A", + "author": "Wright", + "isbn": "9781556593888", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2010", + "publisher": "Copper Canyon Press", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Field Study", + "edition": "N/A", + "author": "Sebree", + "isbn": "9780374539023", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Field Study", + "edition": "N/A", + "author": "Sebree", + "isbn": "9780374539023", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sand Opera", + "edition": "N/A", + "author": "Metres", + "isbn": "9781938584091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Alice James Books", + "type_condition": "RENTAL_NEW", + "price_display": "$12.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sand Opera", + "edition": "N/A", + "author": "Metres", + "isbn": "9781938584091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Alice James Books", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sand Opera", + "edition": "N/A", + "author": "Metres", + "isbn": "9781938584091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Alice James Books", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "One With Others", + "edition": "N/A", + "author": "Wright", + "isbn": "9781619320161", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "AUSABLE PRESS", + "type_condition": "BUY_NEW", + "price_display": "$10.00", + "item_type": "digital" + }, + { + "title": "Sand Opera", + "edition": "N/A", + "author": "Metres", + "isbn": "9781938584237", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Alice James Books", + "type_condition": "BUY_NEW", + "price_display": "$10.75", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "3135W", + "section": "12", + "instructor": "Julia Beckerman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Perfect English Grammar: Indispensable Excellent Writing & Speaking (Gde)", + "edition": "N/A", + "author": "Barrett", + "isbn": "9781623157142", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2016", + "publisher": "Zephyros Press", + "type_condition": "BUY_NEW", + "price_display": "$13.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Perfect English Grammar: Indispensable Excellent Writing & Speaking (Gde)", + "edition": "N/A", + "author": "Barrett", + "isbn": "9781623157142", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2016", + "publisher": "Zephyros Press", + "type_condition": "BUY_USED", + "price_display": "$10.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Perfect English Grammar: Indispensable Excellent Writing & Speaking (Gde)", + "edition": "N/A", + "author": "Barrett", + "isbn": "9781623157142", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2016", + "publisher": "Zephyros Press", + "type_condition": "RENTAL_NEW", + "price_display": "$10.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Policy & Law", + "edition": "5th", + "author": "Wilensky", + "isbn": "9781284247459", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$81.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Policy & Law", + "edition": "5th", + "author": "Wilensky", + "isbn": "9781284247459", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$32.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Policy & Law", + "edition": "5th", + "author": "Wilensky", + "isbn": "9781284247459", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$61.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Policy & Law", + "edition": "5th", + "author": "Wilensky", + "isbn": "9781284247459", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$65.56", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essentials of Health Policy and Law", + "edition": "5th", + "author": "Wilensky", + "isbn": "9781284247466", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$53.27", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "2151", + "section": "30", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "39", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8101", + "section": "20", + "instructor": "Lionel Howard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "3995", + "section": "12", + "instructor": "Kyle Levers", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "3191", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3501", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2992", + "section": "10", + "instructor": "Nicole Bartels", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6999", + "section": "11", + "instructor": "Samer Hamdar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "6098", + "section": "10", + "instructor": "James Sham", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "0940", + "section": "10", + "instructor": "Richard Lanthier", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JAPN", + "course_num": "1001", + "section": "11", + "instructor": "Wakana Cavanaugh", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1041", + "section": "10", + "instructor": "Angela Ingram", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2110W", + "section": "11", + "instructor": "Kelsey Nelson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$79.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$45.99", + "item_type": "digital" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$62.99", + "item_type": "digital" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$80.48", + "item_type": "digital" + } + ] + }, + { + "department": "EMSE", + "course_num": "8998", + "section": "21", + "instructor": "John Helveston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6808", + "section": "10", + "instructor": "Rumana Riffat", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ITAL", + "course_num": "1001", + "section": "13", + "instructor": "Tessa Gurney", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Sentieri (LL)(w/SupersitePlus+36mthWebSAM Access Code)", + "edition": "3rd", + "author": "Cozzarelli", + "isbn": "9781543304442", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Vista Higher Learning, Incorp", + "type_condition": "BUY_NEW", + "price_display": "$365.00", + "item_type": "print" + } + ] + }, + { + "department": "IAFF", + "course_num": "2090", + "section": "10", + "instructor": "Michael McCarthy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "3123", + "section": "80", + "instructor": "Hang Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M23", + "instructor": "Mark Mullen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2151", + "section": "10", + "instructor": "Ekaterina Brancato", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0920", + "section": "CE", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "2109", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2145", + "section": "10", + "instructor": "Terrie Gale", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Course Pack for SOC 2145 (Fall 2023)", + "edition": "N/A", + "author": "Gale", + "isbn": null, + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "LAD Custom Pub", + "type_condition": "BUY_NEW", + "price_display": "$61.00", + "item_type": "print" + } + ] + }, + { + "department": "IAFF", + "course_num": "6101", + "section": "37", + "instructor": "Stefan Tschauko", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "4201W", + "section": "30", + "instructor": "Fallon Goodman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "20", + "instructor": "Stephen Redmon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2151", + "section": "34", + "instructor": "Martin Zysmilich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "2120", + "section": "10", + "instructor": "Sameera Talegawkar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1091", + "section": "10", + "instructor": "Erin Freeman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2366", + "section": "10", + "instructor": "Julian Waller", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Developments in Russian Politics 9", + "edition": "9th", + "author": "Sakwa", + "isbn": "9781352004670", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Macmillan Trade", + "type_condition": "BUY_NEW", + "price_display": "$44.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Developments in Russian Politics 9", + "edition": "9th", + "author": "Sakwa", + "isbn": "9781352004670", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Macmillan Trade", + "type_condition": "BUY_USED", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "LSPA", + "course_num": "1039", + "section": "11", + "instructor": "Brian Stamps", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "M31", + "instructor": "Theodore Christov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "3220", + "section": "30", + "instructor": "Amir Aslani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "40", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1330", + "section": "34", + "instructor": "Carl Gudenius", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6152", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8999", + "section": "21", + "instructor": "Karen Kortecamp", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "3105", + "section": "11", + "instructor": "Jing Chen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "1013", + "section": "14", + "instructor": "Herminia Gil Guerrero", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "6997", + "section": "11", + "instructor": "Mohammad Faghfoory", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M33", + "instructor": "Emma Francois", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2377", + "section": "12", + "instructor": "Mohammad Ghaedi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ORSC", + "course_num": "1109", + "section": "10", + "instructor": "David Costanza", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Organizational Theory, Design & Change", + "edition": "7th", + "author": "Jones", + "isbn": "9780132729949", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$287.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Organizational Theory, Design & Change", + "edition": "7th", + "author": "Jones", + "isbn": "9780132729949", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$358.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Organizational Theory, Design & Change", + "edition": "7th", + "author": "Jones", + "isbn": "9780132729949", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$269.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Organizational Theory, Design & Change", + "edition": "7th", + "author": "Jones", + "isbn": "9780132729949", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$150.68", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pearson eText for Organizational Theory, Design, and Change -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "7th", + "author": "Jones", + "isbn": "9780137614851", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Organizational Theory, Design, and Change", + "edition": "7th", + "author": "Jones", + "isbn": "9780133468014", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$110.25", + "item_type": "digital" + }, + { + "title": "Organizational Theory, Design, and Change", + "edition": "7th", + "author": "Jones", + "isbn": "9780133071566", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$110.25", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6358", + "section": "89", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "29", + "instructor": "Peng Wei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "99", + "instructor": "Hermann Helgert", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "4139", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "6290", + "section": "10", + "instructor": "Laura Papish", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Cult of Smart", + "edition": "N/A", + "author": "Deboer", + "isbn": "9781250200372", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "St. Martin's Press", + "type_condition": "BUY_USED", + "price_display": "$21.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Cult of Smart", + "edition": "N/A", + "author": "Deboer", + "isbn": "9781250200372", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "St. Martin's Press", + "type_condition": "BUY_NEW", + "price_display": "$28.99", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "13", + "instructor": "Paul Wagner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4907", + "section": "86", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8413", + "section": "10", + "instructor": "Janet Heinrich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M68", + "instructor": "Pamela Presser", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "NSC", + "course_num": "2199", + "section": "10", + "instructor": "Damaris Rocha", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6186", + "section": "10", + "instructor": "Mina Attia", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6318", + "section": "83", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2101", + "section": "14", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6116", + "section": "10", + "instructor": "Debra Herrmann", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "3200", + "section": "10", + "instructor": "Victor Valdivia Ruiz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "El Bilinguismo en el Mundo Hispanohablante", + "edition": "N/A", + "author": "Montrul", + "isbn": "9780470657218", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$58.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "El Bilinguismo en el Mundo Hispanohablante", + "edition": "N/A", + "author": "Montrul", + "isbn": "9780470657218", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$43.69", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "El Bilinguismo en el Mundo Hispanohablante", + "edition": "N/A", + "author": "Montrul", + "isbn": "9780470657218", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$23.30", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "El Bilinguismo en el Mundo Hispanohablante", + "edition": "N/A", + "author": "Montrul", + "isbn": "9780470657218", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$43.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "El bilinguismo en el mundo hispanohablante", + "edition": "1st", + "author": "Montrul", + "isbn": "9781118291641", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$48.00", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6898", + "section": "15", + "instructor": "George Moose", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEHD", + "course_num": "8999", + "section": "10", + "instructor": "Arshad Ali", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2102", + "section": "13", + "instructor": "Chuanhao Lin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1012", + "section": "30", + "instructor": "Ronald Bird", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6014", + "section": "14", + "instructor": "Nino Paichadze", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "6238", + "section": "10", + "instructor": "Hilary Silver", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Classical Sociological Theory", + "edition": "4th", + "author": "Calhoun", + "isbn": "9781119527367", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$54.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Classical Sociological Theory", + "edition": "4th", + "author": "Calhoun", + "isbn": "9781119527367", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Classical Sociological Theory", + "edition": "4th", + "author": "Calhoun", + "isbn": "9781119527336", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$39.00", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "8397", + "section": "10", + "instructor": "Michael Bradley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "4995W", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8999", + "section": "13", + "instructor": "Joseph Barbera", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4237", + "section": "10", + "instructor": "Michael Cobb", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6995", + "section": "15", + "instructor": "Royce Francis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "6210", + "section": "10", + "instructor": "James Lee", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Advanced Continuum Theories & Finite Element Analyses", + "edition": "N/A", + "author": "Lee", + "isbn": "9789811201486", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "World Scientific Pub Co., Incorp.", + "type_condition": "BUY_NEW", + "price_display": "$158.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Advanced Continuum Theories & Finite Element Analyses", + "edition": "N/A", + "author": "Lee", + "isbn": "9789811201486", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "World Scientific Pub Co., Incorp.", + "type_condition": "BUY_USED", + "price_display": "$118.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Advanced Continuum Theories And Finite Element Analyses", + "edition": "N/A", + "author": "Lee", + "isbn": "9789811201509", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "World Scientific Pub Co., Incorp.", + "type_condition": "BUY_NEW", + "price_display": "$78.25", + "item_type": "digital" + } + ] + }, + { + "department": "PPPA", + "course_num": "8191", + "section": "10", + "instructor": "Mary Tschirhart", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6126", + "section": "10", + "instructor": "Robert Canales", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0930", + "section": "ECE", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6022", + "section": "11", + "instructor": "Angela Hinzey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "12", + "instructor": "Kimberly Morgan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Cases & Concepts etc (w/Ebook & AC)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532890", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$121.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cases & Concepts etc (w/Ebook & AC)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532890", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_USED", + "price_display": "$50.82", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cases & Concepts etc (w/Ebook & AC)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532890", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$90.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cases & Concepts etc (w/Ebook & AC)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532890", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_NEW", + "price_display": "$96.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cases and Concepts in Comparative Politics (Second Edition)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532869", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$57.07", + "item_type": "digital" + }, + { + "title": "Cases and Concepts in Comparative Politics (Second Edition)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532869", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$72.63", + "item_type": "digital" + } + ] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M37", + "instructor": "Jameta Barlow", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8722", + "section": "10", + "instructor": "Maria Cseh", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "4195", + "section": "10", + "instructor": "Srinivasan Balaji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "2110", + "section": "11", + "instructor": "Can Korman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "2047", + "section": "12", + "instructor": "Shanil Virani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4541", + "section": "80", + "instructor": "Mohamed Tamer Refaei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8203", + "section": "12", + "instructor": "Ximena Radjenovic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "6290", + "section": "81", + "instructor": "David Brown", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Essen of Social Media Marketing/Mimic Social Bundle", + "edition": "N/A", + "author": "Stukent", + "isbn": "9780999630242", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Stukent, Inc.", + "type_condition": "BUY_NEW", + "price_display": "$189.25", + "item_type": "print" + } + ] + }, + { + "department": "PERS", + "course_num": "3001", + "section": "10", + "instructor": "Maziar Valamotamed", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "6215", + "section": "10", + "instructor": "James Bailey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "1501", + "section": "10", + "instructor": "Omya Alston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "8998", + "section": "10", + "instructor": "Michael Doering", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1001", + "section": "35", + "instructor": "James Kerr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2101", + "section": "32", + "instructor": "Alicia Cooperman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2101", + "section": "11", + "instructor": "Edi Jurkovic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8999", + "section": "13", + "instructor": "Kenneth Hergenrather", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "0920", + "section": "10", + "instructor": "Yas Nakib", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "2101", + "section": "30", + "instructor": "Gregory Wallace", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "4160", + "section": "81", + "instructor": "Gina Adam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4755", + "section": "80", + "instructor": "Royce Francis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6351", + "section": "80", + "instructor": "Abdou Youssef", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "3127", + "section": "10", + "instructor": "Gabriela Rosenblau", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "1001", + "section": "10", + "instructor": "David Marshall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6338", + "section": "10", + "instructor": "Erwan Lagadec", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "8999", + "section": "10", + "instructor": "Gina Adam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "17", + "instructor": "Lorena Barba", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3194", + "section": "82", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1051", + "section": "10", + "instructor": "Sudip Bose", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Statistics for Business & Economics (RRPHE)", + "edition": "14th", + "author": "Mcclave", + "isbn": "9780136855354", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistics for Business & Economics (RRPHE)", + "edition": "14th", + "author": "Mcclave", + "isbn": "9780136855354", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pearson eText Statistics for Business and Economics -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "14th", + "author": "McClave", + "isbn": "9780137335428", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Statistics for Business and Economics", + "edition": "14th", + "author": "McClave", + "isbn": "9780137376629", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$104.00", + "item_type": "digital" + }, + { + "title": "Statistics for Business and Economics", + "edition": "14th", + "author": "McClave", + "isbn": "9780137376575", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$104.00", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "2112", + "section": "11", + "instructor": "Tamara Henry", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Essen of Health Behavior", + "edition": "3rd", + "author": "Edberg", + "isbn": "9781284069341", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$88.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Behavior", + "edition": "3rd", + "author": "Edberg", + "isbn": "9781284069341", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$37.36", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Behavior", + "edition": "3rd", + "author": "Edberg", + "isbn": "9781284069341", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$66.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Behavior", + "edition": "3rd", + "author": "Edberg", + "isbn": "9781284069341", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$66.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essentials of Health Behavior", + "edition": "3rd", + "author": "Edberg", + "isbn": "9781284145366", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$51.32", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "6899", + "section": "10", + "instructor": "Scott Evans", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1012", + "section": "33", + "instructor": "Joseph Goldfrank", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "26", + "instructor": "Chung Hyuk Park", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "39", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "4275", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6298", + "section": "10", + "instructor": "Bryan Andriano", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8998", + "section": "17", + "instructor": "Yoshie Nakamura", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEHD", + "course_num": "8101", + "section": "11", + "instructor": "Curtis Pyke", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2189", + "section": "12", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "6225", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8999", + "section": "15", + "instructor": "Dwayne Wright", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6318", + "section": "12", + "instructor": "Jack Davey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6258", + "section": "2U1", + "instructor": "Kami Rapp", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "3199", + "section": "14", + "instructor": "Sarah Axelson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "2217", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SUST", + "course_num": "1001", + "section": "30", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "3126", + "section": "10", + "instructor": "Megan Leftwich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6801", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "4198", + "section": "10", + "instructor": "Eric Saidel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8999", + "section": "13", + "instructor": "Tianshu Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "4199W", + "section": "10", + "instructor": "Daniel Sude", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6998", + "section": "10", + "instructor": "Majid Manzari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1232", + "section": "31", + "instructor": "Robert Won", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "64", + "instructor": "Richa Bhatt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "TSTD", + "course_num": "6280", + "section": "10", + "instructor": "Adam Richelieu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEHD", + "course_num": "8999", + "section": "12", + "instructor": "Yas Nakib", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "1011", + "section": "36", + "instructor": "Melanie-Joy Dorn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ORSC", + "course_num": "2046", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6015", + "section": "10", + "instructor": "Hermann Helgert", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "2111W", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WLP", + "course_num": "4198", + "section": "M3", + "instructor": "Elisa Hovander", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6254", + "section": "DE", + "instructor": "Ernest Forman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1003", + "section": "32", + "instructor": "Adam Dean", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "8999", + "section": "20", + "instructor": "Roger Lang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "39", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLAV", + "course_num": "1003", + "section": "10", + "instructor": "Galina Shatalina", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Golosa (Bk2)", + "edition": "6th", + "author": "Robin", + "isbn": "9780367612825", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "ROUTLEDGE PUBLISHING", + "type_condition": "BUY_NEW", + "price_display": "$84.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Golosa (Bk2)", + "edition": "6th", + "author": "Robin", + "isbn": "9780367612825", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "ROUTLEDGE PUBLISHING", + "type_condition": "BUY_USED", + "price_display": "$63.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Golosa Student Workbook, Book Two", + "edition": "6th", + "author": "Robin", + "isbn": "9780367612917", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "ROUTLEDGE PUBLISHING", + "type_condition": "BUY_NEW", + "price_display": "$69.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "FORS", + "course_num": "6999", + "section": "MV", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "3501", + "section": "81", + "instructor": "Astrid Riecken", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8257", + "section": "11", + "instructor": "Tonya Dodge", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "1013", + "section": "13", + "instructor": "Eliana Parker", + "term_name": "Fall 2023", + "texts": [ + { + "title": "MyLab Spanish with Pearson eText -- Access Card -- for Gente: A task-based approach to learning Spanish (Multi-Semester)", + "edition": "4th", + "author": "Baulenas", + "isbn": "9780135307618", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$173.50", + "item_type": "digital" + } + ] + }, + { + "department": "SOC", + "course_num": "1002", + "section": "11", + "instructor": "Ivy Ken", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Sociology", + "edition": "N/A", + "author": "Alsup", + "isbn": "9781793557308", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2023", + "publisher": "Cognella", + "type_condition": "BUY_NEW", + "price_display": "$107.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Sociology", + "edition": "N/A", + "author": "Alsup", + "isbn": "9781793557308", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2023", + "publisher": "Cognella", + "type_condition": "BUY_USED", + "price_display": "$80.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introduction to Sociology", + "edition": "N/A", + "author": "Alsup", + "isbn": "9781793571526", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cognella, INC", + "type_condition": "RENTAL_NEW", + "price_display": "$101.66", + "item_type": "digital" + }, + { + "title": "Introduction to Sociology", + "edition": "N/A", + "author": "Alsup", + "isbn": "9781793571526", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Cognella, INC", + "type_condition": "BUY_NEW", + "price_display": "$112.95", + "item_type": "digital" + } + ] + }, + { + "department": "MKTG", + "course_num": "4154", + "section": "10", + "instructor": "Gil Appel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "6998", + "section": "10", + "instructor": "Holly Dugan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6121", + "section": "10", + "instructor": "Jordan Kuiper", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3190", + "section": "88", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "39", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6995", + "section": "10", + "instructor": "Zoe Szajnfarber", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6301", + "section": "80", + "instructor": "Johnston Hall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8998", + "section": "15", + "instructor": "Royce Francis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3198", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "4199", + "section": "13", + "instructor": "Thiago Moreira", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1005", + "section": "39", + "instructor": "Alexander Downes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "3143", + "section": "10", + "instructor": "David Ashley", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Marketing Research in Practice (Access Code)", + "edition": "3rd", + "author": "Ashley", + "isbn": "9781792492228", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Kendall Hunt Publishing Company", + "type_condition": "BUY_NEW", + "price_display": "$110.75", + "item_type": "print" + } + ] + }, + { + "department": "CHIN", + "course_num": "3162", + "section": "10", + "instructor": "Chen Yang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "3101", + "section": "12", + "instructor": "Ariel Weinberger", + "term_name": "Fall 2023", + "texts": [ + { + "title": "International Economics (RRMCG)", + "edition": "17th", + "author": "Pugel", + "isbn": "9781260004731", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Economics (RRMCG)", + "edition": "17th", + "author": "Pugel", + "isbn": "9781260004731", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Economics", + "edition": "17th", + "author": "Pugel", + "isbn": "9781260484052", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$62.25", + "item_type": "digital" + }, + { + "title": "International Economics", + "edition": "17th", + "author": "Pugel", + "isbn": "9781260484052", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$79.25", + "item_type": "digital" + }, + { + "title": "International Economics", + "edition": "17th", + "author": "Pugel", + "isbn": "9781260484052", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$94.75", + "item_type": "digital" + } + ] + }, + { + "department": "COMM", + "course_num": "6190", + "section": "81", + "instructor": "YoungJu Shin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4198", + "section": "19", + "instructor": "Hernan Abeledo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "4162", + "section": "80", + "instructor": "Gil Appel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "6298", + "section": "10", + "instructor": "Michael Plesniak", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "3850", + "section": "80", + "instructor": "Joost Santos", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6101", + "section": "15", + "instructor": "Andrea Casey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "22", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8291", + "section": "12", + "instructor": "Joshua DeSilva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "2006", + "section": "15", + "instructor": "Mylord Reyes-Tosta", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Puntos de Encuentro w/ Active Learning Code", + "edition": "3rd", + "author": "De La Fuente", + "isbn": "9781793569295", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Cognella, INC", + "type_condition": "BUY_NEW", + "price_display": "$162.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Puntos de encuentro Semester II Active Learning Access", + "edition": "N/A", + "author": "Cognella Inc", + "isbn": "9781793593788", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cognella, INC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.95", + "item_type": "digital" + }, + { + "title": "Puntos de encuentro ebook with Active Learning courseware", + "edition": "N/A", + "author": "Fuente", + "isbn": "9781793569301", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cognella, INC", + "type_condition": "RENTAL_NEW", + "price_display": "$98.96", + "item_type": "digital" + }, + { + "title": "Puntos de encuentro ebook with Active Learning courseware", + "edition": "N/A", + "author": "Fuente", + "isbn": "9781793569301", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cognella, INC", + "type_condition": "BUY_NEW", + "price_display": "$109.95", + "item_type": "digital" + } + ] + }, + { + "department": "CPED", + "course_num": "8998", + "section": "10", + "instructor": "Jonathon Grooms", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "1000", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M25", + "instructor": "Zachary Wolfe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "32", + "instructor": "Dong Quan Nguyen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6998", + "section": "10", + "instructor": "Shaista Khilji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2112", + "section": "11", + "instructor": "Thomas Kelley", + "term_name": "Fall 2023", + "texts": [ + { + "title": "How to Shoot Video that Doesn't Suck", + "edition": "N/A", + "author": "Stockman", + "isbn": "9780761163237", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Workman Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "How to Shoot Video that Doesn't Suck", + "edition": "N/A", + "author": "Stockman", + "isbn": "9780761163237", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Workman Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "How to Shoot Video that Doesn't Suck", + "edition": "N/A", + "author": "Stockman", + "isbn": "9780761163237", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Workman Publishing Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$11.02", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "How to Shoot Video That Doesn't Suck", + "edition": "N/A", + "author": "Stockman", + "isbn": "9780761165293", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hachette Book Group", + "type_condition": "BUY_NEW", + "price_display": "$11.99", + "item_type": "digital" + } + ] + }, + { + "department": "STAT", + "course_num": "1051", + "section": "35", + "instructor": "Xiaoke Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6897", + "section": "11", + "instructor": "Keith Crandall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M31", + "instructor": "Mark Mullen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "6401", + "section": "10", + "instructor": "Anupama Phene", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "6234", + "section": "80D", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "4101", + "section": "10", + "instructor": "Christine Song", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PERS", + "course_num": "2001", + "section": "10", + "instructor": "Maziar Valamotamed", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6002", + "section": "11", + "instructor": "William Adams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M39", + "instructor": "Mark Mullen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8998", + "section": "11", + "instructor": "Joost Santos", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "36", + "instructor": "Subrata Kundu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "1002", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6289", + "section": "10P", + "instructor": "Thomas Choate", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6101", + "section": "16", + "instructor": "Debra Herrmann", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6232", + "section": "10", + "instructor": "Philip Wirtz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M80", + "instructor": "Benjamin Counts", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "41", + "instructor": "Jazmine Newkirk", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "2510", + "section": "10", + "instructor": "Chukwukelue Monwuba", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CLAS", + "course_num": "4901", + "section": "10", + "instructor": "Christopher Rollston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2110W", + "section": "17", + "instructor": "Barrett Pitner", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$79.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$45.99", + "item_type": "digital" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$62.99", + "item_type": "digital" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$80.48", + "item_type": "digital" + } + ] + }, + { + "department": "PSYC", + "course_num": "3170", + "section": "10", + "instructor": "Christina Gee", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Sage Vantage: Clinical Psychology: Science, Practice, and Diversity", + "edition": "6th", + "author": "Pomerantz", + "isbn": "9781071891063", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$93.00", + "item_type": "digital" + } + ] + }, + { + "department": "HIST", + "course_num": "6012", + "section": "10", + "instructor": "Hope Harrison", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3233", + "section": "80", + "instructor": "Astrid Riecken", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8703", + "section": "10", + "instructor": "Jennifer Skillicorn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1311", + "section": "30", + "instructor": "Hyeong-Ah Choi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3244W", + "section": "10", + "instructor": "Janet Steele", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Art of Fact", + "edition": "N/A", + "author": "Kerrane", + "isbn": "9780684846309", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "Simon & Schuster", + "type_condition": "RENTAL_USED", + "price_display": "$8.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Art of Fact", + "edition": "N/A", + "author": "Kerrane", + "isbn": "9780684846309", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$20.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Art of Fact", + "edition": "N/A", + "author": "Kerrane", + "isbn": "9780684846309", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$15.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In Cold Blood", + "edition": "N/A", + "author": "Capote", + "isbn": "9780679745587", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$8.19", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In Cold Blood", + "edition": "N/A", + "author": "Capote", + "isbn": "9780679745587", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In Cold Blood", + "edition": "N/A", + "author": "Capote", + "isbn": "9780679745587", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Literary Journalism", + "edition": "N/A", + "author": "Sims", + "isbn": "9780345382221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Ballantine Books", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Literary Journalism", + "edition": "N/A", + "author": "Sims", + "isbn": "9780345382221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Ballantine Books", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Literary Journalism", + "edition": "N/A", + "author": "Sims", + "isbn": "9780345382221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Ballantine Books", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Thank You for Your Service", + "edition": "N/A", + "author": "Finkel", + "isbn": "9781250056023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Picador", + "type_condition": "RENTAL_USED", + "price_display": "$8.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Thank You for Your Service", + "edition": "N/A", + "author": "Finkel", + "isbn": "9781250056023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Picador", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Thank You for Your Service", + "edition": "N/A", + "author": "Finkel", + "isbn": "9781250056023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Picador", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Thank You for Your Service", + "edition": "N/A", + "author": "Finkel", + "isbn": "9781250056023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Picador", + "type_condition": "RENTAL_NEW", + "price_display": "$13.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CPED", + "course_num": "8354", + "section": "QE1", + "instructor": "A Eakle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "3180", + "section": "10", + "instructor": "John Powers", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HDEV", + "course_num": "8100", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "56", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8203", + "section": "14", + "instructor": "Yulia Aleshina", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "12", + "instructor": "Anne Harrison", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "12", + "instructor": "Hao Wu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "4180", + "section": "10", + "instructor": "Imani Cheers", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "2104", + "section": "31", + "instructor": "Richard Hinton", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "2990", + "section": "80", + "instructor": "Ilana Weltman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "6295", + "section": "10", + "instructor": "Reza Modarres", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6565", + "section": "FCC", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "0920", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6105", + "section": "10", + "instructor": "Karen Wright", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "6262", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "NSC", + "course_num": "2175", + "section": "10", + "instructor": "Jacob Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "1002", + "section": "12", + "instructor": "Saadia Erradi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8999", + "section": "17", + "instructor": "Richard Lanthier", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1085", + "section": "10", + "instructor": "Michael Schmitz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8250", + "section": "10", + "instructor": "Joseph Gorin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2101", + "section": "17", + "instructor": "Nilofar Sakhi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4366", + "section": "82", + "instructor": "Joel Klein", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "TSTD", + "course_num": "6999", + "section": "10", + "instructor": "Lisa Neirotti", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEHD", + "course_num": "8101", + "section": "13", + "instructor": "James Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "6330", + "section": "10", + "instructor": "Chen Zeng", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6401", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "1011", + "section": "10", + "instructor": "Illa Moskowitz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1232", + "section": "10", + "instructor": "Robert Won", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6999", + "section": "10", + "instructor": "Sarah Denes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "3110", + "section": "10", + "instructor": "Mary Barron", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1023", + "section": "10", + "instructor": "Norman Brenner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M73", + "instructor": "Paul Michiels", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Miniature Guide to Critical Thinking Concepts & Tools", + "edition": "8th", + "author": "Elder", + "isbn": "9781538134948", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_NEW", + "price_display": "$13.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Miniature Guide to Critical Thinking Concepts & Tools", + "edition": "8th", + "author": "Elder", + "isbn": "9781538134948", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_NEW", + "price_display": "$10.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Miniature Guide to Critical Thinking Concepts & Tools", + "edition": "8th", + "author": "Elder", + "isbn": "9781538134948", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Miniature Guide to Critical Thinking Concepts & Tools", + "edition": "8th", + "author": "Elder", + "isbn": "9781538134948", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_USED", + "price_display": "$5.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning How to Learn", + "edition": "N/A", + "author": "Oakley", + "isbn": "9780143132547", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning How to Learn", + "edition": "N/A", + "author": "Oakley", + "isbn": "9780143132547", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning How to Learn", + "edition": "N/A", + "author": "Oakley", + "isbn": "9780143132547", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning How to Learn", + "edition": "N/A", + "author": "Oakley", + "isbn": "9780143132547", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writer's Reference", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319169404", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$119.75", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Writer's Reference", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319169404", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_USED", + "price_display": "$90.00", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Writer's Reference", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319169404", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_USED", + "price_display": "$50.30", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "The Miniature Guide to Critical Thinking Concepts and Tools", + "edition": "8th", + "author": "Paul", + "isbn": "9781538134955", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$11.00", + "item_type": "digital" + }, + { + "title": "A Writer's Reference", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319332969", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$43.99", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "MV", + "instructor": "Elisa Hovander", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "6204", + "section": "10", + "instructor": "Loretta DiPietro", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8998", + "section": "16", + "instructor": "Richard Lanthier", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "0920", + "section": "10", + "instructor": "Nicole Davidson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "2711W", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "6095", + "section": "80", + "instructor": "Michele Carlson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "43", + "instructor": "Erin Sonn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1002", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3188", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6122", + "section": "10", + "instructor": "Tamara Ritsema", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6998", + "section": "14", + "instructor": "Joseph Barbera", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "58", + "instructor": "Rebecca Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6014", + "section": "10", + "instructor": "Anil Nathan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Microeconomics: Intuitive Approach", + "edition": "N/A", + "author": "Nechyba", + "isbn": "9781305115941", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$300.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Microeconomics: Intuitive Approach", + "edition": "N/A", + "author": "Nechyba", + "isbn": "9781305115941", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$225.19", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Microeconomics: Intuitive Approach", + "edition": "N/A", + "author": "Nechyba", + "isbn": "9781305115941", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$120.10", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Microeconomics: Intuitive Approach", + "edition": "N/A", + "author": "Nechyba", + "isbn": "9781305115941", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$225.25", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "STAT", + "course_num": "6210", + "section": "10", + "instructor": "Yinglei Lai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "21", + "instructor": "James Hahn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6137", + "section": "11", + "instructor": "Jennifer Brinkerhoff", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6998", + "section": "22", + "instructor": "Volker Sorger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "8998", + "section": "10", + "instructor": "David Silverman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PORT", + "course_num": "2010", + "section": "10", + "instructor": "Barbara Zocal Da Silva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6015", + "section": "23", + "instructor": "Karina Lora", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6008", + "section": "11", + "instructor": "Rachel Emas", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6235", + "section": "80D", + "instructor": "Senan Uyanik", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "2990", + "section": "10", + "instructor": "William Boyce", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "2118", + "section": "34", + "instructor": "Joshua Landon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6112", + "section": "10", + "instructor": "Brandon Beattie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2105", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3187", + "section": "89", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2101", + "section": "12", + "instructor": "Melissa Milne", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2475", + "section": "10", + "instructor": "Mike Mochizuki", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOMP", + "course_num": "6995", + "section": "10", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "6402", + "section": "10", + "instructor": "Mohammad Faghfoory", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Glorious Qur'an: Text & Explanatory Translation", + "edition": "N/A", + "author": "Pickthall", + "isbn": "9781879402164", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "1999", + "publisher": "Tahrike Tarsile Quran, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Glorious Qur'an: Text & Explanatory Translation", + "edition": "N/A", + "author": "Pickthall", + "isbn": "9781879402164", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "1999", + "publisher": "Tahrike Tarsile Quran, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$9.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Koran Interpreted", + "edition": "N/A", + "author": "Arberry", + "isbn": "9780684825076", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "1955", + "publisher": "Simon & Schuster", + "type_condition": "RENTAL_USED", + "price_display": "$10.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Koran Interpreted", + "edition": "N/A", + "author": "Arberry", + "isbn": "9780684825076", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "1955", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$26.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Koran Interpreted", + "edition": "N/A", + "author": "Arberry", + "isbn": "9780684825076", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "1955", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Koran Interpreted", + "edition": "N/A", + "author": "Arberry", + "isbn": "9780684825076", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "1955", + "publisher": "Simon & Schuster", + "type_condition": "RENTAL_NEW", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding the Qur'an", + "edition": "N/A", + "author": "Haleem", + "isbn": "9781845117894", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "I. B. Tauris & Company, Limited", + "type_condition": "BUY_NEW", + "price_display": "$32.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding the Qur'an", + "edition": "N/A", + "author": "Haleem", + "isbn": "9781845117894", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "I. B. Tauris & Company, Limited", + "type_condition": "BUY_USED", + "price_display": "$24.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hadith", + "edition": "N/A", + "author": "Brown", + "isbn": "9781851686636", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Oneworld Publications", + "type_condition": "RENTAL_USED", + "price_display": "$11.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hadith", + "edition": "N/A", + "author": "Brown", + "isbn": "9781851686636", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Oneworld Publications", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hadith", + "edition": "N/A", + "author": "Brown", + "isbn": "9781851686636", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Oneworld Publications", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Textbook of Hadith Studies", + "edition": "N/A", + "author": "Kamali", + "isbn": "9780860374350", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Consortium Press", + "type_condition": "BUY_NEW", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Textbook of Hadith Studies", + "edition": "N/A", + "author": "Kamali", + "isbn": "9780860374350", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Consortium Press", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Story of the Qur'an", + "edition": "2nd", + "author": "Mattson", + "isbn": "9780470673492", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Blackwell Publishing, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$13.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Story of the Qur'an", + "edition": "2nd", + "author": "Mattson", + "isbn": "9780470673492", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Blackwell Publishing, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$34.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Story of the Qur'an", + "edition": "2nd", + "author": "Mattson", + "isbn": "9780470673492", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Blackwell Publishing, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$25.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Story of the Qur'an", + "edition": "2nd", + "author": "Mattson", + "isbn": "9780470673492", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Blackwell Publishing, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$27.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Study Quran", + "edition": "N/A", + "author": "Nasr", + "isbn": "9780061125874", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "HarperCollins Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Study Quran", + "edition": "N/A", + "author": "Nasr", + "isbn": "9780061125874", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$54.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Study Quran", + "edition": "N/A", + "author": "Nasr", + "isbn": "9780061125874", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Study Quran", + "edition": "N/A", + "author": "Nasr", + "isbn": "9780061125874", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "HarperCollins Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$41.24", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Major Themes of Qur'an", + "edition": "2nd", + "author": "Rahman", + "isbn": "9780226702865", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "University of Chicago Press", + "type_condition": "RENTAL_USED", + "price_display": "$9.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Major Themes of Qur'an", + "edition": "2nd", + "author": "Rahman", + "isbn": "9780226702865", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$24.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Major Themes of Qur'an", + "edition": "2nd", + "author": "Rahman", + "isbn": "9780226702865", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "University of Chicago Press", + "type_condition": "BUY_USED", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Major Themes of Qur'an", + "edition": "2nd", + "author": "Rahman", + "isbn": "9780226702865", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "University of Chicago Press", + "type_condition": "RENTAL_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "English Interpretation of the Holy Quran", + "edition": "N/A", + "author": "Ali", + "isbn": "9789694320007", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Lushena Books", + "type_condition": "BUY_NEW", + "price_display": "$28.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "English Interpretation of the Holy Quran", + "edition": "N/A", + "author": "Ali", + "isbn": "9789694320007", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Lushena Books", + "type_condition": "BUY_USED", + "price_display": "$21.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Qur'an in Islam", + "edition": "N/A", + "author": "Tabatabai", + "isbn": "9781502763433", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "CreateSpace", + "type_condition": "BUY_NEW", + "price_display": "$14.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Qur'an in Islam", + "edition": "N/A", + "author": "Tabatabai", + "isbn": "9781502763433", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "CreateSpace", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Key Terms of the Qur'an", + "edition": "N/A", + "author": "Sinai", + "isbn": "9780691241319", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$60.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Key Terms of the Qur'an", + "edition": "N/A", + "author": "Sinai", + "isbn": "9780691241319", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$45.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "A Textbook of Hadith Studies", + "edition": "N/A", + "author": "Hashim", + "isbn": "9780860375739", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$9.50", + "item_type": "digital" + }, + { + "title": "The Story of the Qur'an", + "edition": "2nd", + "author": "Mattson", + "isbn": "9781118257104", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "item_type": "digital" + }, + { + "title": "The Study Quran", + "edition": "N/A", + "author": "Nasr", + "isbn": "9780062227621", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$33.99", + "item_type": "digital" + }, + { + "title": "Key Terms of the Qur'an", + "edition": "N/A", + "author": "Sinai", + "isbn": "9780691241326", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$60.00", + "item_type": "digital" + } + ] + }, + { + "department": "PSYC", + "course_num": "1001", + "section": "11", + "instructor": "Stephen Forssell", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Psychology Package (Loose-Leaf with Achieve 1-Term Access)", + "edition": "6th", + "author": "Schacter", + "isbn": "9781319527815", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$180.50", + "item_type": "print" + }, + { + "title": "Achieve for Psychology (1-Term Access)", + "edition": "6th", + "author": "Schacter", + "isbn": "9781319469740", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$122.50", + "item_type": "print" + } + ] + }, + { + "department": "PSYC", + "course_num": "1001", + "section": "12", + "instructor": "Sarah Calabrese", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Pearson eText for Psychology -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "6th", + "author": "Ciccarelli", + "isbn": "9780137497928", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Psychology", + "edition": "6th", + "author": "Ciccarelli", + "isbn": "9780135182772", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$98.00", + "item_type": "digital" + }, + { + "title": "Psychology", + "edition": "6th", + "author": "Ciccarelli", + "isbn": "9780135182789", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$98.00", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "6262", + "section": "10", + "instructor": "Dante Verme", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "3520", + "section": "30", + "instructor": "Kie-Bum Eom", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "13", + "instructor": "Lijie Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "0940", + "section": "15", + "instructor": "Curtis Pyke", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "3111W", + "section": "10", + "instructor": "Matthew Barberio", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "1010", + "section": "11", + "instructor": "Elizabeth Gray", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6486", + "section": "11", + "instructor": "Christopher Mores", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOMP", + "course_num": "8998", + "section": "10", + "instructor": "Chester Sherwood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6011", + "section": "10", + "instructor": "Dawn Rigby", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3190", + "section": "15", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "22", + "instructor": "Rahul Simha", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "22", + "instructor": "Rahul Simha", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "23", + "instructor": "Stephen Hsu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1012", + "section": "30", + "instructor": "Joseph Goldfrank", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "4201W", + "section": "32", + "instructor": "Fallon Goodman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1051", + "section": "41", + "instructor": "Michael Moses", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "47", + "instructor": "Muhammad Mehdi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HEBR", + "course_num": "3001", + "section": "10", + "instructor": "Orian Zakai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "3990", + "section": "80", + "instructor": "Eyal Aviv", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Satipatthana Meditation", + "edition": "N/A", + "author": "Analayo", + "isbn": "9781911407102", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Windhorse Publications", + "type_condition": "BUY_NEW", + "price_display": "$29.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Satipatthana Meditation", + "edition": "N/A", + "author": "Analayo", + "isbn": "9781911407102", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Windhorse Publications", + "type_condition": "BUY_USED", + "price_display": "$22.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Boundless Heart", + "edition": "N/A", + "author": "Feldman", + "isbn": "9781611803730", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Shambhala Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Boundless Heart", + "edition": "N/A", + "author": "Feldman", + "isbn": "9781611803730", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Shambhala Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bliss of Inner Fire", + "edition": "N/A", + "author": "Yeshe", + "isbn": "9780861711369", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Wisdom Publications", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bliss of Inner Fire", + "edition": "N/A", + "author": "Yeshe", + "isbn": "9780861711369", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Wisdom Publications", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mindfulness in Plain English", + "edition": "20th", + "author": "Gunaratana", + "isbn": "9780861719068", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Wisdom Publications", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mindfulness in Plain English", + "edition": "20th", + "author": "Gunaratana", + "isbn": "9780861719068", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Wisdom Publications", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Mindfulness in Plain English", + "edition": "20th", + "author": "Gunaratana", + "isbn": "9780861719068", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Wisdom Publications", + "type_condition": "RENTAL_USED", + "price_display": "$7.18", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wakeful Body", + "edition": "N/A", + "author": "Baker", + "isbn": "9781611808742", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Shambhala Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wakeful Body", + "edition": "N/A", + "author": "Baker", + "isbn": "9781611808742", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Shambhala Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "IAFF", + "course_num": "6303", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6378", + "section": "81", + "instructor": "Shira Robinson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1063", + "section": "11", + "instructor": "Danielle Edgar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "30", + "instructor": "Matthew Rau", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2373", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "6999", + "section": "80", + "instructor": "Michele Carlson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1007", + "section": "12", + "instructor": "Michael Pohrivchak", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "RENTAL_USED", + "price_display": "$48.93", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "BUY_USED", + "price_display": "$87.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "RENTAL_NEW", + "price_display": "$87.38", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "BUY_NEW", + "price_display": "$116.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "The Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798907", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$54.95", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "6000", + "section": "11", + "instructor": "Katie Fernandez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6103", + "section": "12", + "instructor": "Ning Rui", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "1001", + "section": "13", + "instructor": "Sepideh Vistamehr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2241", + "section": "10", + "instructor": "Eric Lawrence", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2199", + "section": "10", + "instructor": "Joseph Meisel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "6478", + "section": "10", + "instructor": "Marc Lynch", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Battle for Syria", + "edition": "N/A", + "author": "Phillips", + "isbn": "9780300249910", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$25.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Battle for Syria", + "edition": "N/A", + "author": "Phillips", + "isbn": "9780300249910", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Yale University Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Relations in the Middle East", + "edition": "N/A", + "author": "Stein", + "isbn": "9781316633021", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$30.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Relations in the Middle East", + "edition": "N/A", + "author": "Stein", + "isbn": "9781316633021", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$23.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dialogues in Arab Politics", + "edition": "N/A", + "author": "Barnett", + "isbn": "9780231109192", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$36.00", + "item_type": "print" + }, + { + "title": "Dialogues in Arab Politics", + "edition": "N/A", + "author": "Barnett", + "isbn": "9780231109192", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$27.00", + "item_type": "print" + }, + { + "title": "International Relations of the Persian Gulf", + "edition": "N/A", + "author": "Gause", + "isbn": "9780521137300", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$34.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Relations of the Persian Gulf", + "edition": "N/A", + "author": "Gause", + "isbn": "9780521137300", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$26.24", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Relations of the Persian Gulf", + "edition": "N/A", + "author": "Gause", + "isbn": "9780521137300", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Relations of the Persian Gulf", + "edition": "N/A", + "author": "Gause", + "isbn": "9780521137300", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_USED", + "price_display": "$14.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "New Arab Wars :Uprisings & Anarchy in the Middle East", + "edition": "N/A", + "author": "Lynch", + "isbn": "9781610397728", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Public Affairs", + "type_condition": "BUY_NEW", + "price_display": "$16.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "New Arab Wars :Uprisings & Anarchy in the Middle East", + "edition": "N/A", + "author": "Lynch", + "isbn": "9781610397728", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Public Affairs", + "type_condition": "RENTAL_NEW", + "price_display": "$12.74", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "New Arab Wars :Uprisings & Anarchy in the Middle East", + "edition": "N/A", + "author": "Lynch", + "isbn": "9781610397728", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Public Affairs", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Politics of the Middle East", + "edition": "N/A", + "author": "Hinnebusch", + "isbn": "9780719095252", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Manchester University Press", + "type_condition": "BUY_NEW", + "price_display": "$38.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Politics of the Middle East", + "edition": "N/A", + "author": "Hinnebusch", + "isbn": "9780719095252", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Manchester University Press", + "type_condition": "BUY_USED", + "price_display": "$29.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Triadic Coercion", + "edition": "N/A", + "author": "Pearlman", + "isbn": "9780231171854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Triadic Coercion", + "edition": "N/A", + "author": "Pearlman", + "isbn": "9780231171854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Money, Markets, & Monarchies", + "edition": "N/A", + "author": "Hanieh", + "isbn": "9781108453158", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$33.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Money, Markets, & Monarchies", + "edition": "N/A", + "author": "Hanieh", + "isbn": "9781108453158", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$26.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Money, Markets, & Monarchies", + "edition": "N/A", + "author": "Hanieh", + "isbn": "9781108453158", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$24.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Money, Markets, & Monarchies", + "edition": "N/A", + "author": "Hanieh", + "isbn": "9781108453158", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_USED", + "price_display": "$13.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Justice for Some", + "edition": "N/A", + "author": "Erakat", + "isbn": "9780804798259", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Stanford University Press", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Justice for Some", + "edition": "N/A", + "author": "Erakat", + "isbn": "9780804798259", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Stanford University Press", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Justice for Some", + "edition": "N/A", + "author": "Erakat", + "isbn": "9781503613577", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Stanford University Press", + "type_condition": "BUY_NEW", + "price_display": "$19.74", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Justice for Some", + "edition": "N/A", + "author": "Erakat", + "isbn": "9781503613577", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Stanford University Press", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Justice for Some", + "edition": "1st", + "author": "Erakat", + "isbn": "9781503608832", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Stanford University Press", + "type_condition": "BUY_NEW", + "price_display": "$14.75", + "item_type": "digital" + }, + { + "title": "The international politics of the Middle East", + "edition": "2nd", + "author": "Hinnebusch", + "isbn": "9780719099090", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$24.00", + "item_type": "digital" + }, + { + "title": "The Battle for Syria", + "edition": "N/A", + "author": "Phillips", + "isbn": "9780300262032", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$25.00", + "item_type": "digital" + } + ] + }, + { + "department": "PSC", + "course_num": "2220", + "section": "10", + "instructor": "Galen Stocking", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EPID", + "course_num": "8998", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6419", + "section": "10", + "instructor": "Sarah Baird", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "3199", + "section": "13", + "instructor": "Juan Klopper", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1003", + "section": "38", + "instructor": "Adam Dean", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2213", + "section": "10", + "instructor": "Phillip Wininger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6161", + "section": "32", + "instructor": "Margaux Repellin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6514", + "section": "10", + "instructor": "Howard Straker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3190", + "section": "84", + "instructor": "Aaron Bateman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "0940", + "section": "11", + "instructor": "Shaista Khilji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GTCH", + "course_num": "3101", + "section": "10", + "instructor": "Jonathon Grooms", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M76", + "instructor": "Andrew Art", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6300", + "section": "10", + "instructor": "Kenneth Danger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8101", + "section": "16", + "instructor": "Dwayne Wright", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6262", + "section": "DE", + "instructor": "Homayoun Khamooshi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3187", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2305W", + "section": "10", + "instructor": "Kyla Sommers", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6032", + "section": "10", + "instructor": "Michael Worth", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Fundraising", + "edition": "N/A", + "author": "Worth", + "isbn": "9781483319520", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$87.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fundraising", + "edition": "N/A", + "author": "Worth", + "isbn": "9781483319520", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$65.63", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fundraising", + "edition": "N/A", + "author": "Worth", + "isbn": "9781483319520", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$35.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fundraising", + "edition": "N/A", + "author": "Worth", + "isbn": "9781483319520", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$65.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fundraising", + "edition": "N/A", + "author": "Worth", + "isbn": "9781483393582", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$36.00", + "item_type": "digital" + }, + { + "title": "Fundraising", + "edition": "N/A", + "author": "Worth", + "isbn": "9781483393582", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$40.50", + "item_type": "digital" + }, + { + "title": "Fundraising", + "edition": "N/A", + "author": "Worth", + "isbn": "9781483393582", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$45.00", + "item_type": "digital" + }, + { + "title": "Fundraising", + "edition": "1st", + "author": "Worth", + "isbn": "9781483393582", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$65.25", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "3132", + "section": "11", + "instructor": "Robert Canales", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Maxwell's Understanding Environmental Health", + "edition": "3rd", + "author": "Falta", + "isbn": "9781284207224", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$90.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Maxwell's Understanding Environmental Health", + "edition": "3rd", + "author": "Falta", + "isbn": "9781284207224", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$68.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Maxwell's Understanding Environmental Health: How We Live in the World", + "edition": "3rd", + "author": "Falta", + "isbn": "9781284207286", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$59.12", + "item_type": "digital" + } + ] + }, + { + "department": "PSC", + "course_num": "2455", + "section": "80", + "instructor": "Michael Barnett", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3466", + "section": "80", + "instructor": "Sean Aday", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2439", + "section": "11", + "instructor": "Heidi Hiebert", + "term_name": "Fall 2023", + "texts": [ + { + "title": "International Political Economy", + "edition": "7th", + "author": "Oatley", + "isbn": "9781032232669", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$89.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Political Economy", + "edition": "7th", + "author": "Oatley", + "isbn": "9781032232669", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$67.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Global Political Economy", + "edition": "6th", + "author": "Ravenhill", + "isbn": "9780198820642", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$81.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Global Political Economy", + "edition": "6th", + "author": "Ravenhill", + "isbn": "9780198820642", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$61.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Global Political Economy", + "edition": "6th", + "author": "Ravenhill", + "isbn": "9780192552693", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$42.99", + "item_type": "digital" + }, + { + "title": "Global Political Economy", + "edition": "6th", + "author": "Ravenhill", + "isbn": "9780192552693", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$49.60", + "item_type": "digital" + }, + { + "title": "Global Political Economy", + "edition": "6th", + "author": "Ravenhill", + "isbn": "9780192552693", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$66.14", + "item_type": "digital" + }, + { + "title": "International Political Economy", + "edition": "7th", + "author": "Oatley", + "isbn": "9781000771695", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$89.95", + "item_type": "digital" + } + ] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "30", + "instructor": "Dong Quan Nguyen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6516", + "section": "11", + "instructor": "Sarah Denes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6431", + "section": "80", + "instructor": "Mohamed Tamer Refaei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "3176", + "section": "10", + "instructor": "Douglas Barry", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "2233", + "section": "38", + "instructor": "Michael Coleman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "40", + "instructor": "Kraemer Clayton", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "2000", + "section": "11", + "instructor": "Jill Kasle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1005", + "section": "37", + "instructor": "Alexander Downes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6492", + "section": "10", + "instructor": "Nino Paichadze", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6746", + "section": "10", + "instructor": "Ramien Pierre", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "2047", + "section": "82", + "instructor": "Steven Livingston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3908", + "section": "23", + "instructor": "Arkady Yerukhimovich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1002", + "section": "37", + "instructor": "Forrest Maltzman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6998", + "section": "16", + "instructor": "Thomas Mazzuchi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8999", + "section": "19", + "instructor": "Arshad Ali", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "2184", + "section": "32", + "instructor": "Murli Gupta", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6295", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "4129", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2184", + "section": "10", + "instructor": "Chiara Cooper", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "1002", + "section": "M32", + "instructor": "Nikolay Shiklomanov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1311", + "section": "MV", + "instructor": "Jennifer Bertolet", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "38", + "instructor": "Joshua Sparks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8354", + "section": "QE4", + "instructor": "Curtis Pyke", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6898", + "section": "12", + "instructor": "Robert Zirkle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6378", + "section": "82", + "instructor": "Sina Azodi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "6232", + "section": "10", + "instructor": "Loretta DiPietro", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6101", + "section": "10", + "instructor": "Kenneth Hergenrather", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3194", + "section": "81", + "instructor": "Steven Livingston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2490", + "section": "80", + "instructor": "Emily Bock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "3760", + "section": "80", + "instructor": "Johan van Dorp", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "6268", + "section": "US", + "instructor": "Karin Spencer", + "term_name": "Fall 2023", + "texts": [ + { + "title": "What Happened to You?", + "edition": "N/A", + "author": "Winfrey", + "isbn": "9781250223180", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Macmillan Trade", + "type_condition": "BUY_NEW", + "price_display": "$28.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "What Happened to You?", + "edition": "N/A", + "author": "Winfrey", + "isbn": "9781250223180", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Macmillan Trade", + "type_condition": "RENTAL_NEW", + "price_display": "$21.74", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "What Happened to You?", + "edition": "N/A", + "author": "Winfrey", + "isbn": "9781250223180", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Macmillan Trade", + "type_condition": "RENTAL_USED", + "price_display": "$12.76", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "What Happened to You?", + "edition": "N/A", + "author": "Winfrey", + "isbn": "9781250223180", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Macmillan Trade", + "type_condition": "BUY_USED", + "price_display": "$21.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Infants & Children: Prenatal Through Middle Childhood (LL)", + "edition": "N/A", + "author": "Berk", + "isbn": "9781071895566", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$120.00", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Infants & Children: Prenatal Through Middle Childhood (LL)", + "edition": "N/A", + "author": "Berk", + "isbn": "9781071895566", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$90.00", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Infants and Children", + "edition": "9th", + "author": "Berk", + "isbn": "9781071895139", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$59.99", + "item_type": "digital" + }, + { + "title": "Infants and Children", + "edition": "9th", + "author": "Berk", + "isbn": "9781071895139", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$67.49", + "item_type": "digital" + }, + { + "title": "Infants and Children", + "edition": "9th", + "author": "Berk", + "isbn": "9781071895139", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$75.00", + "item_type": "digital" + }, + { + "title": "Infants and Children", + "edition": "9th", + "author": "Berk", + "isbn": "9781071895139", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$108.74", + "item_type": "digital" + } + ] + }, + { + "department": "SEAS", + "course_num": "0930", + "section": "CE", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6311", + "section": "11", + "instructor": "Korel Gundem", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "21", + "instructor": "Philippe Bardet", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6501", + "section": "80", + "instructor": "Edwin Lo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "14", + "instructor": "Srinivasan Balaji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6262", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "6346", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "56", + "instructor": "Abigail Nelson-Miller", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2181", + "section": "10", + "instructor": "Daniel Chomsky", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HLWL", + "course_num": "1108", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2173", + "section": "11", + "instructor": "Shaina Ward", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Trager's the Law of Journalism & Mass Communication", + "edition": "8th", + "author": "Ekstrand", + "isbn": "9781071857922", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$186.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Trager's the Law of Journalism & Mass Communication", + "edition": "8th", + "author": "Ekstrand", + "isbn": "9781071857922", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$140.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Tragers The Law of Journalism and Mass Communication", + "edition": "8th", + "author": "Ekstrand", + "isbn": "9781071857908", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$59.99", + "item_type": "digital" + }, + { + "title": "Tragers The Law of Journalism and Mass Communication", + "edition": "8th", + "author": "Ekstrand", + "isbn": "9781071857908", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$67.49", + "item_type": "digital" + }, + { + "title": "Tragers The Law of Journalism and Mass Communication", + "edition": "8th", + "author": "Ekstrand", + "isbn": "9781071857908", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$75.00", + "item_type": "digital" + }, + { + "title": "Tragers The Law of Journalism and Mass Communication", + "edition": "8th", + "author": "Ekstrand", + "isbn": "9781071857908", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$108.74", + "item_type": "digital" + } + ] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "42", + "instructor": "Dong Quan Nguyen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "2110", + "section": "32", + "instructor": "Amir Aslani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "6214", + "section": "10", + "instructor": "Lien-Yung Kao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOMP", + "course_num": "8302", + "section": "10", + "instructor": "Briana Pobiner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UNIV", + "course_num": "CONS", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6998", + "section": "13", + "instructor": "Erica Gralla", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6280", + "section": "10", + "instructor": "Joseph Schmitthenner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "0940", + "section": "14", + "instructor": "Jonathon Grooms", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3950W", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1051", + "section": "13", + "instructor": "Francois Tuamokumo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "6999", + "section": "11", + "instructor": "Holly Dugan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "1502", + "section": "13", + "instructor": "Matthew Eich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2164", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "MV2", + "instructor": "Mark Croatti", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Cases & Concepts etc (w/Ebook & AC)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532890", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$90.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cases & Concepts etc (w/Ebook & AC)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532890", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$121.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cases & Concepts etc (w/Ebook & AC)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532890", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_USED", + "price_display": "$50.82", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cases & Concepts etc (w/Ebook & AC)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532890", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_NEW", + "price_display": "$96.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cases and Concepts in Comparative Politics (Second Edition)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532869", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$57.07", + "item_type": "digital" + }, + { + "title": "Cases and Concepts in Comparative Politics (Second Edition)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532869", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$72.63", + "item_type": "digital" + } + ] + }, + { + "department": "CCAS", + "course_num": "6154", + "section": "10", + "instructor": "Chad Heap", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6155", + "section": "11", + "instructor": "Delishia Pittman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "1033", + "section": "MV4", + "instructor": "Bethany Kung", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6000", + "section": "10", + "instructor": "Lori Brainard", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intuitionist", + "edition": "N/A", + "author": "Whitehead", + "isbn": "9780385493000", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Doubleday Books", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intuitionist", + "edition": "N/A", + "author": "Whitehead", + "isbn": "9780385493000", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Doubleday Books", + "type_condition": "RENTAL_USED", + "price_display": "$6.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intuitionist", + "edition": "N/A", + "author": "Whitehead", + "isbn": "9780385493000", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Doubleday Books", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intuitionist", + "edition": "N/A", + "author": "Whitehead", + "isbn": "9780385493000", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Doubleday Books", + "type_condition": "RENTAL_NEW", + "price_display": "$10.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Heat & Light", + "edition": "N/A", + "author": "Haigh", + "isbn": "9780061763496", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$14.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Heat & Light", + "edition": "N/A", + "author": "Haigh", + "isbn": "9780061763496", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "HarperCollins Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$6.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Heat & Light", + "edition": "N/A", + "author": "Haigh", + "isbn": "9780061763496", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Recitatif", + "edition": "N/A", + "author": "Morrison", + "isbn": "9780593556641", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Recitatif", + "edition": "N/A", + "author": "Morrison", + "isbn": "9780593556641", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "STAT", + "course_num": "1051", + "section": "33", + "instructor": "Hamidreza Semiyari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2410W", + "section": "86", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6185", + "section": "12", + "instructor": "Kenneth Hergenrather", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2010", + "section": "81", + "instructor": "Nicole Ivy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1112", + "section": "10", + "instructor": "Akos Vertes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M43", + "instructor": "Andrew Gretes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2185", + "section": "10", + "instructor": "Kristin Eliason", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Essen of Victimology", + "edition": "N/A", + "author": "Yager", + "isbn": "9781543829334", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Aspen Publishing", + "type_condition": "BUY_NEW", + "price_display": "$140.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Victimology", + "edition": "N/A", + "author": "Yager", + "isbn": "9781543829334", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Aspen Publishing", + "type_condition": "BUY_USED", + "price_display": "$105.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essentials of Victimology", + "edition": "N/A", + "author": "Yager", + "isbn": "9781543829341", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Aspen Publishing", + "type_condition": "BUY_NEW", + "price_display": "$146.95", + "item_type": "digital" + } + ] + }, + { + "department": "EAP", + "course_num": "6110", + "section": "14", + "instructor": "Dmitri Stanchevici", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6801", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "6373", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "1101", + "section": "11", + "instructor": "Tamara Henry", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Public Health 101 w/COVID Access Code", + "edition": "3rd", + "author": "Riegelman", + "isbn": "9781284241594", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$97.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Public Health 101 w/COVID Access Code", + "edition": "3rd", + "author": "Riegelman", + "isbn": "9781284241594", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$41.14", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Public Health 101 w/COVID Access Code", + "edition": "3rd", + "author": "Riegelman", + "isbn": "9781284241594", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$73.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Public Health 101: Improving Community Health", + "edition": "3rd", + "author": "Riegelman", + "isbn": "9781284118469", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$63.67", + "item_type": "digital" + } + ] + }, + { + "department": "PPPA", + "course_num": "6066", + "section": "10", + "instructor": "Peter Linquiti", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Economics & the Environment", + "edition": "9th", + "author": "Goodstein", + "isbn": "9781119693505", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$103.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Economics & the Environment", + "edition": "9th", + "author": "Goodstein", + "isbn": "9781119693505", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$78.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Economics and the Environment", + "edition": "9th", + "author": "Goodstein", + "isbn": "9781119693314", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$28.14", + "item_type": "digital" + }, + { + "title": "Economics and the Environment", + "edition": "9th", + "author": "Goodstein", + "isbn": "9781119693314", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$67.00", + "item_type": "digital" + } + ] + }, + { + "department": "CPED", + "course_num": "8999", + "section": "17", + "instructor": "Christine Nganga", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "6202", + "section": "31", + "instructor": "Todd Miller", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "3135", + "section": "30", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M4", + "instructor": "Danika Myers", + "term_name": "Fall 2023", + "texts": [ + { + "title": "One with Others", + "edition": "N/A", + "author": "Wright", + "isbn": "9781556593888", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2010", + "publisher": "Copper Canyon Press", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "One with Others", + "edition": "N/A", + "author": "Wright", + "isbn": "9781556593888", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2010", + "publisher": "Copper Canyon Press", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Zong!", + "edition": "N/A", + "author": "Philip", + "isbn": "9780819571694", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Wesleyan University Press", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Zong!", + "edition": "N/A", + "author": "Philip", + "isbn": "9780819571694", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Wesleyan University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$12.32", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Zong!", + "edition": "N/A", + "author": "Philip", + "isbn": "9780819571694", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Wesleyan University Press", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Whereas", + "edition": "N/A", + "author": "Soldier", + "isbn": "9781555977672", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Graywolf", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Whereas", + "edition": "N/A", + "author": "Soldier", + "isbn": "9781555977672", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Graywolf", + "type_condition": "RENTAL_NEW", + "price_display": "$8.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Whereas", + "edition": "N/A", + "author": "Soldier", + "isbn": "9781555977672", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2017", + "publisher": "Graywolf", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Lake Superior", + "edition": "N/A", + "author": "Niedecker", + "isbn": "9781933517667", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Wave Books C/O Consortium (Perseus) per the pub \"stop sending orders to the editorial office\"", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Lake Superior", + "edition": "N/A", + "author": "Niedecker", + "isbn": "9781933517667", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2013", + "publisher": "Wave Books C/O Consortium (Perseus) per the pub \"stop sending orders to the editorial office\"", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Field Study", + "edition": "N/A", + "author": "Sebree", + "isbn": "9780374539023", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Field Study", + "edition": "N/A", + "author": "Sebree", + "isbn": "9780374539023", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sand Opera", + "edition": "N/A", + "author": "Metres", + "isbn": "9781938584091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Alice James Books", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sand Opera", + "edition": "N/A", + "author": "Metres", + "isbn": "9781938584091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Alice James Books", + "type_condition": "RENTAL_NEW", + "price_display": "$12.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sand Opera", + "edition": "N/A", + "author": "Metres", + "isbn": "9781938584091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Alice James Books", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "One With Others", + "edition": "N/A", + "author": "Wright", + "isbn": "9781619320161", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "AUSABLE PRESS", + "type_condition": "BUY_NEW", + "price_display": "$10.00", + "item_type": "digital" + }, + { + "title": "Sand Opera", + "edition": "N/A", + "author": "Metres", + "isbn": "9781938584237", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Alice James Books", + "type_condition": "BUY_NEW", + "price_display": "$10.75", + "item_type": "digital" + } + ] + }, + { + "department": "MKTG", + "course_num": "4148", + "section": "10", + "instructor": "Lynda Maddox", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Contemporary Advertising & Integrated Marketing Communications (RRMCG)", + "edition": "17th", + "author": "Arens", + "isbn": "9781266128882", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2024", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Contemporary Advertising & Integrated Marketing Communications (RRMCG)", + "edition": "17th", + "author": "Arens", + "isbn": "9781266128882", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2024", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "BUY_USED", + "price_display": "$180.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Contemporary Advertising & Integrated Marketing Communications (RRMCG)", + "edition": "17th", + "author": "Arens", + "isbn": "9781266128882", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2024", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "BUY_NEW", + "price_display": "$240.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Contemporary Advertising", + "edition": "17th", + "author": "Weigold", + "isbn": "9781266855801", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$67.50", + "item_type": "digital" + }, + { + "title": "Contemporary Advertising", + "edition": "17th", + "author": "Weigold", + "isbn": "9781266855801", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$84.50", + "item_type": "digital" + }, + { + "title": "Contemporary Advertising", + "edition": "17th", + "author": "Weigold", + "isbn": "9781266855801", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$105.50", + "item_type": "digital" + } + ] + }, + { + "department": "HIST", + "course_num": "2340W", + "section": "10", + "instructor": "James Hershberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2214", + "section": "10", + "instructor": "Toni Marsh", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Constitutional Law for a Changing America: Institutional Powers and Constraints", + "edition": "11th", + "author": "Epstein", + "isbn": "9781071822128", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_NEW", + "price_display": "$174.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Constitutional Law for a Changing America: Institutional Powers and Constraints", + "edition": "11th", + "author": "Epstein", + "isbn": "9781071822128", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_USED", + "price_display": "$131.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Constitutional Law for a Changing America", + "edition": "11th", + "author": "Epstein", + "isbn": "9781071822142", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$59.99", + "item_type": "digital" + }, + { + "title": "Constitutional Law for a Changing America", + "edition": "11th", + "author": "Epstein", + "isbn": "9781071822142", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$67.49", + "item_type": "digital" + }, + { + "title": "Constitutional Law for a Changing America", + "edition": "11th", + "author": "Epstein", + "isbn": "9781071822142", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$75.00", + "item_type": "digital" + }, + { + "title": "Constitutional Law for a Changing America", + "edition": "11th", + "author": "Epstein", + "isbn": "9781071822142", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$108.74", + "item_type": "digital" + } + ] + }, + { + "department": "PHIL", + "course_num": "3152", + "section": "10", + "instructor": "Adrian Archer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "17", + "instructor": "Santiago Solares", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "KOR", + "course_num": "3123", + "section": "10", + "instructor": "Miok Pak", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Korean", + "edition": "N/A", + "author": "Kim-Renaud", + "isbn": "9780415383882", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$50.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Korean", + "edition": "N/A", + "author": "Kim-Renaud", + "isbn": "9780415383882", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$66.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Korean: An Essential Grammar", + "edition": "1st", + "author": "Kim-Renaud", + "isbn": "9781134173143", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$56.95", + "item_type": "digital" + } + ] + }, + { + "department": "GEOG", + "course_num": "3195", + "section": "80", + "instructor": "Aman Luthra", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "38", + "instructor": "Hao Wu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ITAL", + "course_num": "1003", + "section": "11", + "instructor": "Paola Warfield", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Sentieri (LL)(w/SupersitePlus+36mthWebSAM Access Code)", + "edition": "3rd", + "author": "Cozzarelli", + "isbn": "9781543304442", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Vista Higher Learning, Incorp", + "type_condition": "BUY_NEW", + "price_display": "$365.00", + "item_type": "print" + } + ] + }, + { + "department": "EMSE", + "course_num": "8999", + "section": "19", + "instructor": "Ekundayo Shittu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "4212", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "2113", + "section": "10", + "instructor": "Kinga Dobolyi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8354", + "section": "QE3", + "instructor": "Michael Casemore", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M16", + "instructor": "Randi Kristensen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "2130", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "6298", + "section": "10", + "instructor": "Mika Natif", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6140", + "section": "10", + "instructor": "Kie-Bum Eom", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1001", + "section": "10", + "instructor": "James Kerr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "4198W", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8225", + "section": "10", + "instructor": "Karen Weise", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M40", + "instructor": "Wade Fletcher", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Passionate Journey", + "edition": "N/A", + "author": "Masereel", + "isbn": "9780486460185", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "DOVER PUB INC", + "type_condition": "BUY_USED", + "price_display": "$7.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Passionate Journey", + "edition": "N/A", + "author": "Masereel", + "isbn": "9780486460185", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "DOVER PUB INC", + "type_condition": "BUY_NEW", + "price_display": "$9.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding Comics", + "edition": "N/A", + "author": "McCloud", + "isbn": "9780060976255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding Comics", + "edition": "N/A", + "author": "McCloud", + "isbn": "9780060976255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$27.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding Comics", + "edition": "N/A", + "author": "McCloud", + "isbn": "9780060976255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Harper Collins Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$12.74", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Passionate Journey", + "edition": "N/A", + "author": "Masereel", + "isbn": "9780486139203", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Firebrand Books", + "type_condition": "RENTAL_NEW", + "price_display": "$5.20", + "item_type": "digital" + }, + { + "title": "Passionate Journey", + "edition": "N/A", + "author": "Masereel", + "isbn": "9780486139203", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Firebrand Books", + "type_condition": "BUY_NEW", + "price_display": "$9.29", + "item_type": "digital" + } + ] + }, + { + "department": "MATH", + "course_num": "2233", + "section": "31", + "instructor": "Lien-Yung Kao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8999", + "section": "12", + "instructor": "Erica Gralla", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSCI", + "course_num": "6291", + "section": "10", + "instructor": "Marisa Birkmeier", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8334", + "section": "10", + "instructor": "Yas Nakib", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6021", + "section": "10", + "instructor": "Angela Hinzey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8526", + "section": "10", + "instructor": "Yan Wang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1012", + "section": "38", + "instructor": "Ronald Bird", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6311", + "section": "10", + "instructor": "Sameh Badie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "2005", + "section": "10", + "instructor": "Maja Milicevic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "4121", + "section": "10", + "instructor": "Faith Bradley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6118", + "section": "85", + "instructor": "Ilana Feldman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8998", + "section": "10", + "instructor": "Majid Manzari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "42", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "8999", + "section": "15", + "instructor": "Hermann Helgert", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1060", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "8124", + "section": "10", + "instructor": "Christopher Warshaw", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Data Analysis Using Regression etc", + "edition": "N/A", + "author": "Gelman", + "isbn": "9780521686891", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$62.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Data Analysis Using Regression etc", + "edition": "N/A", + "author": "Gelman", + "isbn": "9780521686891", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$47.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Data Analysis Using Regression etc", + "edition": "N/A", + "author": "Gelman", + "isbn": "9780521686891", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_USED", + "price_display": "$25.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Data Analysis Using Regression etc", + "edition": "N/A", + "author": "Gelman", + "isbn": "9780521686891", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$47.24", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Regression & Other Stories", + "edition": "N/A", + "author": "Gelman", + "isbn": "9781107676510", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$51.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Regression & Other Stories", + "edition": "N/A", + "author": "Gelman", + "isbn": "9781107676510", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$39.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Effect: Intro to Research Design & Causality", + "edition": "N/A", + "author": "Huntington-Klein", + "isbn": "9781032125787", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2022", + "publisher": "CRC Press", + "type_condition": "BUY_NEW", + "price_display": "$39.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Effect: Intro to Research Design & Causality", + "edition": "N/A", + "author": "Huntington-Klein", + "isbn": "9781032125787", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2022", + "publisher": "CRC Press", + "type_condition": "BUY_USED", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Causal Inference: The Mixtape", + "edition": "N/A", + "author": "Cunningham", + "isbn": "9780300251685", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2021", + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Causal Inference: The Mixtape", + "edition": "N/A", + "author": "Cunningham", + "isbn": "9780300251685", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2021", + "publisher": "Yale University Press", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Causal Inference", + "edition": "N/A", + "author": "Cunningham", + "isbn": "9780300255881", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "item_type": "digital" + } + ] + }, + { + "department": "SLHS", + "course_num": "6230", + "section": "10", + "instructor": "Jessica Jocelyn", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Children with Language Disorders", + "edition": "5th", + "author": "Reed", + "isbn": "9780133827095", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$202.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Children with Language Disorders", + "edition": "5th", + "author": "Reed", + "isbn": "9780133827095", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$152.06", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Children with Language Disorders", + "edition": "5th", + "author": "Reed", + "isbn": "9780133827095", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$85.16", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Children with Language Disorders", + "edition": "5th", + "author": "Reed", + "isbn": "9780133827095", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$152.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "An Introduction to Children with Language Disorders -- Pearson eText (OLP) Pearson+ Single Title Subscription, 4-Month Term", + "edition": "5th", + "author": "Reed", + "isbn": "9780137982134", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + } + ] + }, + { + "department": "SOC", + "course_num": "2988", + "section": "10", + "instructor": "Carlos Bustamante", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "1010", + "section": "10", + "instructor": "Majid Manzari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6299", + "section": "10", + "instructor": "Robert Van Order", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6101", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1005", + "section": "39", + "instructor": "Peter Nassar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "6236", + "section": "81", + "instructor": "Barbara von Barghahn-Calvetti", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "12", + "instructor": "Sharon Roosevelt", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Just-in-Time Algebra & Trig for Calculus", + "edition": "4th", + "author": "Mueller", + "isbn": "9780321671042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$45.66", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just-in-Time Algebra & Trig for Calculus", + "edition": "4th", + "author": "Mueller", + "isbn": "9780321671042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$70.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just-in-Time Algebra & Trig for Calculus", + "edition": "4th", + "author": "Mueller", + "isbn": "9780321671042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$52.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just-in-Time Algebra & Trig for Calculus", + "edition": "4th", + "author": "Mueller", + "isbn": "9780321671042", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$28.10", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "HIST", + "course_num": "3701", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "6987", + "section": "10", + "instructor": "Ingrid Creppell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6014", + "section": "16", + "instructor": "Lara Cartwright-Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "6206", + "section": "MV", + "instructor": "Walter Rowe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "8385", + "section": "10", + "instructor": "Nora Hill", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "4900", + "section": "12", + "instructor": "Alexander Caffrey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CANC", + "course_num": "8214", + "section": "10", + "instructor": "Katherine Chiappinelli", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "3553", + "section": "80", + "instructor": "Yanxiang Zhao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "6810", + "section": "10", + "instructor": "Hao Wu", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Topology", + "edition": "2nd", + "author": "Munkres", + "isbn": "9780131816299", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$103.11", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Topology", + "edition": "2nd", + "author": "Munkres", + "isbn": "9780131816299", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$245.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Topology", + "edition": "2nd", + "author": "Munkres", + "isbn": "9780131816299", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$184.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Topology", + "edition": "2nd", + "author": "Munkres", + "isbn": "9780131816299", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$184.13", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "PHYS", + "course_num": "6310", + "section": "10", + "instructor": "Chen Zeng", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6885", + "section": "80", + "instructor": "Murray Loew", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3353", + "section": "10", + "instructor": "David Karpf", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1101", + "section": "31", + "instructor": "Eugene Montague", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6030", + "section": "14", + "instructor": "Milorad Lazic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4907", + "section": "83", + "instructor": "Rolando Fernandez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3190", + "section": "82", + "instructor": "Walter Reich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GTCH", + "course_num": "1001", + "section": "10", + "instructor": "SuJin Choi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2334", + "section": "10", + "instructor": "Logan Puck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "4199", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "6238", + "section": "80", + "instructor": "Gail Weiss", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Love's Labor", + "edition": "N/A", + "author": "Kittay", + "isbn": "9780415904131", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$60.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Love's Labor", + "edition": "N/A", + "author": "Kittay", + "isbn": "9780415904131", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$45.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Epistemology of Resistance", + "edition": "N/A", + "author": "Medina", + "isbn": "9780199929047", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$19.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Epistemology of Resistance", + "edition": "N/A", + "author": "Medina", + "isbn": "9780199929047", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$48.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Epistemology of Resistance", + "edition": "N/A", + "author": "Medina", + "isbn": "9780199929047", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$36.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In a Different Voice (with New Preface)", + "edition": "N/A", + "author": "Gilligan", + "isbn": "9780674445444", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$8.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In a Different Voice (with New Preface)", + "edition": "N/A", + "author": "Gilligan", + "isbn": "9780674445444", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In a Different Voice (with New Preface)", + "edition": "N/A", + "author": "Gilligan", + "isbn": "9780674445444", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$15.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "What World Is This?", + "edition": "N/A", + "author": "Butler", + "isbn": "9780231208291", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "What World Is This?", + "edition": "N/A", + "author": "Butler", + "isbn": "9780231208291", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "LSPA", + "course_num": "1043", + "section": "10", + "instructor": "Beatrice Leibson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "6101", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8101", + "section": "14", + "instructor": "James Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "2301", + "section": "10", + "instructor": "William Boyce", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6050", + "section": "14", + "instructor": "Kie-Bum Eom", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2047", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1000", + "section": "12", + "instructor": "Sigridur Johannesdottir", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "60", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6202", + "section": "10", + "instructor": "Parsa Heydarpour", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2151", + "section": "11", + "instructor": "Lisa St. Clair Harvey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "28", + "instructor": "Cameron Cook", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "48", + "instructor": "Kie-Bum Eom", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2215", + "section": "10", + "instructor": "Yonatan Lupu", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Constitutional Law & Politics (Vol 2)", + "edition": "10th", + "author": "O'Brien", + "isbn": "9780393603521", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$115.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Constitutional Law & Politics (Vol 2)", + "edition": "10th", + "author": "O'Brien", + "isbn": "9780393603521", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_NEW", + "price_display": "$74.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Constitutional Law & Politics (Vol 2)", + "edition": "10th", + "author": "O'Brien", + "isbn": "9780393603521", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$86.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Constitutional Law & Politics (Vol 2)", + "edition": "10th", + "author": "O'Brien", + "isbn": "9780393603521", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_USED", + "price_display": "$48.30", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "PT", + "course_num": "8318", + "section": "10", + "instructor": "Karen Goodman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Motor Control", + "edition": "N/A", + "author": "Shumway-Cook", + "isbn": "9780683306439", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2001", + "publisher": "Lippincott Williams & Wilkins", + "type_condition": "BUY_USED", + "price_display": "$47.25", + "item_type": "print" + }, + { + "title": "Motor Control", + "edition": "N/A", + "author": "Shumway-Cook", + "isbn": "9780683306439", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2001", + "publisher": "Lippincott Williams & Wilkins", + "type_condition": "BUY_NEW", + "price_display": "$62.95", + "item_type": "print" + }, + { + "title": "Physical Rehabilitation", + "edition": "5th", + "author": "Osullivan", + "isbn": "9780803612471", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "F. A. Davis Company", + "type_condition": "RENTAL_USED", + "price_display": "$35.98", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physical Rehabilitation", + "edition": "5th", + "author": "Osullivan", + "isbn": "9780803612471", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_USED", + "price_display": "$67.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physical Rehabilitation", + "edition": "5th", + "author": "Osullivan", + "isbn": "9780803612471", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$89.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Neurological Rehabilitation", + "edition": "5th", + "author": "Umphred", + "isbn": "9780323033060", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2007", + "publisher": "Mosby, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$80.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Neurological Rehabilitation", + "edition": "5th", + "author": "Umphred", + "isbn": "9780323033060", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2007", + "publisher": "Mosby, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$107.00", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "EHS", + "course_num": "2108", + "section": "10", + "instructor": "Ali Pourmand", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "6270", + "section": "82", + "instructor": "Sandra Tropper", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6331", + "section": "80", + "instructor": "Arkady Yerukhimovich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "2002", + "section": "83", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2010", + "section": "84", + "instructor": "Nicole Ivy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "8286", + "section": "10", + "instructor": "Andrew Thompson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PT", + "course_num": "8208", + "section": "10", + "instructor": "Matthew Garber", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1005", + "section": "34", + "instructor": "Alexander Downes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "22", + "instructor": "Stephen Redmon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "38", + "instructor": "Alexandra Resendez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "6270", + "section": "80", + "instructor": "Jennifer James", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Beloved (with New Foreword)", + "edition": "N/A", + "author": "Morrison", + "isbn": "9781400033416", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beloved (with New Foreword)", + "edition": "N/A", + "author": "Morrison", + "isbn": "9781400033416", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$7.65", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beloved (with New Foreword)", + "edition": "N/A", + "author": "Morrison", + "isbn": "9781400033416", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beloved (with New Foreword)", + "edition": "N/A", + "author": "Morrison", + "isbn": "9781400033416", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of Mary Prince", + "edition": "N/A", + "author": "Prince", + "isbn": "9780140437492", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of Mary Prince", + "edition": "N/A", + "author": "Prince", + "isbn": "9780140437492", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "History of Mary Prince", + "edition": "N/A", + "author": "Prince", + "isbn": "9780140437492", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Lose Your Mother", + "edition": "N/A", + "author": "Hartman", + "isbn": "9780374531157", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Lose Your Mother", + "edition": "N/A", + "author": "Hartman", + "isbn": "9780374531157", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Farrar, Straus & Giroux", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wicked Flesh", + "edition": "N/A", + "author": "Johnson", + "isbn": "9781512823707", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "University of Pennsylvania Press c/o IPS Customer Service", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wicked Flesh", + "edition": "N/A", + "author": "Johnson", + "isbn": "9781512823707", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "University of Pennsylvania Press c/o IPS Customer Service", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Corregidora", + "edition": "N/A", + "author": "Jones", + "isbn": "9780807061091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Beacon Press c/o Random House", + "type_condition": "RENTAL_USED", + "price_display": "$6.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Corregidora", + "edition": "N/A", + "author": "Jones", + "isbn": "9780807061091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Corregidora", + "edition": "N/A", + "author": "Jones", + "isbn": "9780807061091", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kindred", + "edition": "N/A", + "author": "Butler", + "isbn": "9780807083697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kindred", + "edition": "N/A", + "author": "Butler", + "isbn": "9780807083697", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Undrowned", + "edition": "N/A", + "author": "Gumbs", + "isbn": "9781849353977", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "AK Press Distribution", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Undrowned", + "edition": "N/A", + "author": "Gumbs", + "isbn": "9781849353977", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "AK Press Distribution", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sojourner Truth", + "edition": "N/A", + "author": "Painter", + "isbn": "9780393317084", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$7.18", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sojourner Truth", + "edition": "N/A", + "author": "Painter", + "isbn": "9780393317084", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sojourner Truth", + "edition": "N/A", + "author": "Painter", + "isbn": "9780393317084", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bondwoman's Narrative", + "edition": "N/A", + "author": "Crafts", + "isbn": "9780446690294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Warner Books, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$13.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bondwoman's Narrative", + "edition": "N/A", + "author": "Crafts", + "isbn": "9780446690294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Warner Books, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$7.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bondwoman's Narrative", + "edition": "N/A", + "author": "Crafts", + "isbn": "9780446690294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Warner Books, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$17.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bondwoman's Narrative", + "edition": "N/A", + "author": "Crafts", + "isbn": "9780446690294", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Warner Books, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Incidents in the Life of a Slave Girl", + "edition": "2nd", + "author": "Jacobs", + "isbn": "9780393614565", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$11.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Incidents in the Life of a Slave Girl", + "edition": "2nd", + "author": "Jacobs", + "isbn": "9780393614565", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$28.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Incidents in the Life of a Slave Girl", + "edition": "2nd", + "author": "Jacobs", + "isbn": "9780393614565", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$21.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wake", + "edition": "N/A", + "author": "Hall", + "isbn": "9781982115197", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$19.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wake", + "edition": "N/A", + "author": "Hall", + "isbn": "9781982115197", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Bondwoman's Narrative", + "edition": "N/A", + "author": "Crafts", + "isbn": "9780759527645", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hachette Book Group", + "type_condition": "BUY_NEW", + "price_display": "$11.99", + "item_type": "digital" + }, + { + "title": "Sojourner Truth: A Life, A Symbol", + "edition": "N/A", + "author": "Painter", + "isbn": "9780393635669", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "item_type": "digital" + } + ] + }, + { + "department": "ECE", + "course_num": "8999", + "section": "14", + "instructor": "Kie-Bum Eom", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "3128", + "section": "10", + "instructor": "Philip Moore", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Health Psychology", + "edition": "10th", + "author": "Sarafino", + "isbn": "9781119577805", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$162.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Health Psychology", + "edition": "10th", + "author": "Sarafino", + "isbn": "9781119577805", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$121.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Health Psychology", + "edition": "10th", + "author": "Sarafino", + "isbn": "9781119577829", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$42.42", + "item_type": "digital" + }, + { + "title": "Health Psychology", + "edition": "10th", + "author": "Sarafino", + "isbn": "9781119577829", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$101.00", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "8010", + "section": "12", + "instructor": "Jeffrey Bingenheimer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2439", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6330", + "section": "10", + "instructor": "Joel Teitelbaum", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1002", + "section": "32", + "instructor": "James Kerr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M56", + "instructor": "Sandra Friedman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "2151", + "section": "10", + "instructor": "Jennifer Brennan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1012", + "section": "37", + "instructor": "Ronald Bird", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6005", + "section": "80", + "instructor": "Ahmed Louri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6118", + "section": "82", + "instructor": "Lucia Rafanelli", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Law of Peoples", + "edition": "N/A", + "author": "Rawls", + "isbn": "9780674005426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$12.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Law of Peoples", + "edition": "N/A", + "author": "Rawls", + "isbn": "9780674005426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$23.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Law of Peoples", + "edition": "N/A", + "author": "Rawls", + "isbn": "9780674005426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$23.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Law of Peoples", + "edition": "N/A", + "author": "Rawls", + "isbn": "9780674005426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$31.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CNSL", + "course_num": "8256", + "section": "10", + "instructor": "Delishia Pittman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6282", + "section": "10", + "instructor": "George Jabbour", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "0940", + "section": "11", + "instructor": "Yas Nakib", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6998", + "section": "11", + "instructor": "Poorvi Vora", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "15", + "instructor": "Hyeong-Ah Choi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6999", + "section": "19", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6900", + "section": "80", + "instructor": "Zoe Szajnfarber", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "1000", + "section": "80", + "instructor": "Kelly Pemberton", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Islam in the Digital Age", + "edition": "N/A", + "author": "Bunt", + "isbn": "9780745320984", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Pluto Press", + "type_condition": "BUY_NEW", + "price_display": "$41.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Islam in the Digital Age", + "edition": "N/A", + "author": "Bunt", + "isbn": "9780745320984", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Pluto Press", + "type_condition": "BUY_USED", + "price_display": "$30.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Islamic Branding and Marketing: Creating A Global Islamic Business", + "edition": "N/A", + "author": "Temporal", + "isbn": "9780470825396", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$50.00", + "item_type": "print" + }, + { + "title": "Islamic Branding and Marketing: Creating A Global Islamic Business", + "edition": "N/A", + "author": "Temporal", + "isbn": "9780470825396", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$37.50", + "item_type": "print" + }, + { + "title": "Hashtag Islam", + "edition": "N/A", + "author": "Bunt", + "isbn": "9781469643168", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "University of North Carolina Press", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hashtag Islam", + "edition": "N/A", + "author": "Bunt", + "isbn": "9781469643168", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "University of North Carolina Press", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hashtag Islam", + "edition": "N/A", + "author": "Bunt", + "isbn": "9781469643175", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of North Carolina Press", + "type_condition": "BUY_NEW", + "price_display": "$19.99", + "item_type": "digital" + }, + { + "title": "Islamic Branding and Marketing", + "edition": "1st", + "author": "Temporal", + "isbn": "9780470828472", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$40.00", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "3908", + "section": "18", + "instructor": "Bhagirath Narahari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6998", + "section": "22", + "instructor": "Rahul Simha", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "64", + "instructor": "Saniya LeBlanc", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6271", + "section": "11", + "instructor": "Joy Volarich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2123W", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "69", + "instructor": "Mya Lesley-Drakeford", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6998", + "section": "12", + "instructor": "Abdou Youssef", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "75", + "instructor": "Daniel Jaqua", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2177", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "4001", + "section": "13", + "instructor": "Badrinath Kottimukkalur Renganatharaja", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "1004", + "section": "13", + "instructor": "Charlee Bezilla", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6274", + "section": "80", + "instructor": "Sean Aday", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "4001", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "8998", + "section": "10", + "instructor": "Martin Zysmilich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "MV4", + "instructor": "Hadas Aron", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "82", + "instructor": "Karen Johnson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1005", + "section": "10", + "instructor": "Lauren Philips", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "2006", + "section": "17", + "instructor": "Victor Valdivia Ruiz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Conversaciones Escritas", + "edition": "2nd", + "author": "Potowski", + "isbn": "9781118744864", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Vista Higher Learning, Incorp", + "type_condition": "RENTAL_USED", + "price_display": "$61.64", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Conversaciones Escritas", + "edition": "2nd", + "author": "Potowski", + "isbn": "9781118744864", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Vista Higher Learning, Incorp", + "type_condition": "BUY_NEW", + "price_display": "$146.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Conversaciones Escritas", + "edition": "2nd", + "author": "Potowski", + "isbn": "9781118744864", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Vista Higher Learning, Incorp", + "type_condition": "BUY_USED", + "price_display": "$110.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ECON", + "course_num": "6301", + "section": "10", + "instructor": "Robert Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6002", + "section": "10", + "instructor": "Dylan Conger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8101", + "section": "15", + "instructor": "Michael Feuer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "4101W", + "section": "10", + "instructor": "Irene Koukios", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M47", + "instructor": "Pamela Presser", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2449", + "section": "11", + "instructor": "Kamal Beyoghlow", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8201", + "section": "10", + "instructor": "Katherine Marshall Woods", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8101", + "section": "11", + "instructor": "Sylven Beck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6999", + "section": "25", + "instructor": "Mona Zaghloul", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "6999", + "section": "10", + "instructor": "Tadeusz Zawidzki", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "8999", + "section": "10", + "instructor": "D. Kayes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3242", + "section": "10", + "instructor": "Cheryl Thompson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M79", + "instructor": "Julie Donovan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Photographic: The Life of Graciela Iturbide", + "edition": "N/A", + "author": "Quintero", + "isbn": "9781947440005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Harry N. Abrams Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Photographic: The Life of Graciela Iturbide", + "edition": "N/A", + "author": "Quintero", + "isbn": "9781947440005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Harry N. Abrams Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$7.98", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Photographic: The Life of Graciela Iturbide", + "edition": "N/A", + "author": "Quintero", + "isbn": "9781947440005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Harry N. Abrams Incorporated", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fun Home", + "edition": "N/A", + "author": "Bechdel", + "isbn": "9780618871711", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fun Home", + "edition": "N/A", + "author": "Bechdel", + "isbn": "9780618871711", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "RENTAL_USED", + "price_display": "$8.64", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fun Home", + "edition": "N/A", + "author": "Bechdel", + "isbn": "9780618871711", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Persepolis", + "edition": "N/A", + "author": "Satrapi", + "isbn": "9780375714832", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Pantheon", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Persepolis", + "edition": "N/A", + "author": "Satrapi", + "isbn": "9780375714832", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Pantheon", + "type_condition": "RENTAL_USED", + "price_display": "$12.29", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Persepolis", + "edition": "N/A", + "author": "Satrapi", + "isbn": "9780375714832", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Pantheon", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Shubeik Lubeik", + "edition": "N/A", + "author": "Mohamed", + "isbn": "9781524748418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Shubeik Lubeik", + "edition": "N/A", + "author": "Mohamed", + "isbn": "9781524748418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Aya: Life in Yop City", + "edition": "N/A", + "author": "Abouet", + "isbn": "9781770460829", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_NEW", + "price_display": "$22.46", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Aya: Life in Yop City", + "edition": "N/A", + "author": "Abouet", + "isbn": "9781770460829", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Aya: Life in Yop City", + "edition": "N/A", + "author": "Abouet", + "isbn": "9781770460829", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_USED", + "price_display": "$11.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Aya: Life in Yop City", + "edition": "N/A", + "author": "Abouet", + "isbn": "9781770460829", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kari", + "edition": "N/A", + "author": "Patil", + "isbn": "9788172237103", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins Publishers India", + "type_condition": "BUY_NEW", + "price_display": "$19.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kari", + "edition": "N/A", + "author": "Patil", + "isbn": "9788172237103", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins Publishers India", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Aya: Life in Yop City", + "edition": "N/A", + "author": "Abouet", + "isbn": "9781770465589", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$10.00", + "item_type": "digital" + }, + { + "title": "Kari", + "edition": "N/A", + "author": "Patil", + "isbn": "9789351779179", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$12.99", + "item_type": "digital" + } + ] + }, + { + "department": "STAT", + "course_num": "8999", + "section": "10", + "instructor": "Tapan Nayak", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2103", + "section": "10", + "instructor": "Jill Brantley", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Sociological Theory in the Classical Era", + "edition": "4th", + "author": "Edles", + "isbn": "9781506347820", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$145.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sociological Theory in the Classical Era", + "edition": "4th", + "author": "Edles", + "isbn": "9781506347820", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$109.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Women Founders: Sociology...1830-1930", + "edition": "N/A", + "author": "Lengermann", + "isbn": "9781577665090", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Waveland Press, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$46.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Women Founders: Sociology...1830-1930", + "edition": "N/A", + "author": "Lengermann", + "isbn": "9781577665090", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Waveland Press, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$35.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Women Founders: Sociology...1830-1930", + "edition": "N/A", + "author": "Lengermann", + "isbn": "9781577665090", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Waveland Press, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$35.06", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Women Founders: Sociology...1830-1930", + "edition": "N/A", + "author": "Lengermann", + "isbn": "9781577665090", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Waveland Press, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$18.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Masters of Sociological Thought", + "edition": "2nd", + "author": "Coser", + "isbn": "9781577663072", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1977", + "publisher": "Waveland Press, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$61.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Masters of Sociological Thought", + "edition": "2nd", + "author": "Coser", + "isbn": "9781577663072", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1977", + "publisher": "Waveland Press, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$46.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Masters of Sociological Thought", + "edition": "2nd", + "author": "Coser", + "isbn": "9781577663072", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1977", + "publisher": "Waveland Press, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$24.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sociological Theory in the Classical Era", + "edition": "4th", + "author": "Edles", + "isbn": "9781544357614", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$51.99", + "item_type": "digital" + }, + { + "title": "Sociological Theory in the Classical Era", + "edition": "4th", + "author": "Edles", + "isbn": "9781544357614", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$58.49", + "item_type": "digital" + }, + { + "title": "Sociological Theory in the Classical Era", + "edition": "4th", + "author": "Edles", + "isbn": "9781544357614", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$65.00", + "item_type": "digital" + }, + { + "title": "Sociological Theory in the Classical Era", + "edition": "4th", + "author": "Edles", + "isbn": "9781544357614", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$94.24", + "item_type": "digital" + } + ] + }, + { + "department": "CHEM", + "course_num": "2151", + "section": "32", + "instructor": "Stephen Boyes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6461", + "section": "13", + "instructor": "Lei He", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2340W", + "section": "34", + "instructor": "James Hershberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6016", + "section": "10", + "instructor": "Joseph Schmitthenner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3212", + "section": "31", + "instructor": "Rahul Simha", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "1011", + "section": "34", + "instructor": "Melanie-Joy Dorn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "TSTD", + "course_num": "3101", + "section": "10", + "instructor": "Meredith Geisler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "6204", + "section": "10", + "instructor": "William Meeks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "1601", + "section": "12", + "instructor": "Jamille Wallick", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6273", + "section": "11", + "instructor": "Maroun Medlej", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "3481", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ORSC", + "course_num": "3190", + "section": "11", + "instructor": "David Costanza", + "term_name": "Fall 2023", + "texts": [ + { + "title": "International Management Culture, Strategy, Behav (RRMCG)", + "edition": "11th", + "author": "Luthans", + "isbn": "9781260260472", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Management Culture, Strategy, Behav (RRMCG)", + "edition": "11th", + "author": "Luthans", + "isbn": "9781260260472", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Human Resource Management (RRMCG)", + "edition": "12th", + "author": "Noe", + "isbn": "9781260262575", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Human Resource Management (RRMCG)", + "edition": "12th", + "author": "Noe", + "isbn": "9781260262575", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Management: Culture, Strategy, and Behavior", + "edition": "11th", + "author": "Luthans", + "isbn": "9781260563979", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$62.25", + "item_type": "digital" + }, + { + "title": "International Management: Culture, Strategy, and Behavior", + "edition": "11th", + "author": "Luthans", + "isbn": "9781260563979", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$79.25", + "item_type": "digital" + }, + { + "title": "International Management: Culture, Strategy, and Behavior", + "edition": "11th", + "author": "Luthans", + "isbn": "9781260563979", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$94.75", + "item_type": "digital" + } + ] + }, + { + "department": "ISTM", + "course_num": "4209", + "section": "10", + "instructor": "Wenjing Duan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "1004", + "section": "10", + "instructor": "Sarah-Kay Hurst", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UNIV", + "course_num": "0940", + "section": "51", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3190", + "section": "83", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1057", + "section": "10", + "instructor": "Alexandra Folleco", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M24", + "instructor": "Michael Svoboda", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Little Seagull Handbook (w/Guide to MLA 2021)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393877939", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$24.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Seagull Handbook (w/Guide to MLA 2021)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393877939", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$24.19", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Seagull Handbook (w/Guide to MLA 2021)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393877939", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$32.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Seagull Handbook (w/Guide to MLA 2021)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393877939", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$12.90", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Little Seagull Handbook: 2021 MLA Update (Fourth Edition)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393536980", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$17.88", + "item_type": "digital" + }, + { + "title": "The Little Seagull Handbook: 2021 MLA Update (Fourth Edition)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393536980", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$22.75", + "item_type": "digital" + } + ] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M59", + "instructor": "Joshua Paiz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Atlas of AI", + "edition": "N/A", + "author": "Crawford", + "isbn": "9780300209570", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Atlas of AI", + "edition": "N/A", + "author": "Crawford", + "isbn": "9780300209570", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Yale University Press", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "New Laws of Robotics", + "edition": "N/A", + "author": "Pasquale", + "isbn": "9780674975224", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Belknap Press", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "New Laws of Robotics", + "edition": "N/A", + "author": "Pasquale", + "isbn": "9780674975224", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Belknap Press", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Atlas of AI", + "edition": "N/A", + "author": "Crawford", + "isbn": "9780300252392", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "item_type": "digital" + } + ] + }, + { + "department": "STAT", + "course_num": "2112", + "section": "10", + "instructor": "Saeid Amini", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "1011", + "section": "30", + "instructor": "Melanie-Joy Dorn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6224", + "section": "10G", + "instructor": "Miguel Lejeune", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Business Analytics Data Analysis & Decision Making (Loose-Leaf)", + "edition": "7th", + "author": "Albright", + "isbn": "9780357530559", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$172.50", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Business Analytics Data Analysis & Decision Making (Loose-Leaf)", + "edition": "7th", + "author": "Albright", + "isbn": "9780357530559", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$129.50", + "binding": "Loose-Leaf", + "item_type": "print" + } + ] + }, + { + "department": "CTAD", + "course_num": "3336", + "section": "10", + "instructor": "Sigridur Johannesdottir", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1052", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EHS", + "course_num": "1041", + "section": "12", + "instructor": "Craig Evans", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "68", + "instructor": "Royce Francis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8701", + "section": "10", + "instructor": "Jennifer Skillicorn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "2490", + "section": "85", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "12", + "instructor": "Byron Knight", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6258", + "section": "DE", + "instructor": "Ernest Forman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "3153", + "section": "10", + "instructor": "Adrian Archer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "41", + "instructor": "Dong Quan Nguyen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "0920", + "section": "10", + "instructor": "Kenneth Hergenrather", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6504", + "section": "12", + "instructor": "Ali Akkache", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1060", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6997", + "section": "10", + "instructor": "Joann Weiner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "3910", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "47", + "instructor": "Crystal Rawls", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6995", + "section": "17", + "instructor": "David Broniatowski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2143", + "section": "10", + "instructor": "Glenn Kirschner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3190", + "section": "17", + "instructor": "Sudha Rajput", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Internal Displacement & Conflict", + "edition": "N/A", + "author": "Rajput", + "isbn": "9781138354265", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "ROUTLEDGE PUBLISHING", + "type_condition": "BUY_USED", + "price_display": "$48.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Internal Displacement & Conflict", + "edition": "N/A", + "author": "Rajput", + "isbn": "9781138354265", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "ROUTLEDGE PUBLISHING", + "type_condition": "BUY_NEW", + "price_display": "$64.95", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "MATH", + "course_num": "6620", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GENO", + "course_num": "8999", + "section": "10", + "instructor": "Ljubica Caldovic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2199", + "section": "10", + "instructor": "Vincy Fon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6101", + "section": "12", + "instructor": "Sylven Beck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "3481", + "section": "10", + "instructor": "Kelly Pemberton", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Women & Gender in Islam", + "edition": "N/A", + "author": "Ahmed", + "isbn": "9780300055832", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Yale University Press", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "item_type": "print" + }, + { + "title": "Women & Gender in Islam", + "edition": "N/A", + "author": "Ahmed", + "isbn": "9780300055832", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Yale University Press", + "type_condition": "RENTAL_USED", + "price_display": "$8.80", + "item_type": "print" + }, + { + "title": "Women & Gender in Islam", + "edition": "N/A", + "author": "Ahmed", + "isbn": "9780300055832", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$22.00", + "item_type": "print" + }, + { + "title": "Wrapping Authority", + "edition": "N/A", + "author": "Hill", + "isbn": "9781487522445", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "University of Toronto Press", + "type_condition": "BUY_USED", + "price_display": "$29.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wrapping Authority", + "edition": "N/A", + "author": "Hill", + "isbn": "9781487522445", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "University of Toronto Press", + "type_condition": "RENTAL_USED", + "price_display": "$15.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wrapping Authority", + "edition": "N/A", + "author": "Hill", + "isbn": "9781487522445", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "University of Toronto Press", + "type_condition": "BUY_NEW", + "price_display": "$38.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Women and Gender in Islam", + "edition": "N/A", + "author": "Ahmed", + "isbn": "9780300258172", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "item_type": "digital" + }, + { + "title": "Muslim Women at Work", + "edition": "N/A", + "author": "Sidani", + "isbn": "9783319632216", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$89.00", + "item_type": "digital" + }, + { + "title": "Muslim Women at Work", + "edition": "N/A", + "author": "Sidani", + "isbn": "9783319632216", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$89.00", + "item_type": "digital" + }, + { + "title": "Muslim Women at Work", + "edition": "N/A", + "author": "Sidani", + "isbn": "9783319632216", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$89.00", + "item_type": "digital" + }, + { + "title": "Muslim Women at Work", + "edition": "N/A", + "author": "Sidani", + "isbn": "9783319632216", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$89.00", + "item_type": "digital" + } + ] + }, + { + "department": "HOL", + "course_num": "8998", + "section": "12", + "instructor": "Ellen Scully-Russ", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "2123", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6239", + "section": "10", + "instructor": "A Eakle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2410W", + "section": "85", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8122", + "section": "10", + "instructor": "Sandra Vanderbilt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6385", + "section": "11", + "instructor": "Jennifer Cooke", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "3440W", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6014", + "section": "19", + "instructor": "Katie Fernandez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "6999", + "section": "10", + "instructor": "Michael Plesniak", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GER", + "course_num": "4196", + "section": "10", + "instructor": "Margaret Gonglewski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "8997", + "section": "10", + "instructor": "Pamela Labadie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "8375", + "section": "80", + "instructor": "Robert Phillips", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "4309", + "section": "80", + "instructor": "Adam Jachimowicz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "2123", + "section": "82", + "instructor": "Elira Kuka", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2332", + "section": "10", + "instructor": "Diana White", + "term_name": "Fall 2023", + "texts": [ + { + "title": "European Union Politics", + "edition": "3rd", + "author": "McCormick", + "isbn": "9781352009699", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Red Globe Press (dept of Springer Nature)", + "type_condition": "BUY_NEW", + "price_display": "$49.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "European Union Politics", + "edition": "3rd", + "author": "McCormick", + "isbn": "9781352009699", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Red Globe Press (dept of Springer Nature)", + "type_condition": "BUY_USED", + "price_display": "$37.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "European Union Politics", + "edition": "3rd", + "author": "McCormick", + "isbn": "9781352009705", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Palgrave Macmillan", + "type_condition": "RENTAL_NEW", + "price_display": "$22.00", + "item_type": "digital" + }, + { + "title": "European Union Politics", + "edition": "3rd", + "author": "McCormick", + "isbn": "9781352009705", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Palgrave Macmillan", + "type_condition": "BUY_NEW", + "price_display": "$44.00", + "item_type": "digital" + } + ] + }, + { + "department": "MAE", + "course_num": "6221", + "section": "10", + "instructor": "Matthew Rau", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPP", + "course_num": "6999", + "section": "10", + "instructor": "Ernest Englander", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8101", + "section": "19", + "instructor": "Laura Engel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1015", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6100W", + "section": "10", + "instructor": "Tiffany-Rose Sikorski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "1033", + "section": "MV", + "instructor": "Thiago Moreira", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "6995", + "section": "10", + "instructor": "Yanxiang Zhao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1063", + "section": "16", + "instructor": "Erin Freeman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "2111", + "section": "30", + "instructor": "Kyle Levers", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6450", + "section": "16", + "instructor": "Rolando Fernandez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1007", + "section": "14", + "instructor": "Farshad Foroozan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "RENTAL_NEW", + "price_display": "$87.38", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "BUY_NEW", + "price_display": "$116.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "BUY_USED", + "price_display": "$87.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "RENTAL_USED", + "price_display": "$48.93", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "The Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798907", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$54.95", + "item_type": "digital" + } + ] + }, + { + "department": "ECE", + "course_num": "8999", + "section": "24", + "instructor": "Suresh Subramaniam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "8110", + "section": "10", + "instructor": "Rob van Dam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2189", + "section": "10", + "instructor": "Zimife Umeh", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Rethinking the Reentry Paradigm", + "edition": "2nd", + "author": "Houser", + "isbn": "9781611638684", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Carolina Academic Press", + "type_condition": "BUY_NEW", + "price_display": "$64.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Rethinking the Reentry Paradigm", + "edition": "2nd", + "author": "Houser", + "isbn": "9781611638684", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Carolina Academic Press", + "type_condition": "BUY_USED", + "price_display": "$48.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "EMSE", + "course_num": "6330", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "2107", + "section": "M32", + "instructor": "Megan Foley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "4900", + "section": "81", + "instructor": "David Brown", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Essen of Social Media Marketing/Mimic Social Bundle", + "edition": "N/A", + "author": "Stukent", + "isbn": "9780999630242", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Stukent, Inc.", + "type_condition": "BUY_NEW", + "price_display": "$189.25", + "item_type": "print" + } + ] + }, + { + "department": "IAFF", + "course_num": "6161", + "section": "DE1", + "instructor": "Karen Farrell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2101", + "section": "16", + "instructor": "Steven Balla", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "4189", + "section": "82", + "instructor": "Sandra Tropper", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "4402", + "section": "11", + "instructor": "Laura D'Antonio", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6186", + "section": "10", + "instructor": "Sahibzada Latif", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "4201", + "section": "10", + "instructor": "Maxim Alekseyev", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Practical Computing for Biologists", + "edition": "N/A", + "author": "Haddock", + "isbn": "9780878933914", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Sinauer Associates, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$128.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Practical Computing for Biologists", + "edition": "N/A", + "author": "Haddock", + "isbn": "9780878933914", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Sinauer Associates, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$51.30", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Practical Computing for Biologists", + "edition": "N/A", + "author": "Haddock", + "isbn": "9780878933914", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Sinauer Associates, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$96.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Practical Computing for Biologists", + "edition": "N/A", + "author": "Haddock", + "isbn": "9780878933914", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Sinauer Associates, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$96.19", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Practical Computing for Biologists", + "edition": "N/A", + "author": "Haddock", + "isbn": "9781605354118", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$52.99", + "item_type": "digital" + }, + { + "title": "Practical Computing for Biologists", + "edition": "N/A", + "author": "Haddock", + "isbn": "9781605354118", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$61.14", + "item_type": "digital" + }, + { + "title": "Practical Computing for Biologists", + "edition": "N/A", + "author": "Haddock", + "isbn": "9781605354118", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$81.52", + "item_type": "digital" + } + ] + }, + { + "department": "PSC", + "course_num": "2105", + "section": "MV", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2993", + "section": "11", + "instructor": "Harvey Feigenbaum", + "term_name": "Fall 2023", + "texts": [ + { + "title": "February 1933", + "edition": "N/A", + "author": "Wittstock", + "isbn": "9781509553792", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Polity Press", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "February 1933", + "edition": "N/A", + "author": "Wittstock", + "isbn": "9781509553792", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Polity Press", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Imagined Communities", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781844670864", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$10.10", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Imagined Communities", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781844670864", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Imagined Communities", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781844670864", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Moral Basis of Backward Society", + "edition": "N/A", + "author": "Banfield", + "isbn": "9780029015100", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1958", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Moral Basis of Backward Society", + "edition": "N/A", + "author": "Banfield", + "isbn": "9780029015100", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1958", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hollyworld", + "edition": "N/A", + "author": "Hozic", + "isbn": "9780801439261", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2001", + "publisher": "Cornell University Press", + "type_condition": "BUY_NEW", + "price_display": "$78.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Hollyworld", + "edition": "N/A", + "author": "Hozic", + "isbn": "9780801439261", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2001", + "publisher": "Cornell University Press", + "type_condition": "BUY_USED", + "price_display": "$58.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Irresistible Empire", + "edition": "N/A", + "author": "Degrazia", + "isbn": "9780674022348", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$14.00", + "item_type": "print" + }, + { + "title": "Irresistible Empire", + "edition": "N/A", + "author": "Degrazia", + "isbn": "9780674022348", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "item_type": "print" + }, + { + "title": "Irresistible Empire", + "edition": "N/A", + "author": "Degrazia", + "isbn": "9780674022348", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "item_type": "print" + }, + { + "title": "European Union & the Deconstruction of the Rhineland Frontier", + "edition": "N/A", + "author": "Loriaux", + "isbn": "9780521707077", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "European Union & the Deconstruction of the Rhineland Frontier", + "edition": "N/A", + "author": "Loriaux", + "isbn": "9780521707077", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Protestant Ethic & Spirit of Capitalism", + "edition": "2nd", + "author": "Weber", + "isbn": "9780415254069", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1930", + "publisher": "Routledge", + "type_condition": "RENTAL_USED", + "price_display": "$11.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Protestant Ethic & Spirit of Capitalism", + "edition": "2nd", + "author": "Weber", + "isbn": "9780415254069", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1930", + "publisher": "Routledge", + "type_condition": "RENTAL_NEW", + "price_display": "$23.16", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Protestant Ethic & Spirit of Capitalism", + "edition": "2nd", + "author": "Weber", + "isbn": "9780415254069", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1930", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$28.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Protestant Ethic & Spirit of Capitalism", + "edition": "2nd", + "author": "Weber", + "isbn": "9780415254069", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1930", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$21.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "German Ideology (Pt1)", + "edition": "N/A", + "author": "Marx", + "isbn": "9780717803026", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1970", + "publisher": "International Publishers Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$14.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "German Ideology (Pt1)", + "edition": "N/A", + "author": "Marx", + "isbn": "9780717803026", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1970", + "publisher": "International Publishers Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Making Democracy Work", + "edition": "N/A", + "author": "Putnam", + "isbn": "9780691037387", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "RENTAL_USED", + "price_display": "$15.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Making Democracy Work", + "edition": "N/A", + "author": "Putnam", + "isbn": "9780691037387", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "RENTAL_NEW", + "price_display": "$29.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Making Democracy Work", + "edition": "N/A", + "author": "Putnam", + "isbn": "9780691037387", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$39.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Making Democracy Work", + "edition": "N/A", + "author": "Putnam", + "isbn": "9780691037387", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Making Democracy Work", + "edition": "N/A", + "author": "Nanetti", + "isbn": "9781400820740", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$39.95", + "item_type": "digital" + }, + { + "title": "Hollyworld", + "edition": "N/A", + "author": "Hozic", + "isbn": "9781501725708", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cornell University Press", + "type_condition": "BUY_NEW", + "price_display": "$55.53", + "item_type": "digital" + }, + { + "title": "Hollyworld", + "edition": "N/A", + "author": "Hozic", + "isbn": "9781501725708", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cornell University Press", + "type_condition": "BUY_NEW", + "price_display": "$150.00", + "item_type": "digital" + } + ] + }, + { + "department": "SEAS", + "course_num": "1001", + "section": "14", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "14", + "instructor": "Cameron Cook", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "4199", + "section": "10", + "instructor": "Shweta Krishnan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8999", + "section": "14", + "instructor": "Sylvia Marotta-Walters", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6161", + "section": "DE", + "instructor": "Paul Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "1040", + "section": "17", + "instructor": "John Powers", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1110", + "section": "11", + "instructor": "Tabitha Razunguzwa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JAPN", + "course_num": "1001", + "section": "32", + "instructor": "Kaori Iwai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "63", + "instructor": "Amanda Rollins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2101", + "section": "11", + "instructor": "Philip Moore", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Methods in Behavioral Research (RRMCG)", + "edition": "15th", + "author": "Cozby", + "isbn": "9781260718904", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2024", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "BUY_NEW", + "price_display": "$171.43", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Methods in Behavioral Research (RRMCG)", + "edition": "15th", + "author": "Cozby", + "isbn": "9781260718904", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2024", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$50.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Methods in Behavioral Research (RRMCG)", + "edition": "15th", + "author": "Cozby", + "isbn": "9781260718904", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2024", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "BUY_USED", + "price_display": "$128.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Methods in Behavioral Research LL", + "edition": "15th", + "author": "Cozby", + "isbn": "9781260883053", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$121.00", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Methods in Behavioral Research LL", + "edition": "15th", + "author": "Cozby", + "isbn": "9781260883053", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_USED", + "price_display": "$90.75", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Methods in Behavioral Research", + "edition": "15th", + "author": "Cozby", + "isbn": "9781260883077", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$57.25", + "item_type": "digital" + }, + { + "title": "Methods in Behavioral Research", + "edition": "15th", + "author": "Cozby", + "isbn": "9781260883077", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$74.25", + "item_type": "digital" + }, + { + "title": "Methods in Behavioral Research", + "edition": "15th", + "author": "Cozby", + "isbn": "9781260883077", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$82.75", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "1005", + "section": "33", + "instructor": "Alexander Downes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "6096", + "section": "10", + "instructor": "Dean Kessmann", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8423", + "section": "12", + "instructor": "George Gray", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2455", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "1011", + "section": "11", + "instructor": "Illa Moskowitz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4331", + "section": "80", + "instructor": "Arkady Yerukhimovich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6274", + "section": "11", + "instructor": "Leah Masselink", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6998", + "section": "12", + "instructor": "Pedro Silva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6860", + "section": "10", + "instructor": "Keith Crandall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "1010", + "section": "14", + "instructor": "Samantha Neary", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EAP", + "course_num": "6110", + "section": "12", + "instructor": "Megan Siczek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6257", + "section": "80", + "instructor": "Homayoun Khamooshi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6430", + "section": "10", + "instructor": "Ekundayo Shittu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6711", + "section": "10", + "instructor": "Zhengtian Xu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6550", + "section": "10", + "instructor": "Karen McDonnell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "33", + "instructor": "Paul Wagner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6042", + "section": "10", + "instructor": "Domonic Bearfield", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Local Government & the States", + "edition": "2nd", + "author": "Berman", + "isbn": "9781138580923", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$48.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Local Government & the States", + "edition": "2nd", + "author": "Berman", + "isbn": "9781138580923", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$36.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Managing Local Government", + "edition": "N/A", + "author": "Nelson", + "isbn": "9781506323374", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_NEW", + "price_display": "$105.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Managing Local Government", + "edition": "N/A", + "author": "Nelson", + "isbn": "9781506323374", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CQ Press c/o SAGE", + "type_condition": "RENTAL_NEW", + "price_display": "$78.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Managing Local Government", + "edition": "N/A", + "author": "Nelson", + "isbn": "9781506323374", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CQ Press c/o SAGE", + "type_condition": "RENTAL_USED", + "price_display": "$44.10", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Managing Local Government", + "edition": "N/A", + "author": "Nelson", + "isbn": "9781506323374", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_USED", + "price_display": "$78.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Managing Local Government", + "edition": "N/A", + "author": "Nelson", + "isbn": "9781506323381", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$43.99", + "item_type": "digital" + }, + { + "title": "Local Government and the States", + "edition": "2nd", + "author": "Berman", + "isbn": "9780429016103", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$48.95", + "item_type": "digital" + }, + { + "title": "Managing Local Government", + "edition": "N/A", + "author": "Nelson", + "isbn": "9781506323381", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "Managing Local Government", + "edition": "N/A", + "author": "Nelson", + "isbn": "9781506323381", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$55.00", + "item_type": "digital" + }, + { + "title": "Managing Local Government", + "edition": "1st", + "author": "Nelson", + "isbn": "9781506323381", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$79.74", + "item_type": "digital" + } + ] + }, + { + "department": "MBAD", + "course_num": "6235", + "section": "G80", + "instructor": "Senan Uyanik", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "92", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "3520", + "section": "10", + "instructor": "Kie-Bum Eom", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6898", + "section": "16", + "instructor": "Rollie Lal", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3428", + "section": "80", + "instructor": "Steven Roberts", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "3502", + "section": "10", + "instructor": "Heather Stebbins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "6450", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "31", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6274", + "section": "10P", + "instructor": "Susan Bracey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JSTD", + "course_num": "3190", + "section": "82", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6855", + "section": "10", + "instructor": "Milos Doroslovacki", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "3995", + "section": "13", + "instructor": "Karina Lora", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PT", + "course_num": "8361", + "section": "10", + "instructor": "Stephanie Hiser", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Trail Guide to the Body", + "edition": "5th", + "author": "Biel", + "isbn": "9780982978658", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Books of Discovery", + "type_condition": "RENTAL_USED", + "price_display": "$28.00", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Trail Guide to the Body", + "edition": "5th", + "author": "Biel", + "isbn": "9780982978658", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Books of Discovery", + "type_condition": "BUY_USED", + "price_display": "$52.50", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Trail Guide to the Body", + "edition": "5th", + "author": "Biel", + "isbn": "9780982978658", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Books of Discovery", + "type_condition": "BUY_NEW", + "price_display": "$69.99", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Physical Rehabilitation (w/Bindin AccessCode)", + "edition": "6th", + "author": "O'Sullivan", + "isbn": "9780803625792", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "F. A. Davis Company", + "type_condition": "RENTAL_USED", + "price_display": "$54.58", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physical Rehabilitation (w/Bindin AccessCode)", + "edition": "6th", + "author": "O'Sullivan", + "isbn": "9780803625792", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_USED", + "price_display": "$97.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physical Rehabilitation (w/Bindin AccessCode)", + "edition": "6th", + "author": "O'Sullivan", + "isbn": "9780803625792", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$129.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Physical Rehabilitation", + "edition": "6th", + "author": "F. A. Davis Company", + "isbn": "9780803640580", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$112.00", + "item_type": "digital" + } + ] + }, + { + "department": "EMSE", + "course_num": "6999", + "section": "21", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "42", + "instructor": "Wendy Pintado", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "6233", + "section": "10", + "instructor": "Michael Provance", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8101", + "section": "21", + "instructor": "Jaehwa Choi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "33", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6503", + "section": "30", + "instructor": "Paul Scovazzo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6384", + "section": "10", + "instructor": "Candice Chen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PT", + "course_num": "8323", + "section": "10", + "instructor": "Farhad Ostovari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GTCH", + "course_num": "2003", + "section": "10", + "instructor": "Meghan Hollibaugh Baker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1000", + "section": "11", + "instructor": "Tanya Wetenhall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6761", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6002", + "section": "30", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6121", + "section": "11", + "instructor": "Christina Fink", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2340W", + "section": "33", + "instructor": "James Hershberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8999", + "section": "12", + "instructor": "Neal Chalofsky", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "4107", + "section": "10", + "instructor": "Yuxin Hou", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8999", + "section": "15", + "instructor": "Rumana Riffat", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6999", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8998", + "section": "23", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6101", + "section": "14", + "instructor": "Benjamin Jacobs", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M74", + "instructor": "Hanan Daqqa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "MV1", + "instructor": "Theodore Christov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M81", + "instructor": "Carol Hayes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JSTD", + "course_num": "2002", + "section": "81", + "instructor": "Arie Dubnov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3710", + "section": "10", + "instructor": "Gema Santamaria Balmaceda", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "6102", + "section": "10", + "instructor": "Danny Leipziger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8998", + "section": "11", + "instructor": "Shaista Khilji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6273", + "section": "10", + "instructor": "Maroun Medlej", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "44", + "instructor": "Emily Marchese", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "6210", + "section": "10", + "instructor": "Radhashyam Giridharadas", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8998", + "section": "15", + "instructor": "Danmeng Shuai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8273", + "section": "10", + "instructor": "Loring Ingraham", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "3174", + "section": "80", + "instructor": "Douglas Boyce", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "43", + "instructor": "Ilias Balaras", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JSTD", + "course_num": "2002", + "section": "83", + "instructor": "Ilana Weltman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6000", + "section": "10", + "instructor": "Joseph Schmitthenner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "3201", + "section": "10", + "instructor": "Daphne Pee", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Leadership", + "edition": "9th", + "author": "Northouse", + "isbn": "9781544397566", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2021", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$92.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leadership", + "edition": "9th", + "author": "Northouse", + "isbn": "9781544397566", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2021", + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$51.45", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leadership", + "edition": "9th", + "author": "Northouse", + "isbn": "9781544397566", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2021", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$122.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leadership (Loose-Leaf)", + "edition": "9th", + "author": "Northouse", + "isbn": "9781071836149", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2021", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$63.75", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Leadership (Loose-Leaf)", + "edition": "9th", + "author": "Northouse", + "isbn": "9781071836149", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2021", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$85.00", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Leadership", + "edition": "9th", + "author": "Northouse", + "isbn": "9781071834473", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$43.99", + "item_type": "digital" + }, + { + "title": "Leadership", + "edition": "9th", + "author": "Northouse", + "isbn": "9781071834473", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "Leadership", + "edition": "9th", + "author": "Northouse", + "isbn": "9781071834473", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$55.00", + "item_type": "digital" + }, + { + "title": "Leadership - International Student Edition", + "edition": "9th", + "author": "Northouse", + "isbn": "9781071856567", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$72.50", + "item_type": "digital" + }, + { + "title": "Leadership", + "edition": "9th", + "author": "Northouse", + "isbn": "9781071834473", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$79.74", + "item_type": "digital" + } + ] + }, + { + "department": "SMPA", + "course_num": "2228", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "4198", + "section": "10", + "instructor": "Jasmine Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6852", + "section": "10", + "instructor": "Maxim Alekseyev", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1031", + "section": "10", + "instructor": "Samantha Appleby", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6101", + "section": "13", + "instructor": "Colin Green", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "26", + "instructor": "Sibin Mohan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6299", + "section": "11", + "instructor": "Benjamin Phelps", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLAV", + "course_num": "1001", + "section": "12", + "instructor": "Galina Shatalina", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Golosa Student Workbook, Book One", + "edition": "6th", + "author": "Robin", + "isbn": "9780367612894", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$87.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "GOLOSA: Basic Course in Russian Book 1", + "edition": "6th", + "author": "Robin", + "isbn": "9780367612801", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$110.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "GOLOSA: Basic Course in Russian Book 1", + "edition": "6th", + "author": "Robin", + "isbn": "9780367612801", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$83.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Golosa", + "edition": "6th", + "author": "Robin", + "isbn": "9781000597059", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$94.95", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6502", + "section": "25", + "instructor": "Matthew Kirwin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6998", + "section": "21", + "instructor": "John Helveston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "3300", + "section": "12", + "instructor": "Daniel Simons", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "3141", + "section": "10", + "instructor": "Lilien Robinson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "1021", + "section": "10", + "instructor": "Frank Lee", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "22", + "instructor": "Rumana Riffat", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "3131", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "46", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "6510", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "4199", + "section": "11", + "instructor": "Loren Kajikawa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3190", + "section": "10", + "instructor": "Scott Pace", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Crowded Orbits", + "edition": "N/A", + "author": "Moltz", + "isbn": "9780231159128", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$31.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Crowded Orbits", + "edition": "N/A", + "author": "Moltz", + "isbn": "9780231159128", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$42.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Spaceflight & Myth of Presidential Leadership", + "edition": "N/A", + "author": "Launius", + "isbn": "9780252066320", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "University of Illinois Press", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "item_type": "print" + }, + { + "title": "Spaceflight & Myth of Presidential Leadership", + "edition": "N/A", + "author": "Launius", + "isbn": "9780252066320", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1997", + "publisher": "University of Illinois Press", + "type_condition": "BUY_NEW", + "price_display": "$23.00", + "item_type": "print" + }, + { + "title": "Toward a Theory of Spacepower", + "edition": "N/A", + "author": "Lutes", + "isbn": "9781508922841", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CreateSpace", + "type_condition": "BUY_USED", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Toward a Theory of Spacepower", + "edition": "N/A", + "author": "Lutes", + "isbn": "9781508922841", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CreateSpace", + "type_condition": "BUY_NEW", + "price_display": "$23.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Crowded Orbits", + "edition": "N/A", + "author": "James", + "isbn": "9780231528177", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "item_type": "digital" + } + ] + }, + { + "department": "EXNS", + "course_num": "1110", + "section": "35", + "instructor": "Christopher Duncan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1051", + "section": "30", + "instructor": "Michael Moses", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6730", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "2047", + "section": "16", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "14", + "instructor": "James Lee", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6710", + "section": "80", + "instructor": "Hernan Abeledo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3195", + "section": "82", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "1601", + "section": "10", + "instructor": "Bernard Huckenpahler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6298", + "section": "10", + "instructor": "Sean Aday", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "53", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "2142", + "section": "10", + "instructor": "James Shine", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Biostatistics for the Biological & Health Sciences", + "edition": "2nd", + "author": "Triola", + "isbn": "9780134039015", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2018", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$117.92", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Biostatistics for the Biological & Health Sciences", + "edition": "2nd", + "author": "Triola", + "isbn": "9780134039015", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2018", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$280.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Biostatistics for the Biological & Health Sciences", + "edition": "2nd", + "author": "Triola", + "isbn": "9780134039015", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2018", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$210.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Biostatistics for the Biological & Health Sciences", + "edition": "2nd", + "author": "Triola", + "isbn": "9780134039015", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2018", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$182.49", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pearson eText for Biostatistics for the Biological and Health Sciences -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "2nd", + "author": "Triola", + "isbn": "9780137401512", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Biostatistics for the Biological and Health Sciences", + "edition": "2nd", + "author": "Triola", + "isbn": "9780134039114", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "Biostatistics for the Biological and Health Sciences", + "edition": "2nd", + "author": "Triola", + "isbn": "9780134679228", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "CPED", + "course_num": "6635", + "section": "12", + "instructor": "Sylven Beck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6999", + "section": "12", + "instructor": "Milos Doroslovacki", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JAPN", + "course_num": "3105", + "section": "10", + "instructor": "Takae Tsujioka", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Tobira", + "edition": "N/A", + "author": "Oka", + "isbn": "9784874244470", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "JPT America Inc", + "type_condition": "RENTAL_USED", + "price_display": "$23.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Tobira", + "edition": "N/A", + "author": "Oka", + "isbn": "9784874244470", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "JPT America Inc", + "type_condition": "BUY_NEW", + "price_display": "$57.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Tobira", + "edition": "N/A", + "author": "Oka", + "isbn": "9784874244470", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "JPT America Inc", + "type_condition": "BUY_USED", + "price_display": "$43.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Tobira", + "edition": "N/A", + "author": "Oka", + "isbn": "9784874244470", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "JPT America Inc", + "type_condition": "RENTAL_NEW", + "price_display": "$37.38", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CSCI", + "course_num": "6351", + "section": "81", + "instructor": "Abdou Youssef", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "4910W", + "section": "10", + "instructor": "Sergio Waisman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Respiracion Artificial (Delbosillo)", + "edition": "N/A", + "author": "Piglia", + "isbn": "9788490327845", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Imprt", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Respiracion Artificial (Delbosillo)", + "edition": "N/A", + "author": "Piglia", + "isbn": "9788490327845", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Imprt", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "PUBH", + "course_num": "6499", + "section": "10", + "instructor": "Adam Richards", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSSJ", + "course_num": "4198", + "section": "80", + "instructor": "Jodi Kanter", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6262", + "section": "10", + "instructor": "Aaron Henry", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "22", + "instructor": "Steven Joyce", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8515", + "section": "10", + "instructor": "Kyle Long", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8201", + "section": "30", + "instructor": "Katherine Marshall Woods", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3187", + "section": "11", + "instructor": "Omar Garcia Ponce", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1002", + "section": "31", + "instructor": "Forrest Maltzman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "3950W", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "2000", + "section": "12", + "instructor": "Jill Kasle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6290", + "section": "13", + "instructor": "Joseph Siryani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "10", + "instructor": "Anne Harrison", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "6364", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PT", + "course_num": "8355", + "section": "10", + "instructor": "Erin Wentzell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "4250", + "section": "10", + "instructor": "Antonio Lopez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8702", + "section": "10", + "instructor": "Marsha Regenstein", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1000", + "section": "10", + "instructor": "Jittip Mongkolnchaiarunya", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "2122", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1007", + "section": "11", + "instructor": "Farshad Foroozan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "RENTAL_USED", + "price_display": "$48.93", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "RENTAL_NEW", + "price_display": "$87.38", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "BUY_USED", + "price_display": "$87.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798860", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CRC Press", + "type_condition": "BUY_NEW", + "price_display": "$116.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "The Mathematics of Politics", + "edition": "2nd", + "author": "Robinson", + "isbn": "9781498798907", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$54.95", + "item_type": "digital" + } + ] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M32", + "instructor": "Kylie Quave", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6186", + "section": "20", + "instructor": "Adam Wunische", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "3133", + "section": "12", + "instructor": "Nino Paichadze", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6917", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "6270", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6999", + "section": "20", + "instructor": "Ahmed Louri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "1081", + "section": "12", + "instructor": "Maher Eshgi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "4150", + "section": "80", + "instructor": "Olivia Bullock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "72", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6542", + "section": "10", + "instructor": "Matthew Norris", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6097", + "section": "10", + "instructor": "David Silverman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6103", + "section": "10", + "instructor": "Ning Rui", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "2118", + "section": "35", + "instructor": "Joshua Landon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8999", + "section": "20", + "instructor": "Xitong Liu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "44", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "12", + "instructor": "Declan Cullen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "2281", + "section": "10", + "instructor": "Chris Meyers", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Environmental Philosophy", + "edition": "N/A", + "author": "James", + "isbn": "9780745645476", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Polity Press", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Environmental Philosophy", + "edition": "N/A", + "author": "James", + "isbn": "9780745645476", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Polity Press", + "type_condition": "RENTAL_NEW", + "price_display": "$19.46", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Environmental Philosophy", + "edition": "N/A", + "author": "James", + "isbn": "9780745645476", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Polity Press", + "type_condition": "BUY_NEW", + "price_display": "$25.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dialogues on Climate Justice", + "edition": "N/A", + "author": "Gardiner", + "isbn": "9781000623734", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$48.95", + "item_type": "digital" + } + ] + }, + { + "department": "SOC", + "course_num": "2139", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "6999", + "section": "10", + "instructor": "Ravi Achrol", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "10", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Comparative Politics (RRPHE)", + "edition": "2nd", + "author": "Samuels", + "isbn": "9780134562674", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Comparative Politics (RRPHE)", + "edition": "2nd", + "author": "Samuels", + "isbn": "9780134562674", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Comparative Politics (Subscription)", + "edition": "2nd", + "author": "Samuels", + "isbn": "9780134637174", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$55.00", + "item_type": "digital" + }, + { + "title": "Comparative Politics (Subscription)", + "edition": "2nd", + "author": "Samuels", + "isbn": "9780134637174", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "FREN", + "course_num": "1004", + "section": "11", + "instructor": "Sarah-Kay Hurst", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2101", + "section": "33", + "instructor": "Alicia Cooperman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ORSC", + "course_num": "4195", + "section": "10", + "instructor": "Gelaye Debebe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1041", + "section": "12", + "instructor": "Angela Ingram", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "90", + "instructor": "Steven Wallace", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "60", + "instructor": "Francesco Sinatora", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6243", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6450", + "section": "10", + "instructor": "Walcelio Melo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "1081", + "section": "10", + "instructor": "Michael O'Donnell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3908", + "section": "21", + "instructor": "Poorvi Vora", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6999", + "section": "15", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "2111", + "section": "10", + "instructor": "Joseph Trullinger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "1004", + "section": "10", + "instructor": "Yin-Lin Shen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Prin of Technical Drawing", + "edition": "N/A", + "author": "Giesecke", + "isbn": "9780023437359", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1992", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$164.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Prin of Technical Drawing", + "edition": "N/A", + "author": "Giesecke", + "isbn": "9780023437359", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "1992", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$219.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "AutoCAD 2024 Tutorial First Level 2D Fundamentals", + "edition": "N/A", + "author": "Shih", + "isbn": "9781630575854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "SDC Publications", + "type_condition": "BUY_USED", + "price_display": "$100.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "AutoCAD 2024 Tutorial First Level 2D Fundamentals", + "edition": "N/A", + "author": "Shih", + "isbn": "9781630575854", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "SDC Publications", + "type_condition": "BUY_NEW", + "price_display": "$134.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "AutoCAD 2024 Tutorial First Level 2D Fundamentals", + "edition": "N/A", + "author": "Shih", + "isbn": "9781630568306", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "SCHROFF DEVELOPMENT CORPORATIO", + "type_condition": "BUY_NEW", + "price_display": "$54.00", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "40", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "6120", + "section": "10", + "instructor": "Harald Griesshammer", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Classical Mechanics", + "edition": "3rd", + "author": "Goldstein", + "isbn": "9780201657029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Addison Wesley", + "type_condition": "BUY_NEW", + "price_display": "$280.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Classical Mechanics", + "edition": "3rd", + "author": "Goldstein", + "isbn": "9780201657029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_USED", + "price_display": "$117.92", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Classical Mechanics", + "edition": "3rd", + "author": "Goldstein", + "isbn": "9780201657029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Addison Wesley", + "type_condition": "BUY_USED", + "price_display": "$210.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Classical Mechanics", + "edition": "3rd", + "author": "Goldstein", + "isbn": "9780201657029", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2002", + "publisher": "Addison Wesley", + "type_condition": "RENTAL_NEW", + "price_display": "$210.56", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistical Physics", + "edition": "3rd", + "author": "Landau", + "isbn": "9780080230399", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "BUY_NEW", + "price_display": "$160.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistical Physics", + "edition": "3rd", + "author": "Landau", + "isbn": "9780080230399", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "BUY_USED", + "price_display": "$120.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Course of Theoretical Physics", + "edition": "3rd", + "author": "Lifshitz", + "isbn": "9781483103372", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Elsevier", + "type_condition": "BUY_NEW", + "price_display": "$93.95", + "item_type": "digital" + } + ] + }, + { + "department": "ECE", + "course_num": "8999", + "section": "23", + "instructor": "Volker Sorger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6198", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GENO", + "course_num": "8998", + "section": "10", + "instructor": "Ljubica Caldovic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "3001", + "section": "11", + "instructor": "Ayla Kayhan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6141", + "section": "10", + "instructor": "Nicholas Vonortas", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1051", + "section": "12", + "instructor": "Farshad Foroozan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "MyLab Math with Pearson eText -- Access Card (18 weeks) -- for Finite Mathematics and Calculus with Applications", + "edition": "11th", + "author": "Greenwell", + "isbn": "9780137376872", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$106.75", + "item_type": "digital" + } + ] + }, + { + "department": "CPED", + "course_num": "8101", + "section": "16", + "instructor": "Curtis Pyke", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6853", + "section": "10", + "instructor": "Scott Quinlan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Applied Statistics & SAS Prog Language", + "edition": "5th", + "author": "Cody", + "isbn": "9780131465329", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$171.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Applied Statistics & SAS Prog Language", + "edition": "5th", + "author": "Cody", + "isbn": "9780131465329", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$137.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Applied Statistics & SAS Prog Language", + "edition": "5th", + "author": "Cody", + "isbn": "9780131465329", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$72.03", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Applied Statistics & SAS Prog Language", + "edition": "5th", + "author": "Cody", + "isbn": "9780131465329", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$128.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little SAS Book: A Primer", + "edition": "6th", + "author": "Delwiche", + "isbn": "9781642952834", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "SAS Institute", + "type_condition": "BUY_NEW", + "price_display": "$56.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little SAS Book: A Primer", + "edition": "6th", + "author": "Delwiche", + "isbn": "9781642952834", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "SAS Institute", + "type_condition": "RENTAL_NEW", + "price_display": "$37.02", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little SAS Book: A Primer", + "edition": "6th", + "author": "Delwiche", + "isbn": "9781642952834", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "SAS Institute", + "type_condition": "RENTAL_USED", + "price_display": "$22.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little SAS Book: A Primer", + "edition": "6th", + "author": "Delwiche", + "isbn": "9781642952834", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "SAS Institute", + "type_condition": "BUY_USED", + "price_display": "$42.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Little SAS Book", + "edition": "6th", + "author": "Delwiche", + "isbn": "9781642953435", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "SAS Institute", + "type_condition": "BUY_NEW", + "price_display": "$42.99", + "item_type": "digital" + } + ] + }, + { + "department": "SLHS", + "course_num": "1011", + "section": "32", + "instructor": "Melanie-Joy Dorn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1111", + "section": "34", + "instructor": "Kinga Dobolyi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6502", + "section": "13", + "instructor": "Nathalie Al-Zyoud", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6285", + "section": "10", + "instructor": "Elvin Yuzugullu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "4182", + "section": "31", + "instructor": "Taeyoung Lee", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6303", + "section": "11", + "instructor": "Joseph Siryani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8254", + "section": "10", + "instructor": "Michelle Stock", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Influence, New & Expanded", + "edition": "N/A", + "author": "Cialdini", + "isbn": "9780062937650", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Influence, New & Expanded", + "edition": "N/A", + "author": "Cialdini", + "isbn": "9780062937650", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Influence, New & Expanded", + "edition": "N/A", + "author": "Cialdini", + "isbn": "9780062937650", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "HarperCollins Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$26.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Influence, New & Expanded", + "edition": "N/A", + "author": "Cialdini", + "isbn": "9780062937650", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "HarperCollins Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$15.40", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Influence, New and Expanded", + "edition": "N/A", + "author": "Cialdini", + "isbn": "9780062937674", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$16.99", + "item_type": "digital" + } + ] + }, + { + "department": "CNSL", + "course_num": "6101", + "section": "12", + "instructor": "Richard Lanthier", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "35", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "2117", + "section": "10", + "instructor": "Roberto Capanna", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MED", + "course_num": "8320", + "section": "50", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "3440", + "section": "10", + "instructor": "Yvonne Captain", + "term_name": "Fall 2023", + "texts": [ + { + "title": "En El Tiempo de Las Mariposas", + "edition": "N/A", + "author": "Alvarez", + "isbn": "9780452279964", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "New American Library", + "type_condition": "BUY_USED", + "price_display": "$10.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "En El Tiempo de Las Mariposas", + "edition": "N/A", + "author": "Alvarez", + "isbn": "9780452279964", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "New American Library", + "type_condition": "BUY_NEW", + "price_display": "$13.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "La Casa de la Laguna", + "edition": "N/A", + "author": "Ferre", + "isbn": "9780375700491", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "item_type": "print" + } + ] + }, + { + "department": "PUBH", + "course_num": "6864", + "section": "10", + "instructor": "Heather Hoffman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Survival Analysis Acc", + "edition": "2nd", + "author": "Klein", + "isbn": "9780387953991", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$199.99", + "item_type": "print" + }, + { + "title": "Survival Analysis Acc", + "edition": "2nd", + "author": "Klein", + "isbn": "9780387953991", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Springer Nature", + "type_condition": "BUY_USED", + "price_display": "$150.00", + "item_type": "print" + }, + { + "title": "Survival Analysis", + "edition": "3rd", + "author": "Kleinbaum", + "isbn": "9781441966452", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Springer Nature", + "type_condition": "RENTAL_USED", + "price_display": "$58.80", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Survival Analysis", + "edition": "3rd", + "author": "Kleinbaum", + "isbn": "9781441966452", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$139.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Survival Analysis", + "edition": "3rd", + "author": "Kleinbaum", + "isbn": "9781441966452", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Springer Nature", + "type_condition": "BUY_USED", + "price_display": "$105.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Survival Analysis Using SAS", + "edition": "N/A", + "author": "Allison", + "isbn": "9781599946405", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "SAS Publishing", + "type_condition": "RENTAL_USED", + "price_display": "$23.98", + "item_type": "print" + }, + { + "title": "Survival Analysis Using SAS", + "edition": "N/A", + "author": "Allison", + "isbn": "9781599946405", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "SAS Publishing", + "type_condition": "BUY_NEW", + "price_display": "$59.95", + "item_type": "print" + }, + { + "title": "Survival Analysis Using SAS", + "edition": "N/A", + "author": "Allison", + "isbn": "9781599946405", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "SAS Publishing", + "type_condition": "BUY_USED", + "price_display": "$45.00", + "item_type": "print" + }, + { + "title": "Survival Analysis Using SAS", + "edition": "N/A", + "author": "Allison", + "isbn": "9781599946405", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "SAS Publishing", + "type_condition": "RENTAL_NEW", + "price_display": "$44.96", + "item_type": "print" + }, + { + "title": "Survival Analysis", + "edition": "3rd", + "author": "Kleinbaum", + "isbn": "9781441966469", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$37.20", + "item_type": "digital" + }, + { + "title": "Survival Analysis", + "edition": "3rd", + "author": "Kleinbaum", + "isbn": "9781441966469", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$42.00", + "item_type": "digital" + }, + { + "title": "Survival Analysis", + "edition": "2nd", + "author": "Klein", + "isbn": "9780387216454", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$49.19", + "item_type": "digital" + }, + { + "title": "Survival Analysis", + "edition": "3rd", + "author": "Kleinbaum", + "isbn": "9781441966469", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$49.19", + "item_type": "digital" + }, + { + "title": "Survival Analysis", + "edition": "2nd", + "author": "Klein", + "isbn": "9780387216454", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$55.53", + "item_type": "digital" + }, + { + "title": "Survival Analysis Using SAS", + "edition": "2nd", + "author": "Allison", + "isbn": "9781599948843", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "SAS Institute", + "type_condition": "BUY_NEW", + "price_display": "$57.99", + "item_type": "digital" + }, + { + "title": "Survival Analysis", + "edition": "2nd", + "author": "Klein", + "isbn": "9780387216454", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "RENTAL_NEW", + "price_display": "$65.05", + "item_type": "digital" + }, + { + "title": "Survival Analysis", + "edition": "3rd", + "author": "Kleinbaum", + "isbn": "9781441966469", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$83.99", + "item_type": "digital" + }, + { + "title": "Survival Analysis", + "edition": "2nd", + "author": "Klein", + "isbn": "9780387216454", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$111.07", + "item_type": "digital" + } + ] + }, + { + "department": "SOC", + "course_num": "1003", + "section": "14", + "instructor": "Mohana Mukherjee", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Criminal Justice: Systems, Diversity, & Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398730", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$145.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Criminal Justice: Systems, Diversity, & Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398730", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$109.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Criminal Justice: Systems, Diversity, & Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398730", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$116.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Criminal Justice: Systems, Diversity, & Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398730", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$61.22", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introduction to Criminal Justice", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398754", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$51.99", + "item_type": "digital" + }, + { + "title": "Introduction to Criminal Justice", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398754", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$58.49", + "item_type": "digital" + }, + { + "title": "Introduction to Criminal Justice", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398754", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$65.00", + "item_type": "digital" + }, + { + "title": "Sage Vantage: Introduction to Criminal Justice: Systems, Diversity, and Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781071821336", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$83.00", + "item_type": "digital" + }, + { + "title": "Introduction to Criminal Justice", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398754", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$94.24", + "item_type": "digital" + } + ] + }, + { + "department": "SEAS", + "course_num": "1001", + "section": "23", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JSTD", + "course_num": "2002", + "section": "80", + "instructor": "Jeffrey Richter", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Small Town near Auschwitz", + "edition": "N/A", + "author": "Fulbrook", + "isbn": "9780199679256", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Small Town near Auschwitz", + "edition": "N/A", + "author": "Fulbrook", + "isbn": "9780199679256", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$29.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "My German Question", + "edition": "N/A", + "author": "Gay", + "isbn": "9780300080704", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Yale University Press", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "item_type": "print" + }, + { + "title": "My German Question", + "edition": "N/A", + "author": "Gay", + "isbn": "9780300080704", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Yale University Press", + "type_condition": "RENTAL_USED", + "price_display": "$8.00", + "item_type": "print" + }, + { + "title": "My German Question", + "edition": "N/A", + "author": "Gay", + "isbn": "9780300080704", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "item_type": "print" + }, + { + "title": "The Men with the Pink Triangle", + "edition": "N/A", + "author": "Heger", + "isbn": "9781593501785", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Alyson Publications", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Men with the Pink Triangle", + "edition": "N/A", + "author": "Heger", + "isbn": "9781593501785", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Alyson Publications", + "type_condition": "BUY_NEW", + "price_display": "$14.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Every Man Dies Alone", + "edition": "N/A", + "author": "Fallada", + "isbn": "9781612198262", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Melville House Publishing", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Every Man Dies Alone", + "edition": "N/A", + "author": "Fallada", + "isbn": "9781612198262", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Melville House Publishing", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "A Small Town Near Auschwitz", + "edition": "N/A", + "author": "Fulbrook", + "isbn": "9780191611759", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$16.24", + "item_type": "digital" + }, + { + "title": "A Small Town Near Auschwitz", + "edition": "N/A", + "author": "Fulbrook", + "isbn": "9780191611759", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$18.74", + "item_type": "digital" + }, + { + "title": "A Small Town Near Auschwitz", + "edition": "N/A", + "author": "Fulbrook", + "isbn": "9780191611759", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$24.99", + "item_type": "digital" + } + ] + }, + { + "department": "DNSC", + "course_num": "8998", + "section": "10", + "instructor": "Mehmet Tarimcilar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "3881", + "section": "80", + "instructor": "Xiaofei Kang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Gendering Chinese Religion", + "edition": "N/A", + "author": "Jia", + "isbn": "9781438453088", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "State University of New York Press", + "type_condition": "BUY_NEW", + "price_display": "$36.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gendering Chinese Religion", + "edition": "N/A", + "author": "Jia", + "isbn": "9781438453088", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "State University of New York Press", + "type_condition": "BUY_USED", + "price_display": "$27.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Memoirs of Lady Hyegyong", + "edition": "1st", + "author": "Haboush", + "isbn": "9780520957299", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$31.95", + "item_type": "digital" + }, + { + "title": "Gendering Chinese Religion", + "edition": "N/A", + "author": "Jia", + "isbn": "9781438453095", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Suny Press", + "type_condition": "BUY_NEW", + "price_display": "$34.50", + "item_type": "digital" + }, + { + "title": "Women, Gender, and Sexuality in China", + "edition": "N/A", + "author": "Yao", + "isbn": "9781317237501", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$46.95", + "item_type": "digital" + } + ] + }, + { + "department": "FINA", + "course_num": "6271", + "section": "11", + "instructor": "Elias Semaan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8260", + "section": "10", + "instructor": "Carolyn Lorente", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6137", + "section": "10", + "instructor": "Samuel Ledermann", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1005", + "section": "40", + "instructor": "Alexander Downes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M6", + "instructor": "Rachel Pollack", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "6201", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "104", + "instructor": "Anne-Laure Papa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8999", + "section": "22", + "instructor": "John Helveston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "19", + "instructor": "Stephen Redmon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "3145", + "section": "10", + "instructor": "Joel Slotten", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Fund of Astrodynamics", + "edition": "2nd", + "author": "Bate", + "isbn": "9780486497044", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "DOVER PUB INC", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fund of Astrodynamics", + "edition": "2nd", + "author": "Bate", + "isbn": "9780486497044", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "DOVER PUB INC", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Orbital Mechanics for Engineering Students", + "edition": "4th", + "author": "Curtis", + "isbn": "9780128240250", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Elsevier Science & Technology Books", + "type_condition": "BUY_NEW", + "price_display": "$99.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Orbital Mechanics for Engineering Students", + "edition": "4th", + "author": "Curtis", + "isbn": "9780128240250", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Elsevier Science & Technology Books", + "type_condition": "BUY_USED", + "price_display": "$75.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Orbital Mechanics for Engineering Students", + "edition": "4th", + "author": "Curtis", + "isbn": "9780323853453", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Elsevier", + "type_condition": "BUY_NEW", + "price_display": "$78.99", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "45", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PT", + "course_num": "8357", + "section": "10", + "instructor": "Marisa Birkmeier", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8998", + "section": "10", + "instructor": "George Howe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6012", + "section": "11", + "instructor": "Simeon Niles", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "2047", + "section": "10", + "instructor": "Elvira Restrepo Saenz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8718", + "section": "10", + "instructor": "Khadidiatou Ndiaye", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6101", + "section": "10", + "instructor": "Divya Narula", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1002", + "section": "30", + "instructor": "James Kerr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "2113", + "section": "32", + "instructor": "Kyle Levers", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1310", + "section": "MV", + "instructor": "Jennifer Bertolet", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1012", + "section": "31", + "instructor": "Ronald Bird", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "3150W", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "6292", + "section": "MV", + "instructor": "Megan Foley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "4198W", + "section": "12", + "instructor": "Chao Wei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WLP", + "course_num": "1110", + "section": "M4", + "instructor": "Hadas Aron", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1003", + "section": "34", + "instructor": "Adam Dean", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "2124W", + "section": "10", + "instructor": "Megan Davis", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Collected Schizophrenias", + "edition": "N/A", + "author": "Wang", + "isbn": "9781555978273", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Graywolf", + "type_condition": "RENTAL_USED", + "price_display": "$6.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Collected Schizophrenias", + "edition": "N/A", + "author": "Wang", + "isbn": "9781555978273", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Graywolf", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Collected Schizophrenias", + "edition": "N/A", + "author": "Wang", + "isbn": "9781555978273", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Graywolf", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Abnormal: Lectures at the College de France, 1974-1975", + "edition": "N/A", + "author": "Foucault", + "isbn": "9780312424053", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "St. Martin's Press (List Price Bks Only)", + "type_condition": "RENTAL_NEW", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Abnormal: Lectures at the College de France, 1974-1975", + "edition": "N/A", + "author": "Foucault", + "isbn": "9780312424053", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "St. Martin's Press (List Price Bks Only)", + "type_condition": "RENTAL_USED", + "price_display": "$10.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Abnormal: Lectures at the College de France, 1974-1975", + "edition": "N/A", + "author": "Foucault", + "isbn": "9780312424053", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "St. Martin's Press (List Price Bks Only)", + "type_condition": "BUY_NEW", + "price_display": "$25.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Abnormal: Lectures at the College de France, 1974-1975", + "edition": "N/A", + "author": "Foucault", + "isbn": "9780312424053", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "St. Martin's Press (List Price Bks Only)", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "PUBH", + "course_num": "3201", + "section": "10", + "instructor": "Keith Crandall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "3100W", + "section": "12", + "instructor": "Yvonne Captain", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "4199", + "section": "11", + "instructor": "Eyal Aviv", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "4185", + "section": "10", + "instructor": "Jonathan Chaves", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6444", + "section": "81", + "instructor": "Shiva Omrani Sabbaghi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "3811", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8149", + "section": "10", + "instructor": "Sandra Vanderbilt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "6997", + "section": "10", + "instructor": "Mohammad Faghfoory", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6247", + "section": "10", + "instructor": "Abigail Garvey Wilson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6998", + "section": "24", + "instructor": "Hao Huang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "6252", + "section": "80", + "instructor": "Elizabeth Vaquera", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "3143", + "section": "80", + "instructor": "David Ashley", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Marketing Research in Practice (Access Code)", + "edition": "3rd", + "author": "Ashley", + "isbn": "9781792492228", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Kendall Hunt Publishing Company", + "type_condition": "BUY_NEW", + "price_display": "$110.75", + "item_type": "print" + } + ] + }, + { + "department": "EDUC", + "course_num": "6610", + "section": "O10", + "instructor": "Bernhard Streitwieser", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GENO", + "course_num": "8234", + "section": "10", + "instructor": "Ljubica Caldovic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "1001", + "section": "30", + "instructor": "Phyllis Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1051", + "section": "31", + "instructor": "Sudip Bose", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M18", + "instructor": "Michael Svoboda", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Little Seagull Handbook (w/Guide to MLA 2021)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393877939", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$24.19", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Seagull Handbook (w/Guide to MLA 2021)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393877939", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$32.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Seagull Handbook (w/Guide to MLA 2021)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393877939", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$12.90", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Seagull Handbook (w/Guide to MLA 2021)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393877939", + "material_type": "BDL", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$24.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Little Seagull Handbook: 2021 MLA Update (Fourth Edition)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393536980", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$17.88", + "item_type": "digital" + }, + { + "title": "The Little Seagull Handbook: 2021 MLA Update (Fourth Edition)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393536980", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$22.75", + "item_type": "digital" + } + ] + }, + { + "department": "TSTD", + "course_num": "6221", + "section": "10", + "instructor": "Liang Yu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8999", + "section": "16", + "instructor": "Royce Francis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "3162", + "section": "10", + "instructor": "Steven Hamilton", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "6214", + "section": "10", + "instructor": "Zhaohai Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "80", + "instructor": "Yin-Lin Shen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6013", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M63", + "instructor": "Kristi Janzen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "6261", + "section": "US", + "instructor": "Melissa Boston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPJ", + "course_num": "4085", + "section": "10", + "instructor": "Matthew Eich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6721", + "section": "10", + "instructor": "Beatriz Coningham", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3230", + "section": "10", + "instructor": "Aaron Kessler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "6171", + "section": "80", + "instructor": "Jonathan Chaves", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "8999", + "section": "10", + "instructor": "Mehmet Tarimcilar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6001", + "section": "12", + "instructor": "Jennifer Brinkerhoff", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6021", + "section": "12", + "instructor": "Angela Hinzey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2151", + "section": "31", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M49", + "instructor": "Ebony Russ", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6640", + "section": "O10", + "instructor": "Liudmila Mikhailava", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "6172", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "3229", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2554", + "section": "10", + "instructor": "Andree Maling", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6240", + "section": "80", + "instructor": "Mona Zaghloul", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "2031W", + "section": "10", + "instructor": "Zachary Wolfe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2002", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "27", + "instructor": "Saniya LeBlanc", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8405", + "section": "10", + "instructor": "Avi Dor", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "3515", + "section": "10", + "instructor": "Weidong Cao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "3820W", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8260", + "section": "10", + "instructor": "Lynn Offermann", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3190", + "section": "83", + "instructor": "Aaron Bateman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "0940", + "section": "17", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "32", + "instructor": "Xiaofeng Ren", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1012", + "section": "37", + "instructor": "Joseph Goldfrank", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "30", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "6196", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6998", + "section": "18", + "instructor": "Arkady Yerukhimovich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1702", + "section": "10", + "instructor": "Eugene Montague", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ORSC", + "course_num": "2046", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M29", + "instructor": "Sandra Friedman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "2185", + "section": "10", + "instructor": "Anna Kimmel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8101", + "section": "15", + "instructor": "Tiffany-Rose Sikorski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1051", + "section": "36", + "instructor": "Francois Tuamokumo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6138", + "section": "15", + "instructor": "Samuel Ledermann", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "6250", + "section": "80", + "instructor": "Wayne Johnson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6015", + "section": "19", + "instructor": "Khadidiatou Ndiaye", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2123", + "section": "85", + "instructor": "Benjamin Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "4182", + "section": "10", + "instructor": "Taeyoung Lee", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8101", + "section": "15", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "1062", + "section": "10", + "instructor": "Christopher Venner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8148", + "section": "10", + "instructor": "Arshad Ali", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6006", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4243W", + "section": "31", + "instructor": "Xiaodong Qu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "89", + "instructor": "Kausik Sarkar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1232", + "section": "38", + "instructor": "Yanxiang Zhao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "TSTD", + "course_num": "4900", + "section": "80", + "instructor": "Jabneel Abreu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "3220", + "section": "31", + "instructor": "Amir Aslani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1071", + "section": "10", + "instructor": "Peter Fraize", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "MV6", + "instructor": "William Winstead", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6102", + "section": "10", + "instructor": "Abdi Awl", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2340W", + "section": "32", + "instructor": "James Hershberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3172", + "section": "13", + "instructor": "Gedeon Hakizimana", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Contemporary Conflict Resolution", + "edition": "4th", + "author": "Ramsbotham", + "isbn": "9780745687223", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Polity Press", + "type_condition": "BUY_USED", + "price_display": "$35.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Contemporary Conflict Resolution", + "edition": "4th", + "author": "Ramsbotham", + "isbn": "9780745687223", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Polity Press", + "type_condition": "RENTAL_NEW", + "price_display": "$35.06", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Contemporary Conflict Resolution", + "edition": "4th", + "author": "Ramsbotham", + "isbn": "9780745687223", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Polity Press", + "type_condition": "RENTAL_USED", + "price_display": "$18.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Contemporary Conflict Resolution", + "edition": "4th", + "author": "Ramsbotham", + "isbn": "9780745687223", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Polity Press", + "type_condition": "BUY_NEW", + "price_display": "$46.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "PSC", + "course_num": "8388", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "62", + "instructor": "Nakiella Strickland", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "OT", + "course_num": "8311", + "section": "10", + "instructor": "Sheila Moyle", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832154", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "RENTAL_NEW", + "price_display": "$45.19", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832154", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "BUY_NEW", + "price_display": "$60.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832154", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "BUY_USED", + "price_display": "$45.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832154", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "RENTAL_USED", + "price_display": "$26.51", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Program Devel & Grant Writing in Occupational Therapy", + "edition": "N/A", + "author": "Doll", + "isbn": "9780763760656", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$128.63", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Program Devel & Grant Writing in Occupational Therapy", + "edition": "N/A", + "author": "Doll", + "isbn": "9780763760656", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$171.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Program Devel & Grant Writing in Occupational Therapy", + "edition": "N/A", + "author": "Doll", + "isbn": "9780763760656", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$128.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Program Devel & Grant Writing in Occupational Therapy", + "edition": "N/A", + "author": "Doll", + "isbn": "9780763760656", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$72.03", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Occupational Perspective on Leadership", + "edition": "3rd", + "author": "Dunbar-Smalley", + "isbn": "9781630918514", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "SLACK INCORPORATED", + "type_condition": "BUY_NEW", + "price_display": "$71.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Occupational Perspective on Leadership", + "edition": "3rd", + "author": "Dunbar-Smalley", + "isbn": "9781630918514", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "SLACK INCORPORATED", + "type_condition": "BUY_USED", + "price_display": "$54.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Occupational Therapy Manager", + "edition": "6th", + "author": "Jacobs", + "isbn": "9781569003909", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "AMER OCCUPATION THERAPY ASSN", + "type_condition": "RENTAL_NEW", + "price_display": "$165.40", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Occupational Therapy Manager", + "edition": "6th", + "author": "Jacobs", + "isbn": "9781569003909", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "AMER OCCUPATION THERAPY ASSN", + "type_condition": "BUY_NEW", + "price_display": "$206.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Occupational Therapy Manager", + "edition": "6th", + "author": "Jacobs", + "isbn": "9781569003909", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "AMER OCCUPATION THERAPY ASSN", + "type_condition": "BUY_USED", + "price_display": "$155.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Occupational Therapy Manager", + "edition": "6th", + "author": "Jacobs", + "isbn": "9781569003909", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "AMER OCCUPATION THERAPY ASSN", + "type_condition": "RENTAL_USED", + "price_display": "$86.84", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Publication Manual (OFFICIAL) 7th Edition of the American Psychological Association", + "edition": "7th", + "author": "Association", + "isbn": "9781433832185", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "American Psychological Association", + "type_condition": "RENTAL_NEW", + "price_display": "$31.99", + "item_type": "digital" + }, + { + "title": "Publication Manual (OFFICIAL) 7th Edition of the American Psychological Association", + "edition": "7th", + "author": "Association", + "isbn": "9781433832185", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "American Psychological Association", + "type_condition": "BUY_NEW", + "price_display": "$35.99", + "item_type": "digital" + }, + { + "title": "Program Development and Grant Writing in Occupational Therapy: Making the Connection", + "edition": "N/A", + "author": "Doll", + "isbn": "9781449618162", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$102.02", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "6276", + "section": "10", + "instructor": "Jeanne Jordan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8998", + "section": "19", + "instructor": "Hernan Abeledo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6850", + "section": "80", + "instructor": "Joost Santos", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "34", + "instructor": "Timothy Wood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "4920W", + "section": "10", + "instructor": "Amir Aslani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6998", + "section": "19", + "instructor": "Bhagirath Narahari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "4279", + "section": "10", + "instructor": "Srinivas Prasad", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6290", + "section": "11", + "instructor": "Ali Pilehvar Mohammadabadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "6258", + "section": "10", + "instructor": "Bibiana Obler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6015", + "section": "14", + "instructor": "Uriyoan Colon-Ramos", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2373", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6317", + "section": "80", + "instructor": "Johnston Hall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "8120", + "section": "10", + "instructor": "Axel Schmidt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6503", + "section": "16", + "instructor": "Kunyao Xu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8322", + "section": "10", + "instructor": "Yas Nakib", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLAV", + "course_num": "2471", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6340", + "section": "10", + "instructor": "Fahim Sadek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "3110W", + "section": "10", + "instructor": "Tianshu Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8208", + "section": "10", + "instructor": "Kate Lieberman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "3112", + "section": "10", + "instructor": "Christina Gee", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Adolescence (RRMCG RENTAL Edition)", + "edition": "13th", + "author": "Steinberg", + "isbn": "9781264123797", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_NEW", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Adolescence (RRMCG RENTAL Edition)", + "edition": "13th", + "author": "Steinberg", + "isbn": "9781264123797", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$70.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Adolescence", + "edition": "13th", + "author": "Steinberg", + "isbn": "9781265740481", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$62.25", + "item_type": "digital" + }, + { + "title": "Adolescence", + "edition": "13th", + "author": "Steinberg", + "isbn": "9781265740481", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$79.25", + "item_type": "digital" + }, + { + "title": "Adolescence", + "edition": "13th", + "author": "Steinberg", + "isbn": "9781265740481", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$94.75", + "item_type": "digital" + } + ] + }, + { + "department": "FINA", + "course_num": "4201", + "section": "11", + "instructor": "Jeffrey Stoddard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8225", + "section": "31", + "instructor": "Karen Weise", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6137", + "section": "10", + "instructor": "Lance Price", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6502", + "section": "19", + "instructor": "Yasaman Sutton", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6999", + "section": "19", + "instructor": "Roger Lang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "2106", + "section": "10", + "instructor": "Loren Kajikawa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "2971W", + "section": "10", + "instructor": "Joseph Bonin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1001", + "section": "34", + "instructor": "James Kerr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "TSTD", + "course_num": "3301", + "section": "10", + "instructor": "Ibrahim Osta", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Hospitality: An Introduction", + "edition": "18th", + "author": "Brymer", + "isbn": "9798765727249", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Kendall Hunt Publishing Co", + "type_condition": "BUY_NEW", + "price_display": "$96.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hospitality: An Introduction", + "edition": "18th", + "author": "Brymer", + "isbn": "9798765727249", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Kendall Hunt Publishing Co", + "type_condition": "BUY_USED", + "price_display": "$72.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CNSL", + "course_num": "6101", + "section": "13", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "4149", + "section": "10", + "instructor": "Saniya LeBlanc", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "3131", + "section": "11", + "instructor": "Margaret Ulfers", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6101", + "section": "13", + "instructor": "Dwayne Wright", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1152", + "section": "10", + "instructor": "Jessica Denson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6058", + "section": "10", + "instructor": "Mary Ellsberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6239", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2110W", + "section": "13", + "instructor": "Michael Doyle", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$79.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$45.99", + "item_type": "digital" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$62.99", + "item_type": "digital" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$80.48", + "item_type": "digital" + } + ] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M26", + "instructor": "Sandra Friedman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "4189", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4454", + "section": "10", + "instructor": "Hurriyet Ok", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JAPN", + "course_num": "3111", + "section": "10", + "instructor": "Brendan Morley", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Classical Japanese Prose (Anthology)", + "edition": "N/A", + "author": "McCullough", + "isbn": "9780804719605", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1990", + "publisher": "Stanford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$15.98", + "item_type": "print" + }, + { + "title": "Classical Japanese Prose (Anthology)", + "edition": "N/A", + "author": "McCullough", + "isbn": "9780804719605", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1990", + "publisher": "Stanford University Press", + "type_condition": "BUY_NEW", + "price_display": "$39.95", + "item_type": "print" + }, + { + "title": "Classical Japanese Prose (Anthology)", + "edition": "N/A", + "author": "McCullough", + "isbn": "9780804719605", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1990", + "publisher": "Stanford University Press", + "type_condition": "BUY_USED", + "price_display": "$30.00", + "item_type": "print" + }, + { + "title": "Classical Japanese Prose (Anthology)", + "edition": "N/A", + "author": "McCullough", + "isbn": "9780804719605", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1990", + "publisher": "Stanford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$29.96", + "item_type": "print" + }, + { + "title": "Genji & Heike", + "edition": "N/A", + "author": "McCullough", + "isbn": "9780804722582", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Stanford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$14.78", + "item_type": "print" + }, + { + "title": "Genji & Heike", + "edition": "N/A", + "author": "McCullough", + "isbn": "9780804722582", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Stanford University Press", + "type_condition": "BUY_NEW", + "price_display": "$36.95", + "item_type": "print" + }, + { + "title": "Genji & Heike", + "edition": "N/A", + "author": "McCullough", + "isbn": "9780804722582", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Stanford University Press", + "type_condition": "BUY_USED", + "price_display": "$27.75", + "item_type": "print" + }, + { + "title": "Genji & Heike", + "edition": "N/A", + "author": "McCullough", + "isbn": "9780804722582", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1994", + "publisher": "Stanford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$27.71", + "item_type": "print" + } + ] + }, + { + "department": "WGSS", + "course_num": "2125", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ITAL", + "course_num": "1001", + "section": "10", + "instructor": "Tessa Gurney", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2123", + "section": "83", + "instructor": "Alessandra Fenizia", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "1001", + "section": "22", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "6309", + "section": "80", + "instructor": "Adam Jachimowicz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6299", + "section": "13", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "1051", + "section": "14", + "instructor": "Sara Waller", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "4710", + "section": "10", + "instructor": "Omer Kavaklioglu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6378", + "section": "17", + "instructor": "Gordon Gray", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Losing the Long Game", + "edition": "N/A", + "author": "Gordon", + "isbn": "9781250217035", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Losing the Long Game", + "edition": "N/A", + "author": "Gordon", + "isbn": "9781250217035", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$29.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Middle East & the United States", + "edition": "6th", + "author": "Lesch", + "isbn": "9780813350585", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$45.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Middle East & the United States", + "edition": "6th", + "author": "Lesch", + "isbn": "9780813350585", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "RENTAL_NEW", + "price_display": "$44.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Middle East & the United States", + "edition": "6th", + "author": "Lesch", + "isbn": "9780813350585", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "RENTAL_USED", + "price_display": "$23.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Middle East & the United States", + "edition": "6th", + "author": "Lesch", + "isbn": "9780813350585", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$59.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Elements of Style", + "edition": "4th", + "author": "Strunk", + "isbn": "9780205309023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$7.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Elements of Style", + "edition": "4th", + "author": "Strunk", + "isbn": "9780205309023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$9.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Middle East and the United States", + "edition": "6th", + "author": "W. Lesch", + "isbn": "9780429950711", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$59.95", + "item_type": "digital" + } + ] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "11", + "instructor": "Anne Harrison", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CLAS", + "course_num": "3170", + "section": "84", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPP", + "course_num": "6290", + "section": "10", + "instructor": "David Halliday", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6270", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "6233", + "section": "10", + "instructor": "Todd Miller", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M34", + "instructor": "Jessica McCaughey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8413", + "section": "14", + "instructor": "Christopher Mores", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8283", + "section": "10", + "instructor": "Risa Broudy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "2501", + "section": "10", + "instructor": "Ning Yu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLAV", + "course_num": "2361", + "section": "10", + "instructor": "Philippa Rappoport", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8101", + "section": "18", + "instructor": "Laura Engel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6503", + "section": "13", + "instructor": "Ian Saltz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6015", + "section": "10", + "instructor": "Anil Nathan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Cost-Benefit Analysis", + "edition": "5th", + "author": "Boardman", + "isbn": "9781108401296", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$69.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cost-Benefit Analysis", + "edition": "5th", + "author": "Boardman", + "isbn": "9781108401296", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$52.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cost-Benefit Analysis", + "edition": "5th", + "author": "Boardman", + "isbn": "9781108401296", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$52.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cost-Benefit Analysis", + "edition": "5th", + "author": "Boardman", + "isbn": "9781108401296", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_USED", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cost-Benefit Analysis", + "edition": "5th", + "author": "Boardman", + "isbn": "9781108244107", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$52.25", + "item_type": "digital" + }, + { + "title": "Cost-Benefit Analysis", + "edition": "5th", + "author": "Boardman", + "isbn": "9781108244107", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$65.50", + "item_type": "digital" + } + ] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "26", + "instructor": "Megan Leftwich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "1013", + "section": "10", + "instructor": "Herminia Gil Guerrero", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6104", + "section": "10", + "instructor": "Mina Attia", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "2118", + "section": "32", + "instructor": "Joshua Landon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3150", + "section": "11", + "instructor": "Steven Roberts", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6704", + "section": "10", + "instructor": "Rosanna Millora", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "11", + "instructor": "Sudip Bose", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Statistics", + "edition": "13th", + "author": "McClave", + "isbn": "9780134080215", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$312.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistics", + "edition": "13th", + "author": "McClave", + "isbn": "9780134080215", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$234.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistics", + "edition": "13th", + "author": "McClave", + "isbn": "9780134080215", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$234.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Statistics", + "edition": "13th", + "author": "McClave", + "isbn": "9780134080215", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$131.04", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "MATH", + "course_num": "1009", + "section": "11", + "instructor": "Jozef Przytycki", + "term_name": "Fall 2023", + "texts": [ + { + "title": "For All Practical Purposes", + "edition": "11th", + "author": "Comap", + "isbn": "9781319055707", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2022", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_USED", + "price_display": "$191.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "For All Practical Purposes", + "edition": "11th", + "author": "Comap", + "isbn": "9781319055707", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2022", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_NEW", + "price_display": "$254.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "For All Practical Purposes(LL)", + "edition": "11th", + "author": "Comap", + "isbn": "9781319057466", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2022", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_USED", + "price_display": "$126.75", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "For All Practical Purposes(LL)", + "edition": "11th", + "author": "Comap", + "isbn": "9781319057466", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2022", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_NEW", + "price_display": "$169.00", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "For All Practical Purposes", + "edition": "11th", + "author": "Comap", + "isbn": "9781319057480", + "material_type": "CEB", + "requirement_type": "CRQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$66.99", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "6998", + "section": "14", + "instructor": "Hyeong-Ah Choi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6503", + "section": "10", + "instructor": "Khadidiatou Ndiaye", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6173", + "section": "10", + "instructor": "Michelle Cormier", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Conflict, Security & Development", + "edition": "3rd", + "author": "Beswick", + "isbn": "9781138578579", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Conflict, Security & Development", + "edition": "3rd", + "author": "Beswick", + "isbn": "9781138578579", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$54.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bottom Billion", + "edition": "N/A", + "author": "Collier", + "isbn": "9780195373387", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2007", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$7.02", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bottom Billion", + "edition": "N/A", + "author": "Collier", + "isbn": "9780195373387", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2007", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bottom Billion", + "edition": "N/A", + "author": "Collier", + "isbn": "9780195373387", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2007", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$15.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Do No Harm", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781555878344", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Lynne Rienner Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$7.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Do No Harm", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781555878344", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Lynne Rienner Publishers", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Do No Harm", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781555878344", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Lynne Rienner Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$14.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Do No Harm", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781555878344", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Lynne Rienner Publishers", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Bottom Billion", + "edition": "N/A", + "author": "Collier", + "isbn": "9780199740949", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$7.79", + "item_type": "digital" + }, + { + "title": "The Bottom Billion", + "edition": "N/A", + "author": "Collier", + "isbn": "9780199740949", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$8.99", + "item_type": "digital" + }, + { + "title": "The Bottom Billion", + "edition": "N/A", + "author": "Collier", + "isbn": "9780199740949", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$11.99", + "item_type": "digital" + }, + { + "title": "Do No Harm", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781626372146", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "LYNNE RIENNER PUBLISHERS, INC.", + "type_condition": "BUY_NEW", + "price_display": "$18.94", + "item_type": "digital" + }, + { + "title": "Conflict, Security and Development", + "edition": "3rd", + "author": "Jackson", + "isbn": "9781351264143", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$54.95", + "item_type": "digital" + } + ] + }, + { + "department": "PHYS", + "course_num": "4195W", + "section": "10", + "instructor": "Alexander van der Horst", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "6999", + "section": "10", + "instructor": "Fran Buntman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1011", + "section": "MV", + "instructor": "Quinn Lester", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8270", + "section": "10", + "instructor": "Yulia Aleshina", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "15", + "instructor": "Arkady Yerukhimovich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "77", + "instructor": "Lijie Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "2123", + "section": "10", + "instructor": "Jessica Donze Black", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "1001", + "section": "80", + "instructor": "Zoe Szajnfarber", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6271", + "section": "10", + "instructor": "Harvey Peters", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ORSC", + "course_num": "2544", + "section": "80", + "instructor": "Yisheng Peng", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Psychology & Work", + "edition": "2nd", + "author": "Truxillo", + "isbn": "9780367151287", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$150.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Psychology & Work", + "edition": "2nd", + "author": "Truxillo", + "isbn": "9780367151287", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$112.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Psychology and Work", + "edition": "2nd", + "author": "Truxillo", + "isbn": "9780429618932", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$150.00", + "item_type": "digital" + } + ] + }, + { + "department": "MATH", + "course_num": "6522", + "section": "80", + "instructor": "Yanxiang Zhao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "KOR", + "course_num": "1001", + "section": "11", + "instructor": "Insung Ko", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6004", + "section": "11", + "instructor": "Jasmine Johnson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6995", + "section": "20", + "instructor": "Johan van Dorp", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "3170", + "section": "82", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "3121", + "section": "10", + "instructor": "Myeong-Ho Sohn", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Cognitive Psychology & Its Implications", + "edition": "9th", + "author": "Anderson", + "isbn": "9781319067113", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Worth Publishing Company", + "type_condition": "RENTAL_USED", + "price_display": "$149.13", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cognitive Psychology & Its Implications", + "edition": "9th", + "author": "Anderson", + "isbn": "9781319067113", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Worth Publishing Company", + "type_condition": "BUY_NEW", + "price_display": "$298.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cognitive Psychology & Its Implications", + "edition": "9th", + "author": "Anderson", + "isbn": "9781319067113", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Worth Publishing Company", + "type_condition": "BUY_USED", + "price_display": "$223.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cognitive Psychology & Its Implications", + "edition": "9th", + "author": "Anderson", + "isbn": "9781319067113", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Worth Publishing Company", + "type_condition": "RENTAL_NEW", + "price_display": "$208.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cognitive Psychology and Its Implications", + "edition": "9th", + "author": "Anderson", + "isbn": "9781319106997", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$66.99", + "item_type": "digital" + } + ] + }, + { + "department": "EALL", + "course_num": "4197", + "section": "10", + "instructor": "Immanuel Kim", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3908", + "section": "15", + "instructor": "Kartik Bulusu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "1033", + "section": "MV7", + "instructor": "Bethany Kung", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "2225", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6235", + "section": "10G", + "instructor": "Maroun Medlej", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6010", + "section": "13", + "instructor": "Keith Crandall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6171", + "section": "11", + "instructor": "Tobias Greiff", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6606", + "section": "10", + "instructor": "Sylven Beck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "3101", + "section": "11", + "instructor": "Brian Henderson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2002", + "section": "82", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PT", + "course_num": "8364", + "section": "10", + "instructor": "Marisa Birkmeier", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "17", + "instructor": "Robert Betz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Water 4.0", + "edition": "N/A", + "author": "Sedlak", + "isbn": "9780300176490", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$28.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Water 4.0", + "edition": "N/A", + "author": "Sedlak", + "isbn": "9780300176490", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Yale University Press", + "type_condition": "BUY_USED", + "price_display": "$21.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "When the Rivers Run Dry, Fully Revised & Updated Edition", + "edition": "N/A", + "author": "Pearce", + "isbn": "9780807054895", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "When the Rivers Run Dry, Fully Revised & Updated Edition", + "edition": "N/A", + "author": "Pearce", + "isbn": "9780807054895", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Let There Be Water", + "edition": "N/A", + "author": "Siegel", + "isbn": "9781250073952", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "St. Martin's Press", + "type_condition": "BUY_NEW", + "price_display": "$32.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Let There Be Water", + "edition": "N/A", + "author": "Siegel", + "isbn": "9781250073952", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "St. Martin's Press", + "type_condition": "BUY_USED", + "price_display": "$24.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Worth of Water", + "edition": "N/A", + "author": "White", + "isbn": "9780593189979", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Penguin Group USA Inc", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Worth of Water", + "edition": "N/A", + "author": "White", + "isbn": "9780593189979", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Penguin Group USA Inc", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Water 4.0", + "edition": "N/A", + "author": "Sedlak", + "isbn": "9780300199352", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "item_type": "digital" + } + ] + }, + { + "department": "STAT", + "course_num": "1051", + "section": "39", + "instructor": "Xiaoke Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "2006", + "section": "14", + "instructor": "Tania Leyva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WLP", + "course_num": "1110", + "section": "M1", + "instructor": "Mary Buckley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "6230", + "section": "10", + "instructor": "Hiromi Ishizawa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4907", + "section": "81", + "instructor": "Shiva Omrani Sabbaghi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6261", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "36", + "instructor": "Sharon Roosevelt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "4203W", + "section": "30", + "instructor": "Marguerite Barratt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6161", + "section": "33", + "instructor": "Margaux Repellin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "4151", + "section": "10", + "instructor": "Steven Shooter", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "KOR", + "course_num": "4107", + "section": "10", + "instructor": "Insung Ko", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M50", + "instructor": "Emma Francois", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "2045", + "section": "10", + "instructor": "Eric Saidel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSTD", + "course_num": "1010", + "section": "10", + "instructor": "Eli McCarthy", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Little Book of Restorative Justice (Rev)", + "edition": "N/A", + "author": "Zehr", + "isbn": "9781561488230", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Simon & Schuster", + "type_condition": "RENTAL_USED", + "price_display": "$3.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Book of Restorative Justice (Rev)", + "edition": "N/A", + "author": "Zehr", + "isbn": "9781561488230", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$6.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Book of Restorative Justice (Rev)", + "edition": "N/A", + "author": "Zehr", + "isbn": "9781561488230", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$7.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Book of Conflict Transformation", + "edition": "N/A", + "author": "Lederach", + "isbn": "9781561483907", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "GOOD BOOKS (CLOSED/ DO NOT USE)", + "type_condition": "BUY_USED", + "price_display": "$6.00", + "item_type": "print" + }, + { + "title": "Little Book of Conflict Transformation", + "edition": "N/A", + "author": "Lederach", + "isbn": "9781561483907", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "GOOD BOOKS (CLOSED/ DO NOT USE)", + "type_condition": "BUY_NEW", + "price_display": "$7.99", + "item_type": "print" + }, + { + "title": "Invitation to Peace Studies", + "edition": "N/A", + "author": "Wood", + "isbn": "9780190217136", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$46.52", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invitation to Peace Studies", + "edition": "N/A", + "author": "Wood", + "isbn": "9780190217136", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$83.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invitation to Peace Studies", + "edition": "N/A", + "author": "Wood", + "isbn": "9780190217136", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$83.06", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invitation to Peace Studies", + "edition": "N/A", + "author": "Wood", + "isbn": "9780190217136", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$110.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Book of Race & Restorative Justice", + "edition": "N/A", + "author": "Davis", + "isbn": "9781680993431", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Skyhorse Pub Co, Incorp", + "type_condition": "BUY_USED", + "price_display": "$6.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Book of Race & Restorative Justice", + "edition": "N/A", + "author": "Davis", + "isbn": "9781680993431", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Skyhorse Pub Co, Incorp", + "type_condition": "BUY_NEW", + "price_display": "$7.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just Peace Ethic", + "edition": "N/A", + "author": "McCarthy", + "isbn": "9781626167568", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Georgetown University Press", + "type_condition": "BUY_USED", + "price_display": "$37.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just Peace Ethic", + "edition": "N/A", + "author": "McCarthy", + "isbn": "9781626167568", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$49.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invitation to Peace Studies", + "edition": "N/A", + "author": "Wood", + "isbn": "9780190643324", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "RENTAL_NEW", + "price_display": "$42.99", + "item_type": "digital" + }, + { + "title": "A Just Peace Ethic Primer", + "edition": "N/A", + "author": "McCarthy", + "isbn": "9781626167575", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$46.75", + "item_type": "digital" + }, + { + "title": "Invitation to Peace Studies", + "edition": "N/A", + "author": "Wood", + "isbn": "9780190643324", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "RENTAL_NEW", + "price_display": "$49.60", + "item_type": "digital" + }, + { + "title": "Invitation to Peace Studies", + "edition": "N/A", + "author": "Wood", + "isbn": "9780190643324", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "BUY_NEW", + "price_display": "$66.14", + "item_type": "digital" + } + ] + }, + { + "department": "ECE", + "course_num": "6050", + "section": "19", + "instructor": "Roger Lang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6305", + "section": "10", + "instructor": "Joseph Barbera", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1022", + "section": "10", + "instructor": "Eileen Vidrine", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6715", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "0940", + "section": "16", + "instructor": "Julia Storberg-Walker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8101", + "section": "10", + "instructor": "Brandi Weiss", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "8999", + "section": "25", + "instructor": "Guru Prasadh Venkataramani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6385", + "section": "10", + "instructor": "David Shinn", + "term_name": "Fall 2023", + "texts": [ + { + "title": "China's Relations with Africa", + "edition": "N/A", + "author": "Shinn", + "isbn": "9780231210010", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "China's Relations with Africa", + "edition": "N/A", + "author": "Shinn", + "isbn": "9780231210010", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "20", + "instructor": "Robert Betz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Healthcare Politics & Policy in America", + "edition": "5th", + "author": "Patel", + "isbn": "9780367027742", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$47.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Healthcare Politics & Policy in America", + "edition": "5th", + "author": "Patel", + "isbn": "9780367027742", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$62.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding Health Policy A Clinical Approach", + "edition": "8th", + "author": "Bodenheimer", + "isbn": "9781260454260", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "McGraw-Hill", + "type_condition": "BUY_USED", + "price_display": "$37.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding Health Policy A Clinical Approach", + "edition": "8th", + "author": "Bodenheimer", + "isbn": "9781260454260", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$50.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding Health Policy A Clinical Approach", + "edition": "8th", + "author": "Bodenheimer", + "isbn": "9781260454260", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$35.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding Health Policy A Clinical Approach", + "edition": "8th", + "author": "Bodenheimer", + "isbn": "9781260454260", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_USED", + "price_display": "$25.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Governing Health", + "edition": "5th", + "author": "Weissert", + "isbn": "9781421428949", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "The Johns Hopkins University Press", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Governing Health", + "edition": "5th", + "author": "Weissert", + "isbn": "9781421428949", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "The Johns Hopkins University Press", + "type_condition": "BUY_NEW", + "price_display": "$54.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding Health Policy: A Clinical Approach, Eighth Edition", + "edition": "8th", + "author": "Bodenheimer", + "isbn": "9781260454277", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "McGraw-Hill Professional Publishing", + "type_condition": "BUY_NEW", + "price_display": "$40.75", + "item_type": "digital" + }, + { + "title": "Governing Health", + "edition": "5th", + "author": "Weissert", + "isbn": "9781421428956", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "The Johns Hopkins University Press", + "type_condition": "BUY_NEW", + "price_display": "$44.00", + "item_type": "digital" + }, + { + "title": "Healthcare Politics and Policy in America", + "edition": "5th", + "author": "Patel", + "isbn": "9780429674419", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$62.95", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "1012", + "section": "35", + "instructor": "Joseph Goldfrank", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "2182", + "section": "10", + "instructor": "Jasmine Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "42", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1005", + "section": "32", + "instructor": "Peter Nassar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M42", + "instructor": "Caroline Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "MV1", + "instructor": "Mark Croatti", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Cases & Concepts etc (w/Ebook & AC)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532890", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_NEW", + "price_display": "$96.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cases & Concepts etc (w/Ebook & AC)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532890", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_USED", + "price_display": "$50.82", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cases & Concepts etc (w/Ebook & AC)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532890", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$121.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cases & Concepts etc (w/Ebook & AC)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532890", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$90.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cases and Concepts in Comparative Politics (Second Edition)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532869", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$57.07", + "item_type": "digital" + }, + { + "title": "Cases and Concepts in Comparative Politics (Second Edition)", + "edition": "2nd", + "author": "O'Neil", + "isbn": "9780393532869", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$72.63", + "item_type": "digital" + } + ] + }, + { + "department": "HIST", + "course_num": "3170W", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "4289", + "section": "80", + "instructor": "Johnston Hall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "4101", + "section": "11", + "instructor": "Rodney Lake", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "8999", + "section": "10", + "instructor": "Elizabeth Tuckwiller", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6378", + "section": "16", + "instructor": "Shana Marshall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "3245W", + "section": "80", + "instructor": "Allyson Stokes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1002", + "section": "33", + "instructor": "James Kerr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3476", + "section": "10", + "instructor": "Lisa St. Clair Harvey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6118", + "section": "86", + "instructor": "Leniqueca Welcome", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2101", + "section": "10", + "instructor": "Alicia Cooperman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Data Analysis for Social Science", + "edition": "N/A", + "author": "Llaudet", + "isbn": "9780691199436", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$45.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Data Analysis for Social Science", + "edition": "N/A", + "author": "Llaudet", + "isbn": "9780691199436", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Data Analysis for Social Science", + "edition": "N/A", + "author": "Llaudet", + "isbn": "9780691229348", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$45.00", + "item_type": "digital" + } + ] + }, + { + "department": "GEOL", + "course_num": "1001", + "section": "33", + "instructor": "James Kerr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3145", + "section": "10", + "instructor": "Declan Cullen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "6374", + "section": "10", + "instructor": "Celeste Arrington", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2410W", + "section": "81", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "3131", + "section": "12", + "instructor": "Abigail Garvey Wilson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "6286", + "section": "10", + "instructor": "Ilias Balaras", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8999", + "section": "10", + "instructor": "Joost Santos", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "6268", + "section": "80", + "instructor": "Ivy Ken", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Black Feminist Thought", + "edition": "3rd", + "author": "Collins", + "isbn": "9780415964722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "RENTAL_USED", + "price_display": "$10.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Black Feminist Thought", + "edition": "3rd", + "author": "Collins", + "isbn": "9780415964722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Black Feminist Thought", + "edition": "3rd", + "author": "Collins", + "isbn": "9780415964722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Black Feminist Thought", + "edition": "3rd", + "author": "Collins", + "isbn": "9780415964722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$17.55", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introducing Intersectionality", + "edition": "N/A", + "author": "Romero", + "isbn": "9780745663678", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Polity Press", + "type_condition": "RENTAL_USED", + "price_display": "$10.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introducing Intersectionality", + "edition": "N/A", + "author": "Romero", + "isbn": "9780745663678", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Polity Press", + "type_condition": "BUY_NEW", + "price_display": "$26.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introducing Intersectionality", + "edition": "N/A", + "author": "Romero", + "isbn": "9780745663678", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Polity Press", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Brown & Gay in La", + "edition": "N/A", + "author": "Ocampo", + "isbn": "9781479824250", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "New York University Press", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Brown & Gay in La", + "edition": "N/A", + "author": "Ocampo", + "isbn": "9781479824250", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "New York University Press", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Struggling in the Land of Plenty", + "edition": "N/A", + "author": "Roschelle", + "isbn": "9781793600783", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Lexington Books", + "type_condition": "BUY_NEW", + "price_display": "$41.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Struggling in the Land of Plenty", + "edition": "N/A", + "author": "Roschelle", + "isbn": "9781793600783", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Lexington Books", + "type_condition": "BUY_USED", + "price_display": "$31.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Indigenous Dispossession", + "edition": "N/A", + "author": "Castellanos", + "isbn": "9781503614345", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Stanford University Press", + "type_condition": "BUY_NEW", + "price_display": "$25.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Indigenous Dispossession", + "edition": "N/A", + "author": "Castellanos", + "isbn": "9781503614345", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Stanford University Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Flatlining", + "edition": "N/A", + "author": "Wingfield", + "isbn": "9780520300347", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of California Press", + "type_condition": "RENTAL_USED", + "price_display": "$14.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Flatlining", + "edition": "N/A", + "author": "Wingfield", + "isbn": "9780520300347", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Flatlining", + "edition": "N/A", + "author": "Wingfield", + "isbn": "9780520300347", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Flatlining", + "edition": "N/A", + "author": "Wingfield", + "isbn": "9780520300347", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of California Press", + "type_condition": "RENTAL_NEW", + "price_display": "$20.97", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Webbed Connectivities", + "edition": "N/A", + "author": "Patil", + "isbn": "9781517911089", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "University of Minnesota Press", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Webbed Connectivities", + "edition": "N/A", + "author": "Patil", + "isbn": "9781517911089", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "University of Minnesota Press", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fearing the Black Body", + "edition": "N/A", + "author": "Strings", + "isbn": "9781479886753", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "New York University Press", + "type_condition": "RENTAL_USED", + "price_display": "$11.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fearing the Black Body", + "edition": "N/A", + "author": "Strings", + "isbn": "9781479886753", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "New York University Press", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fearing the Black Body", + "edition": "N/A", + "author": "Strings", + "isbn": "9781479886753", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "New York University Press", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introducing Intersectionality", + "edition": "1st", + "author": "Romero", + "isbn": "9781509525294", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$21.00", + "item_type": "digital" + }, + { + "title": "Fearing the Black Body", + "edition": "N/A", + "author": "Strings", + "isbn": "9781479831098", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "New York University Press", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "item_type": "digital" + }, + { + "title": "Black Feminist Thought, 30th Anniversary Edition", + "edition": "N/A", + "author": "Collins", + "isbn": "9781000506808", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$37.95", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "21", + "instructor": "Gabriel Parmer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ITAL", + "course_num": "1003", + "section": "10", + "instructor": "Paola Warfield", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Sentieri (LL)(w/SupersitePlus+36mthWebSAM Access Code)", + "edition": "3rd", + "author": "Cozzarelli", + "isbn": "9781543304442", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Vista Higher Learning, Incorp", + "type_condition": "BUY_NEW", + "price_display": "$365.00", + "item_type": "print" + } + ] + }, + { + "department": "LSPA", + "course_num": "1019", + "section": "10", + "instructor": "Laurel Brodsky", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2101", + "section": "10", + "instructor": "Donald Keller", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Research Methods in Psychology: Core Concepts and Skills, v2.1", + "edition": "N/A", + "author": "Price", + "isbn": "9781453335512", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Boston Academic DBA Flat World", + "type_condition": "RENTAL_NEW", + "price_display": "$48.00", + "item_type": "digital" + } + ] + }, + { + "department": "WLP", + "course_num": "1110", + "section": "M3", + "instructor": "Carly Jordan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "1502", + "section": "14", + "instructor": "Eric Lee", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3907", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "3390", + "section": "10", + "instructor": "Samuel Ashworth", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "2312", + "section": "30", + "instructor": "Kartik Bulusu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "TSTD", + "course_num": "6251", + "section": "10", + "instructor": "Liang Yu", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Stats Means Business", + "edition": "3rd", + "author": "Buglear", + "isbn": "9781138588226", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$61.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Stats Means Business", + "edition": "3rd", + "author": "Buglear", + "isbn": "9781138588226", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$81.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Stats Means Business", + "edition": "3rd", + "author": "Buglear", + "isbn": "9781138588226", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Routledge", + "type_condition": "RENTAL_USED", + "price_display": "$40.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "MAE", + "course_num": "4199", + "section": "11", + "instructor": "Steven Shooter", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6999", + "section": "10", + "instructor": "Sean Aday", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1010", + "section": "10", + "instructor": "Kartik Bulusu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2371", + "section": "10", + "instructor": "Bruce Dickson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Politics in China", + "edition": "3rd", + "author": "Joseph", + "isbn": "9780190870713", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$66.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Politics in China", + "edition": "3rd", + "author": "Joseph", + "isbn": "9780190870713", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$50.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Politics in China", + "edition": "3rd", + "author": "Joseph", + "isbn": "9780190870713", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$26.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Global China", + "edition": "N/A", + "author": "Chhabra", + "isbn": "9780815739166", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Brookings Institution Press", + "type_condition": "BUY_NEW", + "price_display": "$40.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Global China", + "edition": "N/A", + "author": "Chhabra", + "isbn": "9780815739166", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Brookings Institution Press", + "type_condition": "BUY_USED", + "price_display": "$30.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Party & the People", + "edition": "N/A", + "author": "Dickson", + "isbn": "9780691216973", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Party & the People", + "edition": "N/A", + "author": "Dickson", + "isbn": "9780691216973", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Party and the People", + "edition": "N/A", + "author": "Dickson", + "isbn": "9780691216966", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "item_type": "digital" + }, + { + "title": "Top Hat Classroom-One Semester", + "edition": "N/A", + "author": "Hat", + "isbn": "9780986615108", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Top Hat Monocle", + "type_condition": "RENTAL_NEW", + "price_display": "$35.25", + "item_type": "digital" + }, + { + "title": "Politics in China", + "edition": "3rd", + "author": "Joseph", + "isbn": "9780190870737", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$38.99", + "item_type": "digital" + }, + { + "title": "Politics in China", + "edition": "3rd", + "author": "Joseph", + "isbn": "9780190870737", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$44.99", + "item_type": "digital" + }, + { + "title": "Politics in China", + "edition": "3rd", + "author": "Joseph", + "isbn": "9780190870737", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$59.99", + "item_type": "digital" + } + ] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "36", + "instructor": "Jasmine Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6207", + "section": "10", + "instructor": "Patricia MacTaggart", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3198", + "section": "10", + "instructor": "Courtney Zsitek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "6999", + "section": "10", + "instructor": "Michael Doering", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1003", + "section": "10", + "instructor": "Vladislav Sadtchenko", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "55", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8998", + "section": "18", + "instructor": "Ekundayo Shittu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6003", + "section": "11", + "instructor": "Stephanie Cellini", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8999", + "section": "10", + "instructor": "Maria Cseh", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LATN", + "course_num": "3001", + "section": "80", + "instructor": "Elise Friedland", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Caesar Reader", + "edition": "N/A", + "author": "Caesar", + "isbn": "9780865166967", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Bolchazy-Carducci Publishers", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Caesar Reader", + "edition": "N/A", + "author": "Caesar", + "isbn": "9780865166967", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Bolchazy-Carducci Publishers", + "type_condition": "BUY_NEW", + "price_display": "$19.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "43", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "12", + "instructor": "Hyeong-Ah Choi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "6255", + "section": "10", + "instructor": "Michael Keidar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOMP", + "course_num": "6999", + "section": "10", + "instructor": "David Braun", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEHD", + "course_num": "8999", + "section": "14", + "instructor": "Julia Storberg-Walker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6100", + "section": "10", + "instructor": "Joshua Glazer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6101", + "section": "14", + "instructor": "Joseph Bocchino", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2101", + "section": "30", + "instructor": "Alicia Cooperman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "6265", + "section": "10", + "instructor": "Eiko Strader", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Poverty", + "edition": "2nd", + "author": "Lister", + "isbn": "9780745645971", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Polity Press", + "type_condition": "BUY_NEW", + "price_display": "$26.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Poverty", + "edition": "2nd", + "author": "Lister", + "isbn": "9780745645971", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Polity Press", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Welfare and the Welfare State", + "edition": "2nd", + "author": "Greve", + "isbn": "9781000764659", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$46.95", + "item_type": "digital" + } + ] + }, + { + "department": "MBAD", + "course_num": "6224", + "section": "10P", + "instructor": "Philippe Delquie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6065", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "3175", + "section": "11", + "instructor": "Shana Mashego", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYL", + "course_num": "6211", + "section": "10", + "instructor": "Katherine Kennedy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1111", + "section": "35", + "instructor": "Kinga Dobolyi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "1012", + "section": "10", + "instructor": "Xiangyun Qiu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6101", + "section": "14", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "4001", + "section": "11", + "instructor": "Ryan Lloyd", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6854", + "section": "10", + "instructor": "Maxim Alekseyev", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "4001", + "section": "80", + "instructor": "Edwin Lo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6186", + "section": "11", + "instructor": "Michael Purcell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "18", + "instructor": "Amber Carter", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2101", + "section": "12", + "instructor": "Edi Jurkovic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "3115", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6640", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "1110", + "section": "32", + "instructor": "Christopher Duncan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "6268", + "section": "10", + "instructor": "Karin Spencer", + "term_name": "Fall 2023", + "texts": [ + { + "title": "What Happened to You?", + "edition": "N/A", + "author": "Winfrey", + "isbn": "9781250223180", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Macmillan Trade", + "type_condition": "BUY_NEW", + "price_display": "$28.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "What Happened to You?", + "edition": "N/A", + "author": "Winfrey", + "isbn": "9781250223180", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Macmillan Trade", + "type_condition": "RENTAL_NEW", + "price_display": "$21.74", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "What Happened to You?", + "edition": "N/A", + "author": "Winfrey", + "isbn": "9781250223180", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Macmillan Trade", + "type_condition": "RENTAL_USED", + "price_display": "$12.76", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "What Happened to You?", + "edition": "N/A", + "author": "Winfrey", + "isbn": "9781250223180", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Macmillan Trade", + "type_condition": "BUY_USED", + "price_display": "$21.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Infants & Children: Prenatal Through Middle Childhood (LL)", + "edition": "N/A", + "author": "Berk", + "isbn": "9781071895566", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$120.00", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Infants & Children: Prenatal Through Middle Childhood (LL)", + "edition": "N/A", + "author": "Berk", + "isbn": "9781071895566", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$90.00", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Infants and Children", + "edition": "9th", + "author": "Berk", + "isbn": "9781071895139", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$59.99", + "item_type": "digital" + }, + { + "title": "Infants and Children", + "edition": "9th", + "author": "Berk", + "isbn": "9781071895139", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$67.49", + "item_type": "digital" + }, + { + "title": "Infants and Children", + "edition": "9th", + "author": "Berk", + "isbn": "9781071895139", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$75.00", + "item_type": "digital" + }, + { + "title": "Infants and Children", + "edition": "9th", + "author": "Berk", + "isbn": "9781071895139", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$108.74", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "2182", + "section": "11", + "instructor": "Tomas Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "6230", + "section": "10", + "instructor": "Subrata Kundu", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Causal Inference for Statistics, Social, & Biomedical Sciences", + "edition": "N/A", + "author": "Imbens", + "isbn": "9780521885881", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_USED", + "price_display": "$27.10", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Causal Inference for Statistics, Social, & Biomedical Sciences", + "edition": "N/A", + "author": "Imbens", + "isbn": "9780521885881", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$67.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Causal Inference for Statistics, Social, & Biomedical Sciences", + "edition": "N/A", + "author": "Imbens", + "isbn": "9780521885881", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$51.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Causal Inference for Statistics, Social, and Biomedical Sciences", + "edition": "N/A", + "author": "Imbens", + "isbn": "9781316093818", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$49.50", + "item_type": "digital" + }, + { + "title": "Causal Inference for Statistics, Social, and Biomedical Sciences", + "edition": "N/A", + "author": "Imbens", + "isbn": "9781316093818", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$61.75", + "item_type": "digital" + } + ] + }, + { + "department": "PSYC", + "course_num": "2560", + "section": "80", + "instructor": "Tiffany Bisbey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "6998", + "section": "11", + "instructor": "Amanda Visek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "31", + "instructor": "Megan Wurm", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2151", + "section": "12", + "instructor": "James Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2101", + "section": "13", + "instructor": "Nicholas Talisman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1085", + "section": "11", + "instructor": "Michael Schmitz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2340W", + "section": "30", + "instructor": "James Hershberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "6995", + "section": "11", + "instructor": "Yanxiang Zhao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6155", + "section": "10", + "instructor": "Olivia Bentley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "24", + "instructor": "Marko Vujicic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2180", + "section": "13", + "instructor": "Dina Rady", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6269", + "section": "12", + "instructor": "Danielle Hickman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1112", + "section": "10", + "instructor": "James Taylor", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "6255", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "6240", + "section": "10", + "instructor": "Mackenzie Fama", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "4199", + "section": "10", + "instructor": "Lisa Lipinski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CANC", + "course_num": "8998", + "section": "10", + "instructor": "Norman Lee", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "2233", + "section": "37", + "instructor": "Michael Coleman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "1601", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3164", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "6550", + "section": "10", + "instructor": "Liana Chen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6999", + "section": "16", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "13", + "instructor": "Tabitha Razunguzwa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2014", + "section": "10", + "instructor": "Stephen Dopkins", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Cognition: Theory & Practice", + "edition": "N/A", + "author": "Revlin", + "isbn": "9780716756675", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_NEW", + "price_display": "$349.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Cognition: Theory & Practice", + "edition": "N/A", + "author": "Revlin", + "isbn": "9780716756675", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "W. H. Freeman & Company", + "type_condition": "BUY_USED", + "price_display": "$262.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Cognition: Theory & Practice", + "edition": "N/A", + "author": "Revlin", + "isbn": "9780716756675", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "W. H. Freeman & Company", + "type_condition": "RENTAL_USED", + "price_display": "$146.69", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Cognition", + "edition": "N/A", + "author": "Revlin", + "isbn": "9781319469054", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$81.99", + "item_type": "digital" + } + ] + }, + { + "department": "MATH", + "course_num": "2185", + "section": "10", + "instructor": "Gerald Daigle", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Linear Algebra, Books a la Carte Edition", + "edition": "5th", + "author": "Friedberg", + "isbn": "9780134876979", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$187.25", + "binding": "Loose-Leaf", + "item_type": "print" + } + ] + }, + { + "department": "PSC", + "course_num": "2101", + "section": "15", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6450", + "section": "11", + "instructor": "Koorosh Sobhani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "4198", + "section": "10", + "instructor": "Kimberly Gross", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6015", + "section": "25", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "2102", + "section": "80", + "instructor": "Emmanuel Teitelbaum", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "69", + "instructor": "Thomas Mazzuchi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "16", + "instructor": "Bashar Fakhry", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "3127", + "section": "10", + "instructor": "Neil Johnson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "1102", + "section": "10", + "instructor": "Monica Ruiz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Sanitarians", + "edition": "N/A", + "author": "Duffy", + "isbn": "9780252062766", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "University of Illinois Press", + "type_condition": "BUY_NEW", + "price_display": "$32.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sanitarians", + "edition": "N/A", + "author": "Duffy", + "isbn": "9780252062766", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1992", + "publisher": "University of Illinois Press", + "type_condition": "BUY_USED", + "price_display": "$24.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ghost Map", + "edition": "N/A", + "author": "Johnson", + "isbn": "9781594482694", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Berkley Publishing Group", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ghost Map", + "edition": "N/A", + "author": "Johnson", + "isbn": "9781594482694", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Berkley Publishing Group", + "type_condition": "RENTAL_NEW", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ghost Map", + "edition": "N/A", + "author": "Johnson", + "isbn": "9781594482694", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Berkley Publishing Group", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CPJ", + "course_num": "2091", + "section": "80", + "instructor": "Matthew Eich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "0940", + "section": "12", + "instructor": "Ellen Scully-Russ", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8999", + "section": "20", + "instructor": "Michael Casemore", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "8999", + "section": "11", + "instructor": "Payman Dehghanian", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6003", + "section": "12", + "instructor": "Christopher Carrigan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Prin of Microeconomics", + "edition": "9th", + "author": "Mankiw", + "isbn": "9780357133484", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2021", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$237.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Prin of Microeconomics", + "edition": "9th", + "author": "Mankiw", + "isbn": "9780357133484", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2021", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$133.04", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Prin of Microeconomics", + "edition": "9th", + "author": "Mankiw", + "isbn": "9780357133484", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2021", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$205.89", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Prin of Microeconomics", + "edition": "9th", + "author": "Mankiw", + "isbn": "9780357133484", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2021", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$316.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Naked Economics", + "edition": "3rd", + "author": "Wheelan", + "isbn": "9780393356496", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Naked Economics", + "edition": "3rd", + "author": "Wheelan", + "isbn": "9780393356496", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_USED", + "price_display": "$7.18", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Naked Economics", + "edition": "3rd", + "author": "Wheelan", + "isbn": "9780393356496", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2019", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Naked Economics: Undressing the Dismal Science", + "edition": "3rd", + "author": "Wheelan", + "isbn": "9780393356946", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "item_type": "digital" + }, + { + "title": "Principles of Microeconomics", + "edition": "9th", + "author": "Mankiw", + "isbn": "9780357133835", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$52.49", + "item_type": "digital" + }, + { + "title": "Principles of Microeconomics", + "edition": "9th", + "author": "Mankiw", + "isbn": "9780357133835", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$75.99", + "item_type": "digital" + }, + { + "title": "Principles of Microeconomics", + "edition": "9th", + "author": "Mankiw", + "isbn": "9780357133835", + "material_type": "CEB", + "requirement_type": "RM", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$91.49", + "item_type": "digital" + } + ] + }, + { + "department": "GEOG", + "course_num": "1002", + "section": "M31", + "instructor": "Nikolay Shiklomanov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "2123", + "section": "10", + "instructor": "Shana Mashego", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6106", + "section": "10", + "instructor": "Benn Tannenbaum", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SUST", + "course_num": "3097", + "section": "31", + "instructor": "Robert Orttung", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4455", + "section": "10", + "instructor": "Juman Byun", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "1072", + "section": "10", + "instructor": "Ana-Maria Jaramillo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "6995", + "section": "12", + "instructor": "Yanxiang Zhao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6377", + "section": "10", + "instructor": "Marc Lynch", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "6400", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "4535", + "section": "81", + "instructor": "Ahmed Louri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8999", + "section": "18", + "instructor": "David Broniatowski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "2107", + "section": "30", + "instructor": "James Mahshie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4198", + "section": "10", + "instructor": "Zoe Szajnfarber", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "3130", + "section": "10", + "instructor": "MaryBeth Musumeci", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Health Economics & Financing", + "edition": "6th", + "author": "Getzen", + "isbn": "9781119815686", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$146.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Health Economics & Financing", + "edition": "6th", + "author": "Getzen", + "isbn": "9781119815686", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$110.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Health Economics and Financing", + "edition": "6th", + "author": "Getzen", + "isbn": "9781119788577", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$38.22", + "item_type": "digital" + }, + { + "title": "Health Economics and Financing", + "edition": "6th", + "author": "Getzen", + "isbn": "9781119788577", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$91.00", + "item_type": "digital" + } + ] + }, + { + "department": "TSTD", + "course_num": "6263", + "section": "10", + "instructor": "Cevat Tosun", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6999", + "section": "10", + "instructor": "Gina Adam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "3912", + "section": "10", + "instructor": "Seyyed Nasr", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Dancing Wu Li Masters (with New Intro)", + "edition": "N/A", + "author": "Zukav", + "isbn": "9780060959685", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2001", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$17.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dancing Wu Li Masters (with New Intro)", + "edition": "N/A", + "author": "Zukav", + "isbn": "9780060959685", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2001", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beyond the Postmodern Mind", + "edition": "N/A", + "author": "Smith", + "isbn": "9780835608305", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Theosophical Publishing House", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beyond the Postmodern Mind", + "edition": "N/A", + "author": "Smith", + "isbn": "9780835608305", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Theosophical Publishing House", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Need for a Sacred Science", + "edition": "N/A", + "author": "Nasr", + "isbn": "9780791415184", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "State University of New York Press", + "type_condition": "BUY_NEW", + "price_display": "$31.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Need for a Sacred Science", + "edition": "N/A", + "author": "Nasr", + "isbn": "9780791415184", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "State University of New York Press", + "type_condition": "BUY_USED", + "price_display": "$24.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Temple in Man", + "edition": "N/A", + "author": "Schwaller De Lubicz", + "isbn": "9780892810215", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1981", + "publisher": "Inner Traditions International, Limited", + "type_condition": "BUY_NEW", + "price_display": "$12.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Temple in Man", + "edition": "N/A", + "author": "Schwaller De Lubicz", + "isbn": "9780892810215", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1981", + "publisher": "Inner Traditions International, Limited", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Science & Religion: In Search of Cosmic Purpose", + "edition": "N/A", + "author": "Haught", + "isbn": "9780878408658", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$65.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Science & Religion: In Search of Cosmic Purpose", + "edition": "N/A", + "author": "Haught", + "isbn": "9780878408658", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Georgetown University Press", + "type_condition": "BUY_USED", + "price_display": "$49.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wisdom of Ancient Cosmology", + "edition": "N/A", + "author": "Smith", + "isbn": "9780962998478", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Fdn for Traditional Studies", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wisdom of Ancient Cosmology", + "edition": "N/A", + "author": "Smith", + "isbn": "9780962998478", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Fdn for Traditional Studies", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Dancing Wu Li Masters", + "edition": "N/A", + "author": "Zukav", + "isbn": "9780061926389", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$14.99", + "item_type": "digital" + }, + { + "title": "The Need for a Sacred Science", + "edition": "N/A", + "author": "Nasr", + "isbn": "9781438414232", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Suny Press", + "type_condition": "BUY_NEW", + "price_display": "$32.75", + "item_type": "digital" + }, + { + "title": "Science and Religion in Search of Cosmic Purpose", + "edition": "N/A", + "author": "Haught", + "isbn": "9781589014114", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$56.00", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "3190", + "section": "11", + "instructor": "Yan Bennett", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3097", + "section": "11", + "instructor": "Steven Brady", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6800", + "section": "10", + "instructor": "Omer Kavaklioglu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "1010", + "section": "31", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M14", + "instructor": "Nasreen Abbas", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "8375", + "section": "80", + "instructor": "Robert Phillips", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4190", + "section": "10", + "instructor": "Eric Dano", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "3881", + "section": "80", + "instructor": "Xiaofei Kang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Gendering Chinese Religion", + "edition": "N/A", + "author": "Jia", + "isbn": "9781438453088", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "State University of New York Press", + "type_condition": "BUY_NEW", + "price_display": "$36.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gendering Chinese Religion", + "edition": "N/A", + "author": "Jia", + "isbn": "9781438453088", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "State University of New York Press", + "type_condition": "BUY_USED", + "price_display": "$27.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Memoirs of Lady Hyegyong", + "edition": "1st", + "author": "Haboush", + "isbn": "9780520957299", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$31.95", + "item_type": "digital" + }, + { + "title": "Gendering Chinese Religion", + "edition": "N/A", + "author": "Jia", + "isbn": "9781438453095", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Suny Press", + "type_condition": "BUY_NEW", + "price_display": "$34.50", + "item_type": "digital" + }, + { + "title": "Women, Gender, and Sexuality in China", + "edition": "N/A", + "author": "Yao", + "isbn": "9781317237501", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$46.95", + "item_type": "digital" + } + ] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "59", + "instructor": "Candice Johnson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6007", + "section": "11", + "instructor": "Joseph Cordes", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Microeconomics", + "edition": "3rd", + "author": "Goolsbee", + "isbn": "9781319105563", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$428.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Microeconomics", + "edition": "3rd", + "author": "Goolsbee", + "isbn": "9781319105563", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$179.87", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Microeconomics", + "edition": "3rd", + "author": "Goolsbee", + "isbn": "9781319105563", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$321.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "PPPA-6007 Course Pack (Fall 2021)", + "edition": "N/A", + "author": "Cordes", + "isbn": null, + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "LAD Custom Pub", + "type_condition": "BUY_NEW", + "price_display": "$51.00", + "item_type": "print" + }, + { + "title": "Microeconomics", + "edition": "3rd", + "author": "Goolsbee", + "isbn": "9781319105570", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$95.99", + "item_type": "digital" + } + ] + }, + { + "department": "FREN", + "course_num": "1003", + "section": "11", + "instructor": "Hadia Anaye", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "TSTD", + "course_num": "6264", + "section": "10", + "instructor": "Lisa Neirotti", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "8999", + "section": "10", + "instructor": "Martin Zysmilich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1012", + "section": "32", + "instructor": "Ronald Bird", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "4995", + "section": "10", + "instructor": "Mehmet Tarimcilar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "8999", + "section": "18", + "instructor": "Can Korman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2482", + "section": "10", + "instructor": "David Throup", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "2053", + "section": "14", + "instructor": "Balaji Hebbar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "10", + "instructor": "David Szakonyi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "6004", + "section": "MV", + "instructor": "Eric Bernard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1102", + "section": "30", + "instructor": "Douglas Boyce", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2015", + "section": "11", + "instructor": "Haedar Abuirqeba", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Brain & Behavior", + "edition": "7th", + "author": "Kolb", + "isbn": "9781319254384", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$349.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Brain & Behavior", + "edition": "7th", + "author": "Kolb", + "isbn": "9781319254384", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Worth Publishers, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$261.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "An Introduction to Brain and Behavior", + "edition": "7th", + "author": "Kolb", + "isbn": "9781319452667", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$80.99", + "item_type": "digital" + } + ] + }, + { + "department": "MATH", + "course_num": "2233", + "section": "35", + "instructor": "Frank Baginski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6399", + "section": "10", + "instructor": "Mara McDermott", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "4460", + "section": "10", + "instructor": "Sergio Waisman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "La Ciudad Ausente (Debolsillo)", + "edition": "N/A", + "author": "Piglia", + "isbn": "9788490327838", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Imprt", + "type_condition": "BUY_NEW", + "price_display": "$26.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "La Ciudad Ausente (Debolsillo)", + "edition": "N/A", + "author": "Piglia", + "isbn": "9788490327838", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Imprt", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sangre en el Ojo / Seeing Red", + "edition": "N/A", + "author": "Meruane", + "isbn": "9788439732426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sangre en el Ojo / Seeing Red", + "edition": "N/A", + "author": "Meruane", + "isbn": "9788439732426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "El Beso de La Mujer Arana", + "edition": "N/A", + "author": "Puig", + "isbn": "9780679755456", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1976", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "El Beso de La Mujer Arana", + "edition": "N/A", + "author": "Puig", + "isbn": "9780679755456", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1976", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$6.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "El Beso de La Mujer Arana", + "edition": "N/A", + "author": "Puig", + "isbn": "9780679755456", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1976", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "FORS", + "course_num": "6998", + "section": "MV", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WLP", + "course_num": "1110", + "section": "M2", + "instructor": "Elisa Hovander", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "4139", + "section": "81", + "instructor": "Barbara von Barghahn-Calvetti", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "2184", + "section": "30", + "instructor": "Murli Gupta", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "3826", + "section": "10", + "instructor": "Evelyn Schreiber", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2102", + "section": "30", + "instructor": "Laryssa Mykyta", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1232", + "section": "36", + "instructor": "Yanxiang Zhao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "39", + "instructor": "Sharon Roosevelt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "37", + "instructor": "Erin Heramb", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "3810W", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "3119", + "section": "10", + "instructor": "Yi-Chun Ho", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "6881", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "49", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "3342", + "section": "10", + "instructor": "Murli Gupta", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Elementary Differential Equations (LoosePgs)", + "edition": "12th", + "author": "Boyce", + "isbn": "9781119777755", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$123.00", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Elementary Differential Equations (LoosePgs)", + "edition": "12th", + "author": "Boyce", + "isbn": "9781119777755", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$163.75", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Elementary Differential Equations, Enhanced eText", + "edition": "12th", + "author": "Boyce", + "isbn": "9781119777731", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$50.19", + "item_type": "digital" + }, + { + "title": "Elementary Differential Equations, Enhanced eText", + "edition": "12th", + "author": "DiPrima", + "isbn": "9781119777731", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$119.50", + "item_type": "digital" + } + ] + }, + { + "department": "EXNS", + "course_num": "1110", + "section": "33", + "instructor": "Christopher Duncan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6265", + "section": "10", + "instructor": "Susannah Jenkins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6301", + "section": "81", + "instructor": "Johnston Hall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "45", + "instructor": "Dong Quan Nguyen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "25", + "instructor": "Chung Hyuk Park", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6280", + "section": "11", + "instructor": "Albert Wood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6999", + "section": "21", + "instructor": "Omur Ozel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8999", + "section": "16", + "instructor": "Harvey Peters", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8101", + "section": "13", + "instructor": "Ellen Goldman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "55", + "instructor": "Volker Sorger", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "1000", + "section": "10", + "instructor": "Daniel Sude", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "1011", + "section": "33", + "instructor": "Melanie-Joy Dorn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2123", + "section": "82", + "instructor": "Elira Kuka", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "26", + "instructor": "Mallory McPherson-Wehan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "2811", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "1000", + "section": "80", + "instructor": "Kelly Pemberton", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Islam in the Digital Age", + "edition": "N/A", + "author": "Bunt", + "isbn": "9780745320984", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Pluto Press", + "type_condition": "BUY_NEW", + "price_display": "$41.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Islam in the Digital Age", + "edition": "N/A", + "author": "Bunt", + "isbn": "9780745320984", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Pluto Press", + "type_condition": "BUY_USED", + "price_display": "$30.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hashtag Islam", + "edition": "N/A", + "author": "Bunt", + "isbn": "9781469643168", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "University of North Carolina Press", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hashtag Islam", + "edition": "N/A", + "author": "Bunt", + "isbn": "9781469643168", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "University of North Carolina Press", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Islamic Branding and Marketing: Creating A Global Islamic Business", + "edition": "N/A", + "author": "Temporal", + "isbn": "9780470825396", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$50.00", + "item_type": "print" + }, + { + "title": "Islamic Branding and Marketing: Creating A Global Islamic Business", + "edition": "N/A", + "author": "Temporal", + "isbn": "9780470825396", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$37.50", + "item_type": "print" + }, + { + "title": "Hashtag Islam", + "edition": "N/A", + "author": "Bunt", + "isbn": "9781469643175", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of North Carolina Press", + "type_condition": "BUY_NEW", + "price_display": "$19.99", + "item_type": "digital" + }, + { + "title": "Islamic Branding and Marketing", + "edition": "1st", + "author": "Temporal", + "isbn": "9780470828472", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$40.00", + "item_type": "digital" + } + ] + }, + { + "department": "PSC", + "course_num": "2377", + "section": "11", + "instructor": "Scott Weiner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "8263", + "section": "10", + "instructor": "Tapan Nayak", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Testing Statistical Hypotheses", + "edition": "3rd", + "author": "Lehmann", + "isbn": "9781441931788", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Springer Nature", + "type_condition": "BUY_USED", + "price_display": "$60.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Testing Statistical Hypotheses", + "edition": "3rd", + "author": "Lehmann", + "isbn": "9781441931788", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$79.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Theory of Point Estimation", + "edition": "2nd", + "author": "Lehmann", + "isbn": "9781441931306", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Springer Nature", + "type_condition": "BUY_USED", + "price_display": "$75.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Theory of Point Estimation", + "edition": "2nd", + "author": "Lehmann", + "isbn": "9781441931306", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Springer Nature", + "type_condition": "BUY_NEW", + "price_display": "$100.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "PSC", + "course_num": "2101", + "section": "13", + "instructor": "James Lebovic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "13", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8203", + "section": "18", + "instructor": "James Sexton", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "1050", + "section": "10", + "instructor": "Sean Aday", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "4560", + "section": "10", + "instructor": "Sergio Waisman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3187", + "section": "83", + "instructor": "Jason Marczak", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "46", + "instructor": "Erin Heramb", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "8998", + "section": "10", + "instructor": "Ingrid Creppell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6444", + "section": "80", + "instructor": "Roozbeh Haghnazar Koochaksaraei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2367", + "section": "10", + "instructor": "Dominic Nardi", + "term_name": "Fall 2023", + "texts": [ + { + "title": "International Human Rights", + "edition": "6th", + "author": "Donnelly", + "isbn": "9780367217853", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$43.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Human Rights", + "edition": "6th", + "author": "Donnelly", + "isbn": "9780367217853", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_USED", + "price_display": "$32.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Human Rights", + "edition": "4th", + "author": "Goodhart", + "isbn": "9780190085469", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$64.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Human Rights", + "edition": "4th", + "author": "Goodhart", + "isbn": "9780190085469", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$48.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Human Rights", + "edition": "4th", + "author": "Goodhart", + "isbn": "9780190085476", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$34.99", + "item_type": "digital" + }, + { + "title": "Human Rights", + "edition": "4th", + "author": "Goodhart", + "isbn": "9780190085476", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$40.37", + "item_type": "digital" + }, + { + "title": "International Human Rights", + "edition": "6th", + "author": "Donnelly", + "isbn": "9780429561047", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$49.95", + "item_type": "digital" + }, + { + "title": "Human Rights", + "edition": "4th", + "author": "Goodhart", + "isbn": "9780190085476", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$53.83", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "6998", + "section": "17", + "instructor": "James Hahn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "6209", + "section": "10", + "instructor": "Wenjing Duan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "37", + "instructor": "Hao Wu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6118", + "section": "14", + "instructor": "Yan Bennett", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2340W", + "section": "37", + "instructor": "James Hershberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6186", + "section": "13", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6368", + "section": "10", + "instructor": "Scott Joftus", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2190", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "2811", + "section": "80", + "instructor": "Xiaofei Kang", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Memoirs of Lady Hyegyong", + "edition": "N/A", + "author": "Haboush", + "isbn": "9780520280489", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$31.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Memoirs of Lady Hyegyong", + "edition": "N/A", + "author": "Haboush", + "isbn": "9780520280489", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$24.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Memoirs of Lady Hyegyong", + "edition": "N/A", + "author": "Haboush", + "isbn": "9780520280489", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "University of California Press", + "type_condition": "RENTAL_NEW", + "price_display": "$23.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9780872208261", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9780872208261", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9780872208261", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Confucianism", + "edition": "N/A", + "author": "Littlejohn", + "isbn": "9781848851740", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "I. B. Tauris & Company, Limited", + "type_condition": "BUY_NEW", + "price_display": "$43.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Confucianism", + "edition": "N/A", + "author": "Littlejohn", + "isbn": "9781848851740", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "I. B. Tauris & Company, Limited", + "type_condition": "BUY_USED", + "price_display": "$33.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Four Books", + "edition": "N/A", + "author": "Gardner", + "isbn": "9781624660085", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$12.50", + "item_type": "digital" + }, + { + "title": "The Memoirs of Lady Hyegyong", + "edition": "1st", + "author": "Haboush", + "isbn": "9780520957299", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$31.95", + "item_type": "digital" + } + ] + }, + { + "department": "SEHD", + "course_num": "8100", + "section": "11", + "instructor": "Curtis Pyke", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "3167", + "section": "10", + "instructor": "Axel Schmidt", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Quantum Mechanics", + "edition": "3rd", + "author": "Griffiths", + "isbn": "9781107189638", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$75.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Quantum Mechanics", + "edition": "3rd", + "author": "Griffiths", + "isbn": "9781107189638", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$56.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Quantum Mechanics", + "edition": "3rd", + "author": "Griffiths", + "isbn": "9781107189638", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$57.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Quantum Mechanics", + "edition": "3rd", + "author": "Griffiths", + "isbn": "9781107189638", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_USED", + "price_display": "$31.92", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Introduction to Quantum Mechanics", + "edition": "3rd", + "author": "Griffiths", + "isbn": "9781108100342", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$56.75", + "item_type": "digital" + }, + { + "title": "Introduction to Quantum Mechanics", + "edition": "3rd", + "author": "Griffiths", + "isbn": "9781108100342", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$71.00", + "item_type": "digital" + } + ] + }, + { + "department": "PSYC", + "course_num": "2011", + "section": "11", + "instructor": "Dennis Schell", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Abnormal Psychology & Life", + "edition": "3rd", + "author": "Kearney", + "isbn": "9781337098106", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$240.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Abnormal Psychology & Life", + "edition": "3rd", + "author": "Kearney", + "isbn": "9781337098106", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$156.16", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Abnormal Psychology & Life", + "edition": "3rd", + "author": "Kearney", + "isbn": "9781337098106", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$180.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Abnormal Psychology & Life", + "edition": "3rd", + "author": "Kearney", + "isbn": "9781337098106", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$100.91", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Abnormal Psychology and Life: A Dimensional Approach", + "edition": "3rd", + "author": "Kearney", + "isbn": "9781337514064", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$50.99", + "item_type": "digital" + }, + { + "title": "Abnormal Psychology and Life: A Dimensional Approach", + "edition": "3rd", + "author": "Kearney", + "isbn": "9781337514064", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$69.99", + "item_type": "digital" + }, + { + "title": "Abnormal Psychology and Life: A Dimensional Approach", + "edition": "3rd", + "author": "Kearney", + "isbn": "9781337514064", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$89.23", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "6461", + "section": "10", + "instructor": "Morris Lancaster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "50", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6217", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6364", + "section": "82", + "instructor": "Armin Mehrabian", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6050", + "section": "10", + "instructor": "Gina Adam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1330", + "section": "10", + "instructor": "Carl Gudenius", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2002", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "M30", + "instructor": "Qi Chen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6907", + "section": "86", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "2154", + "section": "80", + "instructor": "Philip Jacks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6277", + "section": "10", + "instructor": "Jeffrey Manns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1059", + "section": "11", + "instructor": "Kelley Vargo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6211", + "section": "10G", + "instructor": "Donald Buzinkai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "0940", + "section": "12", + "instructor": "Bagmi Das", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "2001", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1071", + "section": "12", + "instructor": "Barry Moton", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2180", + "section": "10", + "instructor": "Joseph Pelzman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1012", + "section": "35", + "instructor": "Ronald Bird", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1214", + "section": "15", + "instructor": "Jodi Kanter", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HLWL", + "course_num": "1109", + "section": "15", + "instructor": "Tamara Henry", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "24", + "instructor": "Celeste Johnston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HLWL", + "course_num": "1102", + "section": "11", + "instructor": "Kahlil Kuykendall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ITAL", + "course_num": "1001", + "section": "12", + "instructor": "Tessa Gurney", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "3153", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6101", + "section": "14", + "instructor": "Sylvia Marotta-Walters", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M10", + "instructor": "Randi Kristensen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3172", + "section": "12", + "instructor": "Edward Lazarus", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Social Conflict", + "edition": "3rd", + "author": "Pruitt", + "isbn": "9780072855357", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_USED", + "price_display": "$84.74", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Social Conflict", + "edition": "3rd", + "author": "Pruitt", + "isbn": "9780072855357", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "McGraw-Hill", + "type_condition": "BUY_USED", + "price_display": "$151.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Social Conflict", + "edition": "3rd", + "author": "Pruitt", + "isbn": "9780072855357", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$201.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Contemporary Conflict Resolution", + "edition": "4th", + "author": "Ramsbotham", + "isbn": "9780745687223", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Polity Press", + "type_condition": "RENTAL_USED", + "price_display": "$18.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Contemporary Conflict Resolution", + "edition": "4th", + "author": "Ramsbotham", + "isbn": "9780745687223", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Polity Press", + "type_condition": "BUY_USED", + "price_display": "$35.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Contemporary Conflict Resolution", + "edition": "4th", + "author": "Ramsbotham", + "isbn": "9780745687223", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Polity Press", + "type_condition": "RENTAL_NEW", + "price_display": "$35.06", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Contemporary Conflict Resolution", + "edition": "4th", + "author": "Ramsbotham", + "isbn": "9780745687223", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Polity Press", + "type_condition": "BUY_NEW", + "price_display": "$46.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "PUBH", + "course_num": "8534", + "section": "10", + "instructor": "David Huebner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8998", + "section": "10", + "instructor": "Maggie Parker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1104", + "section": "11", + "instructor": "Peter Fraize", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1000", + "section": "10", + "instructor": "Brendan Hornbostel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SUST", + "course_num": "3096", + "section": "10", + "instructor": "Royce Francis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "6504", + "section": "10", + "instructor": "Bonnie Pierce", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "6811", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1039", + "section": "12", + "instructor": "Brian Stamps", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PMGT", + "course_num": "6430", + "section": "10", + "instructor": "Mark Meissner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EALL", + "course_num": "2811", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "6383", + "section": "80", + "instructor": "Cynthia McClintock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JAPN", + "course_num": "1001", + "section": "31", + "instructor": "Kaori Iwai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "83", + "instructor": "Matthew Clarke", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "2233", + "section": "12", + "instructor": "Michael Coleman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2182", + "section": "10", + "instructor": "Graciela Kaminsky", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2218W", + "section": "11", + "instructor": "Michael Goff", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Congress", + "edition": "N/A", + "author": "Mayhew", + "isbn": "9780300105872", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Yale University Press", + "type_condition": "RENTAL_USED", + "price_display": "$9.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Congress", + "edition": "N/A", + "author": "Mayhew", + "isbn": "9780300105872", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$24.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Congress", + "edition": "N/A", + "author": "Mayhew", + "isbn": "9780300105872", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Yale University Press", + "type_condition": "BUY_USED", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Congress & Its Members", + "edition": "18th", + "author": "Davidson", + "isbn": "9781071836859", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "CQ Press c/o SAGE", + "type_condition": "RENTAL_USED", + "price_display": "$51.45", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Congress & Its Members", + "edition": "18th", + "author": "Davidson", + "isbn": "9781071836859", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "CQ Press c/o SAGE", + "type_condition": "RENTAL_NEW", + "price_display": "$98.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Congress & Its Members", + "edition": "18th", + "author": "Davidson", + "isbn": "9781071836859", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_NEW", + "price_display": "$122.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Congress & Its Members", + "edition": "18th", + "author": "Davidson", + "isbn": "9781071836859", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_USED", + "price_display": "$92.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Congress and Its Members", + "edition": "18th", + "author": "Davidson", + "isbn": "9781071836835", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$43.99", + "item_type": "digital" + }, + { + "title": "Congress and Its Members", + "edition": "18th", + "author": "Davidson", + "isbn": "9781071836835", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "Congress and Its Members", + "edition": "18th", + "author": "Davidson", + "isbn": "9781071836835", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$55.00", + "item_type": "digital" + }, + { + "title": "Congress and Its Members", + "edition": "18th", + "author": "Davidson", + "isbn": "9781071836835", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$79.74", + "item_type": "digital" + } + ] + }, + { + "department": "GER", + "course_num": "1001", + "section": "12", + "instructor": "Margaret Gonglewski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "1003", + "section": "10", + "instructor": "Hadia Anaye", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3401W", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "2113", + "section": "31", + "instructor": "Kyle Levers", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6115", + "section": "80", + "instructor": "Valeriya Malobrodskaya", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2120", + "section": "10", + "instructor": "Rebekah Tromble", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1014", + "section": "19", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "31", + "instructor": "Dong Quan Nguyen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "6207", + "section": "11", + "instructor": "Sana Smaoui", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "47", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "94", + "instructor": "Adam Aviv", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "2184", + "section": "10", + "instructor": "Jasmine Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "17", + "instructor": "Hao Huang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8415", + "section": "11", + "instructor": "Jeffrey Bingenheimer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "39", + "instructor": "Gerald Daigle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2217", + "section": "80", + "instructor": "Robert Betz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Powers of Presidency", + "edition": "4th", + "author": "Congressional Quarterly", + "isbn": "9781452226279", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "CQ PRESS, c/o SAGE", + "type_condition": "BUY_NEW", + "price_display": "$75.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Powers of Presidency", + "edition": "4th", + "author": "Congressional Quarterly", + "isbn": "9781452226279", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "CQ PRESS, c/o SAGE", + "type_condition": "BUY_USED", + "price_display": "$57.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Art of Policymaking", + "edition": "2nd", + "author": "Shambaugh", + "isbn": "9781483385518", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "CQ PRESS, c/o SAGE", + "type_condition": "BUY_NEW", + "price_display": "$55.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Art of Policymaking", + "edition": "2nd", + "author": "Shambaugh", + "isbn": "9781483385518", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "CQ PRESS, c/o SAGE", + "type_condition": "RENTAL_USED", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Art of Policymaking", + "edition": "2nd", + "author": "Shambaugh", + "isbn": "9781483385518", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "CQ PRESS, c/o SAGE", + "type_condition": "BUY_USED", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Art of Policymaking", + "edition": "2nd", + "author": "Shambaugh", + "isbn": "9781483385518", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "CQ PRESS, c/o SAGE", + "type_condition": "RENTAL_NEW", + "price_display": "$41.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Art of Policymaking", + "edition": "2nd", + "author": "Shambaugh", + "isbn": "9781483385525", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$26.40", + "item_type": "digital" + }, + { + "title": "The Powers of the Presidency", + "edition": "4th", + "author": "Press", + "isbn": "9781452234250", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$28.69", + "item_type": "digital" + }, + { + "title": "The Art of Policymaking", + "edition": "2nd", + "author": "Shambaugh", + "isbn": "9781483385525", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$29.70", + "item_type": "digital" + }, + { + "title": "The Powers of the Presidency", + "edition": "4th", + "author": "Press", + "isbn": "9781452234250", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$32.28", + "item_type": "digital" + }, + { + "title": "The Art of Policymaking", + "edition": "2nd", + "author": "Shambaugh", + "isbn": "9781483385525", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$33.00", + "item_type": "digital" + }, + { + "title": "The Powers of the Presidency", + "edition": "4th", + "author": "Press", + "isbn": "9781452234250", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$35.86", + "item_type": "digital" + }, + { + "title": "The Art of Policymaking", + "edition": "2nd", + "author": "Shambaugh", + "isbn": "9781483385525", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$47.85", + "item_type": "digital" + }, + { + "title": "The Powers of the Presidency", + "edition": "4th", + "author": "Press", + "isbn": "9781452234250", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$52.00", + "item_type": "digital" + } + ] + }, + { + "department": "CAH", + "course_num": "3101", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6299", + "section": "12", + "instructor": "Kevin Heslin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1031", + "section": "11", + "instructor": "Samantha Appleby", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "1110", + "section": "31", + "instructor": "Christopher Duncan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "10", + "instructor": "Srinivasan Balaji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6212", + "section": "10", + "instructor": "Abdou Youssef", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "3132", + "section": "10", + "instructor": "Robert Canales", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Maxwell's Understanding Environmental Health", + "edition": "3rd", + "author": "Falta", + "isbn": "9781284207224", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$90.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Maxwell's Understanding Environmental Health", + "edition": "3rd", + "author": "Falta", + "isbn": "9781284207224", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$68.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Maxwell's Understanding Environmental Health: How We Live in the World", + "edition": "3rd", + "author": "Falta", + "isbn": "9781284207286", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$59.12", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "3907", + "section": "12", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M52", + "instructor": "Ebony Russ", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6234", + "section": "10", + "instructor": "Gregory Simon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8122", + "section": "80", + "instructor": "Sarah Shomstein", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "3603", + "section": "80", + "instructor": "Francys Subiaul", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Introducing Psycholinguistics", + "edition": "N/A", + "author": "Warren", + "isbn": "9780521130561", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$24.69", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introducing Psycholinguistics", + "edition": "N/A", + "author": "Warren", + "isbn": "9780521130561", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$37.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introducing Psycholinguistics", + "edition": "N/A", + "author": "Warren", + "isbn": "9780521130561", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$28.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introducing Psycholinguistics", + "edition": "N/A", + "author": "Warren", + "isbn": "9780521130561", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_USED", + "price_display": "$15.20", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "PHIL", + "course_num": "2112", + "section": "10", + "instructor": "Rebecca Carr", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Modern Philosophy", + "edition": "3rd", + "author": "Ariew", + "isbn": "9781624668050", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$42.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern Philosophy", + "edition": "3rd", + "author": "Ariew", + "isbn": "9781624668050", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$42.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern Philosophy", + "edition": "3rd", + "author": "Ariew", + "isbn": "9781624668050", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$56.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern Philosophy", + "edition": "3rd", + "author": "Ariew", + "isbn": "9781624668050", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$22.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern Philosophy", + "edition": "3rd", + "author": "Ariew", + "isbn": "9781624668074", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$39.95", + "item_type": "digital" + } + ] + }, + { + "department": "MBAD", + "course_num": "6193", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JSTD", + "course_num": "2047", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6240", + "section": "81", + "instructor": "Mona Zaghloul", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6085", + "section": "13", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1035", + "section": "10", + "instructor": "Carl Gudenius", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "19", + "instructor": "Gabriel Parmer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1039", + "section": "13", + "instructor": "Elizabeth Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6998", + "section": "10", + "instructor": "Pamela Labadie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6338", + "section": "13", + "instructor": "Vadim Grishin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8730", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8999", + "section": "15", + "instructor": "Andrea Casey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "2125", + "section": "80", + "instructor": "Gail Weiss", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Life & Death of Latisha King", + "edition": "N/A", + "author": "Salamon", + "isbn": "9781479892525", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "New York University Press", + "type_condition": "RENTAL_USED", + "price_display": "$9.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Life & Death of Latisha King", + "edition": "N/A", + "author": "Salamon", + "isbn": "9781479892525", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "New York University Press", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Life & Death of Latisha King", + "edition": "N/A", + "author": "Salamon", + "isbn": "9781479892525", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "New York University Press", + "type_condition": "BUY_NEW", + "price_display": "$23.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Life & Death of Latisha King", + "edition": "N/A", + "author": "Salamon", + "isbn": "9781479892525", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "New York University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Exile & Pride", + "edition": "N/A", + "author": "Clare", + "isbn": "9780896087880", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "South End Press", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Exile & Pride", + "edition": "N/A", + "author": "Clare", + "isbn": "9780896087880", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "South End Press", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Life and Death of Latisha King", + "edition": "N/A", + "author": "Salamon", + "isbn": "9781479810529", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "New York University Press", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "item_type": "digital" + } + ] + }, + { + "department": "DATS", + "course_num": "6401", + "section": "11", + "instructor": "Marc Lajoie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "2083", + "section": "10", + "instructor": "Michael O'Donnell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6075", + "section": "10", + "instructor": "Reeve Bull", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6212", + "section": "10", + "instructor": "Jennifer Cooke", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "71", + "instructor": "Chung Hyuk Park", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSCI", + "course_num": "2118", + "section": "10", + "instructor": "Maranda Ward", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "11", + "instructor": "Arkady Yerukhimovich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1002", + "section": "34", + "instructor": "Forrest Maltzman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6412", + "section": "11", + "instructor": "Sylven Beck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6575", + "section": "10", + "instructor": "Maksim Tsvetovat", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ITAL", + "course_num": "3300", + "section": "10", + "instructor": "Lynn Westwater", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6173", + "section": "10", + "instructor": "Brian Peters", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3180W", + "section": "10", + "instructor": "Murray Snyder", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Making of the Atomic Bomb", + "edition": "N/A", + "author": "Rhodes", + "isbn": "9781451677614", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Making of the Atomic Bomb", + "edition": "N/A", + "author": "Rhodes", + "isbn": "9781451677614", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Simon & Schuster", + "type_condition": "RENTAL_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Making of the Atomic Bomb", + "edition": "N/A", + "author": "Rhodes", + "isbn": "9781451677614", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Simon & Schuster", + "type_condition": "RENTAL_USED", + "price_display": "$9.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Making of the Atomic Bomb", + "edition": "N/A", + "author": "Rhodes", + "isbn": "9781451677614", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$24.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Nuclear Terrorism", + "edition": "N/A", + "author": "Allison", + "isbn": "9780805078527", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Henry Holt and Co.", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Nuclear Terrorism", + "edition": "N/A", + "author": "Allison", + "isbn": "9780805078527", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Henry Holt and Co.", + "type_condition": "RENTAL_USED", + "price_display": "$7.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Nuclear Terrorism", + "edition": "N/A", + "author": "Allison", + "isbn": "9780805078527", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Henry Holt and Co.", + "type_condition": "BUY_NEW", + "price_display": "$17.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Evolution of Nuclear Strategy", + "edition": "4th", + "author": "Freedman", + "isbn": "9781137573490", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Palgrave Macmillan", + "type_condition": "BUY_USED", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Evolution of Nuclear Strategy", + "edition": "4th", + "author": "Freedman", + "isbn": "9781137573490", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Palgrave Macmillan", + "type_condition": "BUY_NEW", + "price_display": "$45.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CPED", + "course_num": "6635", + "section": "11", + "instructor": "Sylven Beck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6998", + "section": "11", + "instructor": "Joost Santos", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1170", + "section": "10", + "instructor": "Hayley Cutler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "TSTD", + "course_num": "6277", + "section": "80", + "instructor": "Jabneel Abreu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8999", + "section": "12", + "instructor": "W. M. Kim Roddis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "3135W", + "section": "10", + "instructor": "Elizabeth Gray", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Essen of Health Policy & Law", + "edition": "5th", + "author": "Wilensky", + "isbn": "9781284247459", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$81.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Policy & Law", + "edition": "5th", + "author": "Wilensky", + "isbn": "9781284247459", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$32.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Policy & Law", + "edition": "5th", + "author": "Wilensky", + "isbn": "9781284247459", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$61.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Policy & Law", + "edition": "5th", + "author": "Wilensky", + "isbn": "9781284247459", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$65.56", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essentials of Health Policy and Law", + "edition": "5th", + "author": "Wilensky", + "isbn": "9781284247466", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$53.27", + "item_type": "digital" + } + ] + }, + { + "department": "PHYS", + "course_num": "1011", + "section": "12", + "instructor": "Naveen Jha", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2112", + "section": "80", + "instructor": "Rebecca Boyd", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "55", + "instructor": "David Bonilla-Ciferri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHAR", + "course_num": "8998", + "section": "10", + "instructor": "Colin Young", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "6201", + "section": "10", + "instructor": "Michael Bamdad", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3186", + "section": "80", + "instructor": "Kuniko Ashizawa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "2136", + "section": "10", + "instructor": "David DeGrazia", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Dialogues on Climate Justice", + "edition": "N/A", + "author": "Gardiner", + "isbn": "9780367641955", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$36.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dialogues on Climate Justice", + "edition": "N/A", + "author": "Gardiner", + "isbn": "9780367641955", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$48.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dialogues on Gun Control", + "edition": "N/A", + "author": "Degrazia", + "isbn": "9780367615307", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_USED", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dialogues on Gun Control", + "edition": "N/A", + "author": "Degrazia", + "isbn": "9780367615307", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$44.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dialogues on the Ethics of Abortion", + "edition": "N/A", + "author": "Manninen", + "isbn": "9780367616564", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$33.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dialogues on the Ethics of Abortion", + "edition": "N/A", + "author": "Manninen", + "isbn": "9780367616564", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$44.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dialogues Concerning Vegetarianism", + "edition": "N/A", + "author": "Huemer", + "isbn": "9781138328297", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dialogues Concerning Vegetarianism", + "edition": "N/A", + "author": "Huemer", + "isbn": "9781138328297", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Dialogues on Ethical Vegetarianism", + "edition": "1st", + "author": "Huemer", + "isbn": "9780429638008", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "item_type": "digital" + }, + { + "title": "Dialogues on the Ethics of Abortion", + "edition": "N/A", + "author": "Alvarez Manninen", + "isbn": "9781000587296", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$44.95", + "item_type": "digital" + } + ] + }, + { + "department": "PSYC", + "course_num": "8286", + "section": "10", + "instructor": "Cynthia Rohrbeck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "2047", + "section": "15", + "instructor": "Leo Chalupa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "2800", + "section": "10", + "instructor": "Antonio Lopez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLAV", + "course_num": "1001", + "section": "11", + "instructor": "Elena Ovtcharenko", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Golosa Student Workbook, Book One", + "edition": "6th", + "author": "Robin", + "isbn": "9780367612894", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$87.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "GOLOSA: Basic Course in Russian Book 1", + "edition": "6th", + "author": "Robin", + "isbn": "9780367612801", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$110.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "GOLOSA: Basic Course in Russian Book 1", + "edition": "6th", + "author": "Robin", + "isbn": "9780367612801", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$83.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Golosa", + "edition": "6th", + "author": "Robin", + "isbn": "9781000597059", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$94.95", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "36", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2339", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6500", + "section": "O10", + "instructor": "Andrew Sonn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IDIS", + "course_num": "8358", + "section": "50", + "instructor": "Lisa Alexander", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "1051", + "section": "10", + "instructor": "Dimiter Kirilov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8999", + "section": "11", + "instructor": "Lance Price", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M67", + "instructor": "Katharine Carter", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6412", + "section": "10", + "instructor": "Mitchell Pascal", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "3146", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "39", + "instructor": "Meredith Clemons", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2993", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1002", + "section": "10", + "instructor": "James Kerr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8998", + "section": "13", + "instructor": "Yas Nakib", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPP", + "course_num": "6298", + "section": "11", + "instructor": "Ernest Englander", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "3101", + "section": "11", + "instructor": "Mary Barron", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SUST", + "course_num": "3096", + "section": "31", + "instructor": "Royce Francis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "4129", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "3172", + "section": "10", + "instructor": "Rebecca Carr", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Essen Dewey (V1)", + "edition": "N/A", + "author": "Hickman", + "isbn": "9780253211842", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Indiana University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$33.94", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen Dewey (V1)", + "edition": "N/A", + "author": "Hickman", + "isbn": "9780253211842", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Indiana University Press", + "type_condition": "RENTAL_USED", + "price_display": "$18.10", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen Dewey (V1)", + "edition": "N/A", + "author": "Hickman", + "isbn": "9780253211842", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Indiana University Press", + "type_condition": "BUY_NEW", + "price_display": "$45.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen Dewey (V1)", + "edition": "N/A", + "author": "Hickman", + "isbn": "9780253211842", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Indiana University Press", + "type_condition": "BUY_USED", + "price_display": "$34.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy & Social Hope", + "edition": "N/A", + "author": "Rorty", + "isbn": "9780140262889", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$19.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Philosophy & Social Hope", + "edition": "N/A", + "author": "Rorty", + "isbn": "9780140262889", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pragmatism", + "edition": "N/A", + "author": "James", + "isbn": "9780486282701", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "DOVER PUB INC", + "type_condition": "BUY_NEW", + "price_display": "$5.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pragmatism", + "edition": "N/A", + "author": "James", + "isbn": "9780486282701", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "DOVER PUB INC", + "type_condition": "BUY_USED", + "price_display": "$4.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen Peirce (V2)", + "edition": "N/A", + "author": "Peirce", + "isbn": "9780253211903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Indiana University Press", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen Peirce (V2)", + "edition": "N/A", + "author": "Peirce", + "isbn": "9780253211903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Indiana University Press", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Pragmatism", + "edition": "N/A", + "author": "James", + "isbn": "9780486114217", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Firebrand Books", + "type_condition": "RENTAL_NEW", + "price_display": "$2.59", + "item_type": "digital" + }, + { + "title": "Pragmatism", + "edition": "N/A", + "author": "James", + "isbn": "9780486114217", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Firebrand Books", + "type_condition": "BUY_NEW", + "price_display": "$4.62", + "item_type": "digital" + }, + { + "title": "The Essential Peirce, Volume 2", + "edition": "N/A", + "author": "Peirce Edition Project", + "isbn": "9780253007810", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Indiana University Press", + "type_condition": "BUY_NEW", + "price_display": "$24.99", + "item_type": "digital" + } + ] + }, + { + "department": "WGSS", + "course_num": "3170W", + "section": "80", + "instructor": "Erin Chapman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Invisible No More", + "edition": "N/A", + "author": "Ritchie", + "isbn": "9780807088982", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "RENTAL_NEW", + "price_display": "$15.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invisible No More", + "edition": "N/A", + "author": "Ritchie", + "isbn": "9780807088982", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invisible No More", + "edition": "N/A", + "author": "Ritchie", + "isbn": "9780807088982", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$15.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Price for Their Pound of Flesh: The Value of the Enslaved, from Womb to Grave, in the Building of a Nation", + "edition": "N/A", + "author": "Berry", + "isbn": "9780807067147", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "RENTAL_NEW", + "price_display": "$14.21", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Price for Their Pound of Flesh: The Value of the Enslaved, from Womb to Grave, in the Building of a Nation", + "edition": "N/A", + "author": "Berry", + "isbn": "9780807067147", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Price for Their Pound of Flesh: The Value of the Enslaved, from Womb to Grave, in the Building of a Nation", + "edition": "N/A", + "author": "Berry", + "isbn": "9780807067147", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Forgotten Fifth: African Americans in Age of Revolution", + "edition": "N/A", + "author": "Nash", + "isbn": "9780674021938", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$14.96", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Forgotten Fifth: African Americans in Age of Revolution", + "edition": "N/A", + "author": "Nash", + "isbn": "9780674021938", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Forgotten Fifth: African Americans in Age of Revolution", + "edition": "N/A", + "author": "Nash", + "isbn": "9780674021938", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$7.98", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Forgotten Fifth: African Americans in Age of Revolution", + "edition": "N/A", + "author": "Nash", + "isbn": "9780674021938", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fire Next Time", + "edition": "N/A", + "author": "Baldwin", + "isbn": "9780679744726", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1963", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$13.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fire Next Time", + "edition": "N/A", + "author": "Baldwin", + "isbn": "9780679744726", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1963", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$10.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Clinging to Mammy", + "edition": "N/A", + "author": "McElya", + "isbn": "9780674024335", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$14.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Clinging to Mammy", + "edition": "N/A", + "author": "McElya", + "isbn": "9780674024335", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$29.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Clinging to Mammy", + "edition": "N/A", + "author": "McElya", + "isbn": "9780674024335", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$22.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "No Mercy Here", + "edition": "N/A", + "author": "Haley", + "isbn": "9781469652221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of North Carolina Press", + "type_condition": "RENTAL_NEW", + "price_display": "$26.96", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Mercy Here", + "edition": "N/A", + "author": "Haley", + "isbn": "9781469652221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of North Carolina Press", + "type_condition": "BUY_NEW", + "price_display": "$35.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Mercy Here", + "edition": "N/A", + "author": "Haley", + "isbn": "9781469652221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of North Carolina Press", + "type_condition": "RENTAL_USED", + "price_display": "$14.38", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Mercy Here", + "edition": "N/A", + "author": "Haley", + "isbn": "9781469652221", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "University of North Carolina Press", + "type_condition": "BUY_USED", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "White Rage", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781632864130", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Bloomsbury USA", + "type_condition": "RENTAL_NEW", + "price_display": "$11.05", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "White Rage", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781632864130", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "White Rage", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781632864130", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Bloomsbury USA", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "White Rage", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781632864130", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Celia, a Slave", + "edition": "N/A", + "author": "McLaurin", + "isbn": "9780820360966", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Univ of Georgia Press/Longleaf", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Celia, a Slave", + "edition": "N/A", + "author": "McLaurin", + "isbn": "9780820360966", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Univ of Georgia Press/Longleaf", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Citizen", + "edition": "N/A", + "author": "Rankine", + "isbn": "9781555976903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Graywolf", + "type_condition": "RENTAL_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Citizen", + "edition": "N/A", + "author": "Rankine", + "isbn": "9781555976903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Graywolf", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Citizen", + "edition": "N/A", + "author": "Rankine", + "isbn": "9781555976903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Graywolf", + "type_condition": "RENTAL_USED", + "price_display": "$8.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Citizen", + "edition": "N/A", + "author": "Rankine", + "isbn": "9781555976903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Graywolf", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Celia, a Slave", + "edition": "N/A", + "author": "McLaurin", + "isbn": "9780820362502", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$18.75", + "item_type": "digital" + } + ] + }, + { + "department": "CPED", + "course_num": "6339", + "section": "10", + "instructor": "Curtis Pyke", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "4198", + "section": "10", + "instructor": "Hang Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "2123", + "section": "81", + "instructor": "Benjamin Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8999", + "section": "14", + "instructor": "Shahram Sarkani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6302", + "section": "81", + "instructor": "Joseph Siryani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6361", + "section": "10", + "instructor": "Marc Lynch", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MICR", + "course_num": "8230", + "section": "10", + "instructor": "David Leitenberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "1081", + "section": "11", + "instructor": "Michael O'Donnell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EHS", + "course_num": "2107", + "section": "10", + "instructor": "Janice Blanchard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "45", + "instructor": "Margaret Artley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2554", + "section": "11", + "instructor": "Andree Maling", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6501", + "section": "81", + "instructor": "Edwin Lo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "3175", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M9", + "instructor": "Kylie Erfani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "96", + "instructor": "Arzhang Angoshtari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "2001", + "section": "10", + "instructor": "Zeyu Wang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "6290", + "section": "G80", + "instructor": "Michael Provance", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1311", + "section": "31", + "instructor": "Hyeong-Ah Choi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3194", + "section": "10", + "instructor": "Simon Bird", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6998", + "section": "11", + "instructor": "Samer Hamdar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "1041", + "section": "13", + "instructor": "Abbie Weiner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6252", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6161", + "section": "DE2", + "instructor": "Karen Farrell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "31", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "2113", + "section": "30", + "instructor": "Kyle Levers", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6721", + "section": "10", + "instructor": "Samer Hamdar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "32", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "3162", + "section": "10", + "instructor": "Mehdi Naderi Abadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6221", + "section": "10", + "instructor": "Alexey Smurov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6158", + "section": "80", + "instructor": "Nicholas Vonortas", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8999", + "section": "11", + "instructor": "Yas Nakib", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GER", + "course_num": "2009", + "section": "10", + "instructor": "Maria Sitzler-Sawicki", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1012", + "section": "31", + "instructor": "Joseph Goldfrank", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3170", + "section": "83", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6252", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "1001", + "section": "13", + "instructor": "Elene KeKelia", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Presentation of Self in Everyday Life (Trade Ed)", + "edition": "N/A", + "author": "Goffman", + "isbn": "9780385094023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1959", + "publisher": "Doubleday Books", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Presentation of Self in Everyday Life (Trade Ed)", + "edition": "N/A", + "author": "Goffman", + "isbn": "9780385094023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1959", + "publisher": "Doubleday Books", + "type_condition": "RENTAL_NEW", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Presentation of Self in Everyday Life (Trade Ed)", + "edition": "N/A", + "author": "Goffman", + "isbn": "9780385094023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1959", + "publisher": "Doubleday Books", + "type_condition": "RENTAL_USED", + "price_display": "$7.92", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Presentation of Self in Everyday Life (Trade Ed)", + "edition": "N/A", + "author": "Goffman", + "isbn": "9780385094023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1959", + "publisher": "Doubleday Books", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Sociology (w/ Inquizitive Access Code)", + "edition": "12th", + "author": "Giddens", + "isbn": "9780393538021", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$79.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Sociology (w/ Inquizitive Access Code)", + "edition": "12th", + "author": "Giddens", + "isbn": "9780393538021", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_USED", + "price_display": "$33.39", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Sociology (w/ Inquizitive Access Code)", + "edition": "12th", + "author": "Giddens", + "isbn": "9780393538021", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$59.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introduction to Sociology (Seagull Twelfth Edition)", + "edition": "12th", + "author": "Giddens", + "isbn": "9780393537963", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$37.47", + "item_type": "digital" + }, + { + "title": "Introduction to Sociology (Seagull Twelfth Edition)", + "edition": "12th", + "author": "Giddens", + "isbn": "9780393537963", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$47.69", + "item_type": "digital" + } + ] + }, + { + "department": "HIST", + "course_num": "2010", + "section": "82", + "instructor": "Nicole Ivy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "2233", + "section": "11", + "instructor": "Frank Baginski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4572", + "section": "80", + "instructor": "John Helveston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1051", + "section": "31", + "instructor": "Michael Moses", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JAPN", + "course_num": "4121W", + "section": "10", + "instructor": "Kaori Iwai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "2601", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6101", + "section": "11", + "instructor": "Darcy Morris", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "15", + "instructor": "Hugo Junghenn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "91", + "instructor": "Megan Leftwich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "3142", + "section": "11", + "instructor": "Nicholas Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6260", + "section": "80", + "instructor": "Gina Adam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "46", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPP", + "course_num": "8999", + "section": "10", + "instructor": "Ernest Englander", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6000", + "section": "16", + "instructor": "Lara Cartwright-Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1059", + "section": "10", + "instructor": "Kelley Vargo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6998", + "section": "18", + "instructor": "Tian Lan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "1014", + "section": "10", + "instructor": "Carola Goldenberg", + "term_name": "Fall 2023", + "texts": [ + { + "title": "MyLab Spanish with Pearson eText -- Access Card -- for Gente: A task-based approach to learning Spanish (One-Semester)", + "edition": "4th", + "author": "Baulenas", + "isbn": "9780135307632", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$146.75", + "item_type": "digital" + } + ] + }, + { + "department": "SEHD", + "course_num": "8200", + "section": "10", + "instructor": "Julia Storberg-Walker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1051", + "section": "32", + "instructor": "Michael Moses", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "2101", + "section": "80", + "instructor": "Jamie Cohen-Cole", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "4220", + "section": "10", + "instructor": "Lisa Page", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "1002", + "section": "10", + "instructor": "Ariadna Pichs", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Gente: A task-based approach to learning Spanish (RRPHE)", + "edition": "4th", + "author": "De La Fuente", + "isbn": "9780135162903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_USED", + "price_display": "$74.99", + "item_type": "print" + }, + { + "title": "Gente: A task-based approach to learning Spanish (RRPHE)", + "edition": "4th", + "author": "De La Fuente", + "isbn": "9780135162903", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "PH - (Rental Rev Share) IST from 1594 ONLY", + "type_condition": "RENTAL_NEW", + "price_display": "$74.99", + "item_type": "print" + }, + { + "title": "Pearson eText for Gente: nivel basico -- Instant Access Pearson+ Single Title Subscription, 4-Month Term", + "edition": "4th", + "author": "Fuente", + "isbn": "9780137617609", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + }, + { + "title": "Gente", + "edition": "4th", + "author": "de la Fuente", + "isbn": "9780135305577", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "Gente", + "edition": "4th", + "author": "de la Fuente", + "isbn": "9780135305614", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6898", + "section": "18", + "instructor": "Kurt Donnelly", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1049", + "section": "10", + "instructor": "Elizabeth Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "25", + "instructor": "Julian Wamble", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6138", + "section": "10", + "instructor": "Maryam Zarnegar Deloffre", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "22", + "instructor": "Colten Karnedy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1111", + "section": "10", + "instructor": "Kinga Dobolyi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "8257", + "section": "10", + "instructor": "Hosam Mahmoud", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "12", + "instructor": "Abdou Youssef", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "1002", + "section": "M33", + "instructor": "Nikolay Shiklomanov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "2133", + "section": "10", + "instructor": "Christopher Venner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "29", + "instructor": "Hyeong-Ah Choi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6312", + "section": "11", + "instructor": "Philip Wirtz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "1051", + "section": "11", + "instructor": "James Gledhill", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6268", + "section": "10", + "instructor": "Aaron Henry", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2478", + "section": "10", + "instructor": "Sina Azodi", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Theories of International Relations", + "edition": "6th", + "author": "Burchill", + "isbn": "9781352012149", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_NEW", + "price_display": "$46.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Theories of International Relations", + "edition": "6th", + "author": "Burchill", + "isbn": "9781352012149", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_USED", + "price_display": "$35.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Relations of the Middle East", + "edition": "5th", + "author": "Fawcett", + "isbn": "9780198809425", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$110.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Relations of the Middle East", + "edition": "5th", + "author": "Fawcett", + "isbn": "9780198809425", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$83.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Relations of the Middle East", + "edition": "5th", + "author": "Fawcett", + "isbn": "9780192537409", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$42.99", + "item_type": "digital" + }, + { + "title": "International Relations of the Middle East", + "edition": "5th", + "author": "Fawcett", + "isbn": "9780192537409", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$49.60", + "item_type": "digital" + }, + { + "title": "International Relations of the Middle East", + "edition": "5th", + "author": "Fawcett", + "isbn": "9780192537409", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$66.14", + "item_type": "digital" + } + ] + }, + { + "department": "JSTD", + "course_num": "2812", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8961", + "section": "10", + "instructor": "Richard Lanthier", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1055", + "section": "13", + "instructor": "Alexandra Keen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "4150", + "section": "80", + "instructor": "Wayne Johnson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SUST", + "course_num": "1001", + "section": "32", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "74", + "instructor": "Andre Culbreath", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "6290", + "section": "US", + "instructor": "Karen Ihrig", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6650", + "section": "O10", + "instructor": "James Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M17", + "instructor": "Kylie Quave", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2216", + "section": "10", + "instructor": "Michael Goff", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Presidential Difference", + "edition": "3rd", + "author": "Greenstein", + "isbn": "9780691143835", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Presidential Difference", + "edition": "3rd", + "author": "Greenstein", + "isbn": "9780691143835", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Presidential Difference", + "edition": "3rd", + "author": "Greenstein", + "isbn": "9780691143835", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "RENTAL_USED", + "price_display": "$14.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Presidential Difference", + "edition": "3rd", + "author": "Greenstein", + "isbn": "9780691143835", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "RENTAL_NEW", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Presidency & the Political System", + "edition": "12th", + "author": "Nelson", + "isbn": "9781544379807", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_NEW", + "price_display": "$122.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Presidency & the Political System", + "edition": "12th", + "author": "Nelson", + "isbn": "9781544379807", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_USED", + "price_display": "$92.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Presidential Difference", + "edition": "3rd", + "author": "Greenstein", + "isbn": "9781400833696", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$37.00", + "item_type": "digital" + }, + { + "title": "The Presidency and the Political System", + "edition": "12th", + "author": "Nelson", + "isbn": "9781544379784", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$43.99", + "item_type": "digital" + }, + { + "title": "The Presidency and the Political System", + "edition": "12th", + "author": "Nelson", + "isbn": "9781544379784", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "The Presidency and the Political System", + "edition": "12th", + "author": "Nelson", + "isbn": "9781544379784", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$55.00", + "item_type": "digital" + }, + { + "title": "The Presidency and the Political System", + "edition": "12th", + "author": "Nelson", + "isbn": "9781544379784", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$79.74", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6383", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "1210", + "section": "22", + "instructor": "Emily Holland", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "1001", + "section": "10", + "instructor": "Srinivas Prasad", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "6118", + "section": "82", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "3119", + "section": "10", + "instructor": "Tatiyana Apanasovich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4342", + "section": "80", + "instructor": "Rahul Simha", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3001W", + "section": "11", + "instructor": "Malcolm Byrne", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6163", + "section": "11", + "instructor": "Rollie Lal", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6220", + "section": "10", + "instructor": "Jonathan Deason", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "6299", + "section": "10", + "instructor": "Ravi Achrol", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JSTD", + "course_num": "2002", + "section": "82", + "instructor": "Walter Reich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "3210", + "section": "10", + "instructor": "Charlee Bezilla", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8998", + "section": "12", + "instructor": "Leila Farhadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UNIV", + "course_num": "0981", + "section": "51", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "4620", + "section": "80", + "instructor": "Payman Dehghanian", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "2113", + "section": "31", + "instructor": "Kinga Dobolyi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3235W", + "section": "11", + "instructor": "Evan Koslof", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Broadcast News Handbook", + "edition": "5th", + "author": "Tuggle", + "isbn": "9780073526225", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$81.40", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Broadcast News Handbook", + "edition": "5th", + "author": "Tuggle", + "isbn": "9780073526225", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$101.75", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Broadcast News Handbook", + "edition": "5th", + "author": "Tuggle", + "isbn": "9780073526225", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "McGraw-Hill", + "type_condition": "BUY_USED", + "price_display": "$76.50", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Broadcast News Handbook", + "edition": "5th", + "author": "Tuggle", + "isbn": "9780073526225", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_USED", + "price_display": "$40.70", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Unbelievable", + "edition": "N/A", + "author": "Tur", + "isbn": "9780062684936", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Unbelievable", + "edition": "N/A", + "author": "Tur", + "isbn": "9780062684936", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Unbelievable", + "edition": "N/A", + "author": "Tur", + "isbn": "9780062684936", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$7.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Unbelievable", + "edition": "N/A", + "author": "Tur", + "isbn": "9780062684943", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$15.99", + "item_type": "digital" + } + ] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "37", + "instructor": "Sharon Roosevelt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "TSTD", + "course_num": "6297", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "32", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "3151W", + "section": "10", + "instructor": "Melissa Goldstein", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M13", + "instructor": "Phillip Troutman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Rewriting", + "edition": "N/A", + "author": "Harris", + "isbn": "9780874216424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Utah State University Press", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Rewriting", + "edition": "N/A", + "author": "Harris", + "isbn": "9780874216424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Utah State University Press", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Rewriting", + "edition": "N/A", + "author": "Harris", + "isbn": "9780874216424", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Utah State University Press", + "type_condition": "RENTAL_USED", + "price_display": "$10.10", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Rewriting", + "edition": "N/A", + "author": "Harris", + "isbn": "9781457174520", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "OREILLY MEDIA INC.", + "type_condition": "BUY_NEW", + "price_display": "$14.47", + "item_type": "digital" + }, + { + "title": "Rewriting", + "edition": "N/A", + "author": "Harris", + "isbn": "9780874215397", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$20.95", + "item_type": "digital" + } + ] + }, + { + "department": "PSC", + "course_num": "2994", + "section": "10", + "instructor": "Kourosh Rahimkhani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6018", + "section": "10", + "instructor": "David Orange", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SUST", + "course_num": "1001", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8330", + "section": "10", + "instructor": "Jonathon Grooms", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "40", + "instructor": "Sudip Bose", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "2106", + "section": "10", + "instructor": "Caitlin Chazen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0930", + "section": "BM", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "90", + "instructor": "Taeyoung Lee", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLAV", + "course_num": "1391", + "section": "80", + "instructor": "Rickie McPeak", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Fathers & Children", + "edition": "2nd", + "author": "Turgenev", + "isbn": "9780393927979", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$23.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fathers & Children", + "edition": "2nd", + "author": "Turgenev", + "isbn": "9780393927979", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$17.63", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fathers & Children", + "edition": "2nd", + "author": "Turgenev", + "isbn": "9780393927979", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$9.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fathers & Children", + "edition": "2nd", + "author": "Turgenev", + "isbn": "9780393927979", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$17.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hero of Our Time", + "edition": "N/A", + "author": "Lermontov", + "isbn": "9780143105633", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hero of Our Time", + "edition": "N/A", + "author": "Lermontov", + "isbn": "9780143105633", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Prose Tales of Pushkin", + "edition": "N/A", + "author": "Pushkin", + "isbn": "9780393004656", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1966", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Prose Tales of Pushkin", + "edition": "N/A", + "author": "Pushkin", + "isbn": "9780393004656", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1966", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$7.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Prose Tales of Pushkin", + "edition": "N/A", + "author": "Pushkin", + "isbn": "9780393004656", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1966", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eugene Onegin (New Trans Mitchell)", + "edition": "N/A", + "author": "Pushkin", + "isbn": "9780140448108", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$14.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eugene Onegin (New Trans Mitchell)", + "edition": "N/A", + "author": "Pushkin", + "isbn": "9780140448108", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$11.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Eugene Onegin (New Trans Mitchell)", + "edition": "N/A", + "author": "Pushkin", + "isbn": "9780140448108", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$10.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Overcoat & Other Tales of Good & Evil", + "edition": "N/A", + "author": "Gogol", + "isbn": "9780393003048", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1965", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$12.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Overcoat & Other Tales of Good & Evil", + "edition": "N/A", + "author": "Gogol", + "isbn": "9780393003048", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1965", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "30", + "instructor": "Katharine MacDonnell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2240", + "section": "10", + "instructor": "Robert Stoker", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Submerged State", + "edition": "N/A", + "author": "Mettler", + "isbn": "9780226521657", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Submerged State", + "edition": "N/A", + "author": "Mettler", + "isbn": "9780226521657", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "University of Chicago Press", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Submerged State", + "edition": "N/A", + "author": "Mettler", + "isbn": "9780226521657", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "University of Chicago Press", + "type_condition": "RENTAL_USED", + "price_display": "$6.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Submerged State", + "edition": "N/A", + "author": "Mettler", + "isbn": "9780226521664", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$14.99", + "item_type": "digital" + } + ] + }, + { + "department": "DATS", + "course_num": "6103", + "section": "11", + "instructor": "Sushovan Majhi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1051", + "section": "38", + "instructor": "Xiaoke Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EPID", + "course_num": "6998", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEHD", + "course_num": "8999", + "section": "16", + "instructor": "Joshua Glazer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2216", + "section": "11", + "instructor": "Nicole Bartels", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3001", + "section": "10", + "instructor": "Timothy Shenk", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3195", + "section": "84", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6085", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6297", + "section": "10", + "instructor": "Sean Aday", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2175", + "section": "10", + "instructor": "Desmond Goss", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Gender Through the Prism of Difference", + "edition": "6th", + "author": "Zinn", + "isbn": "9780190948559", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$87.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gender Through the Prism of Difference", + "edition": "6th", + "author": "Zinn", + "isbn": "9780190948559", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$48.93", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gender Through the Prism of Difference", + "edition": "6th", + "author": "Zinn", + "isbn": "9780190948559", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$116.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gender Through the Prism of Difference", + "edition": "6th", + "author": "Baca Zinn", + "isbn": "9780190948566", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$47.99", + "item_type": "digital" + }, + { + "title": "Gender Through the Prism of Difference", + "edition": "6th", + "author": "Baca Zinn", + "isbn": "9780190948566", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$55.37", + "item_type": "digital" + }, + { + "title": "Gender Through the Prism of Difference", + "edition": "6th", + "author": "Baca Zinn", + "isbn": "9780190948566", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$73.83", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "6012", + "section": "14", + "instructor": "Leah Masselink", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "4591", + "section": "10", + "instructor": "Stephen Dopkins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6863", + "section": "12", + "instructor": "Michael Stoto", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6318", + "section": "13", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "3100", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6250", + "section": "11", + "instructor": "Stephen Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6501", + "section": "11", + "instructor": "Melissa Napolitano", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6298", + "section": "10", + "instructor": "Robert Van Order", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8999", + "section": "14", + "instructor": "Deniece Dortch", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6302", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6503", + "section": "22", + "instructor": "Paul Albert", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2490", + "section": "84", + "instructor": "Emily Bock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3182", + "section": "10", + "instructor": "Thomas Parker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8423", + "section": "10", + "instructor": "Janet Heinrich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "1001", + "section": "12", + "instructor": "Sepideh Vistamehr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6898", + "section": "11", + "instructor": "Jennifer Fox", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "2500", + "section": "10", + "instructor": "Christopher Britt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0930", + "section": "CS", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6206", + "section": "10G", + "instructor": "James Bailey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "1001", + "section": "11", + "instructor": "Jee Kim", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6310", + "section": "10", + "instructor": "Melissa McCarthy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6198", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "2047", + "section": "81", + "instructor": "Walter Reich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4198", + "section": "12", + "instructor": "Jonathan Deason", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLAV", + "course_num": "4597", + "section": "10", + "instructor": "Peter Rollberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "1001", + "section": "10", + "instructor": "Aman Luthra", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8998", + "section": "11", + "instructor": "Joshua Glazer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "14", + "instructor": "Bhagirath Narahari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1045", + "section": "10", + "instructor": "Joseph Simms", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6020", + "section": "10", + "instructor": "Joost Santos", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEHD", + "course_num": "8101", + "section": "12", + "instructor": "Ryan Watkins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "6262", + "section": "80", + "instructor": "Lucia Rafanelli", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Law of Peoples", + "edition": "N/A", + "author": "Rawls", + "isbn": "9780674005426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$23.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Law of Peoples", + "edition": "N/A", + "author": "Rawls", + "isbn": "9780674005426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$23.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Law of Peoples", + "edition": "N/A", + "author": "Rawls", + "isbn": "9780674005426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$31.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Law of Peoples", + "edition": "N/A", + "author": "Rawls", + "isbn": "9780674005426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$12.40", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "PHYS", + "course_num": "3165", + "section": "10", + "instructor": "Gary White", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Electrodynamics", + "edition": "4th", + "author": "Griffiths", + "isbn": "9781108420419", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_USED", + "price_display": "$56.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Electrodynamics", + "edition": "4th", + "author": "Griffiths", + "isbn": "9781108420419", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$74.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Electrodynamics", + "edition": "4th", + "author": "Griffiths", + "isbn": "9781108420419", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$56.24", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Electrodynamics", + "edition": "4th", + "author": "Griffiths", + "isbn": "9781108420419", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_USED", + "price_display": "$31.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Introduction to Electrodynamics", + "edition": "4th", + "author": "Griffiths", + "isbn": "9781108359382", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "RENTAL_NEW", + "price_display": "$56.00", + "item_type": "digital" + }, + { + "title": "Introduction to Electrodynamics", + "edition": "4th", + "author": "Griffiths", + "isbn": "9781108359382", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "CAMBRIDGE UNIV PRESS", + "type_condition": "BUY_NEW", + "price_display": "$70.00", + "item_type": "digital" + } + ] + }, + { + "department": "EHS", + "course_num": "1002", + "section": "10", + "instructor": "Andrew Garrett", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "3592", + "section": "10", + "instructor": "Sharon Lambert", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "8352", + "section": "10", + "instructor": "Joan Kester", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6998", + "section": "10", + "instructor": "Gina Adam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6030", + "section": "12", + "instructor": "Adam Howard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "2184", + "section": "10", + "instructor": "Murli Gupta", + "term_name": "Fall 2023", + "texts": [ + { + "title": "MyLab Math with Pearson eText -- Access Card -- for Linear Algebra and its Applications (18-Weeks)", + "edition": "6th", + "author": "McDonald", + "isbn": "9780135851159", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$106.75", + "item_type": "digital" + } + ] + }, + { + "department": "PSYC", + "course_num": "4201W", + "section": "31", + "instructor": "Fallon Goodman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1232", + "section": "32", + "instructor": "Robert Won", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "6999", + "section": "10", + "instructor": "Hang Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "3201", + "section": "10", + "instructor": "Anna Helm", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "8361", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "15", + "instructor": "April Clark", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1127", + "section": "11", + "instructor": "James Hunt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3187", + "section": "87", + "instructor": "Eric Olson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8999", + "section": "11", + "instructor": "Jonathan Deason", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "83", + "instructor": "Yongsheng Leng", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1055", + "section": "12", + "instructor": "Angela Ingram", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "73", + "instructor": "Daniel Jaqua", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ORSC", + "course_num": "3190", + "section": "10", + "instructor": "Michael Newbill", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Chip War", + "edition": "N/A", + "author": "Miller", + "isbn": "9781982172008", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Scribner", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Chip War", + "edition": "N/A", + "author": "Miller", + "isbn": "9781982172008", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Scribner", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "This Is How They Tell Me the World Ends", + "edition": "N/A", + "author": "Perlroth", + "isbn": "9781635576054", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_NEW", + "price_display": "$30.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "This Is How They Tell Me the World Ends", + "edition": "N/A", + "author": "Perlroth", + "isbn": "9781635576054", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fifth Domain", + "edition": "N/A", + "author": "Clarke", + "isbn": "9780525561989", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Penguin Group USA Inc", + "type_condition": "BUY_NEW", + "price_display": "$19.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fifth Domain", + "edition": "N/A", + "author": "Clarke", + "isbn": "9780525561989", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Penguin Group USA Inc", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Hacker & the State", + "edition": "N/A", + "author": "Buchanan", + "isbn": "9780674987555", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$40.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Hacker & the State", + "edition": "N/A", + "author": "Buchanan", + "isbn": "9780674987555", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$30.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Cybersecurity & Cyberwar", + "edition": "N/A", + "author": "Singer", + "isbn": "9780199918119", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$6.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cybersecurity & Cyberwar", + "edition": "N/A", + "author": "Singer", + "isbn": "9780199918119", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$16.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cybersecurity & Cyberwar", + "edition": "N/A", + "author": "Singer", + "isbn": "9780199918119", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cybersecurity & Cyberwar", + "edition": "N/A", + "author": "Singer", + "isbn": "9780199918119", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$11.02", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Data & Goliath", + "edition": "N/A", + "author": "Schneier", + "isbn": "9780393352177", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Data & Goliath", + "edition": "N/A", + "author": "Schneier", + "isbn": "9780393352177", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Surviving AI", + "edition": "N/A", + "author": "Chace", + "isbn": "9780993211621", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Ingram Book Company", + "type_condition": "BUY_NEW", + "price_display": "$14.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Surviving AI", + "edition": "N/A", + "author": "Chace", + "isbn": "9780993211621", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Ingram Book Company", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Life 3. 0", + "edition": "N/A", + "author": "Tegmark", + "isbn": "9781101970317", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "RENTAL_USED", + "price_display": "$7.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Life 3. 0", + "edition": "N/A", + "author": "Tegmark", + "isbn": "9781101970317", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "BUY_NEW", + "price_display": "$19.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Life 3. 0", + "edition": "N/A", + "author": "Tegmark", + "isbn": "9781101970317", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Life 3. 0", + "edition": "N/A", + "author": "Tegmark", + "isbn": "9781101970317", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "RENTAL_NEW", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cybersecurity and Cyberwar", + "edition": "N/A", + "author": "Singer", + "isbn": "9780199364572", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "RENTAL_NEW", + "price_display": "$7.14", + "item_type": "digital" + }, + { + "title": "Cybersecurity and Cyberwar", + "edition": "N/A", + "author": "Singer", + "isbn": "9780199364572", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "RENTAL_NEW", + "price_display": "$8.24", + "item_type": "digital" + }, + { + "title": "Cybersecurity and Cyberwar", + "edition": "N/A", + "author": "Singer", + "isbn": "9780199364572", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "BUY_NEW", + "price_display": "$10.99", + "item_type": "digital" + }, + { + "title": "Data and Goliath: The Hidden Battles to Collect Your Data and Control Your World", + "edition": "N/A", + "author": "Schneier", + "isbn": "9780393244823", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "item_type": "digital" + } + ] + }, + { + "department": "IBUS", + "course_num": "6101", + "section": "10", + "instructor": "Meghana Ayyagari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "4599", + "section": "10", + "instructor": "Carl Gudenius", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1330", + "section": "31", + "instructor": "Carl Gudenius", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8998", + "section": "14", + "instructor": "Russell Korte", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1051", + "section": "32", + "instructor": "Hamidreza Semiyari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "4191", + "section": "10", + "instructor": "Rachel Riedner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UNIV", + "course_num": "0901", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2012", + "section": "10", + "instructor": "Janine Beekman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "6091", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2115", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "1051", + "section": "13", + "instructor": "Adam Jurkiewicz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EAP", + "course_num": "6110", + "section": "11", + "instructor": "Dmitri Stanchevici", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "2000", + "section": "10", + "instructor": "Jill Kasle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8999", + "section": "14", + "instructor": "Jennifer Sacheck-Ward", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6312", + "section": "10", + "instructor": "Amir Hossein Jafari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1041", + "section": "13", + "instructor": "Sarah Covelli", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6290", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3235W", + "section": "10", + "instructor": "Jonathan Decker", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Broadcast News Handbook", + "edition": "5th", + "author": "Tuggle", + "isbn": "9780073526225", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$101.75", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Broadcast News Handbook", + "edition": "5th", + "author": "Tuggle", + "isbn": "9780073526225", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$81.40", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Broadcast News Handbook", + "edition": "5th", + "author": "Tuggle", + "isbn": "9780073526225", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_USED", + "price_display": "$40.70", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Broadcast News Handbook", + "edition": "5th", + "author": "Tuggle", + "isbn": "9780073526225", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "McGraw-Hill", + "type_condition": "BUY_USED", + "price_display": "$76.50", + "binding": "Spiral", + "item_type": "print" + } + ] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "66", + "instructor": "Anna Camp", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M11", + "instructor": "B. Tomlinson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Little Seagull Handbook (2021 MLA Update)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393888959", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$28.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Seagull Handbook (2021 MLA Update)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393888959", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$38.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Seagull Handbook (2021 MLA Update)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393888959", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$16.72", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Seagull Handbook (2021 MLA Update)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393888959", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$28.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Little Seagull Handbook: 2021 MLA Update (Fourth Edition)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393536980", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$17.88", + "item_type": "digital" + }, + { + "title": "The Little Seagull Handbook: 2021 MLA Update (Fourth Edition)", + "edition": "4th", + "author": "Bullock", + "isbn": "9780393536980", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$22.75", + "item_type": "digital" + } + ] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "82", + "instructor": "Bhagirath Narahari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "2104", + "section": "32", + "instructor": "Richard Hinton", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6820", + "section": "10", + "instructor": "William Chernicoff", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8998", + "section": "10", + "instructor": "Zoe Szajnfarber", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "2104", + "section": "81", + "instructor": "Erin Cardman", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801476", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$132.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801476", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$55.65", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801476", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$99.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801476", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$106.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introduction to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801599", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "Introduction to Communication Disorders", + "edition": "6th", + "author": "Owens", + "isbn": "9780134801575", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "HONR", + "course_num": "2047", + "section": "13", + "instructor": "Nora Hill", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6204", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2212", + "section": "10", + "instructor": "Robert Betz", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Politics & Policy in States & Communities", + "edition": "11th", + "author": "Harrigan", + "isbn": "9780205745494", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Longman", + "type_condition": "BUY_USED", + "price_display": "$140.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Politics & Policy in States & Communities", + "edition": "11th", + "author": "Harrigan", + "isbn": "9780205745494", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Longman", + "type_condition": "BUY_NEW", + "price_display": "$187.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "State & Local Government", + "edition": "10th", + "author": "Bowman", + "isbn": "9781305388475", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$190.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "State & Local Government", + "edition": "10th", + "author": "Bowman", + "isbn": "9781305388475", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$253.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "State & Local Government", + "edition": "10th", + "author": "Bowman", + "isbn": "9781305388475", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$106.47", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "State & Local Government", + "edition": "10th", + "author": "Bowman", + "isbn": "9781305388475", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$164.78", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "State and Local Government", + "edition": "10th", + "author": "Bowman", + "isbn": "9781305888371", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$45.99", + "item_type": "digital" + }, + { + "title": "Politics and Policy in States and Communities (Subscription)", + "edition": "11th", + "author": "Harrigan", + "isbn": "9780205975198", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$55.00", + "item_type": "digital" + }, + { + "title": "State and Local Government", + "edition": "10th", + "author": "Bowman", + "isbn": "9781305888371", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$62.99", + "item_type": "digital" + }, + { + "title": "State and Local Government", + "edition": "10th", + "author": "Bowman", + "isbn": "9781305888371", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$80.48", + "item_type": "digital" + }, + { + "title": "Politics and Policy in States and Communities (Subscription)", + "edition": "11th", + "author": "Harrigan", + "isbn": "9780205975198", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson Lifetime eBooks", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + }, + { + "title": "Politics and Policy in States and Communities (Subscription)", + "edition": "11th", + "author": "Harrigan", + "isbn": "9780205975198", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$91.75", + "item_type": "digital" + } + ] + }, + { + "department": "HIST", + "course_num": "2410W", + "section": "84", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "M31", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "3501", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPP", + "course_num": "6290", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "4800", + "section": "10", + "instructor": "Masha Belenky", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "2005", + "section": "13", + "instructor": "Herminia Gil Guerrero", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "3334", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1083", + "section": "11", + "instructor": "Michael Schmitz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "1026", + "section": "10", + "instructor": "Mark Reeves", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "0940", + "section": "10", + "instructor": "Mikyong Kim", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6283", + "section": "10", + "instructor": "Michael Moore", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "6150", + "section": "80", + "instructor": "Olivia Bullock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6203", + "section": "10", + "instructor": "Wayne Psek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "43", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "4810", + "section": "10", + "instructor": "Majid Manzari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8204", + "section": "10", + "instructor": "Loring Ingraham", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Neuroscience Clinical Psychiatry", + "edition": "3rd", + "author": "Higgins", + "isbn": "9781496372000", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_NEW", + "price_display": "$124.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Neuroscience Clinical Psychiatry", + "edition": "3rd", + "author": "Higgins", + "isbn": "9781496372000", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "RENTAL_USED", + "price_display": "$52.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Neuroscience Clinical Psychiatry", + "edition": "3rd", + "author": "Higgins", + "isbn": "9781496372000", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "BUY_USED", + "price_display": "$93.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Neuroscience Clinical Psychiatry", + "edition": "3rd", + "author": "Higgins", + "isbn": "9781496372000", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Wolters Kluwer Health / Lippincott Williams & Wilkins", + "type_condition": "RENTAL_NEW", + "price_display": "$99.99", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Human Brain Coloring Book", + "edition": "N/A", + "author": "Diamond", + "isbn": "9780064603065", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "1985", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$26.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Human Brain Book", + "edition": "3rd", + "author": "Carter", + "isbn": "9781465479549", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2019", + "publisher": "Dorling Kindersley Publishing, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Human Brain Book", + "edition": "3rd", + "author": "Carter", + "isbn": "9781465479549", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2019", + "publisher": "Dorling Kindersley Publishing, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832178", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "BUY_NEW", + "price_display": "$49.25", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832178", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "RENTAL_USED", + "price_display": "$21.67", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832178", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "BUY_USED", + "price_display": "$37.00", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832178", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "RENTAL_NEW", + "price_display": "$36.94", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Publication Manual (OFFICIAL) 7th Edition of the American Psychological Association", + "edition": "7th", + "author": "Association", + "isbn": "9781433832185", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "American Psychological Association", + "type_condition": "RENTAL_NEW", + "price_display": "$31.99", + "item_type": "digital" + }, + { + "title": "Publication Manual (OFFICIAL) 7th Edition of the American Psychological Association", + "edition": "7th", + "author": "Association", + "isbn": "9781433832185", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "American Psychological Association", + "type_condition": "BUY_NEW", + "price_display": "$35.99", + "item_type": "digital" + } + ] + }, + { + "department": "PSC", + "course_num": "3500", + "section": "11", + "instructor": "Andrew Thompson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2180", + "section": "11", + "instructor": "Chuanhao Lin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1005", + "section": "36", + "instructor": "Peter Nassar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M51", + "instructor": "Jameta Barlow", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1063", + "section": "15", + "instructor": "Dumisani Ndlovu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6504", + "section": "14", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6999", + "section": "10", + "instructor": "Majid Manzari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "3136", + "section": "10", + "instructor": "Jodi Kumar", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Fund of Phonetics (w/Pearson 2.0 Access Card)", + "edition": "5th", + "author": "Small", + "isbn": "9780136631538", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$163.75", + "item_type": "print" + } + ] + }, + { + "department": "SLHS", + "course_num": "6260", + "section": "10", + "instructor": "Marissa Simpson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3810", + "section": "10", + "instructor": "Sophia Fisher", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6516", + "section": "10", + "instructor": "Sarah Denes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "6243", + "section": "M10", + "instructor": "Todd Bille", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "8999", + "section": "22", + "instructor": "Omur Ozel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "6318", + "section": "10", + "instructor": "Xiaofeng Ren", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Applied Mathematics", + "edition": "4th", + "author": "Logan", + "isbn": "9781118475805", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$103.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Applied Mathematics", + "edition": "4th", + "author": "Logan", + "isbn": "9781118475805", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$103.69", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Applied Mathematics", + "edition": "4th", + "author": "Logan", + "isbn": "9781118475805", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$58.07", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Applied Mathematics", + "edition": "4th", + "author": "Logan", + "isbn": "9781118475805", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$138.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Applied Mathematics", + "edition": "4th", + "author": "Logan", + "isbn": "9781118501702", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$114.00", + "item_type": "digital" + } + ] + }, + { + "department": "EAP", + "course_num": "6110", + "section": "13", + "instructor": "Megan Siczek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3180", + "section": "11", + "instructor": "Jack Sine", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Air Warfare", + "edition": "N/A", + "author": "Gray", + "isbn": "9781780936628", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Bloomsbury Academic", + "type_condition": "BUY_NEW", + "price_display": "$36.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Air Warfare", + "edition": "N/A", + "author": "Gray", + "isbn": "9781780936628", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Bloomsbury Academic", + "type_condition": "BUY_USED", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Bombing to Win: Air Power & Coercion in War", + "edition": "N/A", + "author": "Pape", + "isbn": "9780801483110", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Cornell University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$25.31", + "item_type": "print" + }, + { + "title": "Bombing to Win: Air Power & Coercion in War", + "edition": "N/A", + "author": "Pape", + "isbn": "9780801483110", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Cornell University Press", + "type_condition": "BUY_NEW", + "price_display": "$33.75", + "item_type": "print" + }, + { + "title": "Bombing to Win: Air Power & Coercion in War", + "edition": "N/A", + "author": "Pape", + "isbn": "9780801483110", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Cornell University Press", + "type_condition": "BUY_USED", + "price_display": "$25.50", + "item_type": "print" + }, + { + "title": "Bombing to Win: Air Power & Coercion in War", + "edition": "N/A", + "author": "Pape", + "isbn": "9780801483110", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1996", + "publisher": "Cornell University Press", + "type_condition": "RENTAL_USED", + "price_display": "$13.50", + "item_type": "print" + }, + { + "title": "Arms & Influence", + "edition": "N/A", + "author": "Schelling", + "isbn": "9780300143379", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Yale University Press", + "type_condition": "BUY_NEW", + "price_display": "$25.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arms & Influence", + "edition": "N/A", + "author": "Schelling", + "isbn": "9780300143379", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Yale University Press", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Arms & Influence", + "edition": "N/A", + "author": "Schelling", + "isbn": "9780300143379", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Yale University Press", + "type_condition": "RENTAL_USED", + "price_display": "$10.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "IAFF", + "course_num": "3180W", + "section": "11", + "instructor": "Thomas McNamara", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1035", + "section": "10", + "instructor": "Jason Montecalvo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "4199", + "section": "12", + "instructor": "Bethany Kung", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "4212", + "section": "80", + "instructor": "Ali Obaidi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6286", + "section": "10G", + "instructor": "Jennifer Merluzzi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "61", + "instructor": "Matthew Clarke", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "2110", + "section": "10", + "instructor": "Halima Ahmadi-Montecalvo", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Essen of Public Health Biology (w/Nav2 Advantage Access)", + "edition": "N/A", + "author": "Dipietro", + "isbn": "9781284077919", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$102.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Public Health Biology (w/Nav2 Advantage Access)", + "edition": "N/A", + "author": "Dipietro", + "isbn": "9781284077919", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$77.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Public Health Biology (w/Nav2 Advantage Access)", + "edition": "N/A", + "author": "Dipietro", + "isbn": "9781284077919", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$43.16", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essentials of Public Health Biology", + "edition": "N/A", + "author": "DiPietro", + "isbn": "9781284077971", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$61.07", + "item_type": "digital" + } + ] + }, + { + "department": "DNSC", + "course_num": "6261", + "section": "80", + "instructor": "Young Kwak", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3194", + "section": "83", + "instructor": "John Sutter", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4198", + "section": "17", + "instructor": "David Broniatowski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2410W", + "section": "82", + "instructor": "Thomas Guglielmo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6118", + "section": "10", + "instructor": "Howard Straker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "75", + "instructor": "Murray Loew", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "6252", + "section": "10", + "instructor": "Gil Appel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "6138", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6378", + "section": "80", + "instructor": "Attiya Ahmad", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1000", + "section": "10", + "instructor": "Hosam Mahmoud", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "1003", + "section": "13", + "instructor": "Andrea Johnson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Criminal Justice: Systems, Diversity, & Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398730", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2022", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$109.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Criminal Justice: Systems, Diversity, & Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398730", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2022", + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$61.22", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Criminal Justice: Systems, Diversity, & Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398730", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2022", + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$116.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Criminal Justice: Systems, Diversity, & Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398730", + "material_type": "TXT", + "requirement_type": "RM", + "copy_right_year": "2022", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$145.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sage Vantage: Introduction to Criminal Justice: Systems, Diversity, and Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781071821336", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$83.00", + "item_type": "digital" + } + ] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "40", + "instructor": "Wendy Pintado", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1001", + "section": "30", + "instructor": "James Kerr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPP", + "course_num": "6138", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2331", + "section": "11", + "instructor": "Sharon Wolchik", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "14", + "instructor": "Michael Hankinson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "8333", + "section": "10", + "instructor": "Janet Lewis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPJ", + "course_num": "3501", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "37", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "2460", + "section": "11", + "instructor": "Jennifer Close", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "3990", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6999", + "section": "20", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6016", + "section": "11", + "instructor": "Terrell Lasane", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1081", + "section": "11", + "instructor": "Alan Wood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "46", + "instructor": "Leah Kuppermann", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8998", + "section": "17", + "instructor": "David Broniatowski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "BADM", + "course_num": "4001", + "section": "13", + "instructor": "Wendy Wagner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6296", + "section": "10", + "instructor": "Sean Aday", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GER", + "course_num": "4800", + "section": "10", + "instructor": "Margaret Gonglewski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1129", + "section": "10", + "instructor": "Hamidreza Semiyari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8998", + "section": "12", + "instructor": "Iris Rotberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "6101", + "section": "10", + "instructor": "Jozef Przytycki", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Post-Modern Algebra", + "edition": "N/A", + "author": "Smith", + "isbn": "9780471127383", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Wiley-Interscience", + "type_condition": "BUY_USED", + "price_display": "$194.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Post-Modern Algebra", + "edition": "N/A", + "author": "Smith", + "isbn": "9780471127383", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Wiley-Interscience", + "type_condition": "BUY_NEW", + "price_display": "$258.50", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "25", + "instructor": "Adam Aviv", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6577", + "section": "10", + "instructor": "David Broniatowski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3198", + "section": "80", + "instructor": "Scott Odell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6050", + "section": "25", + "instructor": "Mona Zaghloul", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1051", + "section": "40", + "instructor": "Michael Moses", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "41", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M21", + "instructor": "Paul Michiels", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Miniature Guide to Critical Thinking Concepts & Tools", + "edition": "8th", + "author": "Elder", + "isbn": "9781538134948", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_NEW", + "price_display": "$10.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Miniature Guide to Critical Thinking Concepts & Tools", + "edition": "8th", + "author": "Elder", + "isbn": "9781538134948", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_USED", + "price_display": "$5.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Miniature Guide to Critical Thinking Concepts & Tools", + "edition": "8th", + "author": "Elder", + "isbn": "9781538134948", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_NEW", + "price_display": "$13.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Miniature Guide to Critical Thinking Concepts & Tools", + "edition": "8th", + "author": "Elder", + "isbn": "9781538134948", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writer's Reference", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319169404", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_USED", + "price_display": "$50.30", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Writer's Reference", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319169404", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$119.75", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Writer's Reference", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319169404", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_USED", + "price_display": "$90.00", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Learning How to Learn", + "edition": "N/A", + "author": "Oakley", + "isbn": "9780143132547", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning How to Learn", + "edition": "N/A", + "author": "Oakley", + "isbn": "9780143132547", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning How to Learn", + "edition": "N/A", + "author": "Oakley", + "isbn": "9780143132547", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning How to Learn", + "edition": "N/A", + "author": "Oakley", + "isbn": "9780143132547", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Miniature Guide to Critical Thinking Concepts and Tools", + "edition": "8th", + "author": "Paul", + "isbn": "9781538134955", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$11.00", + "item_type": "digital" + }, + { + "title": "A Writer's Reference", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319332969", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$43.99", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "4140W", + "section": "10", + "instructor": "Sara Wilensky", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6284", + "section": "10", + "instructor": "Graciela Kaminsky", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8891", + "section": "10", + "instructor": "Keith Crandall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "2071", + "section": "80", + "instructor": "Katherine Markoski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8101", + "section": "14", + "instructor": "Jonathon Grooms", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "4199", + "section": "10", + "instructor": "David Karpf", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1002", + "section": "39", + "instructor": "Forrest Maltzman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6274", + "section": "12", + "instructor": "Leonard Friedman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6163", + "section": "12", + "instructor": "Margaux Repellin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "11", + "instructor": "Matthew Kay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3501", + "section": "10", + "instructor": "Raquel Sofia Rodrigues Rosa Machaqueiro", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2012", + "section": "12", + "instructor": "Tonya Dodge", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Revel for Social Psychology -- Combo Access Card", + "edition": "11th", + "author": "Wilson", + "isbn": "9780137633630", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$126.75", + "item_type": "digital" + }, + { + "title": "11th Edition: Revel for Social Psychology -- Access Card", + "edition": "11th", + "author": "Wilson", + "isbn": "9780137633616", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$133.50", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "6992", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1003", + "section": "37", + "instructor": "Adam Dean", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "1210", + "section": "21", + "instructor": "Mary Willis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6356", + "section": "10", + "instructor": "Dashawn Groves", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8999", + "section": "22", + "instructor": "Zhengtian Xu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8010", + "section": "14", + "instructor": "Jennifer Skillicorn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "6303", + "section": "80", + "instructor": "Jesse Corradi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1330", + "section": "32", + "instructor": "Carl Gudenius", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3188", + "section": "10", + "instructor": "Barbara Slavin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "6289", + "section": "11", + "instructor": "Fang Jin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "27", + "instructor": "Hao Huang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "1110", + "section": "34", + "instructor": "Christopher Duncan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0920", + "section": "BM", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "6370", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "NRSC", + "course_num": "8998", + "section": "10", + "instructor": "Matthew Colonnese", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "46", + "instructor": "Dong Quan Nguyen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6995", + "section": "14", + "instructor": "Joseph Barbera", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "8364", + "section": "10", + "instructor": "Steven Hamilton", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6631", + "section": "11", + "instructor": "James Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6808", + "section": "11", + "instructor": "Pedro Silva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JAPN", + "course_num": "2003", + "section": "30", + "instructor": "Kaori Iwai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "4995", + "section": "10", + "instructor": "Joseph Bonin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8999", + "section": "21", + "instructor": "Johan van Dorp", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "2005", + "section": "11", + "instructor": "Maja Milicevic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6003", + "section": "11", + "instructor": "Heather Young", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Gordis Epidemiology", + "edition": "6th", + "author": "Celentano", + "isbn": "9780323552295", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Elsevier HlthSciences Division", + "type_condition": "BUY_NEW", + "price_display": "$61.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gordis Epidemiology", + "edition": "6th", + "author": "Celentano", + "isbn": "9780323552295", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Elsevier HlthSciences Division", + "type_condition": "BUY_USED", + "price_display": "$46.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gordis Epidemiology", + "edition": "6th", + "author": "Celentano", + "isbn": "9780323552295", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Elsevier HlthSciences Division", + "type_condition": "RENTAL_NEW", + "price_display": "$46.31", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gordis Epidemiology", + "edition": "6th", + "author": "Celentano", + "isbn": "9780323552295", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Elsevier HlthSciences Division", + "type_condition": "RENTAL_USED", + "price_display": "$24.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Gordis Epidemiology E-Book", + "edition": "6th", + "author": "Celentano", + "isbn": "9780323552318", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Elsevier HlthSciences Division", + "type_condition": "BUY_NEW", + "price_display": "$44.99", + "item_type": "digital" + } + ] + }, + { + "department": "EMSE", + "course_num": "8998", + "section": "22", + "instructor": "Caitlin Grady", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "6501", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6992", + "section": "80", + "instructor": "Zoe Szajnfarber", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6263", + "section": "10P", + "instructor": "Roman Terekhin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6999", + "section": "14", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1311", + "section": "10", + "instructor": "Hyeong-Ah Choi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6047", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2151", + "section": "33", + "instructor": "Stephen Boyes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "2006", + "section": "16", + "instructor": "Ariadna Pichs", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "1502", + "section": "11", + "instructor": "Kelly Carr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "3625", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6531", + "section": "80", + "instructor": "Joseph Goldfrank", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2229", + "section": "10", + "instructor": "Daniel Hayes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "15", + "instructor": "Igor Efimov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8203", + "section": "17", + "instructor": "Katherine Marshall Woods", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8211", + "section": "10", + "instructor": "Cynthia Rohrbeck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "8022", + "section": "30", + "instructor": "Leah Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "6094", + "section": "80", + "instructor": "Michele Carlson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "KOR", + "course_num": "2003", + "section": "10", + "instructor": "Miok Pak", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1214", + "section": "13", + "instructor": "Jennifer Hopkins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "3591", + "section": "10", + "instructor": "Stephen Dopkins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6436", + "section": "10", + "instructor": "Eugene Migliaccio", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8706", + "section": "10", + "instructor": "Eugene Migliaccio", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "8999", + "section": "12", + "instructor": "Joan Kester", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4198", + "section": "15", + "instructor": "Royce Francis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6208", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "8388", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "31", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6050", + "section": "20", + "instructor": "Ahmed Louri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "3100", + "section": "80", + "instructor": "Lucia Rafanelli", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Law of Peoples", + "edition": "N/A", + "author": "Rawls", + "isbn": "9780674005426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$12.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Law of Peoples", + "edition": "N/A", + "author": "Rawls", + "isbn": "9780674005426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$23.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Law of Peoples", + "edition": "N/A", + "author": "Rawls", + "isbn": "9780674005426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$31.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Law of Peoples", + "edition": "N/A", + "author": "Rawls", + "isbn": "9780674005426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$23.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "HIST", + "course_num": "3190", + "section": "84", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "44", + "instructor": "Paul Wagner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "3194", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6463", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "6999", + "section": "10", + "instructor": "D. Kayes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "10", + "instructor": "Minahil Meher", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "6242", + "section": "10", + "instructor": "Karina Lora", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "3100W", + "section": "10", + "instructor": "Heather Bamford", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6257", + "section": "DE", + "instructor": "Homayoun Khamooshi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "KOR", + "course_num": "1001", + "section": "31", + "instructor": "Gayeon Kim", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "1012", + "section": "10", + "instructor": "Carola Goldenberg", + "term_name": "Fall 2023", + "texts": [ + { + "title": "MyLab Spanish with Pearson eText -- Access Card -- for Gente: A task-based approach to learning Spanish (One-Semester)", + "edition": "4th", + "author": "Baulenas", + "isbn": "9780135307632", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$146.75", + "item_type": "digital" + } + ] + }, + { + "department": "CE", + "course_num": "3111W", + "section": "10", + "instructor": "Tianshu Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6810", + "section": "10", + "instructor": "Kie-Bum Eom", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "34", + "instructor": "Sharon Roosevelt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2189", + "section": "11", + "instructor": "Erin Tinney", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6998", + "section": "23", + "instructor": "Adam Aviv", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1011", + "section": "M31", + "instructor": "Quinn Lester", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6053", + "section": "10", + "instructor": "Meili Niu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "3191", + "section": "30", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6995", + "section": "16", + "instructor": "Thomas Mazzuchi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8259", + "section": "10", + "instructor": "Delishia Pittman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6020", + "section": "10", + "instructor": "Roger Lang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1030", + "section": "11", + "instructor": "Mallory McPherson-Wehan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "8229", + "section": "10", + "instructor": "Dawn Rigby", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "8461", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2101", + "section": "11", + "instructor": "Kerry Synan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1002", + "section": "30", + "instructor": "Forrest Maltzman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3196", + "section": "10", + "instructor": "Patricia Phalen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6433", + "section": "10", + "instructor": "David Roberts", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6417", + "section": "11", + "instructor": "Paul Ndebele", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6299", + "section": "12", + "instructor": "Wayne Psek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2490", + "section": "82", + "instructor": "Emily Bock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3428", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6116", + "section": "10", + "instructor": "Jaehwa Choi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "46", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6999", + "section": "10", + "instructor": "Pamela Labadie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "3115", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "1040", + "section": "15", + "instructor": "Nathaniel Silver", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6011", + "section": "11", + "instructor": "Garry Young", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "4995", + "section": "10", + "instructor": "Jennifer Spencer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3411", + "section": "30", + "instructor": "Gabriel Parmer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "MV1", + "instructor": "Kahlil Kuykendall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6002", + "section": "11", + "instructor": "Juan Klopper", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "8101", + "section": "10", + "instructor": "Brandon Bartels", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6301", + "section": "10", + "instructor": "Sameh Badie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3190", + "section": "88", + "instructor": "Scott Odell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3194", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2993", + "section": "10", + "instructor": "Kourosh Rahimkhani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "3136W", + "section": "80", + "instructor": "Liana Chen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Images of Women in Chinese Thought & Culture", + "edition": "N/A", + "author": "Wang", + "isbn": "9780872206519", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Images of Women in Chinese Thought & Culture", + "edition": "N/A", + "author": "Wang", + "isbn": "9780872206519", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$19.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Images of Women in Chinese Thought & Culture", + "edition": "N/A", + "author": "Wang", + "isbn": "9780872206519", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$7.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Images of Women in Chinese Thought & Culture", + "edition": "N/A", + "author": "Wang", + "isbn": "9780872206519", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Raise the Red Lantern", + "edition": "N/A", + "author": "Tong", + "isbn": "9780060596330", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1990", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$13.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Raise the Red Lantern", + "edition": "N/A", + "author": "Tong", + "isbn": "9780060596330", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1990", + "publisher": "Harper Collins Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$5.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Raise the Red Lantern", + "edition": "N/A", + "author": "Tong", + "isbn": "9780060596330", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1990", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_USED", + "price_display": "$10.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "21", + "instructor": "Stephen Redmon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8406", + "section": "10", + "instructor": "James Tielsch", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6604", + "section": "10", + "instructor": "Bryan Powell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1232", + "section": "30", + "instructor": "Robert Won", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1051", + "section": "37", + "instructor": "Francois Tuamokumo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6699", + "section": "10", + "instructor": "Brian Valentine", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "88", + "instructor": "Stephen Hsu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M48", + "instructor": "Julie Donovan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Shubeik Lubeik", + "edition": "N/A", + "author": "Mohamed", + "isbn": "9781524748418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Shubeik Lubeik", + "edition": "N/A", + "author": "Mohamed", + "isbn": "9781524748418", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Knopf Doubleday Publishing Group", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Fun Home", + "edition": "N/A", + "author": "Bechdel", + "isbn": "9780618871711", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "RENTAL_USED", + "price_display": "$8.64", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fun Home", + "edition": "N/A", + "author": "Bechdel", + "isbn": "9780618871711", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Fun Home", + "edition": "N/A", + "author": "Bechdel", + "isbn": "9780618871711", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Houghton Mifflin Harcourt Company", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kari", + "edition": "N/A", + "author": "Patil", + "isbn": "9788172237103", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins Publishers India", + "type_condition": "BUY_NEW", + "price_display": "$19.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Kari", + "edition": "N/A", + "author": "Patil", + "isbn": "9788172237103", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins Publishers India", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Photographic: The Life of Graciela Iturbide", + "edition": "N/A", + "author": "Quintero", + "isbn": "9781947440005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Harry N. Abrams Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$7.98", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Photographic: The Life of Graciela Iturbide", + "edition": "N/A", + "author": "Quintero", + "isbn": "9781947440005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Harry N. Abrams Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Photographic: The Life of Graciela Iturbide", + "edition": "N/A", + "author": "Quintero", + "isbn": "9781947440005", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Harry N. Abrams Incorporated", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Aya: Life in Yop City", + "edition": "N/A", + "author": "Abouet", + "isbn": "9781770460829", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_USED", + "price_display": "$11.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Aya: Life in Yop City", + "edition": "N/A", + "author": "Abouet", + "isbn": "9781770460829", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$29.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Aya: Life in Yop City", + "edition": "N/A", + "author": "Abouet", + "isbn": "9781770460829", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_USED", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Aya: Life in Yop City", + "edition": "N/A", + "author": "Abouet", + "isbn": "9781770460829", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_NEW", + "price_display": "$22.46", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Persepolis", + "edition": "N/A", + "author": "Satrapi", + "isbn": "9780375714832", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Pantheon", + "type_condition": "RENTAL_USED", + "price_display": "$12.29", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Persepolis", + "edition": "N/A", + "author": "Satrapi", + "isbn": "9780375714832", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Pantheon", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Complete Persepolis", + "edition": "N/A", + "author": "Satrapi", + "isbn": "9780375714832", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2004", + "publisher": "Pantheon", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Aya: Life in Yop City", + "edition": "N/A", + "author": "Abouet", + "isbn": "9781770465589", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "INGRAM", + "type_condition": "BUY_NEW", + "price_display": "$10.00", + "item_type": "digital" + }, + { + "title": "Kari", + "edition": "N/A", + "author": "Patil", + "isbn": "9789351779179", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$12.99", + "item_type": "digital" + } + ] + }, + { + "department": "CTAD", + "course_num": "4596", + "section": "10", + "instructor": "Carl Gudenius", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3180", + "section": "13", + "instructor": "Thomas Russo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8423", + "section": "11", + "instructor": "Jeffrey Bingenheimer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPJ", + "course_num": "4090", + "section": "10", + "instructor": "Matthew Eich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "6390", + "section": "10", + "instructor": "Martin Zysmilich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M8", + "instructor": "Andrew Art", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6504", + "section": "13", + "instructor": "Leonard Sekelick", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "4341", + "section": "10", + "instructor": "Pedro Silva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8620", + "section": "10", + "instructor": "Sara Rosenbaum", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M15", + "instructor": "Randi Kristensen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GER", + "course_num": "2009", + "section": "11", + "instructor": "Maria Sitzler-Sawicki", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "11", + "instructor": "Deborah Boucoyannis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "3720", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "4198", + "section": "10", + "instructor": "Feifang Hu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "2111", + "section": "32", + "instructor": "Kyle Levers", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "2183W", + "section": "11", + "instructor": "Joshua Landon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPP", + "course_num": "4995", + "section": "10", + "instructor": "Ernest Englander", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "2560", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3190", + "section": "86", + "instructor": "Michael Barnett", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "3123W", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "4900", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6035", + "section": "10", + "instructor": "Sean Yun", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8243", + "section": "10", + "instructor": "Lynn Offermann", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6320", + "section": "10", + "instructor": "Peter Shin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1005", + "section": "33", + "instructor": "Peter Nassar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6381", + "section": "10", + "instructor": "Scott Beveridge", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6358", + "section": "81", + "instructor": "Cynthia McClintock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6010", + "section": "12", + "instructor": "Hanney Shaban", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2228", + "section": "80", + "instructor": "Steven Roberts", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "6999", + "section": "10", + "instructor": "Martin Zysmilich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "4214", + "section": "80", + "instructor": "Sunghun Chung", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M55", + "instructor": "Ebony Russ", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3180", + "section": "12", + "instructor": "Jennifer Hawkins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "3105", + "section": "12", + "instructor": "Jing Chen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "6231", + "section": "10", + "instructor": "Jodi Kumar", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Child & Adolescent Communication Disorders", + "edition": "N/A", + "author": "Kerins", + "isbn": "9781597566568", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$47.98", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Child & Adolescent Communication Disorders", + "edition": "N/A", + "author": "Kerins", + "isbn": "9781597566568", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$119.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Child & Adolescent Communication Disorders", + "edition": "N/A", + "author": "Kerins", + "isbn": "9781597566568", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$90.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ghost Boy", + "edition": "N/A", + "author": "Pistorius", + "isbn": "9781400205837", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Thomas Nelson Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$8.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ghost Boy", + "edition": "N/A", + "author": "Pistorius", + "isbn": "9781400205837", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Thomas Nelson Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$19.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ghost Boy", + "edition": "N/A", + "author": "Pistorius", + "isbn": "9781400205837", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Thomas Nelson Incorporated", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ghost Boy", + "edition": "N/A", + "author": "Pistorius", + "isbn": "9781400205844", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Thomas Nelson Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$12.99", + "item_type": "digital" + }, + { + "title": "Child and Adolescent Communication Disorders", + "edition": "N/A", + "author": "Kerins", + "isbn": "9781597569125", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$139.95", + "item_type": "digital" + } + ] + }, + { + "department": "CTAD", + "course_num": "1151", + "section": "10", + "instructor": "Irina Wunder", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6210", + "section": "10", + "instructor": "Nan Wu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "2107", + "section": "10", + "instructor": "James Mahshie", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Preclinical Speech Science", + "edition": "3rd", + "author": "Hixon", + "isbn": "9781635500615", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$153.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Preclinical Speech Science", + "edition": "3rd", + "author": "Hixon", + "isbn": "9781635500615", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$85.68", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Preclinical Speech Science", + "edition": "3rd", + "author": "Hixon", + "isbn": "9781635500615", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$204.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Preclinical Speech Science", + "edition": "N/A", + "author": "Hixon", + "isbn": "9781635500622", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$175.00", + "item_type": "digital" + } + ] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "50", + "instructor": "Gerald Daigle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8999", + "section": "15", + "instructor": "Zoe Szajnfarber", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "4169", + "section": "80", + "instructor": "Alexander Dumbadze", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6164", + "section": "13", + "instructor": "Kurt Donnelly", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "6255", + "section": "10", + "instructor": "Fran Buntman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HLWL", + "course_num": "1102", + "section": "15", + "instructor": "Michelle Mitchell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "2110", + "section": "10", + "instructor": "Beverly Westerman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6263", + "section": "10", + "instructor": "Dante Verme", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "3245", + "section": "80", + "instructor": "Allyson Stokes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6378", + "section": "85", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WLP", + "course_num": "4198", + "section": "M1", + "instructor": "Hadas Aron", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "1025", + "section": "10", + "instructor": "Olivia Bullock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8998", + "section": "11", + "instructor": "Delishia Pittman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "1001", + "section": "10", + "instructor": "Edwin Lo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4531", + "section": "80", + "instructor": "Joseph Goldfrank", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "M30", + "instructor": "Theodore Christov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6303", + "section": "10", + "instructor": "Amir Hossein Jafari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "1101", + "section": "10", + "instructor": "Elizabeth Gray", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Public Health 101 w/COVID Access Code", + "edition": "3rd", + "author": "Riegelman", + "isbn": "9781284241594", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$97.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Public Health 101 w/COVID Access Code", + "edition": "3rd", + "author": "Riegelman", + "isbn": "9781284241594", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$41.14", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Public Health 101 w/COVID Access Code", + "edition": "3rd", + "author": "Riegelman", + "isbn": "9781284241594", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$73.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Public Health 101: Improving Community Health", + "edition": "3rd", + "author": "Riegelman", + "isbn": "9781284118469", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$63.67", + "item_type": "digital" + } + ] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "43", + "instructor": "Dylan Precourt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2181", + "section": "12", + "instructor": "Yingyan Zhao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6203", + "section": "10G", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6998", + "section": "22", + "instructor": "Caitlin Grady", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "1004", + "section": "30", + "instructor": "Yin-Lin Shen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Hands-On Introduction to SOLIDWORKS 2023 (access code enclosed)", + "edition": "N/A", + "author": "Plantenberg", + "isbn": "9781630575557", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "SDC Publications", + "type_condition": "BUY_NEW", + "price_display": "$64.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "A Hands-On Introduction to SOLIDWORKS 2023", + "edition": "N/A", + "author": "Plantenberg", + "isbn": "9781630567804", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "SCHROFF DEVELOPMENT CORPORATIO", + "type_condition": "BUY_NEW", + "price_display": "$55.00", + "item_type": "digital" + } + ] + }, + { + "department": "FINA", + "course_num": "8999", + "section": "10", + "instructor": "Robert Van Order", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "65", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "89", + "instructor": "Amber Carter", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "77", + "instructor": "Daniel Jaqua", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SUST", + "course_num": "3003", + "section": "10", + "instructor": "Melissa Maitin-Shepard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6012", + "section": "13", + "instructor": "Lara Cartwright-Smith", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Essen of Health Policy & Law", + "edition": "5th", + "author": "Wilensky", + "isbn": "9781284247459", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$81.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Policy & Law", + "edition": "5th", + "author": "Wilensky", + "isbn": "9781284247459", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_USED", + "price_display": "$32.78", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Policy & Law", + "edition": "5th", + "author": "Wilensky", + "isbn": "9781284247459", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_USED", + "price_display": "$61.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essen of Health Policy & Law", + "edition": "5th", + "author": "Wilensky", + "isbn": "9781284247459", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "Jones & Bartlett Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$65.56", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Essentials of Health Policy and Law", + "edition": "5th", + "author": "Wilensky", + "isbn": "9781284247466", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Jones & Bartlett Learning", + "type_condition": "BUY_NEW", + "price_display": "$53.27", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6516", + "section": "12", + "instructor": "Sarah Denes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6208", + "section": "80", + "instructor": "Patricia Kabra", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "10", + "instructor": "Gabriel Parmer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "48", + "instructor": "Candace Sumner-Robinson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3195", + "section": "82", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8203", + "section": "11", + "instructor": "Ximena Radjenovic", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8999", + "section": "10", + "instructor": "Mikyong Kim", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M77", + "instructor": "Anne Bolgiano", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6341", + "section": "10", + "instructor": "Paula Alonso-Gortari", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6282", + "section": "11", + "instructor": "George Jabbour", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6700", + "section": "10", + "instructor": "Shawn Riordan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "23", + "instructor": "Paul Wagner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GENO", + "course_num": "6223", + "section": "80", + "instructor": "Raja Mazumder", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3908", + "section": "20", + "instructor": "Rahul Simha", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "40", + "instructor": "Sharon Roosevelt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6241", + "section": "10", + "instructor": "William Youmans", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2111W", + "section": "12", + "instructor": "Jesse Holland Jr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "21", + "instructor": "Toni Marsh", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2181", + "section": "11", + "instructor": "Emmett Gill", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2993", + "section": "82", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2444", + "section": "10", + "instructor": "Luke Wilson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "8395", + "section": "10", + "instructor": "Tomas Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "3174", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "1000", + "section": "10", + "instructor": "Patricia Phalen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Hollywood Left & Right", + "edition": "N/A", + "author": "Ross", + "isbn": "9780195181722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$55.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Hollywood Left & Right", + "edition": "N/A", + "author": "Ross", + "isbn": "9780195181722", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$74.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Writing Hollywood", + "edition": "N/A", + "author": "Phalen", + "isbn": "9781138229822", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_USED", + "price_display": "$36.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing Hollywood", + "edition": "N/A", + "author": "Phalen", + "isbn": "9781138229822", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$48.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing Hollywood", + "edition": "1st", + "author": "Phalen", + "isbn": "9781351788724", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$48.95", + "item_type": "digital" + } + ] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M36", + "instructor": "Jacob Richter", + "term_name": "Fall 2023", + "texts": [ + { + "title": "One Person, No Vote", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781635571394", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "One Person, No Vote", + "edition": "N/A", + "author": "Anderson", + "isbn": "9781635571394", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Bloomsbury USA", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "SLHS", + "course_num": "6999", + "section": "10", + "instructor": "Shelley Brundage", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3195", + "section": "10", + "instructor": "Courtney Zsitek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M46", + "instructor": "Nabila Hijazi", + "term_name": "Fall 2023", + "texts": [ + { + "title": "No Refuge for Women", + "edition": "N/A", + "author": "Von Welser", + "isbn": "9781771643078", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Greystone Books", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "No Refuge for Women", + "edition": "N/A", + "author": "Von Welser", + "isbn": "9781771643078", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "Greystone Books", + "type_condition": "BUY_NEW", + "price_display": "$18.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ENGL", + "course_num": "3980W", + "section": "60H", + "instructor": "Robert McRuer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "50", + "instructor": "Can Korman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1127", + "section": "10", + "instructor": "Justin Nguyen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8285", + "section": "10", + "instructor": "Maria Cecilia Zea", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8998", + "section": "14", + "instructor": "Mikyong Kim", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "1031", + "section": "32", + "instructor": "Christopher Wilson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3190", + "section": "25", + "instructor": "Robert Orttung", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "67", + "instructor": "Zoe Szajnfarber", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4198", + "section": "21", + "instructor": "John Helveston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2001", + "section": "11", + "instructor": "Jonathan Shea", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6097", + "section": "10", + "instructor": "Mary Tschirhart", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6231", + "section": "11", + "instructor": "Jon McKeeby", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3324", + "section": "10", + "instructor": "Christopher Klemek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1005", + "section": "30", + "instructor": "Peter Nassar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEHD", + "course_num": "8999", + "section": "13", + "instructor": "Curtis Pyke", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "8999", + "section": "10", + "instructor": "Jennifer Sacheck-Ward", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JAPN", + "course_num": "2003", + "section": "31", + "instructor": "Kaori Iwai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "1031", + "section": "31", + "instructor": "Christopher Wilson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "3170", + "section": "83", + "instructor": "Katrin Schultheiss", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "37", + "instructor": "April Clark", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "6200", + "section": "10", + "instructor": "Yi-Chun Ho", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "12", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8210", + "section": "10", + "instructor": "Jody Ganiban", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "1330", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6000", + "section": "15", + "instructor": "Veronica Southerland", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "3116", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8999", + "section": "11", + "instructor": "Delishia Pittman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "3128", + "section": "10", + "instructor": "James Kerr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "45", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "59", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "2225", + "section": "80", + "instructor": "Gail Weiss", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Life & Death of Latisha King", + "edition": "N/A", + "author": "Salamon", + "isbn": "9781479892525", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "New York University Press", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Life & Death of Latisha King", + "edition": "N/A", + "author": "Salamon", + "isbn": "9781479892525", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "New York University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$17.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Life & Death of Latisha King", + "edition": "N/A", + "author": "Salamon", + "isbn": "9781479892525", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "New York University Press", + "type_condition": "BUY_NEW", + "price_display": "$23.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Life & Death of Latisha King", + "edition": "N/A", + "author": "Salamon", + "isbn": "9781479892525", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "New York University Press", + "type_condition": "RENTAL_USED", + "price_display": "$9.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Exile & Pride", + "edition": "N/A", + "author": "Clare", + "isbn": "9780896087880", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "South End Press", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Exile & Pride", + "edition": "N/A", + "author": "Clare", + "isbn": "9780896087880", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2009", + "publisher": "South End Press", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Life and Death of Latisha King", + "edition": "N/A", + "author": "Salamon", + "isbn": "9781479810529", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "New York University Press", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "item_type": "digital" + } + ] + }, + { + "department": "FORS", + "course_num": "6295", + "section": "MV", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "4900", + "section": "11", + "instructor": "Marlene Towns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSSJ", + "course_num": "3131W", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6010", + "section": "12", + "instructor": "Ali Moghtaderi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6417", + "section": "10", + "instructor": "Paul Ndebele", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2179", + "section": "10", + "instructor": "Joey Jennings", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6995", + "section": "13", + "instructor": "Erica Gralla", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "1001", + "section": "34", + "instructor": "Phyllis Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1051", + "section": "39", + "instructor": "Michael Moses", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6998", + "section": "14", + "instructor": "Zhengtian Xu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GTCH", + "course_num": "1002", + "section": "10", + "instructor": "SuJin Choi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "32", + "instructor": "Tabitha Dean", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "NSC", + "course_num": "1052", + "section": "10", + "instructor": "Sean Cruess", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "2002", + "section": "82", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6021", + "section": "16", + "instructor": "Angela Hinzey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3188", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6085", + "section": "12", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "2401", + "section": "10", + "instructor": "Mohammad Faghfoory", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Ideals & Realities of Islam", + "edition": "N/A", + "author": "Nasr", + "isbn": "9781930637115", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Kazi Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$26.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ideals & Realities of Islam", + "edition": "N/A", + "author": "Nasr", + "isbn": "9781930637115", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Kazi Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$20.06", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ideals & Realities of Islam", + "edition": "N/A", + "author": "Nasr", + "isbn": "9781930637115", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Kazi Publications, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$10.70", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ideals & Realities of Islam", + "edition": "N/A", + "author": "Nasr", + "isbn": "9781930637115", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Kazi Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Islam & Destiny of Man", + "edition": "N/A", + "author": "Eaton", + "isbn": "9780887061639", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1985", + "publisher": "State University of New York Press", + "type_condition": "BUY_NEW", + "price_display": "$34.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Islam & Destiny of Man", + "edition": "N/A", + "author": "Eaton", + "isbn": "9780887061639", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1985", + "publisher": "State University of New York Press", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Who Speaks for Islam?", + "edition": "N/A", + "author": "Esposito", + "isbn": "9781595620170", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Gallup Press", + "type_condition": "BUY_NEW", + "price_display": "$22.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Who Speaks for Islam?", + "edition": "N/A", + "author": "Esposito", + "isbn": "9781595620170", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Gallup Press", + "type_condition": "RENTAL_USED", + "price_display": "$9.18", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Who Speaks for Islam?", + "edition": "N/A", + "author": "Esposito", + "isbn": "9781595620170", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Gallup Press", + "type_condition": "BUY_USED", + "price_display": "$17.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Understanding Islam", + "edition": "N/A", + "author": "Schuon", + "isbn": "9781935493907", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "World Wisdom, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$19.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding Islam", + "edition": "N/A", + "author": "Schuon", + "isbn": "9781935493907", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "World Wisdom, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Islam: Straight Path", + "edition": "5th", + "author": "Esposito", + "isbn": "9780199381456", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$57.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Islam: Straight Path", + "edition": "5th", + "author": "Esposito", + "isbn": "9780199381456", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$43.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Islam in the Modern World", + "edition": "N/A", + "author": "Nasr", + "isbn": "9780061905810", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$21.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Islam in the Modern World", + "edition": "N/A", + "author": "Nasr", + "isbn": "9780061905810", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Vision of Islam", + "edition": "N/A", + "author": "Murata", + "isbn": "9781557785169", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Paragon House Publishers", + "type_condition": "BUY_NEW", + "price_display": "$24.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Vision of Islam", + "edition": "N/A", + "author": "Murata", + "isbn": "9781557785169", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Paragon House Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$18.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Vision of Islam", + "edition": "N/A", + "author": "Murata", + "isbn": "9781557785169", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Paragon House Publishers", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding Islam", + "edition": "N/A", + "author": "Schuon", + "isbn": "9781936597062", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$9.99", + "item_type": "digital" + }, + { + "title": "Islam in the Modern World", + "edition": "N/A", + "author": "Nasr", + "isbn": "9780062020123", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$16.99", + "item_type": "digital" + }, + { + "title": "Islam", + "edition": "5th", + "author": "Esposito", + "isbn": "9780199381470", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$42.99", + "item_type": "digital" + }, + { + "title": "Islam", + "edition": "5th", + "author": "Esposito", + "isbn": "9780199381470", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$49.60", + "item_type": "digital" + }, + { + "title": "Islam", + "edition": "5th", + "author": "Esposito", + "isbn": "9780199381470", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$66.14", + "item_type": "digital" + } + ] + }, + { + "department": "SEAS", + "course_num": "1001", + "section": "17", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3236W", + "section": "10", + "instructor": "Barbara Benitez-Curry", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Broadcast News & Writing Stylebook", + "edition": "7th", + "author": "Papper", + "isbn": "9780367422677", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$100.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Broadcast News & Writing Stylebook", + "edition": "7th", + "author": "Papper", + "isbn": "9780367422677", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$75.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Associated Press Stylebook 2022-2024 (56th ed)", + "edition": "N/A", + "author": "Associated Press", + "isbn": "9781541601659", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Basic Books", + "type_condition": "BUY_NEW", + "price_display": "$24.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Associated Press Stylebook 2022-2024 (56th ed)", + "edition": "N/A", + "author": "Associated Press", + "isbn": "9781541601659", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Basic Books", + "type_condition": "RENTAL_USED", + "price_display": "$11.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Associated Press Stylebook 2022-2024 (56th ed)", + "edition": "N/A", + "author": "Associated Press", + "isbn": "9781541601659", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Basic Books", + "type_condition": "BUY_USED", + "price_display": "$18.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Associated Press Stylebook 2022-2024 (56th ed)", + "edition": "N/A", + "author": "Associated Press", + "isbn": "9781541601659", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Basic Books", + "type_condition": "RENTAL_NEW", + "price_display": "$18.74", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Broadcast News and Writing Stylebook", + "edition": "7th", + "author": "Papper", + "isbn": "9781000094541", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$100.00", + "item_type": "digital" + } + ] + }, + { + "department": "LSPA", + "course_num": "1049", + "section": "11", + "instructor": "Ronald Wheeler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8279", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "18", + "instructor": "Arkady Yerukhimovich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "6295", + "section": "10", + "instructor": "David Rain", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6268", + "section": "10", + "instructor": "Ann Emmanuel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1023", + "section": "10", + "instructor": "Ronald Wheeler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "3613", + "section": "10", + "instructor": "Joseph Bonin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "4196", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GER", + "course_num": "2091", + "section": "10", + "instructor": "Susan Norland", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "24", + "instructor": "Samer Hamdar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6358", + "section": "88", + "instructor": "Carla Maenza", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "11", + "instructor": "Zacarias Samara", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPP", + "course_num": "8331", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1012", + "section": "33", + "instructor": "Ronald Bird", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3908", + "section": "12", + "instructor": "Kinga Dobolyi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "38", + "instructor": "Sharon Roosevelt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1003", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "3101", + "section": "10", + "instructor": "Brian Henderson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "8352", + "section": "10", + "instructor": "James Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "1000", + "section": "10", + "instructor": "Elizabeth Chacko", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8722", + "section": "10", + "instructor": "Marsha Regenstein", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6366", + "section": "80", + "instructor": "Joel Klein", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "34", + "instructor": "Crystal Rawls", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "6123", + "section": "80", + "instructor": "Hang Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GER", + "course_num": "4171", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2102", + "section": "10", + "instructor": "Matthew Hindman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EPID", + "course_num": "8999", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8999", + "section": "16", + "instructor": "Leila Farhadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "3133", + "section": "10", + "instructor": "Seble Frehywot", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "100", + "instructor": "Peng Wei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "6238", + "section": "80", + "instructor": "Gail Weiss", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Love's Labor", + "edition": "N/A", + "author": "Kittay", + "isbn": "9780415904131", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$45.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Love's Labor", + "edition": "N/A", + "author": "Kittay", + "isbn": "9780415904131", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$60.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In a Different Voice (with New Preface)", + "edition": "N/A", + "author": "Gilligan", + "isbn": "9780674445444", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$8.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In a Different Voice (with New Preface)", + "edition": "N/A", + "author": "Gilligan", + "isbn": "9780674445444", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$15.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "In a Different Voice (with New Preface)", + "edition": "N/A", + "author": "Gilligan", + "isbn": "9780674445444", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Epistemology of Resistance", + "edition": "N/A", + "author": "Medina", + "isbn": "9780199929047", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$19.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Epistemology of Resistance", + "edition": "N/A", + "author": "Medina", + "isbn": "9780199929047", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$36.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Epistemology of Resistance", + "edition": "N/A", + "author": "Medina", + "isbn": "9780199929047", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2013", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$48.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "What World Is This?", + "edition": "N/A", + "author": "Butler", + "isbn": "9780231208291", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "What World Is This?", + "edition": "N/A", + "author": "Butler", + "isbn": "9780231208291", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$17.95", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "PUBH", + "course_num": "3131", + "section": "10", + "instructor": "Richard Riegelman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1101", + "section": "10", + "instructor": "Eugene Montague", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "4213", + "section": "10", + "instructor": "Subhasish Dasgupta", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "2520", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "81", + "instructor": "Erin Speck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8289", + "section": "10", + "instructor": "Myeong-Ho Sohn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "6268", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6050", + "section": "18", + "instructor": "Tian Lan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6006", + "section": "10", + "instructor": "Peter Linquiti", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Rebooting Policy Analysis", + "edition": "N/A", + "author": "Linquiti", + "isbn": "9781544372600", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_NEW", + "price_display": "$145.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Rebooting Policy Analysis", + "edition": "N/A", + "author": "Linquiti", + "isbn": "9781544372600", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_USED", + "price_display": "$109.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ENGL", + "course_num": "6720", + "section": "11", + "instructor": "Holly Dugan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "2005", + "section": "11", + "instructor": "Isabel Rodriguez-Melguizo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "4198", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6002", + "section": "10", + "instructor": "Juan Klopper", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6000", + "section": "18", + "instructor": "Katie Fernandez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "8999", + "section": "10", + "instructor": "Mary Tschirhart", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6318", + "section": "81", + "instructor": "Mustafa Aksu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "0940", + "section": "10", + "instructor": "Tiffany-Rose Sikorski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8998", + "section": "16", + "instructor": "Julia Storberg-Walker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2105", + "section": "80", + "instructor": "Mohamed Mohamed", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Social Problems", + "edition": "10th", + "author": "Sullivan", + "isbn": "9780205896462", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Allyn & Bacon, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$78.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Social Problems", + "edition": "10th", + "author": "Sullivan", + "isbn": "9780205896462", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Allyn & Bacon, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$44.10", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Social Problems", + "edition": "10th", + "author": "Sullivan", + "isbn": "9780205896462", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Allyn & Bacon, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$104.99", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "16", + "instructor": "Timothy Wood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "3301W", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2442", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOMP", + "course_num": "8303", + "section": "10", + "instructor": "Alison Brooks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "3105", + "section": "10", + "instructor": "Hang Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1071", + "section": "11", + "instructor": "Peter Fraize", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M71", + "instructor": "Paul Michiels", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Writer's Reference", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319169404", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_USED", + "price_display": "$90.00", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Writer's Reference", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319169404", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "BUY_NEW", + "price_display": "$119.75", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Writer's Reference", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319169404", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "MPS (Macmillan Publishers)", + "type_condition": "RENTAL_USED", + "price_display": "$50.30", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Learning How to Learn", + "edition": "N/A", + "author": "Oakley", + "isbn": "9780143132547", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning How to Learn", + "edition": "N/A", + "author": "Oakley", + "isbn": "9780143132547", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning How to Learn", + "edition": "N/A", + "author": "Oakley", + "isbn": "9780143132547", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Learning How to Learn", + "edition": "N/A", + "author": "Oakley", + "isbn": "9780143132547", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Miniature Guide to Critical Thinking Concepts & Tools", + "edition": "8th", + "author": "Elder", + "isbn": "9781538134948", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Miniature Guide to Critical Thinking Concepts & Tools", + "edition": "8th", + "author": "Elder", + "isbn": "9781538134948", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_NEW", + "price_display": "$10.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Miniature Guide to Critical Thinking Concepts & Tools", + "edition": "8th", + "author": "Elder", + "isbn": "9781538134948", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "BUY_NEW", + "price_display": "$13.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Miniature Guide to Critical Thinking Concepts & Tools", + "edition": "8th", + "author": "Elder", + "isbn": "9781538134948", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Rowman & Littlefield Publishers, Inc (USE ROWMN)", + "type_condition": "RENTAL_USED", + "price_display": "$5.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Miniature Guide to Critical Thinking Concepts and Tools", + "edition": "8th", + "author": "Paul", + "isbn": "9781538134955", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Rowman & Littlefield Publishing Group, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$11.00", + "item_type": "digital" + }, + { + "title": "A Writer's Reference", + "edition": "10th", + "author": "Hacker", + "isbn": "9781319332969", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Bedford Saint Martin's (MPS)", + "type_condition": "RENTAL_NEW", + "price_display": "$43.99", + "item_type": "digital" + } + ] + }, + { + "department": "PSYC", + "course_num": "8257", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6999", + "section": "11", + "instructor": "Payman Dehghanian", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "3250", + "section": "10", + "instructor": "Pedro Silva", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "3171", + "section": "80", + "instructor": "Jonathan Chaves", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2047W", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "6266", + "section": "US1", + "instructor": "Keesha Blythe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EALL", + "course_num": "3100", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6103", + "section": "13", + "instructor": "Sushovan Majhi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "8998", + "section": "10", + "instructor": "Mary Tschirhart", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6242", + "section": "10", + "instructor": "Nathan Babb", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "3060", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8413", + "section": "12", + "instructor": "George Gray", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2340W", + "section": "36", + "instructor": "James Hershberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "4099W", + "section": "10", + "instructor": "Steven Brady", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6899", + "section": "13", + "instructor": "Michael Simsik", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PT", + "course_num": "8311", + "section": "10", + "instructor": "Rebecca Pinkus", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Measurement of Joint Motion", + "edition": "5th", + "author": "Norkin", + "isbn": "9780803645660", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_USED", + "price_display": "$56.25", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Measurement of Joint Motion", + "edition": "5th", + "author": "Norkin", + "isbn": "9780803645660", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "F. A. Davis Company", + "type_condition": "RENTAL_NEW", + "price_display": "$56.21", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Measurement of Joint Motion", + "edition": "5th", + "author": "Norkin", + "isbn": "9780803645660", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$74.95", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Measurement of Joint Motion", + "edition": "5th", + "author": "Norkin", + "isbn": "9780803645660", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "F. A. Davis Company", + "type_condition": "RENTAL_USED", + "price_display": "$32.98", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Daniels & Worthingham's Muscle Testing", + "edition": "10th", + "author": "Avers", + "isbn": "9780323569149", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "BUY_USED", + "price_display": "$85.50", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Daniels & Worthingham's Muscle Testing", + "edition": "10th", + "author": "Avers", + "isbn": "9780323569149", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "RENTAL_NEW", + "price_display": "$85.49", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Daniels & Worthingham's Muscle Testing", + "edition": "10th", + "author": "Avers", + "isbn": "9780323569149", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "BUY_NEW", + "price_display": "$113.99", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Daniels & Worthingham's Muscle Testing", + "edition": "10th", + "author": "Avers", + "isbn": "9780323569149", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Elsevier Science & Technology Books", + "type_condition": "RENTAL_USED", + "price_display": "$47.88", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Measurement of Joint Motion", + "edition": "5th", + "author": "F. A. Davis Company", + "isbn": "9780803658479", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "F. A. Davis Company", + "type_condition": "BUY_NEW", + "price_display": "$66.25", + "item_type": "digital" + }, + { + "title": "Daniels and Worthingham's Muscle Testing E-Book", + "edition": "10th", + "author": "Avers", + "isbn": "9780323569569", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Elsevier HlthSciences Division", + "type_condition": "BUY_NEW", + "price_display": "$90.99", + "item_type": "digital" + } + ] + }, + { + "department": "CE", + "course_num": "6800", + "section": "12", + "instructor": "Samer Hamdar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "1003", + "section": "10", + "instructor": "Mohana Mukherjee", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Criminal Justice: Systems, Diversity, & Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398730", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$61.22", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Criminal Justice: Systems, Diversity, & Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398730", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$145.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Criminal Justice: Systems, Diversity, & Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398730", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$109.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Criminal Justice: Systems, Diversity, & Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398730", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$116.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introduction to Criminal Justice", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398754", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$51.99", + "item_type": "digital" + }, + { + "title": "Introduction to Criminal Justice", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398754", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$58.49", + "item_type": "digital" + }, + { + "title": "Introduction to Criminal Justice", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398754", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$65.00", + "item_type": "digital" + }, + { + "title": "Sage Vantage: Introduction to Criminal Justice: Systems, Diversity, and Change", + "edition": "4th", + "author": "Rennison", + "isbn": "9781071821336", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$83.00", + "item_type": "digital" + }, + { + "title": "Introduction to Criminal Justice", + "edition": "4th", + "author": "Rennison", + "isbn": "9781544398754", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$94.24", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "6000", + "section": "14", + "instructor": "Nino Paichadze", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "3010W", + "section": "10", + "instructor": "Sarah-Kay Hurst", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "30", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEHD", + "course_num": "8101", + "section": "14", + "instructor": "Arshad Ali", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "2118", + "section": "11", + "instructor": "Hua Liang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MLS", + "course_num": "2005", + "section": "10", + "instructor": "Marcia Firmani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "6999", + "section": "10", + "instructor": "David Silverman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8998", + "section": "13", + "instructor": "Erica Gralla", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "34", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "62", + "instructor": "Joost Santos", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1102", + "section": "10", + "instructor": "Douglas Boyce", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "2003", + "section": "30", + "instructor": "Miaochun Wei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "2132", + "section": "10", + "instructor": "Vanessa Wills", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6025", + "section": "80", + "instructor": "Milos Doroslovacki", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6323", + "section": "11", + "instructor": "Suneel Grover", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "29", + "instructor": "Paul Wagner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "6811", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "6530", + "section": "10", + "instructor": "Alexa Joubin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "3181", + "section": "10", + "instructor": "Nicola Wolfe", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Handbook of Clinical Psychopharmacology for Therapists", + "edition": "9th", + "author": "Preston", + "isbn": "9781684035151", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "New Harbinger Publications", + "type_condition": "BUY_NEW", + "price_display": "$64.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Handbook of Clinical Psychopharmacology for Therapists", + "edition": "9th", + "author": "Preston", + "isbn": "9781684035151", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "New Harbinger Publications", + "type_condition": "RENTAL_NEW", + "price_display": "$48.71", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Handbook of Clinical Psychopharmacology for Therapists", + "edition": "9th", + "author": "Preston", + "isbn": "9781684035151", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "New Harbinger Publications", + "type_condition": "RENTAL_USED", + "price_display": "$28.58", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Handbook of Clinical Psychopharmacology for Therapists", + "edition": "9th", + "author": "Preston", + "isbn": "9781684035151", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "New Harbinger Publications", + "type_condition": "BUY_USED", + "price_display": "$48.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Handbook of Clinical Psychopharmacology for Therapists", + "edition": "9th", + "author": "Preston", + "isbn": "9781684035175", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "New Harbinger Publications", + "type_condition": "BUY_NEW", + "price_display": "$51.95", + "item_type": "digital" + } + ] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "43", + "instructor": "Dong Quan Nguyen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHAR", + "course_num": "8999", + "section": "10", + "instructor": "Colin Young", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6213", + "section": "10", + "instructor": "Matthew LaRue", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6998", + "section": "12", + "instructor": "Milos Doroslovacki", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLAV", + "course_num": "4595", + "section": "10", + "instructor": "Peter Rollberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "13", + "instructor": "Hao Huang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "46", + "instructor": "Milos Doroslovacki", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6186", + "section": "16", + "instructor": "Jason Ladnier", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "62", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6321", + "section": "10", + "instructor": "Kaj Kronvall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2106", + "section": "10", + "instructor": "Lawrence Olson", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Modern Political Thought", + "edition": "2nd", + "author": "Wootton", + "isbn": "9780872208971", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern Political Thought", + "edition": "2nd", + "author": "Wootton", + "isbn": "9780872208971", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$70.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Modern Political Thought", + "edition": "2nd", + "author": "Wootton", + "isbn": "9780872208971", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Hackett Publishing Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$52.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "HOL", + "course_num": "8721", + "section": "10", + "instructor": "Russell Korte", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8101", + "section": "10", + "instructor": "A Eakle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "44", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "6130", + "section": "10", + "instructor": "Weiqun Peng", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6020", + "section": "10", + "instructor": "Roy Pettis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "8999", + "section": "14", + "instructor": "Curtis Pyke", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "2506", + "section": "80", + "instructor": "Susan Johnston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6899", + "section": "10", + "instructor": "Neal Kringel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6353", + "section": "10", + "instructor": "Sylven Beck", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "2101", + "section": "10", + "instructor": "Gregory Wallace", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Methods in Behavioral Research LL", + "edition": "15th", + "author": "Cozby", + "isbn": "9781260883053", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$121.00", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Methods in Behavioral Research LL", + "edition": "15th", + "author": "Cozby", + "isbn": "9781260883053", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_USED", + "price_display": "$90.75", + "binding": "Loose-Leaf", + "item_type": "print" + }, + { + "title": "Methods in Behavioral Research (RRMCG)", + "edition": "15th", + "author": "Cozby", + "isbn": "9781260718904", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2024", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "RENTAL_USED", + "price_display": "$50.01", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Methods in Behavioral Research (RRMCG)", + "edition": "15th", + "author": "Cozby", + "isbn": "9781260718904", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2024", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "BUY_NEW", + "price_display": "$171.43", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Methods in Behavioral Research (RRMCG)", + "edition": "15th", + "author": "Cozby", + "isbn": "9781260718904", + "material_type": "TXT", + "requirement_type": "CH", + "copy_right_year": "2024", + "publisher": "McGraw-Hill (Rental Revenue)", + "type_condition": "BUY_USED", + "price_display": "$128.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Methods in Behavioral Research", + "edition": "15th", + "author": "Cozby", + "isbn": "9781260883077", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$57.25", + "item_type": "digital" + }, + { + "title": "Methods in Behavioral Research", + "edition": "15th", + "author": "Cozby", + "isbn": "9781260883077", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "RENTAL_NEW", + "price_display": "$74.25", + "item_type": "digital" + }, + { + "title": "Methods in Behavioral Research", + "edition": "15th", + "author": "Cozby", + "isbn": "9781260883077", + "material_type": "CEB", + "requirement_type": "CH", + "copy_right_year": null, + "publisher": "McGraw-Hill", + "type_condition": "BUY_NEW", + "price_display": "$82.75", + "item_type": "digital" + } + ] + }, + { + "department": "ISTM", + "course_num": "4216", + "section": "80", + "instructor": "Anu Juneja", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4907", + "section": "82", + "instructor": "Philip Cho", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1020", + "section": "MV", + "instructor": "Mary Buckley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "6201", + "section": "10", + "instructor": "Huixia Wang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1051", + "section": "30", + "instructor": "Sudip Bose", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "1010", + "section": "30", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "6299", + "section": "10", + "instructor": "Mika Natif", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SUST", + "course_num": "1001", + "section": "33", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "0940", + "section": "13", + "instructor": "Karen Kortecamp", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1220", + "section": "44", + "instructor": "Dong Quan Nguyen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6306", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6277", + "section": "11", + "instructor": "Jeffrey Manns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6236", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1016", + "section": "10", + "instructor": "Jeffrey Horowitz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "2312", + "section": "32", + "instructor": "Kartik Bulusu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "1502", + "section": "10", + "instructor": "Kelly Carr", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "4900", + "section": "12", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "4122", + "section": "10", + "instructor": "Ling Hao", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6101", + "section": "32", + "instructor": "Stefan Tschauko", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "8999", + "section": "26", + "instructor": "Mona Zaghloul", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "70", + "instructor": "Daniel Jaqua", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "8999", + "section": "10", + "instructor": "Holly Dugan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6660", + "section": "10", + "instructor": "Benjamin Wormuth", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6169", + "section": "10", + "instructor": "Olivia Bentley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MICR", + "course_num": "8998", + "section": "10", + "instructor": "David Leitenberg", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "TSTD", + "course_num": "3001", + "section": "10", + "instructor": "Seleni Matus", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2110W", + "section": "10", + "instructor": "Keith Harriston", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$79.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$45.99", + "item_type": "digital" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$62.99", + "item_type": "digital" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$80.48", + "item_type": "digital" + } + ] + }, + { + "department": "JSTD", + "course_num": "2990", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2102", + "section": "80", + "instructor": "Emmanuel Teitelbaum", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "3170", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "MV", + "instructor": "Theodore Christov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6995", + "section": "23", + "instructor": "Caitlin Grady", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "8999", + "section": "16", + "instructor": "Hao Huang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "4404", + "section": "11", + "instructor": "Noel Maurer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3095", + "section": "10", + "instructor": "Steven Brady", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3908", + "section": "10", + "instructor": "Robert Pless", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "3100", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHIN", + "course_num": "1001", + "section": "36", + "instructor": "Phyllis Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6311", + "section": "10", + "instructor": "Refik Soyer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "6220", + "section": "10", + "instructor": "Heather Rellihan", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Black Feminism Reimagined", + "edition": "N/A", + "author": "Nash", + "isbn": "9781478000594", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Duke University Press", + "type_condition": "RENTAL_USED", + "price_display": "$12.10", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Black Feminism Reimagined", + "edition": "N/A", + "author": "Nash", + "isbn": "9781478000594", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Duke University Press", + "type_condition": "BUY_NEW", + "price_display": "$30.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Black Feminism Reimagined", + "edition": "N/A", + "author": "Nash", + "isbn": "9781478000594", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Duke University Press", + "type_condition": "BUY_USED", + "price_display": "$22.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Scarred", + "edition": "N/A", + "author": "Saraswati", + "isbn": "9781479817092", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "New York University Press", + "type_condition": "BUY_NEW", + "price_display": "$27.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Scarred", + "edition": "N/A", + "author": "Saraswati", + "isbn": "9781479817092", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "New York University Press", + "type_condition": "BUY_USED", + "price_display": "$20.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Before Gentrification", + "edition": "N/A", + "author": "Golash-Boza", + "isbn": "9780520391178", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$27.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Before Gentrification", + "edition": "N/A", + "author": "Golash-Boza", + "isbn": "9780520391178", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cultural Politics of Emotion", + "edition": "2nd", + "author": "Ahmed", + "isbn": "9781138805033", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Routledge", + "type_condition": "RENTAL_USED", + "price_display": "$21.18", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cultural Politics of Emotion", + "edition": "2nd", + "author": "Ahmed", + "isbn": "9781138805033", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$52.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cultural Politics of Emotion", + "edition": "2nd", + "author": "Ahmed", + "isbn": "9781138805033", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$39.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Cultural Politics of Emotion", + "edition": "2nd", + "author": "Ahmed", + "isbn": "9781138805033", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Routledge", + "type_condition": "RENTAL_NEW", + "price_display": "$39.71", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Black Feminism Reimagined", + "edition": "N/A", + "author": "Nash", + "isbn": "9781478002253", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Duke University Press", + "type_condition": "BUY_NEW", + "price_display": "$26.95", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6138", + "section": "81", + "instructor": "Jesse Corradi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2152", + "section": "11", + "instructor": "Aaron Strauss", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6312", + "section": "10", + "instructor": "Philip Wirtz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6898", + "section": "14", + "instructor": "Tobias Greiff", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "3405", + "section": "10", + "instructor": "Sayed Hassan Hussaini", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "12", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPP", + "course_num": "8998", + "section": "10", + "instructor": "Ernest Englander", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "MV1", + "instructor": "Elisa Hovander", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEHD", + "course_num": "8101", + "section": "15", + "instructor": "Julia Storberg-Walker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "69", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8271", + "section": "10", + "instructor": "Loring Ingraham", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3189", + "section": "11", + "instructor": "Sarah Aldrich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2104W", + "section": "10", + "instructor": "Desmond Goss", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Sociological Theory", + "edition": "N/A", + "author": "Dillon", + "isbn": "9781118471920", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$33.58", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Sociological Theory", + "edition": "N/A", + "author": "Dillon", + "isbn": "9781118471920", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$83.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Sociological Theory", + "edition": "N/A", + "author": "Dillon", + "isbn": "9781118471920", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$63.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introduction to Sociological Theory", + "edition": "2nd", + "author": "Dillon", + "isbn": "9781118471906", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$67.99", + "item_type": "digital" + } + ] + }, + { + "department": "ENRP", + "course_num": "6101", + "section": "10", + "instructor": "Velmurugan Subramanian", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "3129", + "section": "10", + "instructor": "Catherine Forster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1104", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "4995", + "section": "10", + "instructor": "Min Hwang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "1103", + "section": "10", + "instructor": "Beverly Westerman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PED", + "course_num": "8377", + "section": "50", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "72", + "instructor": "Ekundayo Shittu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6015", + "section": "12", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "3127", + "section": "10", + "instructor": "Robert Baker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "2016", + "section": "10", + "instructor": "William Winstead", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2001", + "section": "82", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8203", + "section": "16", + "instructor": "Frederick Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "4158", + "section": "10", + "instructor": "Yinglei Lai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6298", + "section": "10", + "instructor": "Mehmet Tarimcilar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "48", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PT", + "course_num": "8484", + "section": "10", + "instructor": "Marisa Birkmeier", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2001", + "section": "13", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2109", + "section": "80", + "instructor": "Lucia Rafanelli", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Law of Peoples", + "edition": "N/A", + "author": "Rawls", + "isbn": "9780674005426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$31.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Law of Peoples", + "edition": "N/A", + "author": "Rawls", + "isbn": "9780674005426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$12.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Law of Peoples", + "edition": "N/A", + "author": "Rawls", + "isbn": "9780674005426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$23.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Law of Peoples", + "edition": "N/A", + "author": "Rawls", + "isbn": "9780674005426", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$23.25", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "IAFF", + "course_num": "6275", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "JAPN", + "course_num": "3709", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "51", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "6290", + "section": "13", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "3116", + "section": "80", + "instructor": "Malathi Thothathiri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6015", + "section": "22", + "instructor": "Loretta DiPietro", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "6284", + "section": "10", + "instructor": "Ana-Maria Jaramillo", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Look Me in the Eye", + "edition": "N/A", + "author": "Robison", + "isbn": "9780307395986", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Crown Publishing Group", + "type_condition": "BUY_NEW", + "price_display": "$25.95", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Look Me in the Eye", + "edition": "N/A", + "author": "Robison", + "isbn": "9780307395986", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "Crown Publishing Group", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Autism", + "edition": "2nd", + "author": "Happe", + "isbn": "9781138106116", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$170.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Autism", + "edition": "2nd", + "author": "Happe", + "isbn": "9781138106116", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$127.50", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "LSPA", + "course_num": "1044", + "section": "10", + "instructor": "Brian Stamps", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "50", + "instructor": "Denver Brunsman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "4450", + "section": "10", + "instructor": "Manuel Cuellar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6186", + "section": "15", + "instructor": "Elvira Restrepo Saenz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6240", + "section": "10P", + "instructor": "Laura D'Antonio", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EAP", + "course_num": "6110", + "section": "10", + "instructor": "Megan Siczek", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6002", + "section": "12", + "instructor": "William Adams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "4198", + "section": "12", + "instructor": "Bethany Kung", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "45", + "instructor": "Joseph Strickland", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "6999", + "section": "10", + "instructor": "Robert Van Order", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6270", + "section": "80", + "instructor": "Marc Lajoie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3192W", + "section": "27", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6250", + "section": "10", + "instructor": "Stephen Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6504", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "2110", + "section": "33", + "instructor": "Amir Aslani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "12", + "instructor": "Gail Clements", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "4198W", + "section": "10", + "instructor": "Heather Stebbins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "16", + "instructor": "Robert Pless", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "2154", + "section": "10", + "instructor": "Rachel Riedner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ORSC", + "course_num": "2046W", + "section": "10", + "instructor": "Gelaye Debebe", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Globalization & Business Practice", + "edition": "N/A", + "author": "Parker", + "isbn": "9780761944966", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$114.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Globalization & Business Practice", + "edition": "N/A", + "author": "Parker", + "isbn": "9780761944966", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$85.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introduction to Globalization and Business", + "edition": "2nd", + "author": "Parker", + "isbn": "9781446230336", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$68.41", + "item_type": "digital" + }, + { + "title": "Introduction to Globalization and Business", + "edition": "2nd", + "author": "Parker", + "isbn": "9781446230336", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$76.97", + "item_type": "digital" + }, + { + "title": "Introduction to Globalization and Business", + "edition": "2nd", + "author": "Parker", + "isbn": "9781446230336", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$85.52", + "item_type": "digital" + }, + { + "title": "Introduction to Globalization and Business", + "edition": "2nd", + "author": "Parker", + "isbn": "9781446230336", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$124.00", + "item_type": "digital" + } + ] + }, + { + "department": "CSCI", + "course_num": "3908", + "section": "19", + "instructor": "Gabriel Parmer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8999", + "section": "21", + "instructor": "Yun Shen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "25", + "instructor": "James Taylor", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "6280", + "section": "10", + "instructor": "Dedra Faine", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "1051", + "section": "12", + "instructor": "Sara Waller", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6908", + "section": "16", + "instructor": "James Hahn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "3190", + "section": "81", + "instructor": "YoungJu Shin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "24", + "instructor": "Nia Washington", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPJ", + "course_num": "4098", + "section": "10", + "instructor": "Matthew Eich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "1082", + "section": "10", + "instructor": "Michael O'Donnell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "3001", + "section": "10", + "instructor": "Rachel Riedner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2151", + "section": "10", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6000", + "section": "17", + "instructor": "Katie Fernandez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "6215", + "section": "10", + "instructor": "Reza Modarres", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Applied Multivariate Statistical Analysis", + "edition": "6th", + "author": "Johnson", + "isbn": "9780131877153", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$104.79", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Applied Multivariate Statistical Analysis", + "edition": "6th", + "author": "Johnson", + "isbn": "9780131877153", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$249.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Applied Multivariate Statistical Analysis", + "edition": "6th", + "author": "Johnson", + "isbn": "9780131877153", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2008", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$187.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Applied Multivariate Statistical Analysis -- Pearson eText (OLP) Pearson+ Single Title Subscription, 4-Month Term", + "edition": "6th", + "author": "Pearson Plus", + "isbn": "9780137980963", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Pearson+ Subscriptions", + "type_condition": "RENTAL_NEW", + "price_display": "$43.96", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "6118", + "section": "84", + "instructor": "Thomas Russo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSTD", + "course_num": "1010", + "section": "11", + "instructor": "Eli McCarthy", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Little Book of Race & Restorative Justice", + "edition": "N/A", + "author": "Davis", + "isbn": "9781680993431", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Skyhorse Pub Co, Incorp", + "type_condition": "BUY_USED", + "price_display": "$6.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Book of Race & Restorative Justice", + "edition": "N/A", + "author": "Davis", + "isbn": "9781680993431", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Skyhorse Pub Co, Incorp", + "type_condition": "BUY_NEW", + "price_display": "$7.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Book of Restorative Justice (Rev)", + "edition": "N/A", + "author": "Zehr", + "isbn": "9781561488230", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Simon & Schuster", + "type_condition": "BUY_USED", + "price_display": "$6.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Book of Restorative Justice (Rev)", + "edition": "N/A", + "author": "Zehr", + "isbn": "9781561488230", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Simon & Schuster", + "type_condition": "RENTAL_USED", + "price_display": "$3.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Book of Restorative Justice (Rev)", + "edition": "N/A", + "author": "Zehr", + "isbn": "9781561488230", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Simon & Schuster", + "type_condition": "BUY_NEW", + "price_display": "$7.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just Peace Ethic", + "edition": "N/A", + "author": "McCarthy", + "isbn": "9781626167568", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Georgetown University Press", + "type_condition": "BUY_USED", + "price_display": "$37.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Just Peace Ethic", + "edition": "N/A", + "author": "McCarthy", + "isbn": "9781626167568", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$49.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Little Book of Conflict Transformation", + "edition": "N/A", + "author": "Lederach", + "isbn": "9781561483907", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "GOOD BOOKS (CLOSED/ DO NOT USE)", + "type_condition": "BUY_USED", + "price_display": "$6.00", + "item_type": "print" + }, + { + "title": "Little Book of Conflict Transformation", + "edition": "N/A", + "author": "Lederach", + "isbn": "9781561483907", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2003", + "publisher": "GOOD BOOKS (CLOSED/ DO NOT USE)", + "type_condition": "BUY_NEW", + "price_display": "$7.99", + "item_type": "print" + }, + { + "title": "Invitation to Peace Studies", + "edition": "N/A", + "author": "Wood", + "isbn": "9780190217136", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$83.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invitation to Peace Studies", + "edition": "N/A", + "author": "Wood", + "isbn": "9780190217136", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$83.06", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invitation to Peace Studies", + "edition": "N/A", + "author": "Wood", + "isbn": "9780190217136", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Oxford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$46.52", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invitation to Peace Studies", + "edition": "N/A", + "author": "Wood", + "isbn": "9780190217136", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$110.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Invitation to Peace Studies", + "edition": "N/A", + "author": "Wood", + "isbn": "9780190643324", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "RENTAL_NEW", + "price_display": "$42.99", + "item_type": "digital" + }, + { + "title": "A Just Peace Ethic Primer", + "edition": "N/A", + "author": "McCarthy", + "isbn": "9781626167575", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Georgetown University Press", + "type_condition": "BUY_NEW", + "price_display": "$46.75", + "item_type": "digital" + }, + { + "title": "Invitation to Peace Studies", + "edition": "N/A", + "author": "Wood", + "isbn": "9780190643324", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "RENTAL_NEW", + "price_display": "$49.60", + "item_type": "digital" + }, + { + "title": "Invitation to Peace Studies", + "edition": "N/A", + "author": "Wood", + "isbn": "9780190643324", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press \u2013 ELT division", + "type_condition": "BUY_NEW", + "price_display": "$66.14", + "item_type": "digital" + } + ] + }, + { + "department": "PHIL", + "course_num": "1193", + "section": "10", + "instructor": "Mark Ralkowski", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Man's Search for Meaning (with New Foreword) (Trade Ed)", + "edition": "N/A", + "author": "Frankl", + "isbn": "9780807014271", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Man's Search for Meaning (with New Foreword) (Trade Ed)", + "edition": "N/A", + "author": "Frankl", + "isbn": "9780807014271", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sickness Unto Death", + "edition": "N/A", + "author": "Kierkegaard", + "isbn": "9780691020280", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sickness Unto Death", + "edition": "N/A", + "author": "Kierkegaard", + "isbn": "9780691020280", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "RENTAL_NEW", + "price_display": "$19.46", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sickness Unto Death", + "edition": "N/A", + "author": "Kierkegaard", + "isbn": "9780691020280", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$25.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Sickness Unto Death", + "edition": "N/A", + "author": "Kierkegaard", + "isbn": "9780691020280", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1980", + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "RENTAL_USED", + "price_display": "$10.38", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ethics of Ambiguity", + "edition": "N/A", + "author": "De Beauvoir", + "isbn": "9781504054225", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Open Road Media c/o Ingram's", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Ethics of Ambiguity", + "edition": "N/A", + "author": "De Beauvoir", + "isbn": "9781504054225", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Open Road Media c/o Ingram's", + "type_condition": "BUY_NEW", + "price_display": "$15.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "On Genealogy of Morals & Ecce Homo", + "edition": "N/A", + "author": "Nietzsche", + "isbn": "9780679724629", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1967", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "On Genealogy of Morals & Ecce Homo", + "edition": "N/A", + "author": "Nietzsche", + "isbn": "9780679724629", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1967", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "On Genealogy of Morals & Ecce Homo", + "edition": "N/A", + "author": "Nietzsche", + "isbn": "9780679724629", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1967", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$8.19", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Notes From Underground", + "edition": "N/A", + "author": "Dostoevsky", + "isbn": "9780679734529", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Notes From Underground", + "edition": "N/A", + "author": "Dostoevsky", + "isbn": "9780679734529", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Notes From Underground", + "edition": "N/A", + "author": "Dostoevsky", + "isbn": "9780679734529", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Ethics of Ambiguity", + "edition": "N/A", + "author": "de Beauvoir", + "isbn": "9781504054218", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Open Road Media c/o Ingram's", + "type_condition": "BUY_NEW", + "price_display": "$14.99", + "item_type": "digital" + }, + { + "title": "Kierkegaard's Writings, XIX, Volume 19", + "edition": "N/A", + "author": "Kierkegaard", + "isbn": "9781400847020", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Princeton Univ Press c/o Perseus", + "type_condition": "BUY_NEW", + "price_display": "$27.95", + "item_type": "digital" + } + ] + }, + { + "department": "PPPA", + "course_num": "6062", + "section": "10", + "instructor": "Joseph Firschein", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Housing Policy in United States", + "edition": "3rd", + "author": "Schwartz", + "isbn": "9780415836500", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$99.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Housing Policy in United States", + "edition": "3rd", + "author": "Schwartz", + "isbn": "9780415836500", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_USED", + "price_display": "$74.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Housing Policy in United States", + "edition": "3rd", + "author": "Schwartz", + "isbn": "9780415836500", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "RENTAL_USED", + "price_display": "$39.60", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "ECE", + "course_num": "1125", + "section": "30", + "instructor": "Samuel Farid Fahmy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2199", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1014", + "section": "13", + "instructor": "Mimi Malfitano", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6585", + "section": "O10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6468", + "section": "10", + "instructor": "Ramin Asgary", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "WGSS", + "course_num": "3470", + "section": "10", + "instructor": "Cathryn Oakley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "4140", + "section": "80", + "instructor": "Mona Zaghloul", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "6298", + "section": "MV", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "6412", + "section": "10", + "instructor": "Sayed Hassan Hussaini", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8999", + "section": "23", + "instructor": "Caitlin Grady", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3193W", + "section": "10", + "instructor": "Michael McCarthy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "6299", + "section": "10", + "instructor": "Herman Aguinis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6418", + "section": "80", + "instructor": "Behzad Salimi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "2115", + "section": "10", + "instructor": "Mika Natif", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6294", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6541", + "section": "80", + "instructor": "Mohamed Tamer Refaei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOL", + "course_num": "1005", + "section": "37", + "instructor": "Peter Nassar", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8101", + "section": "14", + "instructor": "Ellen Scully-Russ", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "93", + "instructor": "Arkady Yerukhimovich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "6269", + "section": "10", + "instructor": "Harvey Peters", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2102", + "section": "10", + "instructor": "Pao-Lin Tien", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1112", + "section": "30", + "instructor": "James Taylor", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "3125", + "section": "10", + "instructor": "Eugene Montague", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "4149", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6412", + "section": "13", + "instructor": "Sarah Buscher", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M87", + "instructor": "Nasreen Abbas", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2113", + "section": "10", + "instructor": "Reginald Cunningham", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "2104", + "section": "30", + "instructor": "Richard Hinton", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2490", + "section": "83", + "instructor": "Emily Bock", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "30", + "instructor": "Jasmine Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ORSC", + "course_num": "2143", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6340", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "6270", + "section": "81", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "6224", + "section": "MV", + "instructor": "Michael Ambrosino", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "4170", + "section": "10", + "instructor": "Andrei Afanasev", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Solid State Physics", + "edition": "2nd", + "author": "Hofmann", + "isbn": "9783527412822", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$29.10", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Solid State Physics", + "edition": "2nd", + "author": "Hofmann", + "isbn": "9783527412822", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$72.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Solid State Physics", + "edition": "2nd", + "author": "Hofmann", + "isbn": "9783527412822", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$54.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Solid State Physics", + "edition": "8th", + "author": "Kittel", + "isbn": "9780471415268", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$177.45", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Solid State Physics", + "edition": "8th", + "author": "Kittel", + "isbn": "9780471415268", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$114.66", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Solid State Physics", + "edition": "8th", + "author": "Kittel", + "isbn": "9780471415268", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$273.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Solid State Physics", + "edition": "8th", + "author": "Kittel", + "isbn": "9780471415268", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2005", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$204.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Solid State Physics", + "edition": "2nd", + "author": "Hofmann", + "isbn": "9783527682065", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$48.00", + "item_type": "digital" + } + ] + }, + { + "department": "ENGL", + "course_num": "3395", + "section": "10", + "instructor": "Anna Liontas", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "1011", + "section": "13", + "instructor": "Matthew McKeon", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Your Voice Is Your Business", + "edition": "2nd", + "author": "Barone", + "isbn": "9781597567220", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$70.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Your Voice Is Your Business", + "edition": "2nd", + "author": "Barone", + "isbn": "9781597567220", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Your Voice Is Your Business", + "edition": "2nd", + "author": "Barone", + "isbn": "9781597567220", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$52.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "CSCI", + "course_num": "6999", + "section": "17", + "instructor": "James Hahn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PA", + "course_num": "6102", + "section": "10", + "instructor": "Elizabeth Prevou", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "KOR", + "course_num": "1001", + "section": "30", + "instructor": "Eunhae Ro", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MBAD", + "course_num": "6211", + "section": "10P", + "instructor": "Kyle Welch", + "term_name": "Fall 2023", + "texts": [ + { + "title": "International Financial Statement Analysis", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628057", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$110.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Financial Statement Analysis", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628057", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$82.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "International Financial Statement Analysis (Workbook)", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628095", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$49.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Financial Statement Analysis (Workbook)", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628095", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$37.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "International Financial Statement Analysis Workbook", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628125", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$40.00", + "item_type": "digital" + }, + { + "title": "International Financial Statement Analysis", + "edition": "4th", + "author": "Robinson", + "isbn": "9781119628149", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$88.00", + "item_type": "digital" + } + ] + }, + { + "department": "JAPN", + "course_num": "3162", + "section": "80", + "instructor": "Brendan Morley", + "term_name": "Fall 2023", + "texts": [ + { + "title": "What Is Japanese Cinema?", + "edition": "N/A", + "author": "Inuhiko", + "isbn": "9780231191630", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "What Is Japanese Cinema?", + "edition": "N/A", + "author": "Inuhiko", + "isbn": "9780231191630", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "Columbia University Press (Now Perseus)", + "type_condition": "BUY_NEW", + "price_display": "$26.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "LSPA", + "course_num": "1063", + "section": "10", + "instructor": "Emma Veon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8101", + "section": "11", + "instructor": "Yas Nakib", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "52", + "instructor": "Roger Lang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6000", + "section": "13", + "instructor": "Joseph Schmitthenner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "6298", + "section": "10", + "instructor": "Subhasish Dasgupta", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "8101", + "section": "12", + "instructor": "Arshad Ali", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ORSC", + "course_num": "2544", + "section": "81", + "instructor": "Yisheng Peng", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Psychology & Work", + "edition": "2nd", + "author": "Truxillo", + "isbn": "9780367151287", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$112.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Psychology & Work", + "edition": "2nd", + "author": "Truxillo", + "isbn": "9780367151287", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$150.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Psychology and Work", + "edition": "2nd", + "author": "Truxillo", + "isbn": "9780429618932", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$150.00", + "item_type": "digital" + } + ] + }, + { + "department": "HONR", + "course_num": "1033", + "section": "MV1", + "instructor": "Thiago Moreira", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "102", + "instructor": "John Helveston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "2107", + "section": "M35", + "instructor": "Megan Foley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "8226", + "section": "10", + "instructor": "Martha Finnemore", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1330", + "section": "30", + "instructor": "Carl Gudenius", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "4168", + "section": "80", + "instructor": "Lijie Zhang", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "11", + "instructor": "Ilias Balaras", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "48", + "instructor": "Gerald Daigle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1214", + "section": "10", + "instructor": "Jennifer Hopkins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6302", + "section": "80", + "instructor": "Joseph Siryani", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "KOR", + "course_num": "3111", + "section": "10", + "instructor": "Immanuel Kim", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "40", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6101", + "section": "13", + "instructor": "Mohamed Shabani Kariburyo", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3611", + "section": "10", + "instructor": "James Evans", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2544", + "section": "81", + "instructor": "Yisheng Peng", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Psychology & Work", + "edition": "2nd", + "author": "Truxillo", + "isbn": "9780367151287", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$150.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Psychology & Work", + "edition": "2nd", + "author": "Truxillo", + "isbn": "9780367151287", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$112.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Psychology and Work", + "edition": "2nd", + "author": "Truxillo", + "isbn": "9780429618932", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Taylor & Francis Group, LLC", + "type_condition": "BUY_NEW", + "price_display": "$150.00", + "item_type": "digital" + } + ] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "38", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2110", + "section": "10", + "instructor": "Quinn Lester", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "19", + "instructor": "W. M. Kim Roddis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1003", + "section": "31", + "instructor": "Adam Dean", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "2151", + "section": "12", + "instructor": "Martin Zysmilich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M82", + "instructor": "Beverly Sauer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "11", + "instructor": "Andrew Sonn", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPJ", + "course_num": "3090", + "section": "80", + "instructor": "Astrid Riecken", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "4402", + "section": "10", + "instructor": "Laura D'Antonio", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "2184", + "section": "31", + "instructor": "Murli Gupta", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2040", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "TSTD", + "course_num": "6280", + "section": "11", + "instructor": "Meredith Geisler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "41", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CTAD", + "course_num": "1214", + "section": "16", + "instructor": "Travis Brown", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "6110", + "section": "80", + "instructor": "Daniel Sude", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "3119", + "section": "30", + "instructor": "Tatiyana Apanasovich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "31", + "instructor": "Xiaofeng Ren", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "3116", + "section": "80", + "instructor": "Malathi Thothathiri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "4308", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "2411W", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "6253", + "section": "10", + "instructor": "D. Kayes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYD", + "course_num": "8262", + "section": "10", + "instructor": "Karen Weise", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2101", + "section": "13", + "instructor": "Daniel Jaqua", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "1002", + "section": "M30", + "instructor": "Nikolay Shiklomanov", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M58", + "instructor": "Zachary Wolfe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "1041", + "section": "11", + "instructor": "Devlon Jackson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "11", + "instructor": "Poorvi Vora", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6364", + "section": "81", + "instructor": "John Sipple", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "56", + "instructor": "Suresh Subramaniam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "17", + "instructor": "Amanda Tompkins", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6441", + "section": "80", + "instructor": "Rolando Fernandez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3134", + "section": "10", + "instructor": "Jennifer Wells", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1063", + "section": "12", + "instructor": "Joseph Connell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8415", + "section": "12", + "instructor": "George Gray", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "6080", + "section": "10", + "instructor": "Maria del Carmen Montoya", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "6284", + "section": "10", + "instructor": "Martin Zysmilich", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "8999", + "section": "10", + "instructor": "Ingrid Creppell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "2123", + "section": "83", + "instructor": "Alessandra Fenizia", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "20", + "instructor": "Tianshu Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6320", + "section": "10", + "instructor": "Joseph Barbera", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "8393", + "section": "10", + "instructor": "Refik Soyer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "79", + "instructor": "James Lee", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "4086", + "section": "10", + "instructor": "Lenore Miller", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Where Good Ideas Come From", + "edition": "N/A", + "author": "Johnson", + "isbn": "9781594485381", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Penguin Mass Market", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Where Good Ideas Come From", + "edition": "N/A", + "author": "Johnson", + "isbn": "9781594485381", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Penguin Mass Market", + "type_condition": "RENTAL_NEW", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Where Good Ideas Come From", + "edition": "N/A", + "author": "Johnson", + "isbn": "9781594485381", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Penguin Mass Market", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Where Good Ideas Come From", + "edition": "N/A", + "author": "Johnson", + "isbn": "9781594485381", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "Penguin Mass Market", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "PSYC", + "course_num": "2508", + "section": "80", + "instructor": "Dennis Schell", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Man's Search for Meaning (with New Foreword) (Trade Ed)", + "edition": "N/A", + "author": "Frankl", + "isbn": "9780807014271", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Man's Search for Meaning (with New Foreword) (Trade Ed)", + "edition": "N/A", + "author": "Frankl", + "isbn": "9780807014271", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Toward a Psychology of Being", + "edition": "3rd", + "author": "Maslow", + "isbn": "9780471293095", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$106.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Toward a Psychology of Being", + "edition": "3rd", + "author": "Maslow", + "isbn": "9780471293095", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$79.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Toward a Psychology of Being", + "edition": "3rd", + "author": "Maslow", + "isbn": "9780471293095", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$79.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Art of Loving (with PS Insights...)", + "edition": "N/A", + "author": "Fromm", + "isbn": "9780061129735", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$17.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Art of Loving (with PS Insights...)", + "edition": "N/A", + "author": "Fromm", + "isbn": "9780061129735", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Art of Loving (with PS Insights...)", + "edition": "N/A", + "author": "Fromm", + "isbn": "9780061129735", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harper Collins Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$14.39", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Art of Loving (with PS Insights...)", + "edition": "N/A", + "author": "Fromm", + "isbn": "9780061129735", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2006", + "publisher": "Harper Collins Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$7.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "On Becoming a Person (with New Intro)", + "edition": "N/A", + "author": "Rogers", + "isbn": "9780395755310", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Houghton Mifflin Company Trade & Reference Division", + "type_condition": "BUY_NEW", + "price_display": "$17.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "On Becoming a Person (with New Intro)", + "edition": "N/A", + "author": "Rogers", + "isbn": "9780395755310", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Houghton Mifflin Company Trade & Reference Division", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "On Becoming a Person (with New Intro)", + "edition": "N/A", + "author": "Rogers", + "isbn": "9780395755310", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Houghton Mifflin Company Trade & Reference Division", + "type_condition": "RENTAL_NEW", + "price_display": "$13.49", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "On Becoming a Person (with New Intro)", + "edition": "N/A", + "author": "Rogers", + "isbn": "9780395755310", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1995", + "publisher": "Houghton Mifflin Company Trade & Reference Division", + "type_condition": "RENTAL_USED", + "price_display": "$7.20", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "On Becoming A Person", + "edition": "N/A", + "author": "Rogers", + "isbn": "9780544086661", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "HarperCollins", + "type_condition": "BUY_NEW", + "price_display": "$14.99", + "item_type": "digital" + } + ] + }, + { + "department": "SOC", + "course_num": "1003", + "section": "11", + "instructor": "Brooke Axelrod", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Criminal (in)Justice", + "edition": "2nd", + "author": "Fichtelberg", + "isbn": "9781071841907", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$105.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Criminal (in)Justice", + "edition": "2nd", + "author": "Fichtelberg", + "isbn": "9781071841907", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$78.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "New Jim Crow (10th Anniv Ed)", + "edition": "10th", + "author": "Alexander", + "isbn": "9781620971932", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "New Press", + "type_condition": "BUY_NEW", + "price_display": "$18.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "New Jim Crow (10th Anniv Ed)", + "edition": "10th", + "author": "Alexander", + "isbn": "9781620971932", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "New Press", + "type_condition": "RENTAL_NEW", + "price_display": "$15.19", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "New Jim Crow (10th Anniv Ed)", + "edition": "10th", + "author": "Alexander", + "isbn": "9781620971932", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "New Press", + "type_condition": "RENTAL_USED", + "price_display": "$7.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "New Jim Crow (10th Anniv Ed)", + "edition": "10th", + "author": "Alexander", + "isbn": "9781620971932", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "New Press", + "type_condition": "BUY_USED", + "price_display": "$14.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Criminal (In)Justice", + "edition": "2nd", + "author": "Fichtelberg", + "isbn": "9781071841877", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$43.99", + "item_type": "digital" + }, + { + "title": "Criminal (In)Justice", + "edition": "2nd", + "author": "Fichtelberg", + "isbn": "9781071841877", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "Criminal (In)Justice", + "edition": "2nd", + "author": "Fichtelberg", + "isbn": "9781071841877", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$55.00", + "item_type": "digital" + }, + { + "title": "Criminal (In)Justice", + "edition": "2nd", + "author": "Fichtelberg", + "isbn": "9781071841877", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$79.74", + "item_type": "digital" + } + ] + }, + { + "department": "PSC", + "course_num": "2336", + "section": "10", + "instructor": "Alasdair Bowie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHAR", + "course_num": "6205", + "section": "10", + "instructor": "Travis O'Brien", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6165", + "section": "12", + "instructor": "Matthew Calabria", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6260", + "section": "10", + "instructor": "Scott Quinlan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6202", + "section": "10", + "instructor": "Farzad Hosseinali", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "1011", + "section": "10", + "instructor": "Melanie-Joy Dorn", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Your Voice Is Your Business", + "edition": "2nd", + "author": "Barone", + "isbn": "9781597567220", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$70.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Your Voice Is Your Business", + "edition": "2nd", + "author": "Barone", + "isbn": "9781597567220", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$52.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Your Voice Is Your Business", + "edition": "2nd", + "author": "Barone", + "isbn": "9781597567220", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2016", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$28.00", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M20", + "instructor": "Ebony Russ", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6305", + "section": "80", + "instructor": "Ali Obaidi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3411", + "section": "31", + "instructor": "Gabriel Parmer", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6146", + "section": "80", + "instructor": "Henry Hertzfeld", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1063", + "section": "11", + "instructor": "Ning Yu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8999", + "section": "17", + "instructor": "Thomas Mazzuchi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4198", + "section": "20", + "instructor": "Johan van Dorp", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6703", + "section": "10", + "instructor": "Gregory Stevens", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8999", + "section": "12", + "instructor": "Keith Crandall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "43", + "instructor": "Jonathan Walker", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6900", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "36", + "instructor": "Hao Wu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1003", + "section": "36", + "instructor": "Adam Dean", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6850", + "section": "11", + "instructor": "Hamid Ferdosi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "NRSC", + "course_num": "8999", + "section": "10", + "instructor": "Matthew Colonnese", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6441", + "section": "81", + "instructor": "Rolando Fernandez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6995", + "section": "22", + "instructor": "John Helveston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6315", + "section": "10", + "instructor": "Maureen Byrnes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "2312", + "section": "10", + "instructor": "Kartik Bulusu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "86", + "instructor": "Philippe Bardet", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "2123", + "section": "84", + "instructor": "Alessandra Fenizia", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Intro to Econometrics (Update)", + "edition": "3rd", + "author": "Stock", + "isbn": "9780133486872", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$240.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Econometrics (Update)", + "edition": "3rd", + "author": "Stock", + "isbn": "9780133486872", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$319.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Econometrics (Update)", + "edition": "3rd", + "author": "Stock", + "isbn": "9780133486872", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "RENTAL_NEW", + "price_display": "$255.80", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Intro to Econometrics (Update)", + "edition": "3rd", + "author": "Stock", + "isbn": "9780133486872", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Pearson", + "type_condition": "RENTAL_USED", + "price_display": "$134.30", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "IAFF", + "course_num": "3196", + "section": "10", + "instructor": "Elizabeth Boesen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "6201", + "section": "MV", + "instructor": "Megan Foley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "6227", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6998", + "section": "20", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPED", + "course_num": "0940", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8280", + "section": "10", + "instructor": "Risa Broudy", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "6290", + "section": "MV", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "2006", + "section": "12", + "instructor": "Israel Rolon-Barada", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2221", + "section": "11", + "instructor": "Joseph Grant", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6624", + "section": "10", + "instructor": "Allison Elias-De Jesus", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6907", + "section": "12", + "instructor": "Xiaodong Qu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "8999", + "section": "12", + "instructor": "Milos Doroslovacki", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "2014", + "section": "11", + "instructor": "Brian Cornwell", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Cognition", + "edition": "N/A", + "author": "Chun", + "isbn": "9780199950638", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Oxford University Press", + "type_condition": "BUY_NEW", + "price_display": "$186.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Cognition", + "edition": "N/A", + "author": "Chun", + "isbn": "9780199950638", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Oxford University Press", + "type_condition": "BUY_USED", + "price_display": "$140.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Cognition", + "edition": "N/A", + "author": "Chun", + "isbn": "9780190878726", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$54.99", + "item_type": "digital" + }, + { + "title": "Cognition", + "edition": "N/A", + "author": "Chun", + "isbn": "9780190878726", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "RENTAL_NEW", + "price_display": "$63.45", + "item_type": "digital" + }, + { + "title": "Cognition", + "edition": "N/A", + "author": "Chun", + "isbn": "9780190878726", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Oxford University Press Canada", + "type_condition": "BUY_NEW", + "price_display": "$84.60", + "item_type": "digital" + } + ] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "84", + "instructor": "Jazmine Newkirk", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FORS", + "course_num": "2107", + "section": "M34", + "instructor": "Megan Foley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8877", + "section": "10", + "instructor": "Angelo Elmi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "4021W", + "section": "80", + "instructor": "Michele Carlson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "1004", + "section": "12", + "instructor": "Sarah-Kay Hurst", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6000", + "section": "19", + "instructor": "Katie Fernandez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6998", + "section": "13", + "instructor": "Peng Wei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHYS", + "course_num": "4197", + "section": "10", + "instructor": "Axel Schmidt", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "6998", + "section": "20", + "instructor": "Johan van Dorp", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HSML", + "course_num": "6299", + "section": "13", + "instructor": "Feygele Jacobs", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6070", + "section": "80", + "instructor": "Payman Dehghanian", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6072", + "section": "10", + "instructor": "Dale Didion", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6301", + "section": "DE", + "instructor": "Sameh Badie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MICR", + "course_num": "6236", + "section": "10", + "instructor": "Timothy McCaffrey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "1012", + "section": "36", + "instructor": "Joseph Goldfrank", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "1000", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6515", + "section": "10", + "instructor": "Sarah Denes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3146", + "section": "10", + "instructor": "Declan Cullen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "6800", + "section": "10", + "instructor": "Kamran Ghavami", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6358", + "section": "85", + "instructor": "Michael Shifter", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "4161", + "section": "80", + "instructor": "Johan Ferreira", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Pricing Strategy", + "edition": "N/A", + "author": "Smith", + "isbn": "9780538480888", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Cengage South-Western", + "type_condition": "BUY_USED", + "price_display": "$180.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pricing Strategy", + "edition": "N/A", + "author": "Smith", + "isbn": "9780538480888", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Cengage South-Western", + "type_condition": "BUY_NEW", + "price_display": "$240.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pricing Strategy: Setting Price Levels, Managing Price Discounts and Establishing Price Structures", + "edition": "1st", + "author": "Smith", + "isbn": "9781133172734", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$50.99", + "item_type": "digital" + }, + { + "title": "Pricing Strategy: Setting Price Levels, Managing Price Discounts and Establishing Price Structures", + "edition": "N/A", + "author": "Smith", + "isbn": "9781133172734", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$69.99", + "item_type": "digital" + }, + { + "title": "Pricing Strategy: Setting Price Levels, Managing Price Discounts and Establishing Price Structures", + "edition": "N/A", + "author": "Smith", + "isbn": "9781133172734", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$89.23", + "item_type": "digital" + } + ] + }, + { + "department": "COMM", + "course_num": "1040", + "section": "14", + "instructor": "Joseph McDonald", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6031", + "section": "10", + "instructor": "Michael Worth", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Forces for Good", + "edition": "2nd", + "author": "Crutchfield", + "isbn": "9781118118801", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Jossey-Bass, Incorporated Publishers", + "type_condition": "BUY_NEW", + "price_display": "$35.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Forces for Good", + "edition": "2nd", + "author": "Crutchfield", + "isbn": "9781118118801", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Jossey-Bass, Incorporated Publishers", + "type_condition": "RENTAL_NEW", + "price_display": "$28.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Forces for Good", + "edition": "2nd", + "author": "Crutchfield", + "isbn": "9781118118801", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Jossey-Bass, Incorporated Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$14.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Forces for Good", + "edition": "2nd", + "author": "Crutchfield", + "isbn": "9781118118801", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Jossey-Bass, Incorporated Publishers", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Nonprofit Management", + "edition": "6th", + "author": "Worth", + "isbn": "9781544379982", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_NEW", + "price_display": "$174.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Nonprofit Management", + "edition": "6th", + "author": "Worth", + "isbn": "9781544379982", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "CQ Press c/o SAGE", + "type_condition": "RENTAL_NEW", + "price_display": "$139.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Nonprofit Management", + "edition": "6th", + "author": "Worth", + "isbn": "9781544379982", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "CQ Press c/o SAGE", + "type_condition": "RENTAL_USED", + "price_display": "$73.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Nonprofit Management", + "edition": "6th", + "author": "Worth", + "isbn": "9781544379982", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_USED", + "price_display": "$131.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Forces for Good", + "edition": "2nd", + "author": "Crutchfield", + "isbn": "9781118237939", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Wiley", + "type_condition": "BUY_NEW", + "price_display": "$21.00", + "item_type": "digital" + }, + { + "title": "Nonprofit Management", + "edition": "6th", + "author": "Worth", + "isbn": "9781544380001", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$59.99", + "item_type": "digital" + }, + { + "title": "Nonprofit Management", + "edition": "6th", + "author": "Worth", + "isbn": "9781544380001", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$67.49", + "item_type": "digital" + }, + { + "title": "Nonprofit Management", + "edition": "6th", + "author": "Worth", + "isbn": "9781544380001", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$75.00", + "item_type": "digital" + }, + { + "title": "Nonprofit Management", + "edition": "6th", + "author": "Worth", + "isbn": "9781544380001", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$108.74", + "item_type": "digital" + } + ] + }, + { + "department": "CPED", + "course_num": "8101", + "section": "13", + "instructor": "Colin Green", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M78", + "instructor": "Hanan Daqqa", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "45", + "instructor": "Tammy Wiles", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "25", + "instructor": "Tammy Wiles", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6505", + "section": "O10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "6284", + "section": "10", + "instructor": "Charles Garris", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "2136", + "section": "11", + "instructor": "Carlos Bustamante", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "1015", + "section": "MV8", + "instructor": "Mark Ralkowski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FREN", + "course_num": "1003", + "section": "13", + "instructor": "Hadia Anaye", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1011", + "section": "61", + "instructor": "Daniel Mackay", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8998", + "section": "11", + "instructor": "Tianshu Li", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8998", + "section": "13", + "instructor": "Ellen Goldman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EHS", + "course_num": "1041", + "section": "11", + "instructor": "Craig Evans", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPP", + "course_num": "6298", + "section": "10", + "instructor": "Ernest Englander", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "8331", + "section": "10", + "instructor": "David Szakonyi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3195", + "section": "81", + "instructor": "James Malouff", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "4196", + "section": "10", + "instructor": "Shelley Brundage", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "6214", + "section": "80", + "instructor": "Sunghun Chung", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "0940", + "section": "44", + "instructor": "Gina Adam", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ITAL", + "course_num": "2005", + "section": "10", + "instructor": "Tessa Gurney", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1063", + "section": "13", + "instructor": "Joseph Connell", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "8413", + "section": "13", + "instructor": "Keith Crandall", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6499", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PHIL", + "course_num": "1051", + "section": "15", + "instructor": "Vanessa Wills", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "4198", + "section": "10", + "instructor": "Lisa Lipinski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1012", + "section": "36", + "instructor": "Ronald Bird", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "2001", + "section": "MV", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "2047", + "section": "14", + "instructor": "Matthew Kirwin", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6705", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ORSC", + "course_num": "4161", + "section": "10", + "instructor": "Nils Olsen", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Elements of Style", + "edition": "4th", + "author": "Strunk", + "isbn": "9780205309023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Pearson", + "type_condition": "BUY_USED", + "price_display": "$7.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Elements of Style", + "edition": "4th", + "author": "Strunk", + "isbn": "9780205309023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2000", + "publisher": "Pearson", + "type_condition": "BUY_NEW", + "price_display": "$9.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832178", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "BUY_USED", + "price_display": "$37.00", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832178", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "RENTAL_NEW", + "price_display": "$36.94", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832178", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "RENTAL_USED", + "price_display": "$21.67", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Publication Manual of APA", + "edition": "7th", + "author": "American Psychological Association", + "isbn": "9781433832178", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2019", + "publisher": "American Psychological Association", + "type_condition": "BUY_NEW", + "price_display": "$49.25", + "binding": "Spiral", + "item_type": "print" + }, + { + "title": "Research Design", + "edition": "5th", + "author": "Creswell", + "isbn": "9781506386706", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$65.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Research Design", + "edition": "5th", + "author": "Creswell", + "isbn": "9781506386706", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$65.63", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Research Design", + "edition": "5th", + "author": "Creswell", + "isbn": "9781506386706", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$38.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Research Design", + "edition": "5th", + "author": "Creswell", + "isbn": "9781506386706", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$87.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Publication Manual (OFFICIAL) 7th Edition of the American Psychological Association", + "edition": "7th", + "author": "Association", + "isbn": "9781433832185", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "American Psychological Association", + "type_condition": "RENTAL_NEW", + "price_display": "$31.99", + "item_type": "digital" + }, + { + "title": "Publication Manual (OFFICIAL) 7th Edition of the American Psychological Association", + "edition": "7th", + "author": "Association", + "isbn": "9781433832185", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "American Psychological Association", + "type_condition": "BUY_NEW", + "price_display": "$35.99", + "item_type": "digital" + } + ] + }, + { + "department": "PSYD", + "course_num": "8291", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "8999", + "section": "13", + "instructor": "Ellen Goldman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EPID", + "course_num": "6295", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "2005", + "section": "14", + "instructor": "Victor Valdivia Ruiz", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IBUS", + "course_num": "3301", + "section": "10", + "instructor": "Dina Rady", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3500", + "section": "10", + "instructor": "Brandon Bartels", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "6289", + "section": "12", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "1011", + "section": "37", + "instructor": "William Burns", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M90", + "instructor": "Nichole Smith", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6352", + "section": "10", + "instructor": "Ali Moghtaderi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "1001", + "section": "10", + "instructor": "Elene KeKelia", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Presentation of Self in Everyday Life (Trade Ed)", + "edition": "N/A", + "author": "Goffman", + "isbn": "9780385094023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1959", + "publisher": "Doubleday Books", + "type_condition": "RENTAL_USED", + "price_display": "$7.92", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Presentation of Self in Everyday Life (Trade Ed)", + "edition": "N/A", + "author": "Goffman", + "isbn": "9780385094023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1959", + "publisher": "Doubleday Books", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Presentation of Self in Everyday Life (Trade Ed)", + "edition": "N/A", + "author": "Goffman", + "isbn": "9780385094023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1959", + "publisher": "Doubleday Books", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Presentation of Self in Everyday Life (Trade Ed)", + "edition": "N/A", + "author": "Goffman", + "isbn": "9780385094023", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1959", + "publisher": "Doubleday Books", + "type_condition": "RENTAL_NEW", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Sociology (w/ Inquizitive Access Code)", + "edition": "12th", + "author": "Giddens", + "isbn": "9780393538021", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "RENTAL_USED", + "price_display": "$33.39", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Sociology (w/ Inquizitive Access Code)", + "edition": "12th", + "author": "Giddens", + "isbn": "9780393538021", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_NEW", + "price_display": "$79.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intro to Sociology (w/ Inquizitive Access Code)", + "edition": "12th", + "author": "Giddens", + "isbn": "9780393538021", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "W. W.Norton Co. Inc", + "type_condition": "BUY_USED", + "price_display": "$59.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Introduction to Sociology (Seagull Twelfth Edition)", + "edition": "12th", + "author": "Giddens", + "isbn": "9780393537963", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$37.47", + "item_type": "digital" + }, + { + "title": "Introduction to Sociology (Seagull Twelfth Edition)", + "edition": "12th", + "author": "Giddens", + "isbn": "9780393537963", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$47.69", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "6014", + "section": "11", + "instructor": "Katie Fernandez", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1231", + "section": "13", + "instructor": "Gerald Daigle", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M28", + "instructor": "Benjamin Counts", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "3187W", + "section": "10", + "instructor": "Tapan Nayak", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Elementary Survey Sampling", + "edition": "7th", + "author": "Scheaffer", + "isbn": "9780840053619", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$205.75", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Elementary Survey Sampling", + "edition": "7th", + "author": "Scheaffer", + "isbn": "9780840053619", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$274.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Elementary Survey Sampling", + "edition": "7th", + "author": "Scheaffer", + "isbn": "9780840053619", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$205.69", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Elementary Survey Sampling", + "edition": "7th", + "author": "Scheaffer", + "isbn": "9780840053619", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$115.19", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Elementary Survey Sampling", + "edition": "7th", + "author": "Scheaffer", + "isbn": "9781133420569", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$50.99", + "item_type": "digital" + }, + { + "title": "Elementary Survey Sampling", + "edition": "7th", + "author": "Scheaffer", + "isbn": "9781133420569", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$69.99", + "item_type": "digital" + }, + { + "title": "Elementary Survey Sampling", + "edition": "7th", + "author": "Scheaffer", + "isbn": "9781133420569", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$89.23", + "item_type": "digital" + } + ] + }, + { + "department": "WGSS", + "course_num": "6999", + "section": "10", + "instructor": "Ashwini Tambe", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "6270", + "section": "10", + "instructor": "Babak Bahador", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3190", + "section": "24", + "instructor": "Yan Bennett", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6486", + "section": "10", + "instructor": "Christopher Mores", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6021", + "section": "15", + "instructor": "Angela Hinzey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "1001", + "section": "52", + "instructor": "Paul Wagner", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SPAN", + "course_num": "2005", + "section": "12", + "instructor": "Tania Leyva", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Puntos de Encuentro w/ Active Learning Code", + "edition": "3rd", + "author": "De La Fuente", + "isbn": "9781793569295", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Cognella, INC", + "type_condition": "BUY_NEW", + "price_display": "$162.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Puntos de encuentro ebook with Active Learning courseware", + "edition": "N/A", + "author": "Fuente", + "isbn": "9781793569301", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cognella, INC", + "type_condition": "RENTAL_NEW", + "price_display": "$98.96", + "item_type": "digital" + }, + { + "title": "Puntos de encuentro ebook with Active Learning courseware", + "edition": "N/A", + "author": "Fuente", + "isbn": "9781793569301", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cognella, INC", + "type_condition": "BUY_NEW", + "price_display": "$109.95", + "item_type": "digital" + } + ] + }, + { + "department": "ECE", + "course_num": "1010", + "section": "10", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3908", + "section": "22", + "instructor": "Timothy Wood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1501", + "section": "10", + "instructor": "Eugene Montague", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "4203W", + "section": "32", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "6289", + "section": "10", + "instructor": "Feifang Hu", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "4907", + "section": "80", + "instructor": "Roozbeh Haghnazar Koochaksaraei", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2190W", + "section": "10", + "instructor": "Kamal Beyoghlow", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Middle East", + "edition": "16th", + "author": "Lust", + "isbn": "9781071844465", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_USED", + "price_display": "$93.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Middle East", + "edition": "16th", + "author": "Lust", + "isbn": "9781071844465", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2023", + "publisher": "CQ Press c/o SAGE", + "type_condition": "BUY_NEW", + "price_display": "$125.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Middle East", + "edition": "16th", + "author": "Lust", + "isbn": "9781071844489", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$94.24", + "item_type": "digital" + } + ] + }, + { + "department": "IAFF", + "course_num": "3188", + "section": "82", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M35", + "instructor": "Jessica McCaughey", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Stolen Focus", + "edition": "N/A", + "author": "Hari", + "isbn": "9780593138519", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$28.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Stolen Focus", + "edition": "N/A", + "author": "Hari", + "isbn": "9780593138519", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "Hardcover", + "item_type": "print" + } + ] + }, + { + "department": "ECE", + "course_num": "6005", + "section": "81", + "instructor": "Ahmed Louri", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "4198", + "section": "22", + "instructor": "Caitlin Grady", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M89", + "instructor": "Benjamin Counts", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "4191W", + "section": "80", + "instructor": "Claudine Kuradusenge-McLeod", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3100", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "3500", + "section": "14", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PPPA", + "course_num": "6085", + "section": "80", + "instructor": "Elizabeth Vaquera", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3210W", + "section": "10", + "instructor": "Jane Henrici", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Politics of Women & Migration in the Global South", + "edition": "N/A", + "author": "Tittensor", + "isbn": "9781349927951", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Palgrave Macmillan", + "type_condition": "BUY_NEW", + "price_display": "$59.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Politics of Women & Migration in the Global South", + "edition": "N/A", + "author": "Tittensor", + "isbn": "9781349927951", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Palgrave Macmillan", + "type_condition": "BUY_USED", + "price_display": "$45.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Refugee Women", + "edition": "N/A", + "author": "Bassel", + "isbn": "9781138020139", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Routledge", + "type_condition": "BUY_NEW", + "price_display": "$68.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Refugee Women", + "edition": "N/A", + "author": "Bassel", + "isbn": "9781138020139", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2014", + "publisher": "Routledge", + "type_condition": "BUY_USED", + "price_display": "$51.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Servants of Globalization", + "edition": "2nd", + "author": "Parrenas", + "isbn": "9780804796149", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Stanford University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Servants of Globalization", + "edition": "2nd", + "author": "Parrenas", + "isbn": "9780804796149", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Stanford University Press", + "type_condition": "BUY_NEW", + "price_display": "$24.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Servants of Globalization", + "edition": "2nd", + "author": "Parrenas", + "isbn": "9780804796149", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Stanford University Press", + "type_condition": "BUY_USED", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Servants of Globalization", + "edition": "2nd", + "author": "Parrenas", + "isbn": "9780804796149", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Stanford University Press", + "type_condition": "RENTAL_USED", + "price_display": "$9.60", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Passport Entanglements", + "edition": "N/A", + "author": "Constable", + "isbn": "9780520387997", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$34.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Passport Entanglements", + "edition": "N/A", + "author": "Constable", + "isbn": "9780520387997", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "University of California Press", + "type_condition": "BUY_USED", + "price_display": "$26.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Passport Entanglements", + "edition": "N/A", + "author": "Constable", + "isbn": "9780520388000", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of California Press", + "type_condition": "BUY_NEW", + "price_display": "$34.95", + "item_type": "digital" + } + ] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M38", + "instructor": "Wade Fletcher", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Understanding Comics", + "edition": "N/A", + "author": "McCloud", + "isbn": "9780060976255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Harper Collins Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$12.74", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding Comics", + "edition": "N/A", + "author": "McCloud", + "isbn": "9780060976255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$27.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Understanding Comics", + "edition": "N/A", + "author": "McCloud", + "isbn": "9780060976255", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1993", + "publisher": "Harper Collins Publishers", + "type_condition": "BUY_USED", + "price_display": "$21.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Passionate Journey", + "edition": "N/A", + "author": "Masereel", + "isbn": "9780486460185", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "DOVER PUB INC", + "type_condition": "BUY_NEW", + "price_display": "$9.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Passionate Journey", + "edition": "N/A", + "author": "Masereel", + "isbn": "9780486460185", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "DOVER PUB INC", + "type_condition": "BUY_USED", + "price_display": "$7.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Passionate Journey", + "edition": "N/A", + "author": "Masereel", + "isbn": "9780486139203", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Firebrand Books", + "type_condition": "RENTAL_NEW", + "price_display": "$5.20", + "item_type": "digital" + }, + { + "title": "Passionate Journey", + "edition": "N/A", + "author": "Masereel", + "isbn": "9780486139203", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Firebrand Books", + "type_condition": "BUY_NEW", + "price_display": "$9.29", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "6012", + "section": "10", + "instructor": "Taylor Burke", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "REL", + "course_num": "6999", + "section": "10", + "instructor": "Mohammad Faghfoory", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EMSE", + "course_num": "8998", + "section": "14", + "instructor": "Joseph Barbera", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SOC", + "course_num": "6260", + "section": "10", + "instructor": "Chiquisha Robinson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSA", + "course_num": "1501", + "section": "11", + "instructor": "Michelle Frankfurter", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CNSL", + "course_num": "8254", + "section": "10", + "instructor": "Ann Emmanuel", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CHEM", + "course_num": "1111", + "section": "10", + "instructor": "Andrea Cook", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1029", + "section": "27", + "instructor": "Erin Heramb", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MATH", + "course_num": "1051", + "section": "35", + "instructor": "Michael Moses", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6378", + "section": "86", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSYC", + "course_num": "8236", + "section": "10", + "instructor": "Maria Cecilia Zea", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HIST", + "course_num": "3370", + "section": "10", + "instructor": "Bell Clement", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "6231", + "section": "10", + "instructor": "Stephen Kaisler", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ITAL", + "course_num": "1001", + "section": "11", + "instructor": "Paola Warfield", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Sentieri (LL)(w/SupersitePlus+36mthWebSAM Access Code)", + "edition": "3rd", + "author": "Cozzarelli", + "isbn": "9781543304442", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Vista Higher Learning, Incorp", + "type_condition": "BUY_NEW", + "price_display": "$365.00", + "item_type": "print" + } + ] + }, + { + "department": "PPPA", + "course_num": "6000", + "section": "11", + "instructor": "Lori Brainard", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Heat & Light", + "edition": "N/A", + "author": "Haigh", + "isbn": "9780061763496", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "HarperCollins Publishers", + "type_condition": "RENTAL_USED", + "price_display": "$6.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Heat & Light", + "edition": "N/A", + "author": "Haigh", + "isbn": "9780061763496", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_NEW", + "price_display": "$14.99", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Heat & Light", + "edition": "N/A", + "author": "Haigh", + "isbn": "9780061763496", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2017", + "publisher": "HarperCollins Publishers", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intuitionist", + "edition": "N/A", + "author": "Whitehead", + "isbn": "9780385493000", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Doubleday Books", + "type_condition": "RENTAL_USED", + "price_display": "$6.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intuitionist", + "edition": "N/A", + "author": "Whitehead", + "isbn": "9780385493000", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Doubleday Books", + "type_condition": "BUY_NEW", + "price_display": "$16.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intuitionist", + "edition": "N/A", + "author": "Whitehead", + "isbn": "9780385493000", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Doubleday Books", + "type_condition": "BUY_USED", + "price_display": "$12.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Intuitionist", + "edition": "N/A", + "author": "Whitehead", + "isbn": "9780385493000", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1999", + "publisher": "Doubleday Books", + "type_condition": "RENTAL_NEW", + "price_display": "$10.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Recitatif", + "edition": "N/A", + "author": "Morrison", + "isbn": "9780593556641", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$18.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Recitatif", + "edition": "N/A", + "author": "Morrison", + "isbn": "9780593556641", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$13.50", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "SMPA", + "course_num": "3197", + "section": "10", + "instructor": "Patricia Phalen", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6640", + "section": "O11", + "instructor": "Taylor Woodman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CCAS", + "course_num": "1001", + "section": "73", + "instructor": "Joseph Strickland", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2123", + "section": "81", + "instructor": "Benjamin Williams", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "6998", + "section": "10", + "instructor": "Shelley Brundage", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "4195W", + "section": "10", + "instructor": "David Rain", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MGT", + "course_num": "6298", + "section": "10", + "instructor": "D. Kayes", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2987", + "section": "10", + "instructor": "Susan Wiley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "2122", + "section": "10", + "instructor": "Kimberly Robien", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "COMM", + "course_num": "4196", + "section": "10", + "instructor": "na na", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "37", + "instructor": "Joshua Sparks", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "3650", + "section": "10", + "instructor": "Maria Frawley", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "3182", + "section": "11", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6255", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLAV", + "course_num": "1003", + "section": "11", + "instructor": "Ludmila Michael", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Golosa Student Workbook, Book Two", + "edition": "6th", + "author": "Robin", + "isbn": "9780367612917", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "ROUTLEDGE PUBLISHING", + "type_condition": "BUY_NEW", + "price_display": "$69.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Golosa (Bk2)", + "edition": "6th", + "author": "Robin", + "isbn": "9780367612825", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "ROUTLEDGE PUBLISHING", + "type_condition": "BUY_NEW", + "price_display": "$84.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Golosa (Bk2)", + "edition": "6th", + "author": "Robin", + "isbn": "9780367612825", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "ROUTLEDGE PUBLISHING", + "type_condition": "BUY_USED", + "price_display": "$63.75", + "binding": "PAPERBACK", + "item_type": "print" + } + ] + }, + { + "department": "EDUC", + "course_num": "6101", + "section": "10", + "instructor": "Deniece Dortch", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ISTM", + "course_num": "6305", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MAE", + "course_num": "8999", + "section": "25", + "instructor": "Taeyoung Lee", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "3231", + "section": "10", + "instructor": "Frank Sesno", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SEAS", + "course_num": "1001", + "section": "12", + "instructor": "Shahrokh Ahmadi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EXNS", + "course_num": "1110", + "section": "36", + "instructor": "Christopher Duncan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "6291", + "section": "10", + "instructor": "Shelley Brundage", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "4197", + "section": "10", + "instructor": "Lisa Lipinski", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CLAS", + "course_num": "3901", + "section": "10", + "instructor": "Christopher Rollston", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "2112", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6327", + "section": "10", + "instructor": "Scott Lewis", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1001", + "section": "35", + "instructor": "Eric Kramon", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2117", + "section": "80", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DATS", + "course_num": "6450", + "section": "12", + "instructor": "Sushovan Majhi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2190", + "section": "80", + "instructor": "Henry Hale", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SMPA", + "course_num": "2110W", + "section": "16", + "instructor": "Deborah Berry", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$190.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "RENTAL_USED", + "price_display": "$79.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing & Reporting News", + "edition": "8th", + "author": "Rich", + "isbn": "9781305077331", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2015", + "publisher": "Cengage Learning", + "type_condition": "BUY_USED", + "price_display": "$142.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$45.99", + "item_type": "digital" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$62.99", + "item_type": "digital" + }, + { + "title": "Writing and Reporting News: A Coaching Method", + "edition": "8th", + "author": "Rich", + "isbn": "9781305537842", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$80.48", + "item_type": "digital" + } + ] + }, + { + "department": "ECON", + "course_num": "6375", + "section": "10", + "instructor": "Beila Leboeuf", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "EDUC", + "course_num": "6540", + "section": "O10", + "instructor": "Bryan Andriano", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "1001", + "section": "47", + "instructor": "Irene Foster", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "GEOG", + "course_num": "3275", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "SLHS", + "course_num": "2105", + "section": "10", + "instructor": "James Mahshie", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Anatomy & Physiology for Speech, Language, & Hearing", + "edition": "6th", + "author": "Seikel", + "isbn": "9781635502794", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$198.00", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Anatomy & Physiology for Speech, Language, & Hearing", + "edition": "6th", + "author": "Seikel", + "isbn": "9781635502794", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$83.16", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Anatomy & Physiology for Speech, Language, & Hearing", + "edition": "6th", + "author": "Seikel", + "isbn": "9781635502794", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2020", + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$148.50", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Anatomy and Physiology for Speech, Language, and Hearing", + "edition": "6th", + "author": "Seikel", + "isbn": "9781635503005", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Plural Publishing, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$169.95", + "item_type": "digital" + } + ] + }, + { + "department": "STAT", + "course_num": "1053", + "section": "41", + "instructor": "Srinivasan Balaji", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECE", + "course_num": "6998", + "section": "25", + "instructor": "Mona Zaghloul", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6898", + "section": "10", + "instructor": "Russell Porter", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6021", + "section": "11", + "instructor": "Angela Hinzey", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "KOR", + "course_num": "1001", + "section": "32", + "instructor": "Eunhae Ro", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "4001", + "section": "11", + "instructor": "Maroun Medlej", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PT", + "course_num": "8356", + "section": "10", + "instructor": "Jason Dring", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6165", + "section": "11", + "instructor": "Brent Geary", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "2113", + "section": "30", + "instructor": "Kinga Dobolyi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CPED", + "course_num": "6305", + "section": "10", + "instructor": "Colin Green", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "MKTG", + "course_num": "4900", + "section": "10", + "instructor": "Salah Hassan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6340", + "section": "10", + "instructor": "Ali Moghtaderi", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6591", + "section": "10", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "2107", + "section": "MV", + "instructor": "William Winstead", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Wretched of the Earth (60th Anniversary Ed)", + "edition": "N/A", + "author": "Fanon", + "isbn": "9780802158635", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Grove Press", + "type_condition": "BUY_NEW", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Wretched of the Earth (60th Anniversary Ed)", + "edition": "N/A", + "author": "Fanon", + "isbn": "9780802158635", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Grove Press", + "type_condition": "BUY_USED", + "price_display": "$12.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Achieving Our Country", + "edition": "N/A", + "author": "Rorty", + "isbn": "9780674003125", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Harvard University Press", + "type_condition": "BUY_NEW", + "price_display": "$21.50", + "item_type": "print" + }, + { + "title": "Achieving Our Country", + "edition": "N/A", + "author": "Rorty", + "isbn": "9780674003125", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_USED", + "price_display": "$8.60", + "item_type": "print" + }, + { + "title": "Achieving Our Country", + "edition": "N/A", + "author": "Rorty", + "isbn": "9780674003125", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Harvard University Press", + "type_condition": "BUY_USED", + "price_display": "$16.25", + "item_type": "print" + }, + { + "title": "Achieving Our Country", + "edition": "N/A", + "author": "Rorty", + "isbn": "9780674003125", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1998", + "publisher": "Harvard University Press", + "type_condition": "RENTAL_NEW", + "price_display": "$16.13", + "item_type": "print" + }, + { + "title": "Human Condition", + "edition": "2nd", + "author": "Arendt", + "isbn": "9780226586601", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$22.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Human Condition", + "edition": "2nd", + "author": "Arendt", + "isbn": "9780226586601", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "University of Chicago Press", + "type_condition": "RENTAL_USED", + "price_display": "$9.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Human Condition", + "edition": "2nd", + "author": "Arendt", + "isbn": "9780226586601", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "University of Chicago Press", + "type_condition": "BUY_USED", + "price_display": "$17.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Human Condition", + "edition": "2nd", + "author": "Arendt", + "isbn": "9780226586601", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2018", + "publisher": "University of Chicago Press", + "type_condition": "RENTAL_NEW", + "price_display": "$16.88", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Second Sex", + "edition": "N/A", + "author": "Debeauvoir", + "isbn": "9780307277787", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_NEW", + "price_display": "$20.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Second Sex", + "edition": "N/A", + "author": "Debeauvoir", + "isbn": "9780307277787", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_USED", + "price_display": "$8.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Second Sex", + "edition": "N/A", + "author": "Debeauvoir", + "isbn": "9780307277787", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Penguin Random House LLC", + "type_condition": "BUY_USED", + "price_display": "$15.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Second Sex", + "edition": "N/A", + "author": "Debeauvoir", + "isbn": "9780307277787", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2011", + "publisher": "Penguin Random House LLC", + "type_condition": "RENTAL_NEW", + "price_display": "$13.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Legitimation Crisis", + "edition": "N/A", + "author": "Habermas", + "isbn": "9780807015216", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1973", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_NEW", + "price_display": "$22.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Legitimation Crisis", + "edition": "N/A", + "author": "Habermas", + "isbn": "9780807015216", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1973", + "publisher": "Beacon Press c/o Random House", + "type_condition": "BUY_USED", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Legitimation Crisis", + "edition": "N/A", + "author": "Habermas", + "isbn": "9780807015216", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1973", + "publisher": "Beacon Press c/o Random House", + "type_condition": "RENTAL_NEW", + "price_display": "$16.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Concept of the Political", + "edition": "N/A", + "author": "Schmitt", + "isbn": "9780226738925", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$26.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Concept of the Political", + "edition": "N/A", + "author": "Schmitt", + "isbn": "9780226738925", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "University of Chicago Press", + "type_condition": "RENTAL_USED", + "price_display": "$10.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Concept of the Political", + "edition": "N/A", + "author": "Schmitt", + "isbn": "9780226738925", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "University of Chicago Press", + "type_condition": "BUY_USED", + "price_display": "$19.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Concept of the Political", + "edition": "N/A", + "author": "Schmitt", + "isbn": "9780226738925", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2007", + "publisher": "University of Chicago Press", + "type_condition": "RENTAL_NEW", + "price_display": "$20.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beyond Good & Evil", + "edition": "N/A", + "author": "Nietzsche", + "isbn": "9780140449235", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1990", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_NEW", + "price_display": "$13.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beyond Good & Evil", + "edition": "N/A", + "author": "Nietzsche", + "isbn": "9780140449235", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1990", + "publisher": "Penguin (c/o RH)", + "type_condition": "BUY_USED", + "price_display": "$9.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Beyond Good & Evil", + "edition": "N/A", + "author": "Nietzsche", + "isbn": "9780140449235", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "1990", + "publisher": "Penguin (c/o RH)", + "type_condition": "RENTAL_NEW", + "price_display": "$10.40", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Civilization & Its Discontents", + "edition": "N/A", + "author": "Freud", + "isbn": "9780393304510", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$14.95", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Civilization & Its Discontents", + "edition": "N/A", + "author": "Freud", + "isbn": "9780393304510", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$6.80", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Civilization & Its Discontents", + "edition": "N/A", + "author": "Freud", + "isbn": "9780393304510", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2010", + "publisher": "W. W. Norton & Company, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$11.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "The Human Condition", + "edition": "N/A", + "author": "Arendt", + "isbn": "9780226586748", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$17.99", + "item_type": "digital" + }, + { + "title": "The Concept of the Political", + "edition": "N/A", + "author": "Schmitt", + "isbn": "9780226738840", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$25.99", + "item_type": "digital" + }, + { + "title": "Concept of the Political", + "edition": "N/A", + "author": "Schmitt", + "isbn": "9780226738840", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "University of Chicago Press", + "type_condition": "BUY_NEW", + "price_display": "$25.99", + "item_type": "digital" + } + ] + }, + { + "department": "SMPA", + "course_num": "2173", + "section": "12", + "instructor": "Rudy Brioche", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PSC", + "course_num": "1011", + "section": "M30", + "instructor": "Quinn Lester", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6101", + "section": "31", + "instructor": "Jessica Dorsch", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "6898", + "section": "22", + "instructor": "Irina Karmanova", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M44", + "instructor": "Christine Zink", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "UW", + "course_num": "1020", + "section": "M53", + "instructor": "Rachel Pollack", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8999", + "section": "19", + "instructor": "Danmeng Shuai", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HOL", + "course_num": "6701", + "section": "10", + "instructor": "Sarah Ray", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CE", + "course_num": "8999", + "section": "18", + "instructor": "Sameh Badie", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "HONR", + "course_num": "1033", + "section": "MV2", + "instructor": "Naveen Jha", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "IAFF", + "course_num": "2040", + "section": "12", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "2101", + "section": "11", + "instructor": "Daniel Jaqua", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CMUS", + "course_num": "1081", + "section": "10", + "instructor": "Alan Wood", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ORSC", + "course_num": "1000", + "section": "10", + "instructor": "Lori Peters", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Leadership", + "edition": "9th", + "author": "Northouse", + "isbn": "9781544397566", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$122.50", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leadership", + "edition": "9th", + "author": "Northouse", + "isbn": "9781544397566", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$92.00", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leadership", + "edition": "9th", + "author": "Northouse", + "isbn": "9781544397566", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2021", + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_USED", + "price_display": "$51.45", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Leadership", + "edition": "9th", + "author": "Northouse", + "isbn": "9781071834473", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$49.49", + "item_type": "digital" + }, + { + "title": "Leadership", + "edition": "9th", + "author": "Northouse", + "isbn": "9781071834473", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$55.00", + "item_type": "digital" + }, + { + "title": "Leadership", + "edition": "9th", + "author": "Northouse", + "isbn": "9781071834473", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Sage Publications, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$79.74", + "item_type": "digital" + } + ] + }, + { + "department": "EHS", + "course_num": "4197", + "section": "SDG", + "instructor": "Andrew Garrett", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "8999", + "section": "17", + "instructor": null, + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "LSPA", + "course_num": "1039", + "section": "10", + "instructor": "Brian Stamps", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6467", + "section": "10", + "instructor": "Ramin Asgary", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "3212", + "section": "30", + "instructor": "Rahul Simha", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CSCI", + "course_num": "2410", + "section": "31", + "instructor": "Sibin Mohan", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "CAH", + "course_num": "1031", + "section": "33", + "instructor": "Christopher Wilson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "6130", + "section": "10", + "instructor": "Peter LaPuma", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ENGL", + "course_num": "1210", + "section": "23", + "instructor": "Jennifer Close", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "DNSC", + "course_num": "6252", + "section": "DE", + "instructor": "Ernest Forman", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "FINA", + "course_num": "4301", + "section": "10", + "instructor": "Brian Henderson", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "PUBH", + "course_num": "3130", + "section": "11", + "instructor": "MaryBeth Musumeci", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Health Economics & Financing", + "edition": "6th", + "author": "Getzen", + "isbn": "9781119815686", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$146.75", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Health Economics & Financing", + "edition": "6th", + "author": "Getzen", + "isbn": "9781119815686", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2022", + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_USED", + "price_display": "$110.25", + "binding": "PAPERBACK", + "item_type": "print" + }, + { + "title": "Health Economics and Financing", + "edition": "6th", + "author": "Getzen", + "isbn": "9781119788577", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "RENTAL_NEW", + "price_display": "$38.22", + "item_type": "digital" + }, + { + "title": "Health Economics and Financing", + "edition": "6th", + "author": "Getzen", + "isbn": "9781119788577", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "John Wiley & Sons, Incorporated", + "type_condition": "BUY_NEW", + "price_display": "$91.00", + "item_type": "digital" + } + ] + }, + { + "department": "MKTG", + "course_num": "6261", + "section": "80", + "instructor": "Johan Ferreira", + "term_name": "Fall 2023", + "texts": [ + { + "title": "Pricing Strategy", + "edition": "N/A", + "author": "Smith", + "isbn": "9780538480888", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Cengage South-Western", + "type_condition": "BUY_NEW", + "price_display": "$240.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pricing Strategy", + "edition": "N/A", + "author": "Smith", + "isbn": "9780538480888", + "material_type": "TXT", + "requirement_type": "RQ", + "copy_right_year": "2012", + "publisher": "Cengage South-Western", + "type_condition": "BUY_USED", + "price_display": "$180.25", + "binding": "Hardcover", + "item_type": "print" + }, + { + "title": "Pricing Strategy: Setting Price Levels, Managing Price Discounts and Establishing Price Structures", + "edition": "1st", + "author": "Smith", + "isbn": "9781133172734", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$50.99", + "item_type": "digital" + }, + { + "title": "Pricing Strategy: Setting Price Levels, Managing Price Discounts and Establishing Price Structures", + "edition": "N/A", + "author": "Smith", + "isbn": "9781133172734", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "RENTAL_NEW", + "price_display": "$69.99", + "item_type": "digital" + }, + { + "title": "Pricing Strategy: Setting Price Levels, Managing Price Discounts and Establishing Price Structures", + "edition": "N/A", + "author": "Smith", + "isbn": "9781133172734", + "material_type": "CEB", + "requirement_type": "RQ", + "copy_right_year": null, + "publisher": "Cengage Learning", + "type_condition": "BUY_NEW", + "price_display": "$89.23", + "item_type": "digital" + } + ] + }, + { + "department": "PUBH", + "course_num": "8885", + "section": "10", + "instructor": "Gholamali Rahnavard", + "term_name": "Fall 2023", + "texts": [] + }, + { + "department": "ECON", + "course_num": "6295", + "section": "10", + "instructor": "Argyn Kuketayev", + "term_name": "Fall 2023", + "texts": [] + } +] \ No newline at end of file diff --git a/textbook/static-assets/data/reserves-data-fall-2023.csv b/textbook/static-assets/data/reserves-data-fall-2023.csv new file mode 100644 index 0000000..f6b3832 --- /dev/null +++ b/textbook/static-assets/data/reserves-data-fall-2023.csv @@ -0,0 +1,381 @@ +Academic Department,Course Code,Course Instructor,Course Name,Course Section,ISBN (Normalized),Title Author Combined and Normalized,Publisher,Title,Publication Date +GW - AMST-357,AMST/HIST 2410W - Guglielmo - Fall 2023,"Guglielmo, Thomas",AMST/HIST 2410,,1101217561; 9781101217566; 1594482853; 9781594482854,beautiful things that heaven bears - meng,Penguin Publishing Group,The Beautiful Things That Heaven Bears.,2007. +GW - AMST-357,AMST/HIST 2410W - Guglielmo - Fall 2023,"Guglielmo, Thomas",AMST/HIST 2410,,1541672615; 9781541672611; 9781541672598; 1541672593; 9781541672604; 1541672607,"america for americans a history of xenophobia in the united states - lee,",Basic Books,America for Americans : a history of xenophobia in the United States /,2021. +GW - AMST-357,AMST/HIST 2410W - Guglielmo - Fall 2023,"Guglielmo, Thomas",AMST/HIST 2410,,1781682976; 9781781682975; 9781781681909; 1781681902; 9781781685013; 1781685010,beast riding the rails and dodging narcos on the migrant trail - mart,Verso,The beast : riding the rails and dodging narcos on the migrant trail /,2014. +GW - AMST-357,AMST/HIST 2410W - Guglielmo - Fall 2023,"Guglielmo, Thomas",AMST/HIST 2410,,9780670038329; 0670038326,stealing buddha s dinner a memoir - nguy,Viking,Stealing Buddha's dinner : a memoir /,2007. +GW - AMST-357,AMST/HIST 2410W - Guglielmo - Fall 2023,"Guglielmo, Thomas",AMST/HIST 2410,,9780892552900; 0892552905,bread givers a novel - yezi,Persea Books,Bread givers : a novel /,[2003] +GW - AMST-357,AMST/HIST 2410W - Guglielmo - Fall 2023,"Guglielmo, Thomas",AMST/HIST 2410,,9781594482854; 1594482853; 9781594489402; 1594489408,beautiful things that heaven bears - meng,Riverhead Books,The beautiful things that heaven bears /,2007. +GW - ANTH-53,ANTH 1000 - Kaplan - Fall 2023,"Kaplan, Michael",ANTH 1000,,,avatar -,Lightstorm Entertainment; 20th Century Fox Home Entertainment,Avatar.,2009. +GW - ANTH-53,ANTH 1003 - Cline - Fall 2023,"Cline, Eric",ANTH 1003,,9780691166407; 0691166404,three stones make a wall the story of archaeology - clin,Princeton University Press,Three stones make a wall : the story of archaeology /,[2017] +GW - ANTH-53,ANTH 2008 - Wagner - Fall 2023,"Wagner, Sarah",ANTH 2008,,9780062748218; 0062748211,barracoon the story of the last black cargo - hurs,Amistad an imprint of HarperCollins Publishers,"Barracoon : the story of the last ""black cargo"" /",2019. +GW - ANTH-53,ANTH 2506 - Johnston - Fall 2023,"Johnston, Susan",ANTH 2506,,1281365327; 9781281365323; 9786611365325; 661136532X; 1403981795; 9781403981790; 1403966060; 9781403966063; 140396789X; 9781403967893,sorrow of the lonely and the burning of the dancers - schi,Palgrave Macmillan,The sorrow of the lonely and the burning of the dancers /,2005. +GW - ANTH-53,ANTH 2506 - Johnston - Fall 2023,"Johnston, Susan",ANTH 2506,,1282772759; 9781282772755; 9786612772757; 6612772751; 0520945530; 9780520945531; 0520253159; 9780520253155; 0520260880; 9780520260887,theater in a crowded fire ritual and spirituality at burning man - gilm,University of California Press,Theater in a crowded fire ritual and spirituality at Burning Man /,2010. +GW - ANTH-53,ANTH 2506 - Johnston - Fall 2023,"Johnston, Susan",ANTH 2506,,9780226775425; 0226775429; 9780226775432; 0226775437,in sorcery s shadow a memoir of apprenticeship among the songhay of niger - stol,University of Chicago Press,In sorcery's shadow : a memoir of apprenticeship among the Songhay of Niger /,1987. +GW - ANTH-53,ANTH 2506 - Johnston - Fall 2023,"Johnston, Susan",ANTH 2506,,9780299166748; 0299166740,atlantic celts ancient people or modern invention - jame,University of Wisconsin Press,The Atlantic Celts : ancient people or modern invention? /,[1999] +GW - ANTH-53,ANTH 2506 - Johnston - Fall 2023,"Johnston, Susan",ANTH 2506,,9780520253155; 0520253159; 9780520260887; 0520260880,theater in a crowded fire ritual and spirituality at burning man - gilm,University of California Press,Theater in a crowded fire : ritual and spirituality at Burning Man /,[2010] +GW - ANTH-53,ANTH 2506 - Johnston - Fall 2023,"Johnston, Susan",ANTH 2506,,9781403966063; 1403966060; 9781403967893; 140396789X,sorrow of the lonely and the burning of the dancers - schi,Palgrave Macmillan,The sorrow of the lonely and the burning of the dancers /,2005. +GW - ANTH-53,ANTH 3603 - Subiaul - Fall 2023,"Subiaul, Francys",ANTH 3603,,0521113636; 9780521113632; 0521130565; 9780521130561,introducing psycholinguistics - warr,Cambridge University Press,Introducing psycholinguistics /,2013. +GW - ANTH-53,ANTH 3603 - Subiaul - Fall 2023,"Subiaul, Francys",ANTH 3603,,9780631151210; 0631151214; 9780631151227; 0631151222,anthropological linguistics an introduction - fole,Blackwell Publishers,Anthropological linguistics : an introduction /,1997. +GW - ANTH-53,ANTH 6103 - Blomster - Fall 2023,"Blomster, Jeffrey",ANTH 6103,,9780813030708; 0813030706,archaeology of collective action - sait,University Press of Florida,The archaeology of collective action /,[2007] +GW - ANTH-53,ANTH 6510 - Wagner - Fall 2023,"Wagner, Sarah",ANTH 6510,,0618706410; 9780618706419; 054739117X; 9780547391175; 1606865064; 9781606865064; 1451762747; 9781451762747,things they carried a work of fiction - o'br,Mariner Books/Houghton Mifflin Harcourt,The things they carried : a work of fiction /,2009. +GW - ANTH-53,ANTH 6510 - Wagner - Fall 2023,"Wagner, Sarah",ANTH 6510,,9780140187656; 0140187650,eichmann in jerusalem a report on the banality of evil - aren,Penguin Books,Eichmann in Jerusalem : a report on the banality of evil /,1994. +GW - ANTH-53,ANTH 6510 - Wagner - Fall 2023,"Wagner, Sarah",ANTH 6510,,9780684826806; 0684826801; 9781439506899; 1439506892,survival in auschwitz the nazi assault on humanity - levi,Simon and Schuster,Survival in Auschwitz : the Nazi assault on humanity /,"1996, [1959]" +GW - ANTH-53,ANTH 6510 - Wagner - Fall 2023,"Wagner, Sarah",ANTH 6510,,9780767902892; 0767902890,things they carried a work of fiction - o'br,Broadway Books,The things they carried : a work of fiction /,1998. +GW - ANTH-53,APSC 2057 - Hallaji - Fall 2023,"Hallaji, Milad",APSC 2057,,1259977269; 9781259977268; 1259977277; 9781259977275,vector mechanics for engineers statics - beer,McGraw-Hill Education,Vector mechanics for engineers.,[2019] +GW - ARAB-1909,ARAB 1000 - Oraby - Fall 2023,"Oraby, Ebtissam",ARAB 1000,,,99 -,Teshkeel Comics,The 99.,c2007- +GW - ARAB-1909,ARAB 1000 - Oraby - Fall 2023,"Oraby, Ebtissam",ARAB 1000,,0805094881; 9780805094886,metro a story of cairo - shāf,Henry Holt and Company,Metro : a story of Cairo /,2012. +GW - ARAB-1909,ARAB 1000 - Oraby - Fall 2023,"Oraby, Ebtissam",ARAB 1000,,9781613777527; 1613777523,jinnrise volume one - awan,IDW,Jinnrise.,[2013] +GW - ARAB-1909,ARAB 1001/2001/3001 - Fall 2023,"El-Hefnawy, Dina; Jorgensen, Cory; Oraby, Ebtissam; Sinatora, Francesco; Taher, Nashwa; Tobkin, Jennifer",ARAB 1001/2001/3001,,1589017366; 9781589017368; 9781589017375; 1589017374; 1647121868; 9781647121860; 1647121876; 9781647121877; 9781589019621; 1589019628,al kitaab fii ta allum al arabiyya a textbook for beginning arabic with website part one - بروس,Georgetown University Press,Al-Kitaab fii taʻallum al-ʻArabiyya = A textbook for beginning Arabic with website.,[2021-] +GW - ARAB-1909,ARAB 1001/2001/3001 - Fall 2023,"El-Hefnawy, Dina; Jorgensen, Cory; Oraby, Ebtissam; Sinatora, Francesco; Taher, Nashwa; Tobkin, Jennifer",ARAB 1001/2001/3001,,1647121817; 9781647121815; 1647121825; 9781647121822; 9781647121853; 164712185X,alif ba alif baa introduction to arabic letters and sounds - brus,Georgetown University Press,Ālif bāʼ = Alif baa : introduction to Arabic letters and sounds /,[2021] +GW - ARAB-1909,ARAB 1001/2001/3001 - Fall 2023,"El-Hefnawy, Dina; Jorgensen, Cory; Oraby, Ebtissam; Sinatora, Francesco; Taher, Nashwa; Tobkin, Jennifer",ARAB 1001/2001/3001,,1684119189; 9781684119189; 1684119766; 9781684119769; 9783447020022; 3447020024,dictionary of modern written arabic arabic english - wehr,Snowball Publishing,A dictionary of modern written Arabic : (Arabic-English) /,1993. +GW - ARAB-1909,ARAB 2105 - Oraby - Fall 2023,"Oraby, Ebtissam",ARAB 2105,,9780313329562; 0313329567,food culture in the near east middle east and north africa - hein,Greenwood Press,"Food culture in the Near East, Middle East, and North Africa /",2004. +GW - ASTR-1541,ASTR 1001 - Dhuga - Fall 2023,"Dhuga, Kalvir",ASTR 1001,,0134874366; 9780134874364; 0134990773; 9780134990774; 0134990781; 9780134990781,cosmic perspective - benn,Pearson,The cosmic perspective /,[2020] +GW - ASTR-1541,ASTR 1002 - Razzaque - Fall 2023,"Razzaque, Soebur",ASTR 1002,,0134874366; 9780134874364; 0134990773; 9780134990774; 0134990781; 9780134990781,cosmic perspective - benn,Pearson,The cosmic perspective /,[2020] +GW - BISC-6,BISC 1111 - Manubay - Fall 2023,"Manubay, John",BISC 1111,,0135188741; 9780135188743; 9780135988046; 0135988047,campbell biology -,Pearson,Campbell biology /,[2021] +GW - BISC-6,BISC 2207 - Omotade - Fall 2023,"Omotade, Omotola",BISC 2207,,9780198712558; 0198712553; 9780198795360; 019879536X,genetics genes genomes and evolution - mene,Oxford University Press,"Genetics : genes, genomes, and evolution /",[2017] +GW - BISC-6,BISC 2320 - Malloy - Fall 2023,"Malloy, Cole",BISC 2320,,1605353809; 9781605353807; 160535841X; 9781605358413,neuroscience -,Oxford University Press,Neuroscience /,©2018 +GW - BISC-6,BISC 3454 - Gedan - Fall 2023,"Gedan, Keryn",BISC 3454,,9781605352282; 1605352284,marine community ecology and conservation -,Sinauer Associates Inc,Marine community ecology and conservation /,[2014] +GW - BISC-6,BISC 3460 - Gedan - Fall 2023,"Gedan, Keryn",BISC 3460,,1605357146; 9781605357140,conservation biology - card,Oxford University Press,Conservation biology /,[2020] +GW - CAH-2011,CAH 1090 - Lipinski - Fall 2023,"Lipinski, Lisa",CAH 1090,,9780190078331; 0190078332; 9780190078348; 0190078340,themes of contemporary art visual art after 1980 - robe,Oxford University Press,Themes of contemporary art : visual art after 1980 /,[2022] +GW - CAH-2011,CAH 2162W - Obler - Fall 2023,"Obler, Bibiana",CAH 2162W,,9780205988945; 0205988946,photography a cultural history - mari,Pearson,Photography : a cultural history /,[2015] +GW - CAH-2011,CAH 2162W - Obler - Fall 2023,"Obler, Bibiana",CAH 2162W,,9780374521349; 0374521344; 9780809033409; 0809033402,camera lucida reflections on photography - bart,Hill and Wang,Camera lucida : reflections on photography /,1981. +GW - CAH-2011,CAH 2190 - Lee - Fall 2023,"Lee, Jung-Sil",CAH 2190,,0205837638; 9780205837632,asian art - neav,Pearson,Asian art /,[2015] +GW - CAH-2011,CAH 2190 - Lee - Fall 2023,"Lee, Jung-Sil",CAH 2190,,1101545305; 9781101545300; 0143124153; 9780143124153,history of the world in 100 objects - macg,Penguin Publishing Group,A History of the World in 100 Objects.,2011. +GW - CAH-2011,CAH 2190 - Lee - Fall 2023,"Lee, Jung-Sil",CAH 2190,,9780670022700; 0670022705,history of the world in 100 objects - macg,Viking,A history of the world in 100 objects /,2011. +GW - CAH-2011,CAH 3160 - Lipinski - Fall 2023,"Lipinski, Lisa",CAH 3160,,0520344324; 9780520344327,political body stories on art feminism and emancipation in latin america - giun,University of California Press,"The political body : stories on art, feminism, and emancipation in Latin America /",[2023] +GW - CAH-2011,CAH 3160 - Lipinski - Fall 2023,"Lipinski, Lisa",CAH 3160,,9780714832104; 0714832103,latin american art in the twentieth century -,Phaidon Press,Latin American art in the twentieth century /,[1996] +GW - CAH-2011,CAH 3160 - Lipinski - Fall 2023,"Lipinski, Lisa",CAH 3160,,9780810961210; 0810961210; 9780870704246; 0870704249; 9780870704314; 0870704311,latin american artists of the twentieth century -,The Museum of Modern Art,Latin American artists of the twentieth century /,[1993] +GW - CAH-2011,CAH 4189/6270 - Wetenhall - Fall 2023,"Wetenhall, Tanya",CAH 4189,,0140135154; 9780140135152,ways of seeing -,Penguin Books; British Broadcasting Corporation,Ways of seeing /,"c1977, c1972." +GW - CAH-2011,CAH 4189/6270 - Wetenhall - Fall 2023,"Wetenhall, Tanya",CAH 4189,,1501337408; 9781501337406; 9781501337352; 1501337351,survey of historic costume - tort,Fairchild Books Bloomsbury Publishing Inc,Survey of historic costume /,2021. +GW - CAH-2011,CAH 4189/6270 - Wetenhall - Fall 2023,"Wetenhall, Tanya",CAH 4189,,9780520082311; 0520082311; 9780380487776; 0380487772,seeing through clothes - holl,University of California Press,Seeing through clothes /,[1993] +GW - CAH-2011,CAH 4189/6270 - Wetenhall - Fall 2023,"Wetenhall, Tanya",CAH 4189,,9781350032729; 1350032727; 9781350032699; 1350032697; 9781350032736; 1350032735,reading fashion in art - mida,Bloomsbury Publishing; Bloomsbury Visual Arts,Reading fashion in art,2020. +GW - CAH-2011,CAH 6270 - Lipinski - Fall 2023,"Lipinski, Lisa",CAH 6270,,0520344324; 9780520344327,political body stories on art feminism and emancipation in latin america - giun,University of California Press,"The political body : stories on art, feminism, and emancipation in Latin America /",[2023] +GW - CAH-2011,CAH 6270 - Lipinski - Fall 2023,"Lipinski, Lisa",CAH 6270,,9780714832104; 0714832103,latin american art in the twentieth century -,Phaidon Press,Latin American art in the twentieth century /,[1996] +GW - CAH-2011,CAH 6270 - Lipinski - Fall 2023,"Lipinski, Lisa",CAH 6270,,9780810961210; 0810961210; 9780870704246; 0870704249; 9780870704314; 0870704311,latin american artists of the twentieth century -,The Museum of Modern Art,Latin American artists of the twentieth century /,[1993] +GW - CAH-2011,CAH 6400 - Lipinski - Fall 2023,"Lipinski, Lisa",CAH 6400,,0714844055; 9780714844053; 0714864951; 9780714864952,salon to biennial exhibitions that made art history -,Phaidon,Salon to biennial : exhibitions that made art history /,[2008-c2013] +GW - CAH-2011,CAH 6400 - Lipinski - Fall 2023,"Lipinski, Lisa",CAH 6400,,9780070182677; 0070182671,shock of the new seven historic exhibitions of modern art - dunl,American Heritage Press,The shock of the new; seven historic exhibitions of modern art.,[1972] +GW - CAH-2011,CAH 6400 - Lipinski - Fall 2023,"Lipinski, Lisa",CAH 6400,,9780262035521; 0262035529,beyond objecthood the exhibition as a critical form since 1968 - voor,The MIT Press,Beyond objecthood : the exhibition as a critical form since 1968 /,[2017] +GW - CAH-2011,CAH 6400 - Lipinski - Fall 2023,"Lipinski, Lisa",CAH 6400,,9780714864952; 0714864951,biennials and beyond exhibitions that made art history 1962 2002 - alts,Phaidon Press Limited,"Biennials and beyond : exhibitions that made art history, 1962-2002 /",2013. +GW - CAH-2011,CAH 6400 - Lipinski - Fall 2023,"Lipinski, Lisa",CAH 6400,,9780810936379; 0810936372,avant garde in exhibition new art in the 20th century - alts,Abrams,The avant-garde in exhibition : new art in the 20th century /,1994. +GW - CAS-2005,COMM 2100/6100 - Hundal - Fall 2023,"Hundal, Savreen",COMM 2100/6100,,1260254097; 9781260254099; 9781260807653; 1260807657,introducing communication theory analysis and application - west,McGraw-Hill Education,Introducing communication theory : analysis and application /,[2021] +GW - CAS-2005,HIST 1011 - Burns - Fall 2023,"Burns, William",HIST 1011,,0190602694; 9780190602697; 9780190602703; 0190602708,great hanoi rat hunt empire disease and modernity in french colonial vietnam - vann,Oxford University Press,"The great Hanoi rat hunt : empire, disease, and modernity in French colonial Vietnam /",[2019] +GW - CAS-2005,HIST 1011 - Burns - Fall 2023,"Burns, William",HIST 1011,,0674043898; 9780674043893; 0674013123; 9780674013124,two princes of calabar an eighteen century atlantic odyssey - spar,Harvard University Press,The two princes of Calabar : an eighteen century Atlantic odyssey /,[2004] +GW - CAS-2005,HIST 1011 - Burns - Fall 2023,"Burns, William",HIST 1011,,145761815X; 9781457618154,voices of decolonization a brief history with documents - shep,Bedford/St Martin's,Voices of decolonization : a brief history with documents /,[2015] +GW - CAS-2005,HIST 1011 - Burns - Fall 2023,"Burns, William",HIST 1011,,1624664326; 9781624664328; 1624664334; 9781624664335; 1624664342; 9781624664342,matteo ricci and the catholic mission to china 1583 1610 a short history with documents - hsia,Hackett Publishing Company Inc,"Matteo Ricci and the Catholic mission to China, 1583-1610 : a short history with documents /",[2016] +GW - CAS-2005,HIST 1011 - Burns - Fall 2023,"Burns, William",HIST 1011,,1624664342; 9781624664342; 1624664326; 9781624664328,matteo ricci and the catholic mission to china 1583 1610 a short history with documents - hsia,Hackett Publishing Company Inc,"Matteo Ricci and the Catholic Mission to China, 1583-1610 A Short History with Documents",2016. +GW - CAS-2005,HIST 1011 - Burns - Fall 2023,"Burns, William",HIST 1011,,9780674013124; 0674013123; 9780674032057; 0674032055,two princes of calabar an eighteenth century atlantic odyssey - spar,Harvard University Press,The two princes of Calabar : an eighteenth-century Atlantic odyssey /,2004. +GW - CHIN-11,CHIN 1001 - Zhang - Fall 2023,"Zhang, Phyllis",CHIN 1001,,1285433467; 9781285433462,developing chinese fluency an introductory course ni wo ta volume 2 - zhan,Cengage Learning,"Developing Chinese fluency, an introductory course. Ni wo ta /",[2015] +GW - CHIN-11,CHIN 1001 - Zhang - Fall 2023,"Zhang, Phyllis",CHIN 1001,,9781285433530; 128543353X,developing chinese fluency an introductory course ni wo ta volume 1 - zhan,Cengage Learning,"Developing Chinese fluency, an introductory course. Ni wo ta /",[2015] +GW - CHIN-11,CHIN 1001 - Zhang - Fall 2023,"Zhang, Phyllis",CHIN 1001,,9781285456799; 1285456793,developing chinese fluency an introductory course literacy workbook volume 1 - zhan,Centage Learning,Developing Chinese fluency. an introductory course : literacy workbook /,©2015. +GW - CHIN-11,CHIN/WGSS 3136W - Chen - Fall 2023,"Chen, Liana",CHIN/WGSS 3136W,,9781400060283; 1400060281,"snow flower and the secret fan a novel - see,",Random House,Snow flower and the secret fan : a novel /,2005. +GW - CLAS-177,CLAS 3107 - Rollston - Fall 2023,"Rollston, Christopher",CLAS 3107,,0664234976; 9780664234973,everyday law in biblical israel an introduction - west,Westminster John Knox Press,Everyday law in biblical Israel : an introduction /,c2009. +GW - CLAS-177,CLAS 3107 - Rollston - Fall 2023,"Rollston, Christopher",CLAS 3107,,0788503782; 9780788503788,law collections from mesopotamia and asia minor - roth,Scholars Press,Law collections from Mesopotamia and Asia Minor /,c1997. +GW - CLAS-177,CLAS 3107 - Rollston - Fall 2023,"Rollston, Christopher",CLAS 3107,,9780788501043; 0788501046; 9780788501265; 0788501267,law collections from mesopotamia and asia minor - roth,Scholars Press,Law collections from Mesopotamia and Asia Minor /,[1997] +GW - CLAS-177,CLAS 3107 - Rollston - Fall 2023,"Rollston, Christopher",CLAS 3107,,9780801842511; 0801842514; 9780801867156; 0801867150,amarna letters -,Johns Hopkins University Press,The Amarna letters /,[1992] +GW - CLAS-177,CLAS 3115 - Friedland - Fall 2023,"Friedland, Elise",CLAS 3115,,9780521002301; 0521002303; 9780521461436; 052146143X,mosaics of the greek and roman world - dunb,Cambridge University Press,Mosaics of the Greek and Roman world /,1999. +GW - CLAS-177,CLAS 3115 - Friedland - Fall 2023,"Friedland, Elise",CLAS 3115,,9780714109893; 0714109894; 9780714119052; 0714119059,ancient faces mummy portraits from roman egypt - brit,Published for the Trustees of the British Museum by the British Museum Press,Ancient faces : mummy portraits from Roman Egypt /,1997. +GW - CLAS-177,CLAS 3115 - Friedland - Fall 2023,"Friedland, Elise",CLAS 3115,,9780789211255; 0789211254,greek and roman mosaics - papp,Abbeville Press,Greek and Roman mosaics /,2012. +GW - CLAS-177,CLAS 3115 - Friedland - Fall 2023,"Friedland, Elise",CLAS 3115,,9780884023548; 0884023540,dumbarton oaks the collections - dumb,Distributed by Harvard University Press; Published by Dumbarton Oaks Research Library and Collection,Dumbarton Oaks : the collections /,2008. +GW - COMM-301,COMM 1040 - Newbill - Fall 2023,,COMM 1040,,0134380924; 9780134380926,public speaking finding your voice - turn,Pearson,Public speaking : finding your voice /,[2018] +GW - COMM-301,COMM 1040 - Piatt - Fall 2023,"Piatt, Barry",COMM 1040,,,speaker s guidebook text and reference - o'ha,Bedford/St Martin's,A speaker's guidebook : text and reference /,2022 +GW - COMM-301,COMM 1040 - Piatt - Fall 2023,"Piatt, Barry",COMM 1040,,1478634898; 9781478634898,rhetorical criticism exploration and practice - foss,Waveland Press,Rhetorical criticism : exploration and practice /,[2018] +GW - COMM-301,COMM 1041 - Chaaban - Fall 2023,"Chaaban, Nader",COMM 1041,,0136968473; 9780136968474; 1292439556; 9781292439556; 9781292439600; 1292439602,interpersonal communication book - devi,Pearson,The interpersonal communication book /,[2022] +GW - COMM-301,COMM 1041 - Kennedy - Fall 2023,"Kennedy, Colleen",COMM 1041,,9780134877174; 0134877179,interpersonal communication relating to others - beeb,Pearson,Interpersonal communication : relating to others /,2020. +GW - COMM-301,COMM 1041 - Robbins - Fall 2023,"Robbins, Kellis",COMM 1041,,9780134877174; 0134877179,interpersonal communication relating to others - beeb,Pearson,Interpersonal communication : relating to others /,2020. +GW - COMM-301,COMM 1041 - Weiner - Fall 2023,"Weiner, Abbie",COMM 1041,,9780134877174; 0134877179,interpersonal communication relating to others - beeb,Pearson,Interpersonal communication : relating to others /,2020. +GW - COMM-301,COMM 6190 - Debebe - Fall 2023,"Debebe, Gelaye",COMM 6190,,0471174661; 9780471174660,dialogue rediscover the transforming power of conversation - elli,J Wiley & Sons,Dialogue : rediscover the transforming power of conversation /,[1998] +GW - CORC-1935,CIAR 3250 - Crawford - Fall 2023,"Crawford, Kent",CIAR 3250,,111937720X; 9781119377207; 9781119468578; 1119468574; 9781119468530; 1119468531,interior design illustrated - chin,John Wiley & Sons Inc,Interior design illustrated /,[2018] +GW - CORC-1935,CSA 3712 - McAleer-Keeler - Fall 2023,"McAleer-Keeler, Kerry",CSA 3712,,9780978588144; 0978588142,general printing - clee,Liber Apertus Press,General printing /,2006. +GW - ECON-18,ECON 1012 - Bird - Fall 2023,"Bird, Ronald",ECON 1012,,0357723066; 9780357723067,brief principles of macroeconomics - mank,Cengage Learning,Brief principles of macroeconomics /,2024 +GW - ECON-18,ECON 2101 - Joshi - Fall 2023,"Joshi, Sumit",ECON 2101,,0134184246; 9780134184241; 0134167120; 9780134167121,microeconomics - pind,Pearson,Microeconomics /,[2018] +GW - ECON-18,ECON 2101 - Malik - Fall 2023,"Malik, Arun",ECON 2101,,9781118488874; 1118488873; 9781118572276; 1118572270,microeconomics - besa,Wiley,Microeconomics /,[2014] +GW - ECON-18,ECON 2151 - Fall 2023,,ECON 2151,,129229115X; 9781292291154; 1292291206; 9781292291208; 9781292291192; 1292291192,economic development - toda,Pearson,Economic development /,2020. +GW - ECON-18,ECON 2151 - Fall 2023,,ECON 2151,,9780133406788; 0133406784,economic development - toda,Pearson,Economic development /,[2015] +GW - ECON-18,ECON 2199 - Chiswick - Fall 2023,"Chiswick, Barry",ECON 2199,,0367346974; 9780367346973; 0367346982; 9780367346980; 9781000397871; 1000397874; 9781000397857; 1000397858; 9780429327209; 042932720X,modern labor economics theory and public policy - smit,Routledge,Modern labor economics : theory and public policy /,2023. +GW - ECON-18,ECON 8341 - Chiswick - Fall 2023,"Chiswick, Barry",ECON 8341,,0367346974; 9780367346973; 0367346982; 9780367346980; 9781000397871; 1000397874; 9781000397857; 1000397858; 9780429327209; 042932720X,modern labor economics theory and public policy - smit,Routledge,Modern labor economics : theory and public policy /,2023. +GW - ENGL-22,ENGL 1315 - Dugan - Fall 2023,"Dugan, Holly",ENGL 1315,,9780140439052; 0140439056,christmas carol and other christmas writings - dick,Rowland Phototypesetting Ltx; Lays Limited; Penguin Books,"A Christmas carol, and other Christmas writings /",2003. +GW - ENGL-22,ENGL 1315 - Dugan - Fall 2023,"Dugan, Holly",ENGL 1315,,9780439023481; 0439023483; 9780439023528; 0439023521; 9780545310581; 054531058X; 9780545425117; 0545425115; 9781451740752; 1451740751,hunger games - coll,Scholastic Press,The Hunger Games /,2008. +GW - ENGL-22,ENGL 1315 - Dugan - Fall 2023,"Dugan, Holly",ENGL 1315,,9780684801520; 0684801523,great gatsby - fitz,Scribner Paperback Fiction,The great Gatsby /,1995. +GW - ENGL-22,ENGL 1315 - Dugan - Fall 2023,"Dugan, Holly",ENGL 1315,,9781594486685; 1594486689; 9781594487293; 1594487294,how to get filthy rich in rising asia - hami,Riverhead Books,How to Get Filthy Rich in Rising Asia /,2013. +GW - ENGL-22,ENGL 1360/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 1360/WGSS 3170,,0393602974; 9780393602975,classic fairy tales texts criticism -,WW Norton & Company,"The classic fairy tales : texts, criticism /",[2017] +GW - ENGL-22,ENGL 1360/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 1360/WGSS 3170,,1577315936; 9781577315933,hero with a thousand faces - camp,New World Library,The hero with a thousand faces /,[2008] +GW - ENGL-22,ENGL 1360/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 1360/WGSS 3170,,1603292624; 9781603292627; 9781603292634; 1603292632; 1603292659; 9781603292658; 9781603292641; 1603292640,mla handbook -,The Modern Language Association of America,MLA Handbook /,[2016] +GW - ENGL-22,ENGL 1360/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 1360/WGSS 3170,,9780140440928; 0140440925,sir gawain and the green knight -,Penguin,Sir Gawain and the Green Knight /,1974. +GW - ENGL-22,ENGL 1360/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 1360/WGSS 3170,,9780375866562; 0375866566; 9780375966569; 0375966560; 9780375896583; 0375896589,seraphina a novel - hart,Random House,Seraphina : a novel /,[2012] +GW - ENGL-22,ENGL 1360/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 1360/WGSS 3170,,9780394751047; 0394751043,king must die - rena,Vintage Books,The king must die /,"1988, ©1986." +GW - ENGL-22,ENGL 1360/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 1360/WGSS 3170,,9780743261647; 074326164X; 9780743261692; 0743261690,gilgamesh a new english version -,Free Press,Gilgamesh : a new English version /,[2004] +GW - ENGL-22,ENGL 1360/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 1360/WGSS 3170,,9780807083055; 0807083054,kindred - butl,Beacon Press,Kindred /,[1988] +GW - ENGL-22,ENGL 2100/AMST 2490/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 2100/AMST 2490/WGSS 3170,,0156034026; 9780156034029,reluctant fundamentalist - hami,Houghton Mifflin Harcourt,The reluctant fundamentalist /,"2008, c2007." +GW - ENGL-22,ENGL 2100/AMST 2490/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 2100/AMST 2490/WGSS 3170,,0190219769; 9780190219765; 9780190219789; 0190219785; 0190219793; 9780190219796,"asian american history a very short introduction - hsu,",Oxford University Press,Asian American history : a very short introduction /,[2017] +GW - ENGL-22,ENGL 2100/AMST 2490/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 2100/AMST 2490/WGSS 3170,,0295745916; 9780295745916; 0295745908; 9780295745909,fifth chinese daughter - jade,University of Washington Press,Fifth Chinese Daughter,2019 +GW - ENGL-22,ENGL 2100/AMST 2490/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 2100/AMST 2490/WGSS 3170,,0307787818; 9780307787811; 0679723285; 9780679723288,china men - king,Vintage Books,China men /,1989 +GW - ENGL-22,ENGL 2100/AMST 2490/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 2100/AMST 2490/WGSS 3170,,0316324469; 9780316324465,disgraced a play - akht,Back Bay Books/Little Brown and Co,Disgraced : a play /,2013. +GW - ENGL-22,ENGL 2100/AMST 2490/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 2100/AMST 2490/WGSS 3170,,0525575111; 9780525575115,i was their american dream a graphic memoir - ghar,Clarkson Potter,I was their American dream : a graphic memoir /,[2019] +GW - ENGL-22,ENGL 2100/AMST 2490/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 2100/AMST 2490/WGSS 3170,,110191128X; 9781101911280,twilight los angeles 1992 on the road a search for american character - smit,Anchor Books,"Twilight, Los Angeles, 1992 : on the road : a search for American character /",[2014] +GW - ENGL-22,ENGL 2100/AMST 2490/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 2100/AMST 2490/WGSS 3170,,1419718770; 9781419718779; 1613129300; 9781613129302,"best we could do an illustrated memoir - bui,",Abrams ComicArts,The best we could do : an illustrated memoir /,[2017] +GW - ENGL-22,ENGL 2100/AMST 2490/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 2100/AMST 2490/WGSS 3170,,163405976X; 9781634059763,"we hereby refuse japanese american resistance to wartime incarceration - abe,",Chin Music Press; Wing Luke Museum,We hereby refuse : Japanese American resistance to wartime incarceration /,[2021] +GW - ENGL-22,ENGL 2100/AMST 2490/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 2100/AMST 2490/WGSS 3170,,1984820370; 9781984820372; 9781984820365; 1984820362,minor feelings an asian american reckoning - hong,One World,Minor feelings : an Asian American reckoning /,[2020] +GW - ENGL-22,ENGL 2100/AMST 2490/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 2100/AMST 2490/WGSS 3170,,9780385473750; 0385473753; 9780385473767; 0385473761,twilight los angeles 1992 on the road a search for american character - smit,Anchor Books,"Twilight--Los Angeles, 1992 on the road : a search for American character /",1994. +GW - ENGL-22,ENGL 2100/AMST 2490/WGSS 3170 - Chu - Fall 2023,"Chu, Patricia",ENGL 2100/AMST 2490/WGSS 3170,,9781439920534; 1439920532; 9781439920510; 1439920516; 1439920524; 9781439920527,passing for perfect college impostors and other model minorities - ninh,Temple University Press,Passing for perfect : college impostors and other model minorities /,2021. +GW - ENGL-22,ENGL 2460 - Hartman - Fall 2023,"Hartman, Virginia",ENGL 2460,,0063244306; 9780063244306,no sweet without brine poems - mani,Amistad an imprint of HarperCollins Publishers,No sweet without brine : poems /,[2023] +GW - ENGL-22,ENGL 2460 - Hartman - Fall 2023,"Hartman, Virginia",ENGL 2460,,022661655X; 9780226616551; 022661669X; 9780226616698; 9780226616728; 022661672X,writing fiction a guide to narrative craft - burr,The University of Chicago Press,Writing fiction : a guide to narrative craft /,2019. +GW - ENGL-22,ENGL 2460 - Hartman - Fall 2023,"Hartman, Virginia",ENGL 2460,,0374610487; 9780374610487; 0374613044; 9780374613044,absolution - mcde,Farrar Straus and Giroux,Absolution /,2023. +GW - ENGL-22,ENGL 2711W - Sugathan - Fall 2023,"Sugathan, Leenu",ENGL 2711W,,9789382579014; 938257901X,this side that side restorying partition graphic narratives from pakistan india bangladesh -,Yoda Press,"This side, that side : restorying partition : graphic narratives from Pakistan, India, Bangladesh /",[2013] +GW - FILM-2098,FILM 2153 - Shull - Fall 2023,"Shull, Michael",FILM 2153,,1281346470; 9781281346476; 9786611346478; 6611346473; 0191518182; 9780191518188; 0198742428; 9780198742425; 0198112572; 9780198112570,oxford history of world cinema -,Oxford University Press,The Oxford history of world cinema,1996. +GW - FILM-2098,FILM 2153 - Shull - Fall 2023,"Shull, Michael",FILM 2153,,9780198112570; 0198112572; 9780198742425; 0198742428,oxford history of world cinema -,Oxford University Press,The Oxford history of world cinema /,1996. +GW - GEOG-112,GEOG 1002 - Shiklomanov - Fall 2023,"Shiklomanov, Nikolay",GEOG 1002,,0135827140; 9780135827147,mcknight s physical geography a landscape appreciation - hess,Pearson,McKnight's physical geography : a landscape appreciation /,[2022] +GW - GEOG-112,GEOG 1003 - Odell - Fall 2023,"Odell, Scott",GEOG 1003,,1405189320; 9781405189323; 9781405189316; 1405189312; 9781118241059; 1118241053; 9781118241004; 1118241002; 9781118240984; 1118240987; 1118240952; 9781118240953; 1118240936; 9781118240939,introduction to human environment geography local dynamics and global processes - mose,Wiley-Blackwell,An introduction to human-environment geography : local dynamics and global processes /,[2014] +GW - GEOG-112,GEOG 2104 - Hinton - Fall 2023,"Hinton, Richard",GEOG 2104,,1453337628; 9781453337622,essentials of geographic information systems - shin,FlatWorld,Essentials of geographic information systems /,[2022] +GW - GEOG-112,GEOG 2120 - Price - Fall 2023,"Price, Marie",GEOG 2120,,0134898397; 9780134898391,globalization and diversity geography of a changing world - pric,Pearson Education Inc,Globalization and diversity : geography of a changing world /,[2020] +GW - GEOL-65,GEOL 1005 - Nassar - Fall 2023,"Nassar, Peter",GEOL 1005,,1264094728; 9781264094721; 1266715967; 9781266715969; 9781266716768; 1266716769,environmental geology - mont,McGraw Hill LLC,Environmental geology /,[2023] +GW - GER-119,GER 3185 - Stein - Fall 2023,"Stein, Mary Beth",GER 3185,,9780151007646; 0151007640,crabwalk - gras,Harcourt,Crabwalk /,[2002] +GW - GER-119,GER 3185 - Stein - Fall 2023,"Stein, Mary Beth",GER 3185,,9780226041278; 0226041271,bronstein s children - beck,University of Chicago Press,Bronstein's children /,1999. +GW - GER-119,GER 3185 - Stein - Fall 2023,"Stein, Mary Beth",GER 3185,,9780374103743; 0374103747,in my brother s shadow a life and death in the ss - timm,Farrar Straus Giroux,In my brother's shadow : a life and death in the SS /,[2005] +GW - HIST-51,HIST 1310 - Goetz - Fall 2023,"Goetz, Matthew",HIST 1310,,0357022319; 9780357022313; 0357020758; 9780357020753,liberty equality power a history of the american people to 1877 volume 1 - murr,Cengage,"Liberty, equality, power : a history of the American people.",2018 +GW - HIST-51,HIST 1310 - Goetz - Fall 2023,"Goetz, Matthew",HIST 1310,,9780670022960; 0670022969,american nations a history of the eleven rival regional cultures of north america - wood,Viking,American nations : a history of the eleven rival regional cultures of North America /,2011. +GW - HIST-51,HIST 3186 - Harrison - Fall 2023,"Harrison, Hope",HIST 3186,,9781474262415; 1474262414; 1474262422; 9781474262422; 9781474262439; 1474262430; 9781474262446; 1474262449,germany since 1945 politics culture and society - cald,Bloomsbury Academic,"Germany since 1945 : politics, culture, and society /",2018. +GW - HIST-51,HIST 3303 - Goetz - Fall 2023,"Goetz, Matthew",HIST 3303,,1138892041; 9781138892040; 113889205X; 9781138892057; 9781315709369; 1315709368,revolutionary america 1763 1815 a political history - cogl,Routledge Taylor & Francis Group,"Revolutionary America, 1763-1815 : a political history /",2017. +GW - HIST-51,HIST 3303 - Goetz - Fall 2023,"Goetz, Matthew",HIST 3303,,9780415537568; 0415537568; 9780415537575; 0415537576,american revolution reader -,Routledge,The American Revolution reader /,2014. +GW - HIST-51,HIST 3304 - Brunsman - Fall 2023,"Brunsman, Denver",HIST 3304,,,lives bound together slavery at washington s mount vernon - scho,,Lives bound together: slavery at Washington's Mount Vernon,2016 +GW - HIST-51,HIST 3304 - Brunsman - Fall 2023,"Brunsman, Denver",HIST 3304,,9780393060324; 0393060322,revolution mapping the road to american independence 1755 1783 - rich,,Revolution : mapping the road to American independence 1755-1783,2015 +GW - HIST-51,HIST 3304 - Brunsman - Fall 2023,"Brunsman, Denver",HIST 3304,,9780674246386; 0674246381,washington at the plow the founding farmer and the question of slavery - rags,,Washington at the plow: the founding farmer and the question of slavery,2021 +GW - HIST-51,HIST 3304 - Brunsman - Fall 2023,"Brunsman, Denver",HIST 3304,,9780735224100; 0735224102,"you never forget your first a biography of george washington - coe,",,You never forget your first : a biography of George Washington,2020 +GW - HIST-51,HIST 3304 - Brunsman - Fall 2023,"Brunsman, Denver",HIST 3304,,9781335449511; 1335449515,first family - good,,First family,2023 +GW - HIST-51,HIST 3304 - Brunsman - Fall 2023,"Brunsman, Denver",HIST 3304,,9781555952686; 1555952682,george washington collection fine and decorative arts at mount vernon - cado,Distributed in the United States by National Book Networks; Hudson Hills Press,The George Washington collection : fine and decorative arts at Mount Vernon /,[2006] +GW - HIST-51,HIST 3324 - Klemek - Fall 2023,"Klemek, Christopher",HIST 3324,,9780252008801; 0252008804,lives of their own blacks italians and poles in pittsburgh 1900 1960 - bodn,University of Illinois Press,"Lives of their own : Blacks, Italians, and Poles in Pittsburgh, 1900-1960 /",[1982] +GW - HIST-51,HIST 3324 - Klemek - Fall 2023,"Klemek, Christopher",HIST 3324,,9780252013782; 0252013786,work and community in the jungle chicago s packinghouse workers 1894 1922 - barr,University of Illinois Press,"Work and community in the jungle : Chicago's packinghouse workers, 1894-1922 /",[1987] +GW - HIST-51,HIST 3324 - Klemek - Fall 2023,"Klemek, Christopher",HIST 3324,,9780300048483; 0300048483,constructing chicago - blue,Yale University Press,Constructing Chicago /,[1991] +GW - HIST-51,HIST 3324 - Klemek - Fall 2023,"Klemek, Christopher",HIST 3324,,9780521343749; 0521343747; 9780521387392; 0521387396,new face on the countryside indians colonists and slaves in south atlantic forests 1500 1800 - silv,Cambridge University Press,"A new face on the countryside : Indians, colonists, and slaves in South Atlantic forests, 1500-1800 /",1990. +GW - HIST-51,HIST 3324 - Klemek - Fall 2023,"Klemek, Christopher",HIST 3324,,9780812277470; 0812277473,roots of the american working class the industrialization of crafts in newark 1800 1860 - hirs,University of Pennsylvania Press,"Roots of the American working class : the industrialization of crafts in Newark, 1800-1860 /",1978. +GW - HIST-51,HIST 3324 - Klemek - Fall 2023,"Klemek, Christopher",HIST 3324,,9780938420750; 0938420755,chesapeake an environmental biography - wenn,Maryland Historical Society,The Chesapeake : an environmental biography /,[2001] +GW - HIST-51,HIST 6030 - Harrison - Fall 2023,"Harrison, Hope",HIST 6030,,0197575501; 9780197575505; 9780197575529; 0197575528,sparks china s underground historians and their battle for the future - john,Oxford University Press,Sparks : China's underground historians and their battle for the future /,[2023] +GW - HIST-51,HIST 6602 - Hopkins - Fall 2023,"Hopkins, Benjamin",HIST 6602,,9780226767765; 0226767760; 9780226767772; 0226767779,"comfort women sexual violence and postcolonial memory in korea and japan - soh,",University of Chicago Press,The comfort women : sexual violence and postcolonial memory in Korea and Japan /,[2008] +GW - HIST-51,HIST 6602 - Hopkins - Fall 2023,"Hopkins, Benjamin",HIST 6602,,9780393320275; 0393320278,embracing defeat japan in the wake of world war ii - dowe,WW Norton and Company/New Press,Embracing defeat : Japan in the wake of World War II /,2000. +GW - HIST-51,HIST 6602 - Hopkins - Fall 2023,"Hopkins, Benjamin",HIST 6602,,9780747558040; 0747558043,long shadows truth lies and history - pari,Bloomsbury,"Long shadows : truth, lies and history /",2002. +GW - HIST-51,HIST 6602 - Hopkins - Fall 2023,"Hopkins, Benjamin",HIST 6602,,9780802777683; 0802777686; 9780802779236; 0802779239,mao s great famine the history of china s most devastating catastrophe 1958 1962 - diko,Walker and Company,"Mao's great famine : the history of China's most devastating catastrophe, 1958-1962 /",2010. +GW - HOL-1570,HOL 8724 - Nakamura - Fall 2023,"Nakamura, Yoshie",HOL 8724,,1506386709; 9781506386706; 1506386768; 9781506386768; 9781506386683; 1506386687,research design qualitative quantitative and mixed methods approaches - cres,SAGE Publications Inc,"Research design : qualitative, quantitative, and mixed methods approaches /",[2018] +GW - HOL-1570,HOL 8724 - Nakamura - Fall 2023,"Nakamura, Yoshie",HOL 8724,,9781433832178; 1433832178; 9781433832161; 143383216X; 9781433832154; 1433832151,publication manual of the american psychological association the official guide to apa style -,American Psychological Association,Publication manual of the American Psychological Association : the official guide to APA style.,2020. +GW - HOL-1570,HOL 8724 - Nakamura - Fall 2023,"Nakamura, Yoshie",HOL 8724,,9781506330204; 1506330207,qualitative inquiry research design choosing among five approaches - cres,SAGE,Qualitative inquiry & research design : choosing among five approaches /,2018. +GW - IAFF-58,IAFF 2190W - Beyoghlow - Fall 2023,"Beyoghlow, Kamal",IAFF 2190W,,1071844466; 9781071844465; 9781071844489; 1071844482,middle east -,CQ Press; Sage,The Middle East /,2023. +GW - IAFF-58,IAFF 3172 - Hakizimana - Fall 2023,"Hakizimana, Gedeon",IAFF 3172,,0745687210; 9780745687216; 0745687229; 9780745687223,contemporary conflict resolution the prevention management and transformation of deadly conflicts - rams,Polity Press,"Contemporary conflict resolution : the prevention, management and transformation of deadly conflicts /",2016. +GW - IAFF-58,IAFF 3172 - Lazarus - Fall 2023,"Lazarus, Edward",IAFF 3172,,0745687210; 9780745687216; 0745687229; 9780745687223,contemporary conflict resolution the prevention management and transformation of deadly conflicts - rams,Polity Press,"Contemporary conflict resolution : the prevention, management and transformation of deadly conflicts /",2016. +GW - IAFF-58,IAFF 3172 - Lazarus - Fall 2023,"Lazarus, Edward",IAFF 3172,,9780072855357; 0072855355,social conflict escalation stalemate and settlement - prui,McGraw-Hill,"Social conflict : escalation, stalemate, and settlement.",[2004] +GW - IAFF-58,IAFF 3182 - Sutter - Fall 2023,"Sutter, Robert",IAFF 3182,,150953749X; 9781509537495; 9781509537518; 1509537511,world according to china - econ,Polity,The world according to China /,2022. +GW - IAFF-58,IAFF 3182 - Sutter - Fall 2023,"Sutter, Robert",IAFF 3182,,1509546510; 9781509546510; 9781509546527; 1509546529,china s leaders from mao to now - sham,Polity,China's leaders : from Mao to now /,2021. +GW - IAFF-58,IAFF 3182 - Sutter - Fall 2023,"Sutter, Robert",IAFF 3182,,9781503634152; 1503634159; 9781503634145; 1503634140,dragon roars back transformational leaders and dynamics of chinese foreign policy - zhao,Stanford University Press,The dragon roars back : transformational leaders and dynamics of Chinese foreign policy /,[2023] +GW - IAFF-58,IAFF 3186 - Keidel - Fall 2023,"Keidel, Albert",IAFF 3186,,9789811230486; 981123048X,china s economic challenge unconventional success - keid,World Scientific Publishing Co,China's economic challenge: unconventional success,2022 +GW - IAFF-58,IAFF 6118 - Bennett - Fall 2023,"Bennett, Yan",IAFF 6118,,9789280812305; 9280812300; 9789280871999; 9280871994,transforming the united nations system designs for a workable world - schw,United Nations University Press,Transforming the United Nations system : designs for a workable world /,[2013] +GW - IAFF-58,IAFF 6118 - Gray - Fall 2023,"Gray, Gordon",IAFF 6188,,1250217032; 9781250217035; 9781250217042; 1250217040,losing the long game the false promise of regime change in the middle east - gord,St Martin's Press,Losing the long game : the false promise of regime change in the Middle East /,2020. +GW - IAFF-58,IAFF 6118 - Gray - Fall 2023,"Gray, Gordon",IAFF 6188,,9780374299286; 0374299285,statecraft and how to restore america s standing in the world - ross,Farrar Straus and Giroux,Statecraft : and how to restore America's standing in the world /,2007. +GW - IAFF-58,IAFF 6358/3187 - Abente Brun - Fall 2023,"Abente Brun, Diego",IAFF 6358/3187,,0190611340; 9780190611347,democracy in latin america political change in comparative perspective - smit,Oxford University Press,Democracy in Latin America : political change in comparative perspective /,[2017] +GW - IAFF-58,IAFF 6358/3187 - Abente Brun - Fall 2023,"Abente Brun, Diego",IAFF 6358/3187,,0190674652; 9780190674656; 0190674679; 9780190674670,modern latin america - smit,Oxford University Press,Modern Latin America /,[2019] +GW - IAFF-58,IAFF 6358/3187 - Abente Brun - Fall 2023,"Abente Brun, Diego",IAFF 6358/3187,,1509540016; 9781509540013; 1509540024; 9781509540020; 9781509540037; 1509540032,new latin america - cald,Polity Press,The new Latin America /,[2020] +GW - IAFF-58,IAFF 6358/3187 - Abente Brun - Fall 2023,"Abente Brun, Diego",IAFF 6358/3187,,9781588267610; 158826761X; 9781588267863; 1588267865,quality of democracy in latin america -,Lynne Rienner Publishers,The quality of democracy in Latin America /,2011. +GW - IBUS-1471,IBUS 3001 - Kulathunga - Fall 2023,"Kulathunga, Anoma",IBUS 3001,,9781264383870; 1264383878; 9781260387544; 1260387542,international business competing in the global marketplace - hill,McGraw-Hill/Irwin,International business : competing in the global marketplace /,[2023] +GW - MAE-318,MAE 3166W - Leng - Fall 2023,"Leng, Yongsheng",MAE 3166,,0470419970; 9780470419977; 0470556730; 9780470556733,materials science and engineering an introduction - call,John Wiley & Sons Inc,Materials science and engineering : an introduction /,[2010] +GW - MATH-180,MATH 1007 - Fall 2023,"Foroozan, Farshad; Pohrivchak, Michael; Schmitt, William",MATH 1007,,9781498798860; 1498798861,mathematics of politics - robi,CRC Press Taylor & Francis group,The mathematics of politics /,[2017] +GW - MATH-180,MATH 1009 - Fall 2023,"Dunn, Eric; Przytycki, Jozef",MATH 1009,,9781464124730; 1464124736; 9781464124839; 1464124833,for all practical purposes mathematical literacy in today s world -,WH Freeman and Co,For all practical purposes : mathematical literacy in today's world /,2016. +GW - MATH-180,MATH 1051 - Foroozan - Fall 2023,"Foroozan, Farshad",MATH 1051,,1319055702; 9781319055707,for all practical purposes mathematical literacy in today s world -,Macmillan Learning WH Freeman and Company,For all practical purposes : mathematical literacy in today's world /,[2022] +GW - MATH-180,MATH 1220 - Roosevelt - Fall 2023,"Roosevelt, Sharon",MATH 1220,,9780321671042; 032167104X,just in time algebra and trigonometry for calculus - muel,Pearson Education,Just-in-time algebra and trigonometry for calculus /,[2013] +GW - ORSC-1465,ORSC 1109 - Costanza - Fall 2023,"Costanza, David",ORSC 1109,,0132729946; 9780132729949; 0273765604; 9780273765608; 1299924409; 9781299924406,organizational theory design and change - jone,Pearson,"Organizational theory, design, and change /",[2013] +GW - ORSC-1465,ORSC 6209 - Debebe - Fall 2023,"Debebe, Gelaye",ORSC 6209,,0875845630; 9780875845630,mary parker follett prophet of management a celebration of writings from the 1920s -,Harvard Business School Press,Mary Parker Follett--prophet of management : a celebration of writings from the 1920s /,c1995. +GW - ORSC-1465,ORSC 6209 - Debebe - Fall 2023,"Debebe, Gelaye",ORSC 6209,,9780132663540; 0132663546; 9780138990220; 0138990220,organizations rational natural and open systems - scot,Prentice Hall,"Organizations : rational, natural, and open systems /",[1998] +GW - ORSC-1465,ORSC 6243/2143 - Debebe - Fall 2023,"Debebe, Gelaye",ORSC 6243/2143,,0471174661; 9780471174660,dialogue rediscover the transforming power of conversation - elli,J Wiley & Sons,Dialogue : rediscover the transforming power of conversation /,[1998] +GW - PAD-61,PPPA 6006 - Linquiti - Fall 2023,"Linquiti, Peter",PPPA 6006,,1544372604; 9781544372600; 9781544372631; 1544372639; 9781544372617; 1544372612,rebooting policy analysis strengthening the foundation expanding the scope - linq,Sage Publications/CQ Press,"Rebooting policy analysis : strengthening the foundation, expanding the scope /",[2023] +GW - PAD-61,PPPA 6006 - Linquiti - Fall 2023,"Linquiti, Peter",PPPA 6006,,9781544372600; 1544372604,rebooting policy analysis strengthening the foundation expanding the scope -,,"Rebooting Policy Analysis: Strengthening the Foundation, Expanding the Scope",9999 +GW - PAD-61,PPPA 6066 - Linquiti - Fall 2023,"Linquiti, Peter",PPPA 6066,,,economics and the environment - eban,Wiley,Economics and the environment,2020 +GW - PERS-2110,PERS 1001 - Valamotamed - Fall 2023,"Valamotamed, Maziar",PERS 1001,,9087282176; 9789087282172; 9789400601949; 9400601948,persian in use an elementary textbook of language and culture - sedi,Leiden University Press,Persian in use : an elementary textbook of language and culture /,[2015] +GW - PHIL-71,PHIL 2133 - Venner - Fall 2023,"Venner, Christopher",PHIL 2133,,1570754322; 9781570754326,mohandas gandhi essential writings - gand,Orbis Books,Mohandas Gandhi : essential writings /,2002. +GW - PHYS-233,PHYS 3165 - White - Fall 2023,"White, Gary",PHYS 3165,,,foundations of electromagnetic theory - reit,Addison-Wesley Pub Company,"Foundations of electromagnetic theory,",[1960] +GW - PHYS-233,PHYS 3165 - White - Fall 2023,"White, Gary",PHYS 3165,,9780201500646; 0201500647; 9780201510034; 0201510030; 9780201510041; 0201510049; 9780201510058; 0201510057; 0201510033,feynman lectures on physics - feyn,Addison-Wesley,The Feynman lectures on physics /,[1989] +GW - PHYS-233,PHYS 3165 - White - Fall 2023,"White, Gary",PHYS 3165,,9780393962512; 0393962512,div grad curl and all that an informal text on vector calculus - sche,WW Norton,"Div, grad, curl, and all that : an informal text on vector calculus /",[1992] +GW - PPPA-1557,PPPA 6053 - Niu - Fall 2023,"Niu, Meili",PPPA 6053,,1506326846; 9781506326849; 9781506326863; 1506326862,financial management for public health and not for profit organizations - fink,CQ Press an imprint of Sage Publications Incorporated,"Financial management for public, health, and not-for-profit organizations /",[2017] +GW - PSC-20,PSC 1001 - Croatti - Fall 2023,"Croatti, Mark",PSC 1001,,039342295X; 9780393422955; 9780393532869; 0393532860,cases and concepts in comparative politics - o'ne,WW Norton & Company,Cases and concepts in comparative politics /,[2021] +GW - PSC-20,PSC 1001 - Kramon - Fall 2023,"Kramon, Eric",PSC 1001,,0134562674; 9780134562674,comparative politics - samu,Pearson,Comparative politics /,[2018] +GW - PSC-20,PSC 1001 - Morgan - Fall 2023,"Morgan, Kimberly",PSC 1001,,039342295X; 9780393422955; 9780393532869; 0393532860,cases and concepts in comparative politics - o'ne,WW Norton & Company,Cases and concepts in comparative politics /,[2021] +GW - PSC-20,PSC 2440 - Olson - Fall 2023,"Olson, Lawrence",PSC 2440,,0198707568; 9780198707561,international relations theories discipline and diversity -,Oxford University Press,International relations theories : discipline and diversity /,[2016] +GW - PSC-20,PSC 2449 - Beyoghlow - Fall 2023,"Beyoghlow, Kamal",PSC 2449,,9780393920109; 0393920100,spread of nuclear weapons an enduring debate - saga,WW Norton & Co,The spread of nuclear weapons : an enduring debate /,2013. +GW - PSC-20,PSC 2476 - Karam - Fall 2023,"Karam, Joyce",PSC 2476,,0205968139; 9780205968138,history of the arab israeli conflict - bick,Routledge,A history of the Arab-Israeli conflict /,2016. +GW - PSC-20,PSC 2476 - Karam - Fall 2023,"Karam, Joyce",PSC 2476,,9781596913431; 1596913436,lemon tree an arab a jew and the heart of the middle east - tola,Bloomsbury,"The lemon tree : an Arab, a Jew, and the heart of the Middle East /",2007. +GW - PSC-20,PSC 6370 - Dickson - Fall 2023,"Dickson, Bruce",PSC 6370,,0679645381; 9780679645382; 0679643478; 9780679643470,wealth and power china s long march to the twenty first century - sche,Random House,Wealth and power : China's long march to the twenty-first century /,2013 +GW - PSC-20,PSC 6370 - Dickson - Fall 2023,"Dickson, Bruce",PSC 6370,,9780679643470; 0679643478; 9780812976250; 0812976258; 9780679645382; 0679645381,wealth and power china s long march to the twenty first century - sche,Random House,Wealth and power : China's long march to the twenty-first century /,2013. +GW - PSC-20,PSC 6372 - Sutter - Fall 2023,"Sutter, Robert",PSC 6372,,150953749X; 9781509537495; 9781509537518; 1509537511,world according to china - econ,Polity,The world according to China /,2022. +GW - PSC-20,PSC 6372 - Sutter - Fall 2023,"Sutter, Robert",PSC 6372,,9781503634152; 1503634159; 9781503634145; 1503634140,dragon roars back transformational leaders and dynamics of chinese foreign policy - zhao,Stanford University Press,The dragon roars back : transformational leaders and dynamics of Chinese foreign policy /,[2023] +GW - PSTD-1546,PSTD 1010 - McCarthy - Fall 2023,"McCarthy, Eli",PSTD 1010,,0190217138; 9780190217136,invitation to peace studies - wood,Oxford University Press,Invitation to peace studies /,2016. +GW - PSTD-1546,PSTD 1010 - McCarthy - Fall 2023,"McCarthy, Eli",PSTD 1010,,1561483907; 9781561483907,little book of conflict transformation - lede,Good Books,The little book of conflict transformation /,[2003] +GW - PSTD-1546,PSTD 1010 - McCarthy - Fall 2023,"McCarthy, Eli",PSTD 1010,,1561488232; 9781561488230; 168099378X; 9781680993783,little book of restorative justice - zehr,Good Books,The little book of restorative justice /,[2015] +GW - PSTD-1546,PSTD 1010 - McCarthy - Fall 2023,"McCarthy, Eli",PSTD 1010,,1680993437; 9781680993431; 9781680993448; 1680993445,little book of race and restorative justice black lives healing and us social transformation - davi,Good Books,"The little book of race and restorative justice : black lives, healing, and US social transformation /",2019. +GW - PSYC-63,PSYC 1001 - Calabrese - Fall 2023,"Calabrese, Sarah",PSYC 1001,,0135198003; 9780135198001; 1292090588; 9781292090580,psychology - cicc,Pearson,Psychology /,[2020] +GW - PSYC-63,PSYC 2012 - Stock - Fall 2023,"Stock, Michelle",PSYC 2012,,0137633645; 9780137633647; 9780137633616; 0137633610,social psychology - aron,Pearson,Social psychology /,[2022] +GW - PSYC-63,PSYC 2013 - Forssell - Fall 2023,"Forssell, Stephen",PSYC 2013,,1071851772; 9781071851777,lifespan development in context a topical approach - kuth,SAGE,Lifespan development in context : a topical approach /,[2024] +GW - PSYC-63,PSYC 2014 - Dopkins - Fall 2023,"Dopkins, Stephen",PSYC 2014,,9780716756675; 0716756676; 9781464128769; 1464128766,cognition theory and practice - revl,Worth Publishers,Cognition : theory and practice /,©2013. +GW - PSYC-63,PSYC 2015 - Abuirqeba - Fall 2023,"Abuirqeba, Haedar",PSYC 2015,,1319254381; 9781319254384,an introduction to brain and behavior - kolb,Worth Publishers,An introduction to brain and behavior /,2023. +GW - PSYC-63,PSYC 2101 - Keller - Fall 2023,"Keller, Donald",PSYC 2101,,1453335501; 9781453335505,research methods core concepts and skills for psychology - pric,FlatWorld Knowledge,Research methods : core concepts and skills for psychology /,[2021] +GW - PSYC-63,PSYC 2101 - Moore - Fall 2023,"Moore, Philip",PSYC 2101,,1260718905; 9781260718904; 1260883051; 9781260883053; 9781260883046; 1260883043; 9781260883077; 1260883078,methods in behavioral research - cozb,McGraw Hill LLC,Methods in behavioral research /,[2024] +GW - PSYC-63,PSYC 2508 - Schell - Fall 2023,"Schell, Dennis",PSYC 2508,,,man s search for meaning an introduction to logotherapy - fran,Beacon Press,Man's search for meaning; an introduction to logotherapy.,[1963] +GW - PSYC-63,PSYC 2508 - Schell - Fall 2023,"Schell, Dennis",PSYC 2508,,1480402001; 9781480402003,art of loving - from,Open Road Integrated Media,Art of loving /,1956. +GW - PSYC-63,PSYC 2508 - Schell - Fall 2023,"Schell, Dennis",PSYC 2508,,9780395081341; 0395081343; 9780395084090; 0395084091,on becoming a person a therapist s view of psychotherapy - roge,Houghton Mifflin Company,On Becoming a Person : A Therapist's View of Psychotherapy /,[1961] +GW - PSYC-63,PSYC 2508 - Schell - Fall 2023,"Schell, Dennis",PSYC 2508,,9780471293095; 0471293091,toward a psychology of being - masl,J Wiley and Sons,Toward a psychology of being /,[1999] +GW - PUBH-306,PUBH 1101 - Fall 2023,,PUBH 1101,,1284118444; 9781284118445,public health 101 improving community health - rieg,Jones & Bartlett Learning,Public health 101 : improving community health /,[2019] +GW - PUBH-306,PUBH 1101 - Fall 2023,,PUBH 1101,,1284118460; 9781284118469; 1284118444; 9781284118445,public health 101 improving community health - rieg,Jones & Bartlett Learning,Public health 101 : improving community health /,2019. +GW - PUBH-306,PUBH 3130 - Musumeci - Fall 2023,,PUBH 3130,,1119815681; 9781119815686; 1119815738; 9781119815730; 9781119788577; 1119788579; 9781119815716; 1119815711,health economics and financing - getz,John Wiley and Sons Incorporated,Health economics and financing /,[2022] +GW - PUBH-306,PUBH 6003 - Bernat - Fall 2023,"Bernat, Debra",PUBH 6003,,0323552293; 9780323552295,gordis epidemiology - cele,Elsevier,Gordis Epidemiology /,[2019] +GW - PUBH-306,PUBH 6003 - Fall 2023,"Bernat, Debra; Young, Heather",PUBH 6003,,0323552293; 9780323552295,gordis epidemiology - cele,Elsevier,Gordis Epidemiology /,[2019] +GW - REL-226,REL 1003 - Eisen - Fall 2023,"Eisen, Robert",REL 1003,,0197543782; 9780197543788; 9780197546499; 0197546498; 0197543790; 9780197543795; 9780197570722; 0197570720,invitation to world religions - brod,Oxford University Press,Invitation to world religions /,[2022] +GW - SLAV-1475,SLAV 1001 - Fall 2023,"Ovtcharenko, Elena; Shatalina, Galina",SLAV 1001,,0367612801; 9780367612801; 9781003104971; 1003104975,голоса a basic course in russian - robi,Routledge,Голоса : a basic course in Russian /,2023. +GW - SMPA-300,SMPA 2112 - Kelley - Fall 2023,"Kelley, Thomas",SMPA 2112,,0761165290; 9780761165293; 0761163239; 9780761163237,how to shoot video that doesn t suck - stoc,Workman Pub Co,How to shoot video that doesn't suck,c2011. +GW - SMPA-300,SMPA 2113 - Osder - Fall 2023,"Osder, Jason",SMPA 2113,,9780133597271; 013359727X; 9780321965516; 0321965515,don t make me think revisited a common sense approach to web usability - krug,New Riders Peachpit Pearson Education,"Don't make me think, revisited : a common sense approach to Web usability /",2014. +GW - SOC-64,SOC 1001 - Kekelia - Fall 2023,"KeKelia, Elene",SOC,,,presentation of self in everyday life - goff,Doubleday,The presentation of self in everyday life /,1959. +GW - SOC-64,SOC 1001 - Kekelia - Fall 2023,"KeKelia, Elene",SOC,,0393428214; 9780393428216; 9780393537963; 039353796X; 0393538028; 9780393538021,introduction to sociology - gidd,WW Norton and Company,Introduction to sociology /,2020. +GW - SOC-64,SOC 1003 - Axelrod - Fall 2023,"Axelrod, Brooke",SOC 1003,,1071841904; 9781071841907; 9781071841891; 1071841890,criminal in justice a critical introduction - fich,SAGE Publications Inc,Criminal (in)justice : a critical introduction /,[2023] +GW - SOC-64,SOC 1003 - Axelrod - Fall 2023,"Axelrod, Brooke",SOC 1003,,1620971941; 9781620971949,new jim crow mass incarceration in the age of colorblindness - alex,The New Press,The new Jim Crow : mass incarceration in the age of colorblindness /,[2020]. +GW - SOC-64,SOC 1003 - Fall 2023,"Goliday, Sean; Johnson, Andrea",SOC 1003,,1544398735; 9781544398730; 9781544398747; 1544398743; 9781544398754; 1544398751; 9781544398761; 154439876X,introduction to criminal justice systems diversity and change - renn,SAGE Publications Inc,"Introduction to criminal justice : systems, diversity, and change /",[2022] +GW - SOC-64,SOC 2103 - Brantley - Fall 2023,"Brantley, Jill",SOC 2103,,,,,, +GW - SOC-64,SOC 2103 - Brantley - Fall 2023,"Brantley, Jill",SOC 2103,,1577663071; 9781577663072,masters of sociological thought ideas in historical and social context - cose,,Masters of sociological thought : ideas in historical and social context,1977 +GW - SOC-64,SOC 2103 - Lengermann - Fall 2023,"Lengermann, Patricia",SOC 2103,,1577665090; 9781577665090,women founders sociology and social theory 1830 1930 a text reader -,Waveland Press,"The women founders : sociology and social theory, 1830-1930 : a text/reader /",2007. +GW - SOC-64,SOC 2135 - Umeh - Fall 2023,"Umeh, Zimife",SOC 2135,,1506361021; 9781506361024,juvenile delinquency pathways and prevention - mall,Sage Publications Incorporated,Juvenile delinquency : pathways and prevention /,[2019] +GW - SOC-64,SOC 2184 - Cooper - Fall 2023,"Cooper, Chiara",SOC 2184,,9781324001706; 1324001704; 0393541339; 9780393541335; 9781324001713; 1324001712,sexual citizens a landmark study of sex power and assault on campus - hirs,WW Norton & Company,"Sexual citizens : a landmark study of sex, power, and assault on campus /",[2020] +GW - SOC-64,SOC 2185 - Eliason - Fall 2023,"Eliason, Kristin",SOC 2185,,1543829333; 9781543829334; 9781543829341; 1543829341,essentials of victimology crime victims theories controversies and victims rights - yage,Aspen Publishing,"Essentials of victimology : crime victims, theories, controversies, and victims' rights /",[2022] +GW - SOC-64,SOC 2189 - Umeh - Fall 2023,"Umeh, Zimife",SOC 2189,,1611638682; 9781611638684; 9781531000134; 1531000134,rethinking the reentry paradigm a blueprint for action - hous,Carolina Academic Press,Rethinking the reentry paradigm : a blueprint for action /,[2023] +GW - SOC-64,SOC 6238 - Silver - Fall 2023,"Silver, Hilary",SOC 6238,,1119527368; 9781119527367; 9781119527336; 1119527333; 9781119527381; 1119527384,classical sociological theory -,John Wiley & Sons Ltd,Classical sociological theory /,2022. +GW - SOC-64,SOC 6238 - Silver - Fall 2023,"Silver, Hilary",SOC 6238,,1544354827; 9781544354828; 9781544354835; 1544354835,classical sociological theory - ritz,SAGE,Classical sociological theory.,2020. +GW - SPAN-191,SPAN 1001 - Leyva - Fall 2023,,SPAN 1001,,0135162904; 9780135162903,gente a task based approach to learning spanish - fuen,Pearson,Gente : a task-based approach to learning Spanish /,2020. +GW - SPAN-191,SPAN 1002 - Pichs - Fall 2023,"Pichs, Ariadna",SPAN 1002,,0135162904; 9780135162903,gente a task based approach to learning spanish - fuen,Pearson,Gente : a task-based approach to learning Spanish /,2020. +GW - SPAN-191,SPAN 1012 - Goldenberg - Fall 2023,"Goldenberg, Carola",SPAN 1012,,0135162904; 9780135162903,gente a task based approach to learning spanish - fuen,Pearson,Gente : a task-based approach to learning Spanish /,2020. +GW - SPAN-191,SPAN 1013 - Fall 2023,"Andrade Fernandez, Ricardo; Hetrovicz, Lauren",SPAN 1013,,0135162904; 9780135162903,gente a task based approach to learning spanish - fuen,Pearson,Gente : a task-based approach to learning Spanish /,2020. +GW - SPAN-191,SPAN 1014 - Fall 2023,"Bistline-Bonilla, Christine; Goldenberg, Carola; Hetrovicz, Lauren; Parker, Edward",SPAN 1014,,0135162904; 9780135162903,gente a task based approach to learning spanish - fuen,Pearson,Gente : a task-based approach to learning Spanish /,2020. +GW - SPAN-191,SPAN 2005 - Fall 2023,,SPAN 2005,,1793558272; 9781793558275,puntos de encuentro a cross cultural approach to advanced spanish - fuen,Cognella Inc,Puntos de encuentro : a cross-cultural approach to advanced Spanish /,[2023] +GW - SPAN-191,SPAN 2006 - Fall 2023,,SPAN 2006,,1793558272; 9781793558275,puntos de encuentro a cross cultural approach to advanced spanish - fuen,Cognella Inc,Puntos de encuentro : a cross-cultural approach to advanced Spanish /,[2023] +GW - SPAN-191,SPAN 2006 - Valdivia Ruiz - Fall 2023,"Valdivia Ruiz, Victor",SPAN 2006,,1118744861; 9781118744864; 111938608X; 9781119386087; 9781119321477; 1119321476,conversaciones escritas lectura y redaccion en contexto - poto,Wiley,Conversaciones escritas : lectura y redacción en contexto /,[2017] +GW - SPHR-114,SLHS 1011 - Fall 2023,"Dorn, Melanie-Joy; McKeon, Matthew",SLHS 1011,,1597567221; 9781597567220,your voice is your business the science and art of communication - baro,Plural Publishing Inc,Your voice is your business : the science and art of communication /,[2016] +GW - SPHR-114,SLHS 1011 - Fall 2023,"Dorn, Melanie-Joy; McKeon, Matthew",SLHS 1011,,1597569526; 9781597569521; 1597567221; 9781597567220,your voice is your business the science and art of communication - baro,Plural Publishing Inc,Your voice is your business : the science and art of communication /,2016. +GW - SPHR-114,SLHS 1071 - Fall 2023,"Barrett, Laura; Dorn, Melanie-Joy",SLHS 1071,,1337559571; 9781337559577,introduction to language - from,Cengage,An introduction to language /,2019 +GW - SPHR-114,SLHS 2104/2104W - Cardman - Fall 2023,"Cardman, Erin",SLHS 2104/2104W,,0134801474; 9780134801476; 0134800311; 9780134800318,introduction to communication disorders a lifespan evidence based perspective - owen,Pearson,Introduction to communication disorders : a lifespan evidence-based perspective /,[2019] +GW - STAT-227,STAT 1051 - Zhang - Fall 2023,"Zhang, Xiaoke",STAT 1051,,9780136855309; 013685530X; 0136855350; 9780136855354,statistics for business and economics - mccl,Pearson Education,Statistics for business and economics /,2022 +GW - STAT-227,STAT 1053 - Bose - Fall 2023,"Bose, Sudip",STAT 1053,,9780134080215; 0134080211,statistics - mccl,Pearson,Statistics /,[2017] +GW - STAT-227,STAT 1053 - Bose - Fall 2023,"Bose, Sudip",STAT 1053,,9780136855309; 013685530X; 0136855350; 9780136855354,statistics for business and economics - mccl,Pearson Education,Statistics for business and economics /,2022 +GW - STAT-227,STAT 2183W - Modarres - Fall 2023,"Modarres, Reza",STAT 2183W,,9781305269477; 1305269470,"introduction to statistical methods data analysis - ott,",Cengage Learning,An introduction to statistical methods & data analysis /,[2016] +GW - STAT-227,STAT 6210 - Lai - Fall 2023,"Lai, Yinglei",STAT 6210,,9780131465329; 0131465325,applied statistics and the sas(r) programming language - cody,Pearson Prentice Hall,Applied statistics and the SAS® programming language /,©2006. +GW - STAT-227,STAT 6210 - Lai - Fall 2023,"Lai, Yinglei",STAT 6210,,9781584884699; 158488469X,"statistical analysis of medical data using sas - der,",Chapman and Hall/CRC,Statistical analysis of medical data using SAS /,2006. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,,man s search for meaning an introduction to logotherapy - fran,Beacon Press,Man's search for meaning; an introduction to logotherapy.,[1963] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,,presentation of self in everyday life - goff,Doubleday,The presentation of self in everyday life /,1959. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,,speaker s guidebook text and reference - o'ha,Bedford/St Martin's,A speaker's guidebook : text and reference /,2022 +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0132729946; 9780132729949; 0273765604; 9780273765608; 1299924409; 9781299924406,organizational theory design and change - jone,Pearson,"Organizational theory, design, and change /",[2013] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0134184246; 9780134184241; 0134167120; 9780134167121,microeconomics - pind,Pearson,Microeconomics /,[2018] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0134380924; 9780134380926,public speaking finding your voice - turn,Pearson,Public speaking : finding your voice /,[2018] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0134562674; 9780134562674,comparative politics - samu,Pearson,Comparative politics /,[2018] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0134801474; 9780134801476; 0134800311; 9780134800318,introduction to communication disorders a lifespan evidence based perspective - owen,Pearson,Introduction to communication disorders : a lifespan evidence-based perspective /,[2019] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0134874366; 9780134874364; 0134990773; 9780134990774; 0134990781; 9780134990781,cosmic perspective - benn,Pearson,The cosmic perspective /,[2020] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0134898397; 9780134898391,globalization and diversity geography of a changing world - pric,Pearson Education Inc,Globalization and diversity : geography of a changing world /,[2020] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0135162904; 9780135162903,gente a task based approach to learning spanish - fuen,Pearson,Gente : a task-based approach to learning Spanish /,2020. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0135188741; 9780135188743; 9780135988046; 0135988047,campbell biology -,Pearson,Campbell biology /,[2021] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0135198003; 9780135198001; 1292090588; 9781292090580,psychology - cicc,Pearson,Psychology /,[2020] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0135827140; 9780135827147,mcknight s physical geography a landscape appreciation - hess,Pearson,McKnight's physical geography : a landscape appreciation /,[2022] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0136968473; 9780136968474; 1292439556; 9781292439556; 9781292439600; 1292439602,interpersonal communication book - devi,Pearson,The interpersonal communication book /,[2022] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0137633645; 9780137633647; 9780137633616; 0137633610,social psychology - aron,Pearson,Social psychology /,[2022] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0190217138; 9780190217136,invitation to peace studies - wood,Oxford University Press,Invitation to peace studies /,2016. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0190602694; 9780190602697; 9780190602703; 0190602708,great hanoi rat hunt empire disease and modernity in french colonial vietnam - vann,Oxford University Press,"The great Hanoi rat hunt : empire, disease, and modernity in French colonial Vietnam /",[2019] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0197543782; 9780197543788; 9780197546499; 0197546498; 0197543790; 9780197543795; 9780197570722; 0197570720,invitation to world religions - brod,Oxford University Press,Invitation to world religions /,[2022] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0198707568; 9780198707561,international relations theories discipline and diversity -,Oxford University Press,International relations theories : discipline and diversity /,[2016] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0205968139; 9780205968138,history of the arab israeli conflict - bick,Routledge,A history of the Arab-Israeli conflict /,2016. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0357022319; 9780357022313; 0357020758; 9780357020753,liberty equality power a history of the american people to 1877 volume 1 - murr,Cengage,"Liberty, equality, power : a history of the American people.",2018 +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0367612801; 9780367612801; 9781003104971; 1003104975,голоса a basic course in russian - robi,Routledge,Голоса : a basic course in Russian /,2023. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,039342295X; 9780393422955; 9780393532869; 0393532860,cases and concepts in comparative politics - o'ne,WW Norton & Company,Cases and concepts in comparative politics /,[2021] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0393428214; 9780393428216; 9780393537963; 039353796X; 0393538028; 9780393538021,introduction to sociology - gidd,WW Norton and Company,Introduction to sociology /,2020. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0470419970; 9780470419977; 0470556730; 9780470556733,materials science and engineering an introduction - call,John Wiley & Sons Inc,Materials science and engineering : an introduction /,[2010] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0664234976; 9780664234973,everyday law in biblical israel an introduction - west,Westminster John Knox Press,Everyday law in biblical Israel : an introduction /,c2009. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0674043898; 9780674043893; 0674013123; 9780674013124,two princes of calabar an eighteen century atlantic odyssey - spar,Harvard University Press,The two princes of Calabar : an eighteen century Atlantic odyssey /,[2004] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0745687210; 9780745687216; 0745687229; 9780745687223,contemporary conflict resolution the prevention management and transformation of deadly conflicts - rams,Polity Press,"Contemporary conflict resolution : the prevention, management and transformation of deadly conflicts /",2016. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0761165290; 9780761165293; 0761163239; 9780761163237,how to shoot video that doesn t suck - stoc,Workman Pub Co,How to shoot video that doesn't suck,c2011. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,0788503782; 9780788503788,law collections from mesopotamia and asia minor - roth,Scholars Press,Law collections from Mesopotamia and Asia Minor /,c1997. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1071841904; 9781071841907; 9781071841891; 1071841890,criminal in justice a critical introduction - fich,SAGE Publications Inc,Criminal (in)justice : a critical introduction /,[2023] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1071851772; 9781071851777,lifespan development in context a topical approach - kuth,SAGE,Lifespan development in context : a topical approach /,[2024] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1101217561; 9781101217566; 1594482853; 9781594482854,beautiful things that heaven bears - meng,Penguin Publishing Group,The Beautiful Things That Heaven Bears.,2007. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1118744861; 9781118744864; 111938608X; 9781119386087; 9781119321477; 1119321476,conversaciones escritas lectura y redaccion en contexto - poto,Wiley,Conversaciones escritas : lectura y redacción en contexto /,[2017] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1259977269; 9781259977268; 1259977277; 9781259977275,vector mechanics for engineers statics - beer,McGraw-Hill Education,Vector mechanics for engineers.,[2019] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1260718905; 9781260718904; 1260883051; 9781260883053; 9781260883046; 1260883043; 9781260883077; 1260883078,methods in behavioral research - cozb,McGraw Hill LLC,Methods in behavioral research /,[2024] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1264094728; 9781264094721; 1266715967; 9781266715969; 9781266716768; 1266716769,environmental geology - mont,McGraw Hill LLC,Environmental geology /,[2023] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1281346470; 9781281346476; 9786611346478; 6611346473; 0191518182; 9780191518188; 0198742428; 9780198742425; 0198112572; 9780198112570,oxford history of world cinema -,Oxford University Press,The Oxford history of world cinema,1996. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1281365327; 9781281365323; 9786611365325; 661136532X; 1403981795; 9781403981790; 1403966060; 9781403966063; 140396789X; 9781403967893,sorrow of the lonely and the burning of the dancers - schi,Palgrave Macmillan,The sorrow of the lonely and the burning of the dancers /,2005. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1282772759; 9781282772755; 9786612772757; 6612772751; 0520945530; 9780520945531; 0520253159; 9780520253155; 0520260880; 9780520260887,theater in a crowded fire ritual and spirituality at burning man - gilm,University of California Press,Theater in a crowded fire ritual and spirituality at Burning Man /,2010. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1284118444; 9781284118445,public health 101 improving community health - rieg,Jones & Bartlett Learning,Public health 101 : improving community health /,[2019] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1284118460; 9781284118469; 1284118444; 9781284118445,public health 101 improving community health - rieg,Jones & Bartlett Learning,Public health 101 : improving community health /,2019. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1285433467; 9781285433462,developing chinese fluency an introductory course ni wo ta volume 2 - zhan,Cengage Learning,"Developing Chinese fluency, an introductory course. Ni wo ta /",[2015] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,129229115X; 9781292291154; 1292291206; 9781292291208; 9781292291192; 1292291192,economic development - toda,Pearson,Economic development /,2020. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1315366673; 9781315366678; 1498798888; 9781498798884; 1498798861; 9781498798860,mathematics of politics - robi,CRC Press,The mathematics of politics /,[2017] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1319055702; 9781319055707,for all practical purposes mathematical literacy in today s world -,Macmillan Learning WH Freeman and Company,For all practical purposes : mathematical literacy in today's world /,[2022] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1319055702; 9781319055707; 1319057462; 9781319057466; 1319465021; 9781319465025,for all practical purposes mathematical literacy in today s world -,Macmillan Learning,For all practical purposes : mathematical literacy in today's world.,[2022]. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1319254381; 9781319254384,an introduction to brain and behavior - kolb,Worth Publishers,An introduction to brain and behavior /,2023. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1405189320; 9781405189323; 9781405189316; 1405189312; 9781118241059; 1118241053; 9781118241004; 1118241002; 9781118240984; 1118240987; 1118240952; 9781118240953; 1118240936; 9781118240939,introduction to human environment geography local dynamics and global processes - mose,Wiley-Blackwell,An introduction to human-environment geography : local dynamics and global processes /,[2014] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1453335501; 9781453335505,research methods core concepts and skills for psychology - pric,FlatWorld Knowledge,Research methods : core concepts and skills for psychology /,[2021] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1453337628; 9781453337622,essentials of geographic information systems - shin,FlatWorld,Essentials of geographic information systems /,[2022] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,145761815X; 9781457618154,voices of decolonization a brief history with documents - shep,Bedford/St Martin's,Voices of decolonization : a brief history with documents /,[2015] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1478634898; 9781478634898,rhetorical criticism exploration and practice - foss,Waveland Press,Rhetorical criticism : exploration and practice /,[2018] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1480402001; 9781480402003,art of loving - from,Open Road Integrated Media,Art of loving /,1956. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1506361021; 9781506361024,juvenile delinquency pathways and prevention - mall,Sage Publications Incorporated,Juvenile delinquency : pathways and prevention /,[2019] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1541672615; 9781541672611; 9781541672598; 1541672593; 9781541672604; 1541672607,"america for americans a history of xenophobia in the united states - lee,",Basic Books,America for Americans : a history of xenophobia in the United States /,2021. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1543829333; 9781543829334; 9781543829341; 1543829341,essentials of victimology crime victims theories controversies and victims rights - yage,Aspen Publishing,"Essentials of victimology : crime victims, theories, controversies, and victims' rights /",[2022] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1544398735; 9781544398730; 9781544398747; 1544398743; 9781544398754; 1544398751; 9781544398761; 154439876X,introduction to criminal justice systems diversity and change - renn,SAGE Publications Inc,"Introduction to criminal justice : systems, diversity, and change /",[2022] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1561483907; 9781561483907,little book of conflict transformation - lede,Good Books,The little book of conflict transformation /,[2003] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1561488232; 9781561488230; 168099378X; 9781680993783,little book of restorative justice - zehr,Good Books,The little book of restorative justice /,[2015] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1570754322; 9781570754326,mohandas gandhi essential writings - gand,Orbis Books,Mohandas Gandhi : essential writings /,2002. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1577665090; 9781577665090,women founders sociology and social theory 1830 1930 a text reader -,Waveland Press,"The women founders : sociology and social theory, 1830-1930 : a text/reader /",2007. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1589017366; 9781589017368; 9781589017375; 1589017374; 1647121868; 9781647121860; 1647121876; 9781647121877; 9781589019621; 1589019628,al kitaab fii ta allum al arabiyya a textbook for beginning arabic with website part one - بروس,Georgetown University Press,Al-Kitaab fii taʻallum al-ʻArabiyya = A textbook for beginning Arabic with website.,[2021-] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1597567221; 9781597567220,your voice is your business the science and art of communication - baro,Plural Publishing Inc,Your voice is your business : the science and art of communication /,[2016] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1597569526; 9781597569521; 1597567221; 9781597567220,your voice is your business the science and art of communication - baro,Plural Publishing Inc,Your voice is your business : the science and art of communication /,2016. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1605353809; 9781605353807; 160535841X; 9781605358413,neuroscience -,Oxford University Press,Neuroscience /,©2018 +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1611638682; 9781611638684; 9781531000134; 1531000134,rethinking the reentry paradigm a blueprint for action - hous,Carolina Academic Press,Rethinking the reentry paradigm : a blueprint for action /,[2023] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1620971941; 9781620971949,new jim crow mass incarceration in the age of colorblindness - alex,The New Press,The new Jim Crow : mass incarceration in the age of colorblindness /,[2020]. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1624664326; 9781624664328; 1624664334; 9781624664335; 1624664342; 9781624664342,matteo ricci and the catholic mission to china 1583 1610 a short history with documents - hsia,Hackett Publishing Company Inc,"Matteo Ricci and the Catholic mission to China, 1583-1610 : a short history with documents /",[2016] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1624664342; 9781624664342; 1624664326; 9781624664328,matteo ricci and the catholic mission to china 1583 1610 a short history with documents - hsia,Hackett Publishing Company Inc,"Matteo Ricci and the Catholic Mission to China, 1583-1610 A Short History with Documents",2016. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1647121817; 9781647121815; 1647121825; 9781647121822; 9781647121853; 164712185X,alif ba alif baa introduction to arabic letters and sounds - brus,Georgetown University Press,Ālif bāʼ = Alif baa : introduction to Arabic letters and sounds /,[2021] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1680993437; 9781680993431; 9781680993448; 1680993445,little book of race and restorative justice black lives healing and us social transformation - davi,Good Books,"The little book of race and restorative justice : black lives, healing, and US social transformation /",2019. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1684119189; 9781684119189; 1684119766; 9781684119769; 9783447020022; 3447020024,dictionary of modern written arabic arabic english - wehr,Snowball Publishing,A dictionary of modern written Arabic : (Arabic-English) /,1993. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1781682976; 9781781682975; 9781781681909; 1781681902; 9781781685013; 1781685010,beast riding the rails and dodging narcos on the migrant trail - mart,Verso,The beast : riding the rails and dodging narcos on the migrant trail /,2014. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,1793558272; 9781793558275,puntos de encuentro a cross cultural approach to advanced spanish - fuen,Cognella Inc,Puntos de encuentro : a cross-cultural approach to advanced Spanish /,[2023] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780072855357; 0072855355,social conflict escalation stalemate and settlement - prui,McGraw-Hill,"Social conflict : escalation, stalemate, and settlement.",[2004] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780133597271; 013359727X; 9780321965516; 0321965515,don t make me think revisited a common sense approach to web usability - krug,New Riders Peachpit Pearson Education,"Don't make me think, revisited : a common sense approach to Web usability /",2014. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780134080215; 0134080211,statistics - mccl,Pearson,Statistics /,[2017] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780134877174; 0134877179,interpersonal communication relating to others - beeb,Pearson,Interpersonal communication : relating to others /,2020. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780136855309; 013685530X; 0136855350; 9780136855354,statistics for business and economics - mccl,Pearson Education,Statistics for business and economics /,2022 +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780140439052; 0140439056,christmas carol and other christmas writings - dick,Rowland Phototypesetting Ltx; Lays Limited; Penguin Books,"A Christmas carol, and other Christmas writings /",2003. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780198112570; 0198112572; 9780198742425; 0198742428,oxford history of world cinema -,Oxford University Press,The Oxford history of world cinema /,1996. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780226775425; 0226775429; 9780226775432; 0226775437,in sorcery s shadow a memoir of apprenticeship among the songhay of niger - stol,University of Chicago Press,In sorcery's shadow : a memoir of apprenticeship among the Songhay of Niger /,1987. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780299166748; 0299166740,atlantic celts ancient people or modern invention - jame,University of Wisconsin Press,The Atlantic Celts : ancient people or modern invention? /,[1999] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780321671042; 032167104X,just in time algebra and trigonometry for calculus - muel,Pearson Education,Just-in-time algebra and trigonometry for calculus /,[2013] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780357664421; 0357664426,france contemporaine - edmi,Cengage Learning,La France contemporaine /,[2023] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780395081341; 0395081343; 9780395084090; 0395084091,on becoming a person a therapist s view of psychotherapy - roge,Houghton Mifflin Company,On Becoming a Person : A Therapist's View of Psychotherapy /,[1961] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780439023481; 0439023483; 9780439023528; 0439023521; 9780545310581; 054531058X; 9780545425117; 0545425115; 9781451740752; 1451740751,hunger games - coll,Scholastic Press,The Hunger Games /,2008. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780471293095; 0471293091,toward a psychology of being - masl,J Wiley and Sons,Toward a psychology of being /,[1999] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780670022960; 0670022969,american nations a history of the eleven rival regional cultures of north america - wood,Viking,American nations : a history of the eleven rival regional cultures of North America /,2011. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780670038329; 0670038326,stealing buddha s dinner a memoir - nguy,Viking,Stealing Buddha's dinner : a memoir /,2007. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780684801520; 0684801523,great gatsby - fitz,Scribner Paperback Fiction,The great Gatsby /,1995. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780691166407; 0691166404,three stones make a wall the story of archaeology - clin,Princeton University Press,Three stones make a wall : the story of archaeology /,[2017] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780716756675; 0716756676; 9781464128769; 1464128766,cognition theory and practice - revl,Worth Publishers,Cognition : theory and practice /,©2013. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780788501043; 0788501046; 9780788501265; 0788501267,law collections from mesopotamia and asia minor - roth,Scholars Press,Law collections from Mesopotamia and Asia Minor /,[1997] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780801842511; 0801842514; 9780801867156; 0801867150,amarna letters -,Johns Hopkins University Press,The Amarna letters /,[1992] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9780892552900; 0892552905,bread givers a novel - yezi,Persea Books,Bread givers : a novel /,[2003] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9781118488874; 1118488873; 9781118572276; 1118572270,microeconomics - besa,Wiley,Microeconomics /,[2014] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9781264383870; 1264383878; 9781260387544; 1260387542,international business competing in the global marketplace - hill,McGraw-Hill/Irwin,International business : competing in the global marketplace /,[2023] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9781285433530; 128543353X,developing chinese fluency an introductory course ni wo ta volume 1 - zhan,Cengage Learning,"Developing Chinese fluency, an introductory course. Ni wo ta /",[2015] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9781285456799; 1285456793,developing chinese fluency an introductory course literacy workbook volume 1 - zhan,Centage Learning,Developing Chinese fluency. an introductory course : literacy workbook /,©2015. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9781305269477; 1305269470,"introduction to statistical methods data analysis - ott,",Cengage Learning,An introduction to statistical methods & data analysis /,[2016] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9781498798860; 1498798861,mathematics of politics - robi,CRC Press Taylor & Francis group,The mathematics of politics /,[2017] +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9781594482854; 1594482853; 9781594489402; 1594489408,beautiful things that heaven bears - meng,Riverhead Books,The beautiful things that heaven bears /,2007. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9781594486685; 1594486689; 9781594487293; 1594487294,how to get filthy rich in rising asia - hami,Riverhead Books,How to Get Filthy Rich in Rising Asia /,2013. +GW - TEXT-1430,Top Textbooks - Fall 2023,,Top Textbooks,,9781596913431; 1596913436,lemon tree an arab a jew and the heart of the middle east - tola,Bloomsbury,"The lemon tree : an Arab, a Jew, and the heart of the Middle East /",2007. +GW - UW-1292,UW 1020 - Abbas - Fall 2023,"Abbas, Nasreen",UW 1020,,073521218X; 9780735212183; 0735212171; 9780735212176,exit west a novel - hami,Penguin Publishing Group,Exit West : A Novel /,2017. +GW - UW-1292,UW 1020 - Abbas - Fall 2023,"Abbas, Nasreen",UW 1020,,0735212201; 9780735212206,exit west a novel - hami,Riverhead Books,Exit west : a novel /,2018. +GW - UW-1292,UW 1020 - Abbas - Fall 2023,"Abbas, Nasreen",UW 1020,,0735217688; 9780735217683; 0525533265; 9780525533269; 0735217696; 9780735217690,home fire - sham,Riverhead Books,Home fire /,2017. +GW - UW-1292,UW 1020 - Abbas - Fall 2023,"Abbas, Nasreen",UW 1020,,073521770X; 9780735217706; 0735217688; 9780735217683,home fire a novel - sham,Penguin Publishing Group,Home Fire : A Novel.,2017. +GW - UW-1292,UW 1020 - Abbas - Fall 2023,"Abbas, Nasreen",UW 1020,,0786564733; 9780786564736; 1594480001; 9781594480003,kite runner - hoss,Penguin Publishing Group,The Kite Runner.,2004. +GW - UW-1292,UW 1020 - Abbas - Fall 2023,"Abbas, Nasreen",UW 1020,,1101666226; 9781101666227; 1101547502; 9781101547502; 159448547X; 9781594485473,kite runner graphic novel - vals,Riverhead Books,The kite runner graphic novel,2011 +GW - UW-1292,UW 1020 - Abbas - Fall 2023,"Abbas, Nasreen",UW 1020,,159448547X; 9781594485473,kite runner graphic novel - hoss,Riverhead Books,The kite runner graphic novel /,2011. +GW - UW-1292,UW 1020 - Abbas - Fall 2023,"Abbas, Nasreen",UW 1020,,9780375422300; 0375422307; 9780375714573; 037571457X,persepolis - satr,Pantheon Books,Persepolis /,[2003] +GW - UW-1292,UW 1020 - Donovan - Fall 2023,"Donovan, Julie",UW 1020,,1783785586; 9781783785582; 9781783789405; 1783789409,your wish is my command - muḥ,Granta Books,Your wish is my command /,2023. +GW - UW-1292,UW 1020 - Myers - Fall 2023,"Myers, Danika",UW 1020,,0374539022; 9780374539023,field study - sebr,Farrar Straus and Giroux,Field study /,2021. +GW - UW-1292,UW 1020 - Myers - Fall 2023,"Myers, Danika",UW 1020,,1555977677; 9781555977672,whereas - long,Graywolf Press,Whereas /,[2017] +GW - UW-1292,UW 1020 - Myers - Fall 2023,"Myers, Danika",UW 1020,,9781556593246; 1556593244; 9781556593888; 1556593880,one with others a little book of her days - wrig,Copper Canyon Press,One with others : [a little book of her days] /,[2010] +GW - UW-1292,UW 1020 - Sauer - Fall 2023,"Sauer, Beverly",UW 1020,,9780961392161; 0961392169,cognitive style of powerpoint pitching out corrupts within - tuft,Graphics Press,The cognitive style of PowerPoint : pitching out corrupts within /,2006. +Null,EMSE 6801 - Dano - Fall 2023,"Dano, Eric",EMSE 6801,,1848901542; 9781848901544,architecting systems concepts principles and practice - sill,College Publications,"Architecting systems : concepts, principles and practice /",2014. +Null,EMSE 6801 - Dano - Fall 2023,"Dano, Eric",EMSE 6801,,9781848902350; 1848902352,using systems thinking to solve real world problems - mona,College Publications,Using systems thinking to solve real-world problems /,[2017]. diff --git a/textbook/static-assets/data/team-dataset.json b/textbook/static-assets/data/team-dataset.json new file mode 100644 index 0000000..4b01f27 --- /dev/null +++ b/textbook/static-assets/data/team-dataset.json @@ -0,0 +1 @@ +[{"name": "Samir", "email_address": "samir@email.com", "team_role": "notetaker", "years_at_gw": 12}, {"name": "Mikael", "email_address": "mikael@email.com", "team_role": "advocate", "years_at_gw": 3}, {"name": "Isabella", "email_address": "isabella@email.com", "team_role": "advocate", "years_at_gw": 9}, {"name": "Tadhg", "email_address": "tadhg@email.com", "team_role": "notetaker", "years_at_gw": 3}, {"name": "Juan", "email_address": "juan@email.com", "team_role": "notetaker", "years_at_gw": 1}, {"name": "Hamza", "email_address": "hamza@email.com", "team_role": "advocate", "years_at_gw": 1}, {"name": "Amir", "email_address": "amir@email.com", "team_role": "reporter", "years_at_gw": 1}, {"name": "Jessica", "email_address": "jessica@email.com", "team_role": "reporter", "years_at_gw": 14}, {"name": "Sofia", "email_address": "sofia@email.com", "team_role": "advocate", "years_at_gw": 8}, {"name": "S\u00e1ra", "email_address": "s\u00e1ra@email.com", "team_role": "advocate", "years_at_gw": 6}, {"name": "Lina", "email_address": "lina@email.com", "team_role": "reporter", "years_at_gw": 10}, {"name": "Ecrin", "email_address": "ecrin@email.com", "team_role": "advocate", "years_at_gw": 12}, {"name": "Olga", "email_address": "olga@email.com", "team_role": "notetaker", "years_at_gw": 13}, {"name": "Mohammad", "email_address": "mohammad@email.com", "team_role": "notetaker", "years_at_gw": 3}, {"name": "Hannah", "email_address": "hannah@email.com", "team_role": "advocate", "years_at_gw": 4}, {"name": "Abbas", "email_address": "abbas@email.com", "team_role": "advocate", "years_at_gw": 6}, {"name": "In\u00e8s", "email_address": "in\u00e8s@email.com", "team_role": "notetaker", "years_at_gw": 4}, {"name": "Bogdan", "email_address": "bogdan@email.com", "team_role": "reporter", "years_at_gw": 14}, {"name": "Roman", "email_address": "roman@email.com", "team_role": "notetaker", "years_at_gw": 10}, {"name": "An", "email_address": "an@email.com", "team_role": "advocate", "years_at_gw": 5}] \ No newline at end of file diff --git a/textbook/static-assets/img/homework/download-notebook.png b/textbook/static-assets/img/homework/download-notebook.png index abeab49d4b1d6ff599820251c6bcd8c003cf2bd8..3d5948d75169eb2e634a918b699dcc3bf250a912 100644 GIT binary patch literal 81306 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 VS6@};+Z*6NabX#uB7ryW{~wANF^vEK literal 135511 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

8+-Qx~ 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

b;>a(i71klKc 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 T9CJRu3|`iBJK7^l_e=i(_u(`n diff --git a/textbook/static-assets/img/list-to-dict.png b/textbook/static-assets/img/list-to-dict.png new file mode 100644 index 0000000000000000000000000000000000000000..60c4fad14423b29f1e3b30f2b2b46dda6f32444e GIT binary patch literal 87316 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 T4T>$PUq|AMrGo|0+$-WgY-SQf literal 0 HcmV?d00001 diff --git a/textbook/static-assets/img/nested-data.png b/textbook/static-assets/img/nested-data.png new file mode 100644 index 0000000000000000000000000000000000000000..0525349c6fbfc7287de7d9d7eef7b0b9d92405a5 GIT binary patch literal 74018 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� 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�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%0ASt)E$< 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 b)qUF@9A{oug!Zr820m72?97W#UwiOhD{>F{ literal 0 HcmV?d00001 diff --git a/textbook/static-assets/img/string-negative-indexing-table.png b/textbook/static-assets/img/string-negative-indexing-table.png new file mode 100644 index 0000000000000000000000000000000000000000..dc5fbd77cf29209f41a64be9a4495d0f3f571bd9 GIT binary patch literal 24777 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 literal 0 HcmV?d00001