yuricoder07 / myfiles

Apache License 2.0
0 stars 3 forks source link

Backend Code #30

Open yuricoder07 opened 1 year ago

yuricoder07 commented 1 year ago

For my backend part of the project, I decided to create a search API. I've implemented the following CRUD requirements as well.

The Create aspect of it, is the POST method, feeding a query into the search. With this search bar there is no real way to add a Update function, but I viewed the create like an update due to data being added to the search.json database. The read element was a GET request i've created that allows users to see recent search history. I also added a delete request which allows a user to delete their recent history.

image image image image

Technical Achievements: I learned how to incorporate data storage from backend to frontend more proficiently. I learned how to store data in JSON lists in python, as well as incorporating the U and D in CRUD. I've also set up my own webserver (I didn't use for this project, but was for a backup).