Tag: bluemix
IBM Bluemix Weather Company API with Python
Here is a simple example of calling the IBM Weather Company REST API using Python. The program asks for a US ZIP code and then displays some of the data. A perfect program for an intro to programming class. Also, on GitHub.
# Using the IBM Bluemix Weather Company API # Bruce Elgort # July 9, 2016 # Version 1.0 # IBM Weather Company Docs: https://console.ng.bluemix.net/docs/services/Weather/weather_rest_apis.html#rest_apis import requests import json def get_weather(zip): username = 'your username' password = 'your password' watsonUrl = 'https://twcservice.mybluemix.net/api/weather/v1/location/' + zip + ':4:US' + '/observations.json?language=en-US' try: r = requests.get(watsonUrl,auth=(username,password)) return r.text except: return False def display_weather(results): print() print('Here is the weather for {0}'.format(results['observation']['obs_name'])) print('{0:20} {1:<10}'.format('Current Temperature:',str(results['observation']['temp']) + '° and ' + results['observation']['wx_phrase'])) print('{0:20} {1:<10}'.format('Feels Like: ',str(results['observation']['feels_like']) + '°')) print('{0:20} {1:<10}'.format('Low Temp: ',str(results['observation']['min_temp']) + '°')) print('{0:20} {1:<10}'.format('High Temp: ',str(results['observation']['max_temp']) + '°')) print('{0:20} {1:<10}'.format('Winds:',str(results['observation']['wspd']) + ' mph coming from the ' + results['observation']['wdir_cardinal'])) def get_weather(): zip = input('Enter US ZIP code to get weather for:\n') results = get_weather(zip) if results != False: results = json.loads(str(results)) display_weather(results) else: print('Something went wrong :-(') if __name__ == '__main__': get_weather()
Using IBM Watson Language Translation Services with Python
Here is a very simple example using Python of calling the IBM Watson Language Translation Service. Feel free to use and modify the code as needed. You will need an IBM Bluemix account in order to use the translation service.
# CTEC 121 Intro to Programming and Problem Solving # Bruce Elgort / Clark College # Using IBM Watson's Language Translator # February 27, 2016 # Revised: May 24, 2016 # Version 1.1 import requests def cls(): print("\n" * 5) def translate_text(text,source,target): username = 'your username' password = 'your password' watsonUrl = 'https://gateway.watsonplatform.net/language-translation/api/v2/translate?source=' + source + '&amp;target=' + target + '&amp;text=' + text try: r = requests.get(watsonUrl,auth=(username,password)) #print(r) return r.text except: return False def welcome(): message = "Welcome to the IBM Watson Translator\n" print(message + "-" * len(message) + "\n") print("Have fun!\n") def main(): cls() welcome() data = input("Enter some text to be translated:\n") print() print("What language should I translate it to?") print("1) Spanish") print("2) Arabic") print("3) French") print("4) Portuguese") print() target = input("Select a language from the list above: ") if target == "1": target = 'es' elif target == "2": target = 'ar' elif target == "3": target = 'fr' elif target == "4": target = 'pt' results = translate_text(data,'en',target) print() print("Here is the text translated for you:") print(results) main()
Using IBM Watson Tone Analyzer with Python
Here is a sample Python program that you can use to analyze the tone of text using IBM’s Watson Tone Analysis service on Bluemix. To get started with Bluemix you can sign up at http://bluemix.net. Feel free to use and modify the code as needed.
# CTEC 121 Intro to Programming and Problem Solving # Bruce Elgort / Clark College # Using IBM Watson's Tone Analyzer to detect and interpret emotional, social, and writing cues found in text. # February 26, 2016 # Version 1.0 import requests import json def analyze_tone(text): username = 'your username' password = 'your password' watsonUrl = 'https://gateway.watsonplatform.net/tone-analyzer-beta/api/v3/tone?version=2016-05-18' headers = {"content-type": "text/plain"} data = text try: r = requests.post(watsonUrl, auth=(username,password),headers = headers, data=data) return r.text except: return False def welcome(): message = "Welcome to the IBM Watson Tone Analyzer\n" print(message + "-" * len(message) + "\n") message = "How it works" print(message) message = "Perhaps a bit too aggressive in your emails? Are your blog posts a little too friendly? Tone Analyzer might be able to help. The service uses linguistic analysis to detect and interpret emotional, social, and writing cues found in text." print(message) print() print("Have fun!\n") def display_results(data): data = json.loads(str(data)) print(data) for i in data['document_tone']['tone_categories']: print(i['category_name']) print("-" * len(i['category_name'])) for j in i['tones']: print(j['tone_name'].ljust(20),(str(round(j['score'] * 100,1)) + "%").rjust(10)) print() print() def main(): welcome() data = input("Enter some text to be analyzed for tone analysis by IBM Watson (Q to quit):\n") if len(data) >= 1: if data == 'q'.lower(): exit results = analyze_tone(data) if results != False: display_results(results) exit else: print("Something went wrong") main()
Slack Bot – Slack Channel Tone Analysis Using IBM Watson
In this video, I demonstrate how I used IBM Watson’s Tone Analyzer service to analyze an entire Slack channels’ textual content history. The bot allows you to select the channel you want to have analyzed and then presents charts displaying the various tones in the channel.
Slack Bot – IBM Watson Tone Analyzer
Slack Bot – IBM Watson Translation Services
Slack Bot – IBM Watson Tone Analyzer
Here’s a short video demonstrating how I used the IBM Watson Tone Analyzer service on IBM Bluemix to create a Slack bot that analyzes text you enter.
Let me know if you have any questions.
Slack Bot – IBM Watson Translation Services
Happening Today
I’m Bringing IBM Bluemix and IBM Watson to the Classroom
I am very happy to announce that students enrolled in my “Intro to Programming and Problem Solving” class at Clark College in Vancouver, Washington will be using IBM Bluemix and IBM Watson this week in class. Students will be building a language translation program and a tone analyzer program using the Python programming language.
Many thanks to IBM for their “Academic Initiative” program which makes it easy for educators to get access to IBM Bluemix for a limited time.
Students in my other programming language course will also soon be using Bluemix and Watson.
Stay tuned.