Warning: Undefined variable $jcyhX in /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php on line 1

Warning: Undefined variable $ettTubkWQB in /home/supremepapers/public_html/qualityassignments.net/wp-includes/nav-menu.php on line 1

Warning: Undefined variable $UUWaafE in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 1

Deprecated: Implicit conversion from float 1.7333333333333334 to int loses precision in /home/supremepapers/public_html/qualityassignments.net/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/css.php on line 52

Deprecated: Implicit conversion from float 1.7333333333333334 to int loses precision in /home/supremepapers/public_html/qualityassignments.net/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/css.php on line 52

Deprecated: Implicit conversion from float 2.5 to int loses precision in /home/supremepapers/public_html/qualityassignments.net/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/css.php on line 52

Warning: Cannot modify header information - headers already sent by (output started at /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php:1) in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/class-wp-rest-server.php on line 1794

Warning: Cannot modify header information - headers already sent by (output started at /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php:1) in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/class-wp-rest-server.php on line 1794

Warning: Cannot modify header information - headers already sent by (output started at /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php:1) in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/class-wp-rest-server.php on line 1794

Warning: Cannot modify header information - headers already sent by (output started at /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php:1) in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/class-wp-rest-server.php on line 1794

Warning: Cannot modify header information - headers already sent by (output started at /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php:1) in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/class-wp-rest-server.php on line 1794

Warning: Cannot modify header information - headers already sent by (output started at /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php:1) in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/class-wp-rest-server.php on line 1794

Warning: Cannot modify header information - headers already sent by (output started at /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php:1) in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/class-wp-rest-server.php on line 1794

Warning: Cannot modify header information - headers already sent by (output started at /home/supremepapers/public_html/qualityassignments.net/wp-includes/block-template-utils.php:1) in /home/supremepapers/public_html/qualityassignments.net/wp-includes/rest-api/class-wp-rest-server.php on line 1794
{"id":242753,"date":"2022-11-13T02:30:51","date_gmt":"2022-11-13T02:30:51","guid":{"rendered":"https:\/\/qualityassignments.net\/?p=242753"},"modified":"2022-08-02T20:04:50","modified_gmt":"2022-08-02T20:04:50","slug":"looking-for-advanced-database-project","status":"publish","type":"post","link":"https:\/\/qualityassignments.net\/2022\/11\/13\/looking-for-advanced-database-project\/","title":{"rendered":"Looking for Advanced Database Project."},"content":{"rendered":"
\n

\n Looking for Advanced Database Project.\n <\/p>\n<\/div>\n

Looking for Advanced Database Project.
\nCS5600: Programming Assignment (50 points) In this assignment, you will learn and implement CRUD(Create, Read, Update, Delete). These are the basic APIs to perform at most functions on web applications. You will develop the backend web framework using Python Flask connect to MongoDB (https:\/\/www.mongodb.com). There are some videos on Blackboard about Flask framework and MongoDB that you can study before starting this assignment. To test the backend web framework, you must use API platforms such as Postman API Platform(https:\/\/www.postman.com). The CSV file(Netflix.csv-Movie and Show on Netflix) is provided in this assignment with the column names including: id title type description release_year age_certification runtime (mins.) genres production_countries imdb_score First, the instructor will guide you how to generate MongoDB Database and collections using MongoDB Compass. You will import this csv file to collection netflix on MongoDB database in JSON format. The MongoDB Configuration: Host = \u2018localhost\u2019 Port = 27017 Database name = database Collection name = netflix \u2026 try: \u00a0 \u00a0 mongo = pymongo.MongoClient( \u00a0 \u00a0 \u00a0 \u00a0 host = ‘localhost’, \u00a0 \u00a0 \u00a0 \u00a0 port = 27017, \u00a0 \u00a0 \u00a0 \u00a0 serverSelectionTimeoutMS = 1000 \u00a0 \u00a0 ) \u00a0 \u00a0 db = mongo.database \u00a0 \u00a0 mongo.server_info() #trigger exception if cannot connect to db except: \u00a0 \u00a0 print(“Error -connect to db”) In xxxx.py file, you must perform the following main functions: Insert the new movie and show. @app.route(‘\/api’, methods=[‘POST’]) Update the movie and show information using title. (By update title, description and imdb score) @app.route(‘\/api\/‘, methods=[‘PATCH’]) Delete the movie and show information using title. @app.route(‘\/api\/‘, methods=[‘DELETE’]) Retrieve all the movies and shows in database. @app.route(‘\/api’, methods=[‘GET’]) Display the movie and show\u2019s detail using title. @app.route(‘\/api\/‘, methods=[‘GET’]) Submission: Turn in your codes and data files in folder name \u201cPROG_ASSIGN_XXXXX_YYYYYY\u201d where XXXXX is course number (CRN) and YYYYYY is 700# student id and zip the folder before submitting your assignment. Notes: If you want to use other web frameworks such as Java, JavaScript, PHP, or Microsoft Visual Studio .NET, etc. You must contact me beforehand and let me know how to execute your web framework. You can use the internet cloud application platforms such as Heroku (https:\/\/www.heroku.com) if you prefer. However, in your assignment submission, you must provide me the links for execute the web application and source codes.<\/p>\n","protected":false},"excerpt":{"rendered":"

Looking for Advanced Database Project. Looking for Advanced Database Project. CS5600: Programming Assignment (50 points) In this assignment, you will learn and implement CRUD(Create, Read, Update, Delete). These are the basic APIs to perform at most functions on web applications. You will develop the backend web framework using Python Flask connect to MongoDB (https:\/\/www.mongodb.com). There […]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":"","_joinchat":[]},"categories":[1],"tags":[],"_links":{"self":[{"href":"https:\/\/qualityassignments.net\/wp-json\/wp\/v2\/posts\/242753"}],"collection":[{"href":"https:\/\/qualityassignments.net\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/qualityassignments.net\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/qualityassignments.net\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/qualityassignments.net\/wp-json\/wp\/v2\/comments?post=242753"}],"version-history":[{"count":1,"href":"https:\/\/qualityassignments.net\/wp-json\/wp\/v2\/posts\/242753\/revisions"}],"predecessor-version":[{"id":243472,"href":"https:\/\/qualityassignments.net\/wp-json\/wp\/v2\/posts\/242753\/revisions\/243472"}],"wp:attachment":[{"href":"https:\/\/qualityassignments.net\/wp-json\/wp\/v2\/media?parent=242753"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/qualityassignments.net\/wp-json\/wp\/v2\/categories?post=242753"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/qualityassignments.net\/wp-json\/wp\/v2\/tags?post=242753"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}