Search the Community
Showing results for tags 'kod'.
-
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
- (and 5 more)
-
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()
-
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