Joe Gregorio | 3513902 | 2010-11-04 19:37:43 -0400 | [diff] [blame] | 1 | #!/usr/bin/python2.4 |
| 2 | # -*- coding: utf-8 -*- |
| 3 | # |
Joe Gregorio | 652898b | 2011-05-02 21:07:43 -0400 | [diff] [blame^] | 4 | # Copyright (C) 2010 Google Inc. |
| 5 | # |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
Joe Gregorio | 3513902 | 2010-11-04 19:37:43 -0400 | [diff] [blame] | 17 | |
Joe Gregorio | f17cbd3 | 2010-11-04 19:40:45 -0400 | [diff] [blame] | 18 | """Simple command-line example for Diacritize. |
Joe Gregorio | 3513902 | 2010-11-04 19:37:43 -0400 | [diff] [blame] | 19 | |
Joe Gregorio | f17cbd3 | 2010-11-04 19:40:45 -0400 | [diff] [blame] | 20 | Command-line application that adds diacritical |
| 21 | marks to some text. |
Joe Gregorio | 3513902 | 2010-11-04 19:37:43 -0400 | [diff] [blame] | 22 | """ |
| 23 | |
| 24 | __author__ = 'jcgregorio@google.com (Joe Gregorio)' |
| 25 | |
Joe Gregorio | 3513902 | 2010-11-04 19:37:43 -0400 | [diff] [blame] | 26 | import httplib2 |
| 27 | import pickle |
| 28 | import pprint |
| 29 | |
Joe Gregorio | 652898b | 2011-05-02 21:07:43 -0400 | [diff] [blame^] | 30 | from apiclient.discovery import build |
Joe Gregorio | 3513902 | 2010-11-04 19:37:43 -0400 | [diff] [blame] | 31 | |
Joe Gregorio | 3513902 | 2010-11-04 19:37:43 -0400 | [diff] [blame] | 32 | |
Joe Gregorio | af276d2 | 2010-12-09 14:26:58 -0500 | [diff] [blame] | 33 | def main(): |
Joe Gregorio | 652898b | 2011-05-02 21:07:43 -0400 | [diff] [blame^] | 34 | # Build a service object for interacting with the API. Visit |
| 35 | # the Google APIs Console <http://code.google.com/apis/console> |
| 36 | # to get an API key for your own application. |
Joe Gregorio | 1ae3e74 | 2011-02-25 15:17:14 -0500 | [diff] [blame] | 37 | service = build("diacritize", "v1", |
Joe Gregorio | af276d2 | 2010-12-09 14:26:58 -0500 | [diff] [blame] | 38 | developerKey="AIzaSyDRRpR3GS1F1_jKNNM9HCNd2wJQyPG3oN0") |
Joe Gregorio | 652898b | 2011-05-02 21:07:43 -0400 | [diff] [blame^] | 39 | |
Joe Gregorio | 1ae3e74 | 2011-02-25 15:17:14 -0500 | [diff] [blame] | 40 | print service.diacritize().corpus().get( |
Joe Gregorio | 3513902 | 2010-11-04 19:37:43 -0400 | [diff] [blame] | 41 | lang='ar', |
| 42 | last_letter='false', |
| 43 | message=u'مثال لتشكيل' |
| 44 | ).execute()['diacritized_text'] |
| 45 | |
| 46 | if __name__ == '__main__': |
| 47 | main() |