From d7d2a659b12e351cb246dcb2a49bd4dd43eeb67a Mon Sep 17 00:00:00 2001 From: RTB Date: Thu, 19 Jun 2014 22:34:53 +0200 Subject: [PATCH] changed https to http in PubChem.py --- FourmiCrawler/sources/PubChem.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FourmiCrawler/sources/PubChem.py b/FourmiCrawler/sources/PubChem.py index 0768612..0bc8b8c 100644 --- a/FourmiCrawler/sources/PubChem.py +++ b/FourmiCrawler/sources/PubChem.py @@ -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 - website = 'https://.*\\.ncbi\\.nlm\\.nih\\.gov/.*' - website_www = 'https://www.ncbi.nlm.nih.gov/*' - website_pubchem = 'https://pubchem.ncbi.nlm.nih.gov/.*' + website = 'http://.*\\.ncbi\\.nlm\\.nih\\.gov/.*' + website_www = 'http://www.ncbi.nlm.nih.gov/*' + website_pubchem = 'http://pubchem.ncbi.nlm.nih.gov/.*' search = 'pccompound?term=%s' data_url = 'toc/summary_toc.cgi?tocid=27&cid=%s'