Skip to content

clickclack2015/WhatBot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WhatBot

Whatsapp CryptoBot.

Requirements:

  • Yowsup - pip install yowsup2
  • MySQLdb - pip install mysql-python
  • BlockIo - pip install block-io
  • Requests - pip install requests

Setup:

. Update config.py with your details.

. Create a mysql database with following schema:

CREATE TABLE whatdata (
   id int NOT NULL AUTO_INCREMENT PRIMARY KEY,
   tag  varchar(25) DEFAULT NULL,
   user  varchar(100) DEFAULT NULL,
   balance  int(11) DEFAULT NULL,
   address  varchar(100) DEFAULT NULL,
   coinapi  varbinary(200) DEFAULT NULL
);

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%