#!/usr/bin/env python
#
# Copyright (C) 1998-2004 Frederic Gobry
-# Copyright (C) 2008-2011 W. Trevor King
+# Copyright (C) 2008-2012 W. Trevor King
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Before you use this program, read the rules_.
-.. _Entrez: http://eutils.ncbi.nlm.nih.gov/entrez/query/static/eutils_help.html
-.. _SOAP: http://eutils.ncbi.nlm.nih.gov/entrez/eutils/soap/v2.0/DOC/esoap_help.html
+.. _Entrez: http://www.ncbi.nlm.nih.gov/books/NBK25500/
+.. _SOAP: http://www.ncbi.nlm.nih.gov/entrez/query/static/esoap_help.html
.. _suds: https://fedorahosted.org/suds/
.. _rules: http://www.ncbi.nlm.nih.gov/entrez/query/static/eutils_help.html#UserSystemRequirements
__version__ = '0.2'
-EUTILS_WSDL_URL = 'http://eutils.ncbi.nlm.nih.gov/soap/v2.0/eutils.wsdl'
-EFETCH_WSDL_URL = 'http://eutils.ncbi.nlm.nih.gov/soap/v2.0/efetch_%s.wsdl'
+EUTILS_WSDL_URL = 'http://www.ncbi.nlm.nih.gov/entrez/eutils/soap/v2.0/eutils.wsdl'
+EFETCH_WSDL_URL = 'http://www.ncbi.nlm.nih.gov/entrez/eutils/soap/v2.0/efetch_%s.wsdl'
EFETCH_PLAIN_URL = 'http://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi'
NCBI_PLAIN_URL = 'http://www.ncbi.nlm.nih.gov/%s/%s'