Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Notes
This README might be slightly outdated. You can help by submitting a pull request.

Exception handling
--------------
------------------

The methods of this library might throw client or server errors. An error is
an exception coming from the proven
Expand Down
10 changes: 6 additions & 4 deletions orcid/orcid.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
"""Implementation of python-orcid library."""

from bs4 import BeautifulSoup
import requests
import simplejson as json
import json
import sys
from lxml import etree
from xml.etree import ElementTree as etree

import requests
from bs4 import BeautifulSoup

if sys.version_info[0] == 2:
from urllib import urlencode
string_types = basestring,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def run_tests(self):
],
cmdclass={'test': PyTest},
description='A python wrapper over the ORCID API',
install_requires=['html5lib', 'beautifulsoup4', 'requests', 'simplejson', 'lxml'],
install_requires=['html5lib', 'beautifulsoup4', 'requests'],
keywords=['orcid', 'api', 'wrapper'],
license='BSD',
long_description=open('README.rst', 'r').read(),
Expand Down