A curated list of awesome Python frameworks, libraries, software and resources.
This file contains hidden or 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/python3 | |
| import sys | |
| import subprocess | |
| import re | |
| import hashlib | |
| import requests | |
| from xml.etree import ElementTree | |
| ### |
This file contains hidden or 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/python | |
| from mininet.topo import Topo, SingleSwitchTopo | |
| from mininet.net import Mininet | |
| from mininet.log import lg, info | |
| from mininet.cli import CLI | |
| def main(): | |
| lg.setLogLevel('info') |