Address book app based on fastAPI prepared for Solutions30 test.
#recommended code review is trough github codespace which can be opened on project main directory in github and then opening 'Run book app easy way' codespace

#Open terminal in project folder to run commands
source venv/bin/activatepip install -r requirements.txtsqlalchemy we use to access SQLite Other libraries are necessary to run fastAPI or manage spatial functionalities of addresses.
Run the app bookApp in terminal opened inside of project folder:
uvicorn bookApp:app --reloadAfter running the app, open below address on your browser: [http://127.0.0.1:8000/docs] - if running code on desktop [https://humble-broccoli-5w9w69rv5v5cpxjg.github.dev/docs] if using github codespace originally code from console redirect to port 8000, we need to go to docs directory from that port, by adding docs in the end if using link from console
While you open the address you should see main site of fastAPI swagger as:

Choose desired option from the menu and Press 'try it out' button
If tool require filling parameters, fill them along with instructions and press 'Execute' button below. You will see results of the query inside of response body below.
To visually preview the address book database, access the following address: (you can also get that information from using 'Read address database function') [http://127.0.0.1:8000/db]
