obspy — Easy Examples
Seismology framework: waveform analysis, station metadata
Getting started with obspy
Installation and basic usage of obspy.
python
# Install: pip install obspy import obspy # Basic obspy usage print(f"Using obspy") # See documentation for detailed examples
Expected Output
# Expected output shown below # (Run locally with: obspy)
obspy is a third-party package. Seismology framework: waveform analysis, station metadata. Install with: pip install obspy
Common obspy operations
Frequently used features of obspy.
python
# Install: pip install obspy import obspy # Common obspy patterns print(f"obspy version: {obspy.__version__}")
These are the most commonly used features of obspy in everyday development.
Want to try these examples interactively?
Open Easy Playground