aboutsummaryrefslogtreecommitdiffstats
path: root/devscripts/make_supportedsites.py
blob: 5ccc75d647ae901f4c8a4011866b38e738edb50b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python3

# Allow direct execution
import os
import sys

sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))


from devscripts.utils import get_filename_args, write_file
from hypervideo_dl.extractor import list_extractor_classes


def main():
    out = '\n'.join(ie.description() for ie in list_extractor_classes() if ie.IE_DESC is not False)
    write_file(get_filename_args(), f'# Supported sites\n{out}\n')


if __name__ == '__main__':
    main()