ObsPy
  •  GitHub
  •  Documentation 
    • Getting Started
    • Installation
    • Tutorial
    • Gallery
    • API Documentation (latest release)
    • API Documentation (current master)
  •  Mailing Lists 
    • Announcements Mailing List (public)
    •  Subscribe
    •  Archive
    • Users Mailing List (public)
    •  Subscribe
    •  Archives
    •  Post a message
  •  Developer Resources 
    • Gitter
    • How to contribute
    • Coding Style Guide
    • All Releases
    • Code Analysis
    • C Coverage
    • Coveralls
    • Continuous Integration
    • Test Reports
    •  Travis CI
    •  AppVeyor
index| modules| next| previous
  1. ObsPy Documentation (1.1.0)
  2. ObsPy Library Reference
  3. obspy.clients.seedlink - SeedLink client for ObsPy
  4. obspy.clients.seedlink.easyseedlink

obspy.clients.seedlink.easyseedlink.create_client¶

create_client(server_url, on_data=None, on_seedlink_error=None, on_terminate=None)[source]¶

Quickly create an EasySeedLinkClient instance.

Example

>>> from obspy.clients.seedlink.easyseedlink import create_client

>>> def handle_data(trace):
...     print('Received new data:')
...     print(trace)
...     print()
...
>>> client = create_client('geofon.gfz-potsdam.de',
...                        handle_data)  
>>> client.select_stream('BW', 'MANZ', 'EHZ')  
>>> client.run()  

Note

The methods passed to the create_client() function are not bound to the client instance, i.e. they do not have access to the instance via the self attribute. To get a bound method, the client class can be subclassed and the method overridden.

Parameters:
  • server_url (str) The SeedLink server URL
  • on_data (function or callable) A function or callable that is called for every new trace received from the server; needs to accept one argument (the trace); default is None
  • on_seedlink_error (function or callable) A function or callable that is called when a SeedLink ERROR response is received (see the on_seedlink_error() method for details); default is None
  • on_terminate (function or callable) A function or callable that is called when the connection is terminated (see the on_terminate() method for details); default is None

By the ObsPy Development Team and many Awesome Contributors™  |  Built with Bootstrap and Glyphicons  |  Copyright 2008-2017

Thank you!

We would like to thank our contributors, whose efforts make this software what it is. These people have helped by writing code and documentation, and by testing. They have created and maintained this product, its associated libraries and applications, our build tools and our web sites.

Contributors

  • Ackerley, Nick
  • Antunes, Emanuel
  • Bank, Markus
  • Behr, Yannik
  • Bernauer, Felix
  • Beyreuther, Moritz
  • Carothers, Lloyd
  • Chambers, Derrick
  • Danecek, Peter
  • Engels, Fabian
  • Eulenfeld, Tom
  • Falco, Nicholas
  • Grellier, Clément
  • Hammer, Conny
  • Heiniger, Lukas
  • Igel, Heiner
  • Isken, Marius
  • Koymans, Mathijs
  • Kress, Victor
  • Krischer, Lion
  • Käufl, Paul
  • Lecocq, Thomas
  • Legovini, Paride
  • Li, Yulin
  • Lopes, Rui L.
  • Maggi, Alessia
  • Megies, Tobias
  • Michelini, Alberto
  • Morgenstern, Bernhard
  • Panning, Mark P.
  • Rapagnani, Giovanni
  • Ringler, Adam
  • Russo, Emiliano
  • Satriano, Claudio
  • Scheingraber, Chris
  • Sippl, Christian
  • Stange, Stefan
  • Sullivan, Benjamin
  • Trabant, Chad
  • Uieda, Leonardo
  • Walther, Marcus
  • Williams, Mark C.
  • Zaccarelli, Riccardo
  • Zhu, Lijun
  • van Wijk, Kasper
  • Ammon, Charles J.
  • Arnarsson, Ólafur St.
  • Barsch, Robert
  • Bernardi, Fabrizio
  • Bes de Berc, Maxime
  • Bonaimé, Sébastien
  • Chamberlain, Calum
  • Clark, Adam
  • Egdorf, Sven
  • Ermert, Laura
  • Fabbri, Tommaso
  • Fee, Jeremy
  • Grunberg, Marc
  • Heimann, Sebastian
  • Hope, Gaute
  • Inza, Adolfo
  • Ketchum, David
  • Kremers, Simon
  • Krieger, Lars
  • Kula, Damian
  • Köhler, Andreas
  • Leeman, John
  • Lesage, Philippe
  • Lomax, Anthony
  • MacCarthy, Jonathan
  • Martin, Henri
  • Meschede, Matthias
  • Miller, Nathaniel C.
  • Nof, Ran Novitsky
  • Parker, Tom
  • Reyes, Celso
  • Rothenhäusler, Nicolas
  • Sales de Andrade, Elliott
  • Saul, Joachim
  • Schneider, Simon
  • Snoke, Arthur
  • Stähler, Simon C.
  • Tian, Dongdong
  • Trani, Luca
  • Walker, Andrew
  • Wassermann, Joachim
  • Winkelman, Andrew
  • Zad, Seyed Kasra Hosseini
  • van Driel, Martin

Funds

ObsPy was partially funded by the

  • German Science Foundation (DFG) via grant DFG IG 16/9-1
  • German Ministry for Education and Research (BMBF), GEOTECHNOLOGIEN grant 03G0646H.
  • NERA project (Network of European Research Infrastructures for Earthquake Risk Assessment and Mitigation) under the European Community's Seventh Framework Programme (FP7/2007-2013) grant agreement n° 262330
  • Leibniz Institute for Applied Geophysics (LIAG)
  • VERCE EU-FP7 project (no. 283543)