Archived
1
0

changed https to http in PubChem.py

This commit is contained in:
RTB 2014-06-19 22:34:53 +02:00
parent 093eba8b04
commit d7d2a659b1

View File

@ -16,9 +16,9 @@ class PubChem(Source):
""" """
#PubChem has its data on compound name, properties and their values on different html pages, so different URLs used #PubChem has its data on compound name, properties and their values on different html pages, so different URLs used
website = 'https://.*\\.ncbi\\.nlm\\.nih\\.gov/.*' website = 'http://.*\\.ncbi\\.nlm\\.nih\\.gov/.*'
website_www = 'https://www.ncbi.nlm.nih.gov/*' website_www = 'http://www.ncbi.nlm.nih.gov/*'
website_pubchem = 'https://pubchem.ncbi.nlm.nih.gov/.*' website_pubchem = 'http://pubchem.ncbi.nlm.nih.gov/.*'
search = 'pccompound?term=%s' search = 'pccompound?term=%s'
data_url = 'toc/summary_toc.cgi?tocid=27&cid=%s' data_url = 'toc/summary_toc.cgi?tocid=27&cid=%s'