{"id":23353542,"url":"https://github.com/andriikot/bookstore--fastapi","last_synced_at":"2026-05-07T08:36:49.647Z","repository":{"id":216204311,"uuid":"616901433","full_name":"AndriiKot/Bookstore--FastAPI","owner":"AndriiKot","description":"Bookstore (FastAPI)","archived":false,"fork":false,"pushed_at":"2024-12-21T22:24:42.000Z","size":34,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-13T20:47:42.743Z","etag":null,"topics":["fastapi","json","python3","rest-api"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AndriiKot.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-21T10:11:39.000Z","updated_at":"2024-12-21T22:24:45.000Z","dependencies_parsed_at":"2024-01-09T00:40:06.805Z","dependency_job_id":"75edb246-8821-49ed-a518-30979d8bc442","html_url":"https://github.com/AndriiKot/Bookstore--FastAPI","commit_stats":null,"previous_names":["andriikot/my-formula-vs-formula-from-internet"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndriiKot%2FBookstore--FastAPI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndriiKot%2FBookstore--FastAPI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndriiKot%2FBookstore--FastAPI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndriiKot%2FBookstore--FastAPI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndriiKot","download_url":"https://codeload.github.com/AndriiKot/Bookstore--FastAPI/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247713263,"owners_count":20983683,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fastapi","json","python3","rest-api"],"created_at":"2024-12-21T09:13:55.377Z","updated_at":"2026-05-07T08:36:44.626Z","avatar_url":"https://github.com/AndriiKot.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FastAPI\n\n## Simple Application (REST API)\n\n### Bookstore\n\n#### Technologies:\n\n\u003ctable\u003e\n  \u003cthead\u003e\n    \u003ctr\u003e\n      \u003cth height=33 width=100\u003eFastAPI\u003c/th\u003e\n      \u003cth height=33 width=100\u003ePython\u003c/th\u003e\n      \u003cth height=33 width=100\u003ePydantic\u003c/th\u003e\n    \u003c/tr\u003e\n  \u003c/thead\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd height=100 width=100\u003e\n        \u003ca href=https://fastapi.tiangolo.com/\u003e\n          \u003cimg src=https://github.com/AndriiKot/BookStore--FastAPI/blob/main/icons/fastapi.svg alt=FastAPI\u003e\n        \u003c/a\u003e\n      \u003c/td\u003e\n      \u003ctd height=100 width=100\u003e\n        \u003ca href=https://www.python.org/\u003e\n          \u003cimg src=https://github.com/AndriiKot/___Icons__and__Links___/blob/main/icons/python.svg alt=Python\u003e\n        \u003c/a\u003e\n      \u003c/td\u003e\n      \u003ctd height=100 width=100\u003e\n        \u003ca href=https://docs.pydantic.dev/latest/\u003e\n          \u003cimg src=https://github.com/AndriiKot/Bookstore--FastAPI/blob/main/icons/pydantic.svg alt=Pydantic\u003e\n        \u003c/a\u003e\n      \u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n\n#### Installation\n\n##### 1. Clone this repository:\n\n```bash\ngit clone https://github.com/yourusername/your-repo-name.git\ncd your-repo-name\n```\n\n##### 2. Create a virtual environment (optional but recommended):\n\n```bash\npython -m venv venv\nvenv\\Scripts\\activate.bat  # On Windows\nsource myenv/bin/activate  # On Linux\n```\n\n##### 3. Install the required packages using pip (or other package manager):\n\n```bash\npip install fastapi uvicorn\n```\n\n##### 4. Run the FastAPI application:\n\n```bash\npython main.py --port \u003cport_number\u003e\n```\n\nWhere `\u003cport_number\u003e` is an integer representing the port on which the application will run. For example, to start the application on port 8080, execute the command:\n\n```bash\npython main.py --port 8080\n```\n\nIf the `--port` parameter is not specified, the application will default to running on port 8000.\n\nOnce the application is running, you can open your browser and navigate to the following address:\n\n- For port 8000:\n  - http://localhost:8000\n  - http://127.0.0.1:8000\n\nIf you specified a different port, for example, 8080, you would use:\n\n- http://localhost:8080\n- http://127.0.0.1:8080\n\n**Note:**\n`localhost` and `127.0.0.1` are synonyms that refer to your local computer. You can use either of these addresses to access your application.\n\nThis instruction will help users of your application understand how to run it and which addresses to use in the browser.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandriikot%2Fbookstore--fastapi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandriikot%2Fbookstore--fastapi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandriikot%2Fbookstore--fastapi/lists"}