Creates a new Stream containing num copies of this stream.
Example
>>> from obspy import read >>> st = read() >>> len(st) 3 >>> st2 = st * 5 >>> len(st2) 15
Enter search terms or a module, class or function name.