Question: NEED HELP FROM A HUMAN BEING!!!! You will be writing a Library simulator involving multiple classes. You will write the LibraryItem, Patron and Library classes,

NEED HELP FROM A HUMAN BEING!!!! You will be writing a Library simulator involving multiple classes. You will write the LibraryItem, Patron and Library classes, and the three classes that inherit from LibraryItem (Book, Album and Movie). All data members of each class should be marked as private (a leading underscore in the name). Since they're private, if you need to access them from outside the class, you should do so via get or set methods. Any get or set methods should be named per the usual convention ("get_" or "set_" followed by the name of the data member).You MUST: Create two books; Create two patrons; Add books and patrons to library holdings/membership; Increment date, have patron pay fine, check fine amount. Here are descriptions of the three classes:LibraryItem:A LibraryItem object represents a library item that a patron can check out from a library. It has six data members:library_item_id - a unique identifier for a LibraryItem - you can assume uniqueness, you don't have to enforce ittitle - cannot be assumed to be uniquelocation - a LibraryItem can be "ON_SHELF", "ON_HOLD_SHELF", or "CHECKED_OUT"checked_out_by - refers to the Patron who has it checked out (if any)requested_by - refers to the Patron who has requested it (if any); a LibraryItem can only be requested by one Patron at a timedate_checked_out - when a LibraryItem is checked out, this will be set to the current_date of the LibraryThe LibraryItem methods are:init method - takes a library item ID and title as parameters; checked_out_by and requested_by should be initialized to None; a new LibraryItem's location should be on the shelfget_location returns the Library Item's locationother get and set methods as neededBook/Album/Movie:These three classes all inherit from LibraryItemAll three will need an additional data member. For Book, it's a string called author. For Album, it's a string called artist. For Movie, it's a string called directorEach of the new data members will need a get method to return its valueAll three will need a method called get_check_out_length that returns the number of days that type of library item may be checked out for. For a Book it's 21 days, for an Album it's 14 days, and for a Movie it's 7 daysPatron:A Patron object represents a patron of a library. It has four data members:patron_id - a unique identifier for a Patron - you can assume uniqueness, you don't have to enforce itname - cannot be assumed to be uniquechecked_out_items - a collection of LibraryItems that a Patron currently has checked outfine_amount - how much the Patron owes the Library in late fines (measured in dollars); this is allowed to go negativeThe Patron methods are:init method - takes a patron ID and name as parametersget_fine_amount - returns the fine_amountother get and set methods as neededadd_library_item - adds the specified LibraryItem to checked_out_itemsremove_library_item - removes the specified LibraryItem from checked_out_itemsamend_fine - a positive argument increases the fine_amount, a negative one decreases it; this is allowed to go negativeLibrary:A Library object represents a library that contains various library items, and is used by various patrons. It has three data members:holdings - a collection of the LibraryItems that belong to the Librarymembers - a collection of the Patrons who are members of the Librarycurrent_date - stores the current date represented as an integer number of "days" since the Library object was createdThe Library methods are:an init method that initializes the holdings and members as empty collections and initializes the current_date to zeroadd_library_item - takes a LibraryItem object as a parameter and adds it to the holdingsadd_patron - takes a Patron object as a parameter and adds it to the memberslookup_library_item_from_id - returns the LibraryItem object corresponding to the ID parameter, or None if no such LibraryItem is in the holdingslookup_patron_from_id - returns the Patron object corresponding to the ID parameter, or None if no such Patron is a membercheck_out_library_itemtakes as parameters a patron ID and a library item ID, in that orderif the specified Patron is not in the Library's members, return "patron not found"if the specified LibraryItem is not in the Library's holdings, return "item not found"if the specified LibraryItem is already checked out, return "item already checked out"if the specified LibraryItem is on hold by another Patron, return "item on hold by other patron"otherwise update the LibraryItem's checked_out_by, date_checked_out and locationif the LibraryItem was on hold for this Patron, update requested_byupdate the Patron's checked_out_itemsreturn "check out successful"return_library_itemtakes as its parameter a library item IDif the specified LibraryItem is not in the Library's holdings, return "item not found"if the LibraryItem is not checked out, return "item already in library"update the Patron's checked_out_itemsupdate the LibraryItem's location depending on whether another Patron has requested it (if so, it should go on the hold shelf)update the LibraryItem's checked_out_byreturn "return successful"request_library_itemtakes as parameters a patron ID and a library item ID, in that orderif the specified Patron is not in the Library's members, return "patron not found"if the specified LibraryItem is not in the Library's holdings, return "item not found"if the specified LibraryItem is already requested, return "item already on hold"update the LibraryItem's requested_byif the LibraryItem is on the shelf, update its location to on holdreturn "request successful"pay_finetakes as parameters a Patron ID and the amount (in dollars) being paid (in that order)if the specified Patron is not in the Library's members, return "patron not found"use amend_fine to update the Patron's fine; return "payment successful"increment_current_datetakes no parametersincrement current dateincrease each Patron's fines by 10 cents for each overdue LibraryItem they have checked out (by calling amend_fine)Note - a LibraryItem can be on request without its location being the hold shelf (if another Patron has it checked out);One limited example of how your classes might be used is: b1= Book("345", "Phantom Tollbooth", "Juster") a1= Album("456","...And His Orchestra", "The Fastbacks") m1= Movie("567", "Laputa", "Miyazaki") print(b1.get_author()) print(a1.get_artist()) print(m1.get_director()) p1= Patron("abc", "Felicity") p2= Patron("bcd", "Waldo") lib = Library() lib.add_library_item(b1) lib.add_library_item(a1) lib.add_library_item(m1) lib.add_patron(p1) lib.add_patron(p2) lib.check_out_library_item("bcd","456") for _ in range(7): lib.increment_current_date() # 7 days pass lib.check_out_library_item("abc","567") loc = a1.get_location() lib.request_library_item("abc","456") for _ in range(57): lib.increment_current_date() # 57 days pass p2_fine = p2.get_fine_amount() lib.pay_fine("bcd", p2_fine) lib.return_library_item("456")You are responsible for testing all of the required functions to make sure they operate as specified.Your file must be named: Library.pyJust to think about: Since there are three possible locations for a LibraryItem, there are six hypothetical changes in location. Are all six possible according to these specifications?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!