edited global strings to be consistent (PEP-8)
This commit is contained in:
parent
f2cacb79eb
commit
c1c7cfc117
@ -12,11 +12,13 @@ The token required for the API should be in a configuration file somewhere.
|
|||||||
"""
|
"""
|
||||||
class ChemSpider(Parser):
|
class ChemSpider(Parser):
|
||||||
|
|
||||||
website = "http://www.chemspider.com/*"
|
website = 'http://www.chemspider.com/*'
|
||||||
|
|
||||||
search = "Search.asmx/SimpleSearch?query=%s&token=052bfd06-5ce4-43d6-bf12-89eabefd2338"
|
search = ('Search.asmx/SimpleSearch?query=%s&token='
|
||||||
structure = "Chemical-Structure.%s.html"
|
'052bfd06-5ce4-43d6-bf12-89eabefd2338')
|
||||||
extendedinfo = "MassSpecAPI.asmx/GetExtendedCompoundInfo?csid=%s&token=052bfd06-5ce4-43d6-bf12-89eabefd2338"
|
structure = 'Chemical-Structure.%s.html'
|
||||||
|
extendedinfo = ('MassSpecAPI.asmx/GetExtendedCompoundInfo?csid=%s&token='
|
||||||
|
'052bfd06-5ce4-43d6-bf12-89eabefd2338')
|
||||||
|
|
||||||
ignore_list = []
|
ignore_list = []
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user