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> |
Joe Gregorio | 6621203 | 2012-06-14 09:10:14 -0400 | [diff] [blame] | 21 | pp: string, A parameter<br> |
| 22 | trace: string, A parameter<br> |
| 23 | strict: string, A parameter<br> |
| 24 | userip: string, A parameter<br> |
Joe Gregorio | b417caf | 2011-12-08 12:04:24 -0500 | [diff] [blame] | 25 | <br> |
| 26 | Returns:<br> |
| 27 | An object of the form<br> |
| 28 | <br> |
| 29 | {<br> |
| 30 | "detections": [ # A detections contains detection results of several text<br> |
| 31 | [ # An array of languages which we detect for the given text The most likely language list first.<br> |
| 32 | {<br> |
| 33 | "isReliable": True or False, # A boolean to indicate is the language detection result reliable.<br> |
Joe Gregorio | 3d55ac5 | 2012-02-21 10:11:19 -0500 | [diff] [blame] | 34 | "confidence": 3.14, # The confidence of the detection resul of this language.<br> |
Joe Gregorio | b417caf | 2011-12-08 12:04:24 -0500 | [diff] [blame] | 35 | "language": "A String", # The language we detect<br> |
| 36 | },<br> |
| 37 | ],<br> |
| 38 | ],<br> |
| 39 | }</tt></dd></dl> |
Joe Gregorio | 20a5aa9 | 2011-04-01 17:44:25 -0400 | [diff] [blame] | 40 | |
| 41 | <hr> |
| 42 | Data descriptors defined here:<br> |
| 43 | <dl><dt><strong>__dict__</strong></dt> |
| 44 | <dd><tt>dictionary for instance variables (if defined)</tt></dd> |
| 45 | </dl> |
| 46 | <dl><dt><strong>__weakref__</strong></dt> |
| 47 | <dd><tt>list of weak references to the object (if defined)</tt></dd> |
| 48 | </dl> |
| 49 | </td></tr></table> |
| 50 | </body></html> |