Przeszukaj forum
Pokazuję wyniki dla tagów 'kod'.
Znaleziono 5 wyników
-
Nie umiem znaleść pewnych modulów przy tworzeniu bota do instagrama .Oto kod import AccountAgent, DBUsers import Constants import datetime def init(webdriver): Constants.init() AccountAgent.login(webdriver) def update(webdriver): #Get start of time to calculate elapsed time later start = datetime.datetime.now() #Before the loop, check if should unfollow anyone _check_follow_list(webdriver) while True: #Start following operation AccountAgent.follow_people(webdriver) #Get the time at the end end = datetime.datetime.now() #How much time has passed? elapsed = end - start #If greater than our constant to check on #followers, check on followers if elapsed.total_seconds() >= Constants.CHECK_FOLLOWERS_EVERY: #reset the start variable to now start = datetime.datetime.now() #check on followers _check_follow_list(webdriver) def _check_follow_list(webdriver): print("Checking for users to unfollow") #get the unfollow list users = DBUsers.check_unfollow_list() #if there's anyone in the list, start unfollowing operation if len(users) > 0: AccountAgent.unfollow_people(webdriver, users)
-
Wygeneruj kod do odblokowania radia w samochodach Jeep Cherokee (Chrysler). Znajdź numer seryjny radia, wpisz go do kalkulatora i odblokuj radio samochodowe. https://www.pelock.com/pl/produkty/jeep-cherokee-kod-do-odblokowania-radia-kalkulator-generator
-
- jeep cherokee
- kod
- (3 więcej)
-
Po awarii lub odłączeniu akumulatora samochodowego, radio samochodowe Renault (lub Dacia) poprosi o kod zabezpieczający, aby urządzenie zaczęło działać. Jeśli jednak nie możesz znaleźć kodu dla swojego radia, nie panikuj. Ten przewodnik pomoże Ci wygenerować kod radia samochodowego. https://www.pelock.com/pl/produkty/renault-i-dacia-kod-do-radia-samochodowego-kalkulator-generator
-
- kalkulator
- generator
- (5 więcej)
-
Nie dochodzą emaile do masowego wysyłania emaili z gmaila i zezwóliłem dostęp do aplikacji i włączyłem imap i pop.Oto kod: import smtplib with open("to.txt", 'r') as f: maile = [a.strip() for a in f.readlines() if a.strip()] print(maile) gmail_user = '' gmail_password = '' sent_from = gmail_user email_text = 'tekst' try: server = smtplib.SMTP('smtp.gmail.com', 587) server.ehlo() server.starttls() server.login(gmail_user, gmail_password) for x in maile: server.sendmail(sent_from, x, email_text) except: print('Hej')
-
from selenium import webdriver import time from selenium.webdriver.common.keys import Keys webdriver = webdriver.Chrome("chromedriver.exe") webdriver.get('https://6obcy.org/') obcy = webdriver.find_element_by_id('intro-start') obcy.click() time.sleep(2) text = webdriver.find_element_by_id('box-interface-input') text.send_keys("Tu wpisujemy text") text.send_keys(Keys.ENTER) https://zapodaj.net/7722152aacd0a.jpg.html