entrepreneur-interet-general / OpenScraper

An open source webapp for scraping: towards a public service for webscraping
http://www.cis-openscraper.com/
MIT License
93 stars 22 forks source link
bulma entrepreneur-interet-general html mongodb python python2 scraper scrapy spider tornado xpath

OpenScraper


part 1/3 of the TADATA! sofware suite (ApiViz / Solidata_backend / Solidata_frontend / OpenScraper )


a public service for webscraping

OpenScraper is a minimalistic, open source webscraper with a simple interface, so almost anyone with very little technical knowledge could scrap public data and install/adapt it for its own purposes... for free.

... anyway, that's the goal folks ! ...
(it's a development phase for now)

OpenScraper is a project by SocialConnect

#python #tornado #scrapy #selenium #mongodb #bulma


WHAT IS NEW ?


ARGUMENT

To which needs this project aims to answer ?

Scraping can quickly become a mess, mostly if you need to scrap several websites in order to eventually get a structured dataset. Usually you need to set up several scrapers for every website, configure the spiders one by one, get the data from every website, and clean up the mess to get from this raw material one structured dataset you know that exists...

Yes, similar solutions already does exist... but...

So you have mainly three options when it comes to scrap the web :

A theoretical use case

So let's say you are a researcher, a journalist, a public servant in an administration, a member of any association who want to survey some evolutions in the society... Let's say you need data not easy to get, and you can't afford to spend thousand of euros in using a private service for webscraping.

You'd have a list of different websites you want to scrap similar information from, each website having some urls where are listed those data (in our first case social innovation projects). For every information you know it could be similarly described with : a title, an abstract, an image, a list of tags, an url, and the name and url of the source website, and so on...

So to use OpenScraper you would have to :

An open scraper for more digital commons

To make that job a bit easier (and far cheaper) OpenScraper aims to display an online GUI interface (a webapp on the client side) so you'll just have to set the field names (the data structure you expect), then enter a list of websites to scrap, for each one set up the xpath to scrap for each field, and finally click on a button to run the scraper configured for each website...

... and tadaaaa, you'll have your data : you will be able able to import it, share it, and visualize it (at least we're working on it as quickly as we can)...

OpenScraper is developped in open source, and will provide a documentation as much as a legal framework (licence and CGU) aiming to make the core system of OpenScraper fit the RGPD, in the letter and in the spirit.


INSTALLATION WALKTHROUGH

LOCALLY

  1. clone or download the repo

  2. install MongoDB locally or get the URI of the MongoDB you're using

  3. install chromedriver

    • on MacOS :

      $ brew tap caskroom/cask $ brew cask install chromedriver

    • on Ubuntu :

      $ sudo apt-get install chromium-chromedriver

  4. go to your openscraper folder

  5. create a virtual environment for python 2.7 virtual environment)

    $ python venv venv $ source venv/bin/activate

  6. install the libraries

    $ pip install -r requirements.txt

  7. optionnal : notes for installing python libs on linux servers

    $ sudo apt-get install build-essential libssl-dev libffi-dev python-dev python-psycopg2 python-mysqldb python-setuptools libgnutls-dev libcurl4-gnutls-dev $ sudo apt install libcurl4-openssl-dev libssl-dev $ sudo apt-get install python-pip $ sudo pip install --upgrade pip $ sudo pip install --upgrade virtualenv $ sudo pip install --upgrade setuptools

  8. optionnal : create a config/settings_secret.py file based on config/settings_example.py with your mongoDB URI (if you're not using default mongoDB connection) :

  9. run app

    $ cd openscraper $ python main.py

  10. you can also choose options when running main.py

    • -p or --port : the number of your port (default : 8000)
    • -m or --mode : the mode (default : default) - choices : default (uses settings_example.py in openscraper/config folder) | production (uses settings_secret.py in ~/config folder )

    example :

    $ python main.py -p 8100 --mode=production

  11. check in your browser at localhost:8000 (or whichever port you entered)

  12. create/update your datamodel at localhost:8000/datamodel/edit

  13. create/update your spiders at localhost:8000/contributors

  14. run the test spider in the browser by clicking on the test spider at localhost:8000/contributors

PRODUCTION

  1. get a server - check digital ocean, OVH, ...
  2. optionnal : get a domain name : check OVH, namecheap, godaddy....
  3. follow (most of) these instructions
  4. pray for all that to work...

TECHNICAL POINTS

Tech stack

Tech goals for a MVP


ROADMAP TO A MVP

To do list :

  1. DONE - understand basics of Tornado (reuse some tutorial material)
  2. DONE - basic Tornado + MongoDB setup
  3. DONE - understand basics of Scrapy
  4. DONE - UI to create user (register), create/update a datamodel, create/update a spider configuration
  5. DONE - add a GUI to configure the data structure you expect from the scraping
  6. DONE - create a generic spider (class) + generic item to fill, both callable from handlers
  7. DONE - integrate generic spider + tests + run
  8. DONE - make Tornado and a basic scrapy spider work together (non-blocking)
  9. DONE - make a nice front in Bulma
  10. DONE - add Selenium to mimic navigation by clics on reactive websites
  11. DONE - add API points for JSON feeds
  12. DONE - add an "export csv" button and function to download the dataset
  13. deploy a demo at http://www.cis-openscraper.com/
  14. ... nicer front in vue.js
  15. integrate JWT and hash private infos for users and API

Currently :

Notes for later / issues :


CREDITS

OpenScraper's team thanks :

Contacts :


SCREENSHOTS (development)

index

alt text


edit your datamodel
(only for admin and staff of openscraper)

alt text


add a field to your datamodel
(only for admin and staff of openscraper)

alt text


list of websites you want to crawl
(for admin, staff and users of openscraper)

alt text


add a new website to scrap
(for admin, staff and users of openscraper)

alt text


the resulting dataset
(data shown depends on the user's auth level : admin, staff, user, visitor)

alt text


overview of the API response
(data shown depends on your token)

alt text