obspy.neries.client.Client.__init__¶
- Client.__init__(user=u'', password=u'', timeout=10, debug=False, user_agent=u'ObsPy 0.10.0 (Linux-2.6.32-042stab092.3-i686-with-Ubuntu-12.04-precise, Python 2.7.3)')[source]¶
Initializes the NERIES Web service client.
Parameters: - user (str, optional)
The user name used for identification with the Web service. This entry in form of a email address is required for using the following methods:
Defaults to ''.
- password (str, optional) A password used for authentication with the Web service. Defaults to ''.
- timeout (int, optional) Seconds before a connection timeout is raised (default is 10 seconds). Available only for Python >= 2.6.x.
- debug (bool, optional) Enables verbose output.
- user_agent (str, optional) Sets an client identification string which may be used on server side for statistical analysis (default contains the current module version and basic information about the used operation system, e.g. 'ObsPy 0.4.7.dev-r2432 (Windows-7-6.1.7601-SP1, Python 2.7.1)'.
- user (str, optional)