Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with
or
.
Clone in Desktop Download ZIP
Branch: master
Fetching contributors…

Cannot retrieve contributors at this time

13 lines (9 sloc) 222 Bytes
import nltk
import re
import pprint
import sys
from nltk.util import *
def generate_rude_text(query):
response = nltk.chat.rude.rude_chatbot.respond(query)
sys.stdout.write(response)
generate_rude_text(sys.argv[1])
Jump to Line
Something went wrong with that request. Please try again.