This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import logging | |
import pulldistros | |
log = logging.getLogger(__name__) | |
def main(): | |
distros = pulldistros.distros() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import logging | |
import sys | |
from bs4 import BeautifulSoup | |
content = open(sys.argv[1]) | |
bs = BeautifulSoup(content, 'html.parser') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# encoding: utf-8 | |
"""Minimal python commad line.""" | |
__version__ = '0.1' | |
import sys | |
import argparse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import argparse | |
import sys | |
from pgpdump import BinaryData | |
def main(args): | |
parser = argparse.ArgumentParser(description='Process OpenPGP files') | |
#parser.add_argument('integers', metavar='N', type=int, nargs='+', |