[seiscomp, scanloc] Install, add .gitignore

This commit is contained in:
2025-10-09 15:07:02 +02:00
commit 20f5301bb1
2848 changed files with 1315858 additions and 0 deletions

View File

@ -0,0 +1,10 @@
from seiscomp.client import *
from seiscomp.system import PluginRegistry
import seiscomp3.Logging
import seiscomp3.Config
import seiscomp3.Core
import seiscomp3.DataModel
import seiscomp3.IO
import seiscomp3.Math
import seiscomp3.Utils

View File

@ -0,0 +1 @@
from seiscomp.config import *

View File

@ -0,0 +1 @@
from seiscomp.core import *

View File

@ -0,0 +1,6 @@
from seiscomp.datamodel import *
import seiscomp3.IO
import seiscomp3.Math
import seiscomp3.Core

View File

@ -0,0 +1,4 @@
from seiscomp.geo import *
import seiscomp3.Math
import seiscomp3.Core

View File

@ -0,0 +1,4 @@
from seiscomp.io import *
import seiscomp3.Math
import seiscomp3.Core

View File

@ -0,0 +1 @@
from seiscomp.kernel import *

View File

@ -0,0 +1 @@
from seiscomp.logging import *

View File

@ -0,0 +1,3 @@
from seiscomp.math import *
import seiscomp3.Core

View File

@ -0,0 +1,7 @@
from seiscomp.seismology import *
import seiscomp3.IO
import seiscomp3.Math
import seiscomp3.Core
import seiscomp3.DataModel
import seiscomp3.Config

View File

@ -0,0 +1 @@
from seiscomp.setup import *

View File

@ -0,0 +1 @@
from seiscomp.shell import *

View File

@ -0,0 +1,4 @@
from seiscomp.system import *
import seiscomp3.Core
import seiscomp3.Config

View File

@ -0,0 +1 @@
from seiscomp.utils import *

View File

@ -0,0 +1,19 @@
import os
import sys
import warnings
sys.setdlopenflags(os.RTLD_LAZY | os.RTLD_GLOBAL)
# Since Python 3.2 DeprecationWarnings are ignored by default. Since Python 3.7
# DeprecationWarnings are shown when triggered directly by code in __main__.
# We enable DeprecationWarnings again unless warning options have been specified on the
# command-line, e.g., -Wignore.
if not sys.warnoptions:
warnings.simplefilter("default", category=DeprecationWarning)
warnings.warn(
"The SeisComP3 python API compatibility layer is deprecated and will be removed "
"with SeisComP 7. Change your imports from 'seiscomp3' to 'seiscomp'.",
DeprecationWarning,
2
)