Welcome to Discourse! Read this First 📢

ObsPy is an open-source project dedicated to provide a Python framework for processing seismological data. It provides parsers for common file formats, clients to access data centers and seismological signal processing routines which allow the manipulation of seismological time series. The goal of the ObsPy project is to facilitate rapid application development for seismology.

This Discourse acts a replacement for the old users mailing list to engage with other users and devs.

Please make sure to use Markdown syntax to properly format your posts. Most importantly, make sure to enclose code blocks in triple backtick lines (```), optionally with syntax highlighting by specifying the language to use on the starting line (e.g. ```python), otherwise lines starting with # (comment lines in pasted code) will be interpreted as headlines and other ugly looking and hard to read things happen.

For example the following input when writing a post…

```python
print('Hello World')
```

…will be nicely rendered as:

print('Hello World')