andrewelick / amazon-giveaway-bot

Bot that automatically enters you in to hundreds of instant amazon giveaways
13 stars 6 forks source link

missing 'myimports' and 'myimports1' modules #14

Open hvh2000 opened 5 years ago

hvh2000 commented 5 years ago

File "c:\amazoncontest\localhandler.py", line 1, in from myimports import os ModuleNotFoundError: No module named 'myimports'

Please add the myimports and myimports1 modules.

nyatrogen commented 5 years ago

I don't know much about programming but I messed around a bit with the code and got past this error, you just need to go edit the import section of amazoncontest.py and localhandler.py

for amazoncontest.py

import os
import sys
import time
import datetime
import random
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import Select
from selenium.webdriver.chrome.options import Options
from requests import get
from requests import put
from requests import post
from bs4 import BeautifulSoup
import sqlite3
import getpass
import imagetester
import localhandler

for localhandler.py

import os
import sys
import datetime
import string
import random
import time
import sqlite3
import hashlib
import pymysql
from requests import get
from selenium import webdriver
from selenium.webdriver.support.ui import Select
from selenium.webdriver.chrome.options import Options
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from string import Template
import getpass

For that part it works fine, but I can't figure out what is that "Finesse Prime" thing. and the link in the code (http://www.primegiveaway.com/programlogin) don't seem to work maybe that finesse prime thing got taken down. If someone get it to work I'd appreciate if you could share it!