Git Product home page Git Product logo

openlibrary_search's Introduction

How to install:

  1. install docker and docker-compose (please download version 4.8.2).
  2. inside cloned repo, build the container with docker-compose build
  3. and run the project docker-compose up

Example requests flow to this service using curl

# search openlibrary by author
curl localhost:8000/search/tolkien/
[
   {
      "key":"/works/OL262758W",
      "title":"The Hobbit",
      "author_key":[
         "OL26320A"
      ],
      "author_name":[
         "J.R.R. Tolkien"
      ]
   },
   ...
]

# save response as CSV file
curl localhost:8000/search.csv/tolkien/ --output search.csv
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 10325  100 10325    0     0   102k      0 --:--:-- --:--:-- --:--:--  101k

# peek CSV contents
head -4 search.csv                                    
author_key,author_name,key,title
['OL26320A'],['J.R.R. Tolkien'],/works/OL262758W,The Hobbit
['OL26320A'],['J.R.R. Tolkien'],/works/OL14933414W,The Fellowship of the Ring
['OL26320A'],['J.R.R. Tolkien'],/works/OL27479W,The Two Towers

# check author searches statistics for specific author_key
curl localhost:8000/author_searches/OL26320A/
{
   "author_key":"OL26320A",
   "author_name":"J.R.R. Tolkien",
   "count":1170
}

# check book searches statistics for specific book key
curl localhost:8000/book_searches/works/OL262758W
{
   "key":"/works/OL262758W",
   "title":"The Hobbit",
   "count":13
}

Admin views are available at

  • localhost:8000/admin/core/authorsearches/
  • localhost:8000/admin/core/booksearches/

openlibrary_search's People

Contributors

filipmlynarski avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.