Skip to content

Python library for accessing the local Mendeley sqlite3 database.

Notifications You must be signed in to change notification settings

brotchie/pymendeley

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

https://docs.google.com/drawings/pub?id=1kHdWh4RxbXWWCv5Q9CHMtnIRAtUFGad5xcRDKuBXIsA&w=829&h=279

Python package for accessing Mendeley's local sqlite3 database

pymendeley retrieves reference information from Mendeley's local sqlite3 database.

Install using:

sudo pip install https://github.com/brotchie/pymendeley/tarball/master

Dump a list of all references:

import mendeley
import operator

db = mendeley.MendeleyDatabaseInterface()
references = db.get_references()

references.sort(key=operator.attrgetter('authors'))

for ref in references:
    print(ref.as_text_reference())

Partial output of result:

...
Uppal - 1993 - A general equilibrium model of international portfolio choice
Valenzuela - 2010 - Rollover Risk and Corporate Bond Spreads
Vasicek - 1977 - An equilibrium characterization of the term structure
Veldhuizen - 1995 - Expression Templates
Verousis, ap Gwilym - 2010 - An improved algorithm for cleaning Ultra High-Frequency data
Waggoner - 1997 - Spline Methods for Extracting Interest Rate Curves from Coupon Bond Prices
Wang, Zhou, Guan - 2011 - Detecting Collusive Cliques in Futures Markets Based on Trading Behaviors
...

About

Python library for accessing the local Mendeley sqlite3 database.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages