-
Notifications
You must be signed in to change notification settings - Fork 1
/
wavesdownloader.py
executable file
·36 lines (29 loc) · 1.04 KB
/
wavesdownloader.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python -W ignore::DeprecationWarning
# encoding: utf-8
################################################################
#
# Script wavesdownloader: download seismic data and metadata from archives
#
# HELP: type ./wavesdownloader (or ./wavesdownloader -h)
#
################################################################
#################################################################
# ---- A. Import classes and functions ---- #
from myParser import checkConsistency,parseMyLine
from func_wd import wavesdownloader
import sys,os
##################################################################
# ---- B. Parse arguments ---- #
# and give process ID
args=parseMyLine()
ll = sys.argv[1:]
if not ll:
print "Use -h or --help option for Help"
sys.exit(0)
try:
print "Process ID: ",os.getpid()
except:
pass
##################################################################
# ---- C. call wavesdownloader ---- #
wavesdownloader(args)