Skip to content

Instantly share code, notes, and snippets.

@obenshaindw
obenshaindw / nda-interactive-resume.py
Last active September 24, 2020 15:15
Python script for interactively resuming an NDA submission.This script allows the user to select local file for each remaining file to be uploaded.This has an advantage over using nda-tools vtcmd command-line client, which will attempt to find the file and can be quite inefficient with multiple directories to scan.
import boto3
from botocore.exceptions import ClientError
import requests
import getpass
import os
import time
username = input('Username:')
password = getpass.getpass()