{"id":22434619,"url":"https://github.com/KalbarczykDev/ReadNext","last_synced_at":"2025-08-01T14:31:03.826Z","repository":{"id":243206238,"uuid":"811768985","full_name":"KalbarczykDev/ReadNext","owner":"KalbarczykDev","description":"The Book Recommendations System is a web application that helps users discover books tailored to their interests. Users can explore a diverse collection of books, view recommendations, and manage their profiles.","archived":false,"fork":false,"pushed_at":"2024-09-01T11:34:25.000Z","size":12494,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-26T00:14:20.703Z","etag":null,"topics":["flask","flask-application","flask-sqlalchemy","python","python-web","python-web-development"],"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/KalbarczykDev.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":"2024-06-07T09:06:35.000Z","updated_at":"2025-05-23T22:26:20.000Z","dependencies_parsed_at":"2024-10-12T18:32:52.985Z","dependency_job_id":null,"html_url":"https://github.com/KalbarczykDev/ReadNext","commit_stats":null,"previous_names":["okdotdev/bookrecomendationsystem","okdotdev/readnext","oslint/readnext","okdotdev/book-recomendation-api-knn-python-flask","kalbarczykdev/readnext"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/KalbarczykDev/ReadNext","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KalbarczykDev%2FReadNext","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KalbarczykDev%2FReadNext/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KalbarczykDev%2FReadNext/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KalbarczykDev%2FReadNext/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KalbarczykDev","download_url":"https://codeload.github.com/KalbarczykDev/ReadNext/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KalbarczykDev%2FReadNext/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268241967,"owners_count":24218382,"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","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["flask","flask-application","flask-sqlalchemy","python","python-web","python-web-development"],"created_at":"2024-12-05T23:09:42.487Z","updated_at":"2025-08-01T14:31:03.482Z","avatar_url":"https://github.com/KalbarczykDev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📚 Book Recommendations System\n\nThis project was developed for my PPY (Programming in Python) class at the Polish Japanese Academy of Information Technology.\n\n## Overview\n\nThe Book Recommendations System is a web application that helps users discover books tailored to their interests. Users can explore a diverse collection of books, view recommendations, and manage their profiles.\n\n### Explore Page\n\u003cimg src=\"https://github.com/okdotdev/book-recomendation-api-knn-python-flask/assets/106467480/850afa65-4de9-45ea-a13d-dbd18ec8b2a5\" alt=\"Explore\" width=\"400\"/\u003e\n\n### Profile Page\n\u003cimg src=\"https://github.com/okdotdev/book-recomendation-api-knn-python-flask/assets/106467480/f2b99afe-2752-4889-90f5-4b7078ea1a70\" alt=\"Profile\" width=\"400\"/\u003e\n\n### Recommendations Page\n\u003cimg src=\"https://github.com/okdotdev/book-recomendation-api-knn-python-flask/assets/106467480/35554e37-1655-4adb-89fc-3ae606fdc928\" alt=\"Recommendations\" width=\"400\"/\u003e\n\n\n## Features\n\n- 🔍 **Book Search:** Search for books by title, author, year, or genre.\n- 👤 **User Profiles:** View and manage your liked books.\n- 🎯 **Personalized Recommendations:** Receive book recommendations based on your likes and preferences.\n\n## Setup\n\n### Prerequisites\n\nEnsure you have the following installed:\n\n- Python 3.8+\n- Flask\n- Flask-Migrate\n\n### Installation\n\n1. Clone the repository:\n    ```bash\n    git clone \u003crepository-url\u003e\n    cd \u003crepository-directory\u003e\n    ```\n\n2. Create a virtual environment and activate it:\n    ```bash\n    python -m venv venv\n    source venv/bin/activate  # On Windows use `venv\\Scripts\\activate`\n    ```\n\n3. Install the required packages:\n    ```bash\n    pip install -r requirements.txt\n    ```\n\n4. Initialize the database:\n    ```bash\n    flask db init\n    flask db migrate -m \"initial migration\"\n    flask db upgrade\n    ```\n\n5. Seed the database with initial data (if needed):\n    ```bash\n    flask seed_db\n    ```\n\n### Running the App\n\nStart the Flask development server:\n```bash\nflask run\n```\nOpen your browser and navigate to http://127.0.0.1:5000 to access the app.\n\n\n## 🚫Common errors\n\nIf you encounter a 403 error when trying to log in or run the app using Chrome or Chromium, try clearing the socket pool:\nOpen a new tab and go to:\n```\nchrome://net-internals/#sockets\n```\nClick on \"Flush socket pools.\"\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKalbarczykDev%2FReadNext","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FKalbarczykDev%2FReadNext","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKalbarczykDev%2FReadNext/lists"}