--- layout: page title: "Examples" category: tut --- Here's a couple examples of working bots. @echoes_bot ----------- This is a working bot. It responds to any mentions with the incoming text:
@muffinista hello there!
— Echo Echo (@echoes_bot) September 25, 2014
Here's the code. This is right out of the git repo for chatterbot:
```
## This is a very simple working example of a bot you can build with
## chatterbot. It looks for mentions of '@echoes_bot' (the twitter
## handle the bot uses), and sends replies with the name switched to
## the handle of the sending user
#
# require the dsl lib to include all the methods you see below.
#
require 'rubygems'
require 'chatterbot/dsl'
puts "Loading echoes_bot.rb"
##
## If I wanted to exclude some terms from triggering this bot, I would list them here.
## For now, we'll block URLs to keep this from being a source of spam
##
exclude "http://"
blacklist "mean_user, private_user"
puts "checking for replies to me"
replies do |tweet|
# replace the incoming username with #USER#, which will be replaced
# with the handle of the user who tweeted us by the
# replace_variables helper
src = tweet.text.gsub(/@echoes_bot/, "#USER#")
# send it back!
reply src, tweet
end
```
@SpaceJamCheck
--------------
This is another working bot. It checks the website for the movie Space
Jam to see if it is still online (it does this by using the spacejam
gem), and tweets the results of that check.
```
#!/usr/bin/env ruby
require 'rubygems'
require 'bundler/setup'
require 'chatterbot/dsl'
require 'spacejam'
#
# this is the script for the twitter bot SpaceJamCheck
# generated on 2013-11-04 16:24:46 -0500
#
consumer_key 'key'
consumer_secret 'secret'
secret 'secret'
token 'token'
check_url = "http://www2.warnerbros.com/spacejam/movie/jam.htm"
check_string = "