Skip to content

Python library for accessing the local Mendeley sqlite3 database.

Notifications You must be signed in to change notification settings

bergercookie/pymendeley

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python package for accessing Mendeley's local sqlite3 database

https://travis-ci.org/bergercookie/pymendeley.svg?branch=master Documentation Status

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

Description

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

Install bergercookie/pymendeley using:

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

Dump a list of all references:

import lmendeley

db = lmendeley.MendeleyDatabaseInterface()
references = db.load_all_references()

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

Projects using pymendeley:

Offline documentation

A developer can also generate the Sphinx documentation for pymendeley offline:

  • Install the related tools:

    apt-get install sphinx sphinx_rtd_theme
    
  • To update the documentation run make html inside the docs directory. Open the build/html/index.html file to view the results:

    $ firefox docs/build/html/index.html
    

About

Python library for accessing the local Mendeley sqlite3 database.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 96.9%
  • Shell 3.1%