Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vukan-markovic/book_evaluator
Flask web application with CRUD operations and authentication using Google Books API
https://github.com/vukan-markovic/book_evaluator
authentication crud-operations flask flask-api flask-application flask-extensions flask-web google-books-api heroku-deployment python python-2 python-3 python-flask python-flask-application python-flask-template python-flask-web python-flask-webpage python-library python3 sqlite-database
Last synced: about 19 hours ago
JSON representation
Flask web application with CRUD operations and authentication using Google Books API
- Host: GitHub
- URL: https://github.com/vukan-markovic/book_evaluator
- Owner: vukan-markovic
- License: mit
- Created: 2018-07-06T09:39:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-17T03:07:07.000Z (about 2 years ago)
- Last Synced: 2025-01-18T09:03:18.632Z (3 days ago)
- Topics: authentication, crud-operations, flask, flask-api, flask-application, flask-extensions, flask-web, google-books-api, heroku-deployment, python, python-2, python-3, python-flask, python-flask-application, python-flask-template, python-flask-web, python-flask-webpage, python-library, python3, sqlite-database
- Language: Python
- Homepage: https://book-evaluator.herokuapp.com
- Size: 17.2 MB
- Stars: 20
- Watchers: 4
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Book evaluator :books:
Web application for evaluating, commenting, reading and searching books with supported authentication.
Short description of the application:
Registered users have the ability to rate books and comment on them, delete and edit their comments and ratings, reading individual books as well as creating diary of readed books with the ability to search and to post on blog. Each registered user has his own profile
with some basic information about it and its activity on the site and the ability to view other users' profiles.Unregistered users can review books, comments, ratings, posts, profiles of other users and search the books without any other options.
The site administrator has all the capabilities of the registered user and also the ability to delete and change the ratings and comments of all users as well as a review of all registered users with the possibility of their deletion.
Books are delivered through the [Google Books API](https://developers.google.com/books).
Technologies:
The following tools were used to create the application:
- [Flask web python framework](http://flask.pocoo.org)
- [CS50.io development environment](https://cs50.io)
- [SQLite database](https://www.sqlite.org/index.html)
- [Heroku service for hosting](https://www.heroku.com)Sources:
- https://www.edx.org/course/cs50s-introduction-computer-science-harvardx-cs50x
- http://flask.pocoo.org
- https://stackoverflow.com
- https://www.youtube.com/watch?v=4_RYQJfiuVU
- https://bootswatch.com/mintyInstalling all necessary startup packages in the CS50 environment by executing the command: pip3 install --user -r requirements.txt.
To run locally:
- install git
- git clone https://github.com/Vukan-Markovic/Book-evaluator.git
- install python
- install python3
- install virtualenv
- virtualenv -p python3 venv
- source venv/bin/activate
- pip install -r requirements.txt
- export FLASK_APP=application.py
- export FLASK_DEBUG=1
- flask run
App is running on http://127.0.0.1:5000.[Documentation](https://vukan-markovic.github.io/Book_evaluator/)