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
""" | |
__________________________________________________ | |
Base Page that provides basic page functionality | |
Positional arguments: | |
Selenium webdriver instance. | |
__________________________________________________ | |
""" | |
from bs4 import BeautifulSoup | |
from random import randint |
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
... | |
apply from: './flavors.gradle' | |
... | |
android { | |
buildTypes { | |
productFlavors { | |
project.flavors.each { flavor, config -> | |
"$flavor" { | |
dimension 'scope' | |
if (flavor != 'full') { |
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
import math | |
import multiprocessing | |
import os | |
from datetime import datetime | |
from typing import List | |
from jinja2 import Environment, FileSystemLoader | |
from sendgrid import sendgrid, Email | |
from sendgrid.helpers.mail import Content, Mail |
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
from nmap import PortScanner | |
from gcloud import ComputeInstance | |
PORT_RANGE = "1-65535" | |
class InstancePortScanner: | |
def __init__(self, instance: ComputeInstance): |