Joe Gregorio | 20a5aa9 | 2011-04-01 17:44:25 -0400 | [diff] [blame] | 1 | |
| 2 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
| 3 | <html><head><title>Python: class Resource</title> |
| 4 | </head><body bgcolor="#f0f0f8"> |
| 5 | <p> |
| 6 | <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> |
| 7 | <tr bgcolor="#ffc8d8"> |
| 8 | <td colspan=3 valign=bottom> <br> |
| 9 | <font color="#000000" face="helvetica, arial"><a name="Resource">class <strong>Resource</strong></a>(<a href="__builtin__.html#object">__builtin__.object</a>)</font></td></tr> |
| 10 | |
| 11 | <tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td> |
| 12 | <td colspan=2><tt>A class for interacting with a resource.<br> </tt></td></tr> |
| 13 | <tr><td> </td> |
| 14 | <td width="100%">Methods defined here:<br> |
| 15 | <dl><dt><a name="Resource-__init__"><strong>__init__</strong></a>(self)</dt></dl> |
| 16 | |
| 17 | <dl><dt><a name="Resource-list"><strong>list</strong></a> = method(self, **kwargs)</dt><dd><tt>Detect the language of text.<br> |
| 18 | <br> |
| 19 | Args:<br> |
Joe Gregorio | b417caf | 2011-12-08 12:04:24 -0500 | [diff] [blame] | 20 | q: string, The text to detect (required) (repeated)<br> |
| 21 | <br> |
| 22 | Returns:<br> |
| 23 | An object of the form<br> |
| 24 | <br> |
| 25 | {<br> |
| 26 | "detections": [ # A detections contains detection results of several text<br> |
| 27 | [ # An array of languages which we detect for the given text The most likely language list first.<br> |
| 28 | {<br> |
| 29 | "isReliable": True or False, # A boolean to indicate is the language detection result reliable.<br> |
| 30 | "confidence": 3.140000, # The confidence of the detection resul of this language.<br> |
| 31 | "language": "A String", # The language we detect<br> |
| 32 | },<br> |
| 33 | ],<br> |
| 34 | ],<br> |
| 35 | }</tt></dd></dl> |
Joe Gregorio | 20a5aa9 | 2011-04-01 17:44:25 -0400 | [diff] [blame] | 36 | |
| 37 | <hr> |
| 38 | Data descriptors defined here:<br> |
| 39 | <dl><dt><strong>__dict__</strong></dt> |
| 40 | <dd><tt>dictionary for instance variables (if defined)</tt></dd> |
| 41 | </dl> |
| 42 | <dl><dt><strong>__weakref__</strong></dt> |
| 43 | <dd><tt>list of weak references to the object (if defined)</tt></dd> |
| 44 | </dl> |
| 45 | </td></tr></table> |
| 46 | </body></html> |