File: sample_listing.py

package info (click to toggle)
drslib 0.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,596 kB
  • sloc: python: 6,119; xml: 988; makefile: 128; sh: 121
file content (30 lines) | stat: -rw-r--r-- 574 bytes parent folder | download | duplicates (5)
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
#!/usr/bin/env python
# BSD Licence
# Copyright (c) 2011, Science & Technology Facilities Council (STFC)
# All rights reserved.
#
# See the LICENSE file in the source distribution of this software for
# the full license text.

Randomly sample a CMIP listing file

Usage: sample_listing.py n <listing.txt

"""

import sys, random

def main():
    n = int(sys.argv[1])

    fns = []
    for line in sys.stdin:
        fn, size = line.strip().split()
        fns.append(fn)

    s = random.sample(fns, n)
    for fn in s:
        print fn

if __name__ == '__main__':
    main()