Skip to content

Mendeley/mendeley-python-sdk

Repository files navigation

Mendeley Python SDK

Monthly downloads Pypi version Format License Docs Build status

The Mendeley Python SDK provides access to the Mendeley API. For more information on the API and its capabilities, see the Mendeley developer portal.

Installation

You might like to set up a virtualenv for your project that uses the Mendeley API. See this virtualenv tutorial for instructions. IDEs like IntelliJ with the Python plugin or PyCharm can also help you manage a virtualenv.

Install dependencies from PyPI using pip, a package manager for Python.

pip install mendeley

Documentation

Full documentation, including examples, can be found on ReadTheDocs.

Continuous integration

See the Travis CI build to find:

  • The current build status
  • Logs from the SDK being exercised against the live API (this may be helpful if you are stuck when building your own application)

Releases

Travis CI automatically pushes new releases to Pypi, and triggers ReadTheDocs rebuilds, if the following conditions are true:

  • The commit is on the master branch
  • The commit has been tagged (this can be achieved with a flow like git tag v1.2.3 and then git push --tags)
  • The build passes for that commit

See the .travis.yml 'deploy' section for more specific information.

Compatibility

  • Our SDK is tested on CI against both Python 2 and 3. Inspect the .travis.yml file to find out which specific Python versions have been tested with this project.
  • Both builds in the build matrix must pass in order for the overall build for a commit to pass.
  • If you are working on the code, the 'future' library and the compatible idioms guide can help you to support both versions.

Contributing to the SDK

Submission method

  1. Fork the repository
  2. Make your changes (please add tests - they will be exercised)
  3. Propose a pull request back to our repository. The CI system will test your changes on top of the current master commit, so we can see if they will work.

Dependency setup

  1. Set up a virtualenv if you like.
  2. Run pip install -r requirements.txt

Testing your changes

Run the test suite to see if your changes worked. If you are using a virtualenv, consider using tox. If not, the good old py.test command also works.

Prerequisites

  1. Register a Mendeley platform app.

  2. Set the Mendeley API client ID and secret as environment variables in your shell:

     export MENDELEY_CLIENT_ID=[your app client ID]
     export MENDELEY_CLIENT_SECRET=[your app client secret]
    

To run tests the normal way

  1. Create a test user account that you can safely make a mess inside. WARNING: Our user flow test suite exercises the API as a particular Mendeley user. The suite contains tests that will delete all documents associated with that account. Do not use your personal Mendeley account!

  2. Set the necessary extra credentials:

     export MENDELEY_ACCESS_TOKEN=[user's access token]
     export MENDELEY_REDIRECT_URI=[redirect URI of your app]
    
  3. Turn on the VCR cache (if you like) by setting recordMode: once in the test config YAML file.

  4. Run all tests in the test suite:

     py.test
    

To replicate CI testing

In the CI environment, it is not (yet) possible to test interactions with API endpoints that require user access tokens. We can only exercise tests that use the client credentials flow. You must put any tests which CI cannot run in the test/manual folder, so that the CI test run command can ignore them.

  1. Turn off the VCR cache (CI only makes sense when running against the real API) by setting recordMode: all the test config YAML file.

  2. Run the test suite ignoring 'user mode' tests that require user access tokens:

     py.test --ignore=test/manual/
    

Writing documentation

  • Documentation is generated using Sphinx, and hosted on ReadTheDocs. There are some pages in the docs directory in the repository, which refer to classes. The classes themselves have comments with a special format to generate the documentation - think Javadoc.
  • If you add or change a public method, you should update the documentation comments.
  • If you add new classes, you must include them in the correct place in the docs directory.

Sample applications