Skip to content

subhaminion/DjangoGooglePlaySearch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DjangoGooglePlaySearch

A search engine built on Django which can Search, Cache and Display results from Google Play Store. It caches search result (obtained by parsing from PlayStore) everytime onto database so that whenever same term is searched later, it will be retrieved directly from the database.

Requirements

Python 3.5 or higher

Features

  • Provides list of top 10 results fetched from the Play Store

  • Searching/ Parsing results from Google Play Store

  • Caching of the search results everytime.

  • App specific page providing details of the app.

Setting up

  1. Clone the repo.
git clone https://github.com/SubhamBhattacharjee/DjangoGooglePlaySearch.git
  1. Create a virtualenv with python 3.5 interpreter.
mkvirtualenv <virtualenv_name> --python=<path_to_python3>
Example: mkvirtualenv googleplaysearch --python=/usr/local/bin/python3
  1. Install the requirements.
pip install -r requirements.txt
  1. Perform migrations. (SQLite3 database is used by default).
python manage.py migrate
  1. Run the server.
python manage.py runserver

Server will be live at http://127.0.0.1:8000

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published