Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(0) | Call(0) | Derive(0) | Import(0)
src/s/o/social_media_brand_disambiguator-HEAD/tweet_annotator.py social_media_brand_disambiguator(Download)
print(coloured_tweet_text) inp = raw_input("0 for out-of-class, {}1 for in-class (i.e. this is the brand){},\n<return> to ignore (e.g. for non-English or irrelevant tweets):".format(GREEN_COLOUR, END_COLOUR)) cls = sql_convenience.CLASS_UNKNOWN if inp.strip() == "0": print("out of class")
def determine_class_and_insert_tweet(tweet, db_conn, annotations_table, keyword): cls = determine_class(tweet, keyword) if cls != sql_convenience.CLASS_UNKNOWN: sql_convenience.insert_tweet(tweet, cls, db_conn, annotations_table)