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/python3 | |
import aiohttp | |
from asyncio import create_task, sleep, wait, Semaphore,\ | |
Queue, run, ALL_COMPLETED | |
from collections import defaultdict | |
import json | |
import re | |
#import random |
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/python3 | |
import socket | |
import logging | |
import asyncio | |
import time | |
from collections import defaultdict | |
import json | |
logging.getLogger("scapy.runtime").setLevel(logging.ERROR) |
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/python -tt | |
# | |
# Note that this uses xlist, which is deprecated. | |
# | |
# This also predates the GMail REST API, which is probably a better mechanism | |
# https://developers.google.com/gmail/api/ | |
# | |
# | |
""" Example of how to use Google IMAP Extensions using Python |
NewerOlder