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 psycopg2 | |
import time | |
import selenium | |
from selenium import webdriver | |
import openpyxl | |
from openpyxl import load_workbook | |
import subprocess | |
from email.mime.text import MIMEText | |
from email.mime.application import MIMEApplication | |
from email.mime.multipart import MIMEMultipart |
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 bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException | |
import time, os, sys | |
print("Starting Spam Program") | |
password = "d9060549bd53cda3fc0f891b5f4a586271d5ee6a180ade1ea2bfe3985ccc7b01" | |
user = "6594052d2802c63e763caad3afdd5a2babcdacc4daf47277ca91d4d050d25d16" | |
def rpc_conn(user=user, password=password): | |
rpc_conn = AuthServiceProxy("http://%s:%s@localhost:9998" % (user, password)) |