-
Notifications
You must be signed in to change notification settings - Fork 11
/
README.txt
67 lines (46 loc) · 2.43 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
python-calais v.1.4 -- Python interface to the OpenCalais API
This Python module is a wrapper around the OpenCalais API as documented at http://www.opencalais.com/calaisAPI by Reuters. It makes REST calls to the OpenCalais API via HTTP POST, then parses and simplifies the JSON responses returned by OpenCalais. You can then access the response data in a much more pythonic manner.
The module has only been tested with Python 2.5.
Dependencies:
* simplejson (http://pypi.python.org/pypi/simplejson)
Basic Usage:
To use the OpenCalais API, first create a Calais() object, passing it your OpenCalais API key and a string identifier of your application:
>>> from calais import Calais
>>> API_KEY = "your-opencalais-api-key"
>>> calais = Calais(API_KEY, submitter="python-calais demo")
You can then use the analyze() method. It takes a string, containing the text to be analyzed by Calais and returns a CalaisResponse() object:
>>> result = calais.analyze("George Bush was the President of the United States
of America until 2009. Barack Obama is the new President of the United States now.")
Or you can use the analyze_url() method, which downloads the specified HTML page and passes it on to OpenCalais:
>>> result2 = calais.analyze_url("http://www.bestofsicily.com/mafia.htm")
The CalaisResponse class provides several helper methods that print information about the response:
>>> result.print_summary()
Calais Request ID: 0bfa1f51-4dec-4a82-aba6-a9f8243a94fd
Title:
Language: English
Extractions:
4 entities
1 topics
2 relations
>>> result.print_topics()
Politics
>>> result.print_entities()
Person: Barack Obama (0.29)
Country: United States of America (0.43)
Person: George Bush (0.43)
Country: United States (0.29)
>>> result.print_relations()
PersonPoliticalPast
person:George Bush
position:President
PersonPolitical
person:Barack Obama
position:President of the United States
Or you can access the results directly:
>>> print result.entities[0]["name"]
Barack Obama
You can also set processing and user directives before you make an analyze() call:
>>> calais.user_directives["allowDistribution"] = "true"
>>> result3 = calais.analyze("Some non-confidential text", external_id=calais.get_random_id())
Please report bugs or feature requests at the Google Code issue tracker for this project at http://code.google.com/p/python-calais/issues/list
This project is sponsored by A115 Ltd. (www.a115.bg/en/)