Skip to content
This repository has been archived by the owner on Jul 17, 2022. It is now read-only.

Bot that scrapes words from thisworddoesnotexist.com and posts them on Instagram

Notifications You must be signed in to change notification settings

andreazllin/thisworddoesnotexist-bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

thisworddoesnotexist-bot

Python script/bot to automatically scrape data from thisworddoesnotexist.com made by Thomas Dimson and upload them to Instagram.

Getting Started

There are two easy ways to use the script.

  • Clone project then input your Instagram data and run "bot.py". Running the script will cause it to act like a bot which periodically fetches the data and publishes stuff on the inserted profile.
username, password = "INSTAGRAM USERNAME", "INSTAGRAM PASSWORD"
postCaption = "INSTAGRAM POST CAPTION"
scheduleMinutes = *INSERT NUMBER OF MINUTES*
pictureSize = (width, height)
outputFileName = "outputFileName.jpg"
  • Clone project and edit "bot.py" to your liking. Removing the scheduler will cause the script to no longer act like a bot.
# Schedule
schedule.every(scheduleMinutes).minutes.do(main)
while True:
    schedule.run_pending()
    time.sleep(1)

Prerequisites

The "requirements.txt" file contains any Python dependencies. You can install them by running this command:

pip3 install -r requirements.txt

Built With

About

Bot that scrapes words from thisworddoesnotexist.com and posts them on Instagram

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages