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.
- Host: GitHub
- URL: https://github.com/aosingh/smartbot
- Owner: aosingh
- Created: 2016-07-09T20:57:04.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-10T04:10:00.000Z (almost 10 years ago)
- Last Synced: 2025-05-15T14:11:30.096Z (about 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```