- Get link
- X
- Other Apps
Here I am go to you train to how you can make a Python script for Facebook Post Auto Liker.
1. Install Python 3+ to your PC2. Install PyCharm as a IDE Download Link
3. Create a Projects in PyCharm
4. Create New Python File
5. Copy this python script and paste in PyCharm
#Script by Karimzi_Academy
import pyautogui
import time
profile = input("Enter your friends profile link: ")
pyautogui.press('win')
time.sleep(3)
pyautogui.typewrite('chrome')
time.sleep(3)
pyautogui.press('enter')
time.sleep(3)
pyautogui.typewrite(profile)
pyautogui.press('enter')
for x in range (0, 500): #here I use to like 500 post, You can edit as per your requirment
time.sleep(3)
pyautogui.press('j')
time.sleep(3)
pyautogui.press('l')
time.sleep(3)
pyautogui.press('right')
time.sleep(3)
pyautogui.press('right')
time.sleep(3)
pyautogui.press('enter')
6. From Pycharm Terminal install pyautogui
installation command - pip install pyautogui
Enter
7. Save this file and Run
8. Input your desire Facebook ID / Page / Group link
9. Hit Enter and Enjoy
video tutorial
Comments
This doesn't work on android?
ReplyDelete