diego-plan9 / google-scholar-scraper-in-python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Citation Network Analyzer

Citation Network Analyzer (citenet) is a program for generating and analyzing compact networks of citation relationships between academic publications.

The full suite consists of:

  • a Python application for retrieving a set of academic publications from Google Scholar, and storing them into a SQLite database.
  • a R package containing a series of functions and tools for analysis, modification and plotting of a set of academic publications and their relationships.

This repository contains the citenet Python application.

Requirements

This module depends on the following packages, available from pip:

Installation

For convenience, a Windows installer package generated with Nullsoft Scriptable Install System is provided for each release, intended for end users, which includes:

  • a compiled version of the citenet Python package and its dependencies, using PyInstaller.
  • an installable version of the citenet R module and its dependencies.

The following instructions apply for manual installation via different methods.

$ virtualenv venv-citenet
$ cd venv-citenet
$ source bin/activate
(venc-citenet)$ pip install PySide==1.2.2

Depending on your setup, the installation of PySide might require that the QT libraries and headers are installed on your system. Please refer to your distribution documentation for more specific instructions.

Windows

On Windows system, installation instructions might vary depending on your specific version and platform, and the following steps might need to be adjusted to match your environment:

python get-pip.py
  • Install PySide using pip.
pip install -U PySide

Please refer to the PySide documentation for more information.

Launching

Once installed, the Python module can be executed from the top level folder of the project with the following command:

python -m citenet.citenet

Alternatively, it can be invoked from the folder containing the scholar.py file (citenet/) directly (or via double clicking on the scholar.py file on Windows systems):

python scholar.py

Additional notes

This application interacts with Google Scholar, performing a series of queries in order to retrieve the publications and related information. It is the user's sole responsability to ensure that their usage conforms to Google Scholar Terms of Service and within their acceptable policy and usage limits.

Changelog

  • 1.6.1 (2015-07-16) - Bugfix release (new Scholar settings page, sqlite path defaults to "My Documents")
  • 1.6 (2015-05-28) - Initial public release

License

This software is licensed under the GPL2 license.

citenet - Citation Network Analyzer
Copyright (C) 2015 Jesse Lecy <jdlecy@gmail.com>, with contributions from
Diego Moreda <diego.plan9@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

About

License:GNU General Public License v2.0


Languages

Language:Python 100.0%