Project

General

Profile

1
#!/usr/bin/env python
2
# A TNRS client
3
# When using xargs to pass many names, note that xargs will by default split its
4
# arguments into chunks of 5000. You can change this using the -n option.
5
# Note that obtaining an actual CSV requires four (!) steps: submit, retrieve,
6
# prepare download, and download.
7

    
8
import os.path
9
import sys
10

    
11
sys.path.append(os.path.dirname(__file__)+"/../lib")
12

    
13
import opts
14
import streams
15
import tnrs
16

    
17
def main():
18
    # Input
19
    env_names = []
20
    debug = opts.env_flag('debug', False, env_names)
21
    names = sys.argv[1:]
22
    if not names: raise SystemExit('Usage: '+opts.env_usage(env_names, True)
23
        +' '+sys.argv[0]+' name... >out 2>>log')
24
    
25
    streams.copy(tnrs.repeated_tnrs_request(names, debug), sys.stdout)
26

    
27
main()
(70-70/79)