오르비 댓글 다는 매크로( 파이썬 구동할 수 있으면 가능 )
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
import time
def login_to_orbi_and_comment(username, password, article_number, comment_word, num_comments):
# Set up WebDriver
login_url = "https://login.orbi.kr/login"
base_url = "https://orbi.kr/"
article_url = f"{base_url}{article_number}" # Construct the article URL
# Start WebDriver
driver = webdriver.Chrome() # Ensure you have the ChromeDriver installed and accessible
driver.get(login_url)
try:
# Log in to Orbi
time.sleep(3) # Allow time for the page to load
driver.find_element(By.NAME, "username").send_keys(username) # Locate username field by "name"
driver.find_element(By.NAME, "password").send_keys(password) # Locate password field by "name"
driver.find_element(By.NAME, "password").send_keys(Keys.RETURN) # Submit the login form
time.sleep(3) # Wait for login to complete
# Navigate to the article
driver.get(article_url)
time.sleep(3)
# Post comments
for i in range(num_comments):
# Locate the comment input field
comment_area = driver.find_element(By.NAME, "content") # Locate by "name"
comment_area.click() # Activate the comment input field
time.sleep(1) # Allow the input area to activate
# Enter the comment text
comment_area.send_keys(comment_word)
# Locate and click the post button
post_button = driver.find_element(By.CLASS_NAME, "send") # Locate the post button by "class"
post_button.click()
print(f"Comment {i + 1} posted.")
time.sleep(2) # Add delay to mimic human behavior
except Exception as e:
print(f"An error occurred: {e}")
finally:
driver.quit()
if __name__ == "__main__":
username = input("Enter your Orbi username/email: ")
password = input("Enter your password: ")
article_number = input("Enter the article number (last digits of the URL): ")
comment_word = input("Enter the word to comment: ")
num_comments = int(input("Enter the number of comments to post: "))
login_to_orbi_and_comment(username, password, article_number, comment_word, num_comments)
크롬 웹드라이버랑 파이썬 구글에 찾아서 다운 받고
pip install selenium 치셈( 윈도우는 작업관리자, 맥은 터미널)
추후에 자기가 쓴 댓글 지우는 코드도 올릴예정
0 XDK (+0)
유익한 글을 읽었다면 작성자에게 XDK를 선물하세요.
-
안녕하세요 과탐 선택 관련해서 고민하고있는 07 현역입니다. (재수까지 염두에 두고...
-
너무 안움직이니까 발바닥이랑 엉덩이가 약해졋어
-
그전까진 의뱃이 헛소리하는거 대놓고 메인글 가서 댓글 수백개 와바박 달렸는데 이제...
-
괜차나 3
닝닝닝닝닝 닝닝닝닝닝
-
사탐런 3
사탐공대 중에 사1과1하면 안되는 학교 있나요? 사2나 과2식으로만 받는 ㅇㅇ
-
원광의대에서 우리나라 첫 노벨 생리의학상 기원합니다!
-
내일도운동안하면내가짐승이다
-
공통 5틀 (14,15,20,21,22) 확통 2틀 (27,30) 4등급입니다....
-
너무현실과 동떨어져서 부럽지도않고 걍 감탄만나옴
-
이거 사구싶다 3
잉잉
-
오 가천한 전장
-
매월승리 4
대신에 마더텅 풀어도 문제 없을까요
-
美서 나오는 동맹 위기론 “中 악의적 영향력 커지면 한국 정부 무너질 수 있어” 3
美 정치권서 커지는 우려 윤석열 대통령의 비상계엄 선포와 국회 탄핵소추안 가결에...
-
이렇게 국어에 시간투자할때 겨울밖에 없다고 설득함 근데 1년 내내 그러던디
-
흔히 코딩이란, 뭔가 전문가나 컴공과 공돌이들만 하는 건줄 안다. 일단 딱봐도...
-
[단독] 서울경찰청 "15일 새벽 3시 반 기동대 집결"…윤 대통령 체포영장 재집행 나선다 3
윤석열 대통령 체포영장 집행이 내일(15일) 오전 이뤄질 것이라는 관측이 유력한...
-
회독할껀디
님 ㄹㅇ 코딩황인가
지금 달고있음?
ㅇㅇ
10000 검색하면 글 나옴
개신기하네 ㅋㅋ 낼 보면 10000개 찍혀있겠다
ip밴당하지않나
딱히 제재할 이유는 없는 듯
디도스도 아니고 댓글 좀 단다고 서버가 과부하 걸리면 좀 이상하긴함