An open API service indexing awesome lists of open source software.

https://github.com/aosingh/smartbot

A smart twitter bot.
https://github.com/aosingh/smartbot

Last synced: 12 months ago
JSON representation

A smart twitter bot.

Awesome Lists containing this project

README

          

# SmartBot
=========================
A smart twitter bot.

## Requires : Python version 2.7, Tweepy version 3.5.0

## Installation

### Clone this Repo

Clone this repository into whatever directory you'd like to work on it from:

```bash
git clone https://github.com/aosingh/SmartBot.git
```

Switch to develop branch and pull all files

```bash
git checkout -b develop
git pull origin develop
```

### Install `pip` and `tweepy`

First, make sure you have `pip`.

On Mac:

```bash
sudo easy_install pip
```

On Ubuntu, Debian or Linux Mint::

```bash
sudo apt-get install python-pip
```

Second, install `tweepy` using `pip`

```bash
pip install tweepy
```

See [Tweepy](http://docs.tweepy.org/en/v3.5.0/index.html) for more information.

## Development
Run the following python class to test the bot.
If it prints all the logs and exits with code 0, then the environment is set correctly.
```bash
python SmartBotTest.py

```