Skip to content

A simple Python script to run long-lived Twitter bots for CNFT listings and sales.

License

Notifications You must be signed in to change notification settings

thaddeusdiamond/cnft-twitter-bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cnft-twitter-bot

A simple Python script to run long-lived Twitter bots for CNFT listings and sales.

Quickstart

This script is meant to be used in a server environment to scrape listings and sales and produce output via automated Twitter accounts. To get started, log in to the Twitter Developer Portal for the account you have created to publish under. You will be presented with several mechanisms for verification and, ultimately, a bearer token, a consumer key, and a client secret.

⚠️ YOU MUST WRITE THESE DOWN IN A PRIVATE LOCATION!

Generating the Bot Credentials File

To generate the bot file to a local directory that you will be using, run:

mkdir /path/to/listing/directory/desired/
python3 listing_bot.py gen-bot-file \
          --policy <POLICY> \
          --bot-file <BOT_FILE> \
          --consumer-key <CONSUMER_KEY> \
          --client-secret <CLIENT_SECRET>

Follow the prompts to the specified Twitter.com web URL and enter the one-time validation token. If you want to run a sales bot as well, you have to repeat that process for a separate sales account.

Basic Twitter Bot Usage

To run the Twitter bot:

python3 listing_bot.py listing-bot \
          --listing-tokens-dir /path/to/listing/directory/desired/ \
          --sales-tokens-dir /other/path/to/sales/directory/

This program is meant to run endlessly in a command line prompt. Restarts may be required due to network connectivity issues.

Installation

This is a single script with no build process to keep things simple. Download from Github and have at it!

You may want to consider using a virtual environment to separate any dependencies this script requires. For this, use:

python3 -m venv /path/to/virtual/environment

Twitter Compatibility

Please note that this is built to be used according to the Twitter Developer Agreement and Policy. You are responsibility for validating that all usage of this script complies with those terms and the repository authors disclaim any liability for usage of this free and open source software.

About

A simple Python script to run long-lived Twitter bots for CNFT listings and sales.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages