Joe Gregorio | afc45f2 | 2011-02-20 16:11:28 -0500 | [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-get"><strong>get</strong></a> = method(self, **kwargs)</dt><dd><tt>Expands a short URL or gets creation time and analytics.<br> |
| 18 | <br> |
| 19 | Args:<br> |
Joe Gregorio | ad258e2 | 2011-02-22 22:53:30 -0500 | [diff] [blame] | 20 | projection: string, Additional information to return.<br> |
| 21 | Allowed values<br> |
| 22 | ANALYTICS_CLICKS - Returns only click counts.<br> |
| 23 | ANALYTICS_TOP_STRINGS - Returns only top string counts.<br> |
Joe Gregorio | 20a5aa9 | 2011-04-01 17:44:25 -0400 | [diff] [blame] | 24 | FULL - Returns the creation timestamp and all available analytics.<br> |
Joe Gregorio | b417caf | 2011-12-08 12:04:24 -0500 | [diff] [blame] | 25 | shortUrl: string, The short URL, including the protocol. (required)<br> |
| 26 | <br> |
| 27 | Returns:<br> |
| 28 | An object of the form<br> |
| 29 | <br> |
| 30 | {<br> |
| 31 | "status": "A String", # Status of the target URL. Possible values: "OK", "MALWARE", "PHISHING", or "REMOVED". A URL might be marked "REMOVED" if it was flagged as spam, for example.<br> |
| 32 | "kind": "urlshortener#url", # The fixed string "urlshortener#url".<br> |
| 33 | "created": "A String", # Time the short URL was created; ISO 8601 representation using the yyyy-MM-dd'T'HH:mm:ss.SSSZZ format, e.g. "2010-10-14T19:01:24.944+00:00".<br> |
| 34 | "analytics": { # A summary of the click analytics for the short and long URL. Might not be present if not requested or currently unavailable.<br> |
| 35 | "week": { # Click analytics over the last week.<br> |
| 36 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 37 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 38 | {<br> |
| 39 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 40 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 41 | },<br> |
| 42 | ],<br> |
| 43 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 44 | {<br> |
| 45 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 46 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 47 | },<br> |
| 48 | ],<br> |
| 49 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 50 | {<br> |
| 51 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 52 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 53 | },<br> |
| 54 | ],<br> |
| 55 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 56 | {<br> |
| 57 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 58 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 59 | },<br> |
| 60 | ],<br> |
| 61 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 62 | },<br> |
| 63 | "allTime": { # Click analytics over all time.<br> |
| 64 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 65 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 66 | {<br> |
| 67 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 68 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 69 | },<br> |
| 70 | ],<br> |
| 71 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 72 | {<br> |
| 73 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 74 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 75 | },<br> |
| 76 | ],<br> |
| 77 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 78 | {<br> |
| 79 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 80 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 81 | },<br> |
| 82 | ],<br> |
| 83 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 84 | {<br> |
| 85 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 86 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 87 | },<br> |
| 88 | ],<br> |
| 89 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 90 | },<br> |
| 91 | "twoHours": { # Click analytics over the last two hours.<br> |
| 92 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 93 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 94 | {<br> |
| 95 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 96 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 97 | },<br> |
| 98 | ],<br> |
| 99 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 100 | {<br> |
| 101 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 102 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 103 | },<br> |
| 104 | ],<br> |
| 105 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 106 | {<br> |
| 107 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 108 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 109 | },<br> |
| 110 | ],<br> |
| 111 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 112 | {<br> |
| 113 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 114 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 115 | },<br> |
| 116 | ],<br> |
| 117 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 118 | },<br> |
| 119 | "day": { # Click analytics over the last day.<br> |
| 120 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 121 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 122 | {<br> |
| 123 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 124 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 125 | },<br> |
| 126 | ],<br> |
| 127 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 128 | {<br> |
| 129 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 130 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 131 | },<br> |
| 132 | ],<br> |
| 133 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 134 | {<br> |
| 135 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 136 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 137 | },<br> |
| 138 | ],<br> |
| 139 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 140 | {<br> |
| 141 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 142 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 143 | },<br> |
| 144 | ],<br> |
| 145 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 146 | },<br> |
| 147 | "month": { # Click analytics over the last month.<br> |
| 148 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 149 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 150 | {<br> |
| 151 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 152 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 153 | },<br> |
| 154 | ],<br> |
| 155 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 156 | {<br> |
| 157 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 158 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 159 | },<br> |
| 160 | ],<br> |
| 161 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 162 | {<br> |
| 163 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 164 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 165 | },<br> |
| 166 | ],<br> |
| 167 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 168 | {<br> |
| 169 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 170 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 171 | },<br> |
| 172 | ],<br> |
| 173 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 174 | },<br> |
| 175 | },<br> |
| 176 | "longUrl": "A String", # Long URL, e.g. "<a href="http://www.google.com/">http://www.google.com/</a>". Might not be present if the status is "REMOVED".<br> |
| 177 | "id": "A String", # Short URL, e.g. "<a href="http://goo.gl/l6MS">http://goo.gl/l6MS</a>".<br> |
| 178 | }</tt></dd></dl> |
Joe Gregorio | afc45f2 | 2011-02-20 16:11:28 -0500 | [diff] [blame] | 179 | |
| 180 | <dl><dt><a name="Resource-insert"><strong>insert</strong></a> = method(self, **kwargs)</dt><dd><tt>Creates a new short URL.<br> |
| 181 | <br> |
| 182 | Args:<br> |
Joe Gregorio | b417caf | 2011-12-08 12:04:24 -0500 | [diff] [blame] | 183 | body: object, The request body. (required)<br> |
| 184 | The object takes the form of:<br> |
| 185 | <br> |
| 186 | {<br> |
| 187 | "status": "A String", # Status of the target URL. Possible values: "OK", "MALWARE", "PHISHING", or "REMOVED". A URL might be marked "REMOVED" if it was flagged as spam, for example.<br> |
| 188 | "kind": "urlshortener#url", # The fixed string "urlshortener#url".<br> |
| 189 | "created": "A String", # Time the short URL was created; ISO 8601 representation using the yyyy-MM-dd'T'HH:mm:ss.SSSZZ format, e.g. "2010-10-14T19:01:24.944+00:00".<br> |
| 190 | "analytics": { # A summary of the click analytics for the short and long URL. Might not be present if not requested or currently unavailable.<br> |
| 191 | "week": { # Click analytics over the last week.<br> |
| 192 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 193 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 194 | {<br> |
| 195 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 196 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 197 | },<br> |
| 198 | ],<br> |
| 199 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 200 | {<br> |
| 201 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 202 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 203 | },<br> |
| 204 | ],<br> |
| 205 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 206 | {<br> |
| 207 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 208 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 209 | },<br> |
| 210 | ],<br> |
| 211 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 212 | {<br> |
| 213 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 214 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 215 | },<br> |
| 216 | ],<br> |
| 217 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 218 | },<br> |
| 219 | "allTime": { # Click analytics over all time.<br> |
| 220 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 221 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 222 | {<br> |
| 223 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 224 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 225 | },<br> |
| 226 | ],<br> |
| 227 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 228 | {<br> |
| 229 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 230 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 231 | },<br> |
| 232 | ],<br> |
| 233 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 234 | {<br> |
| 235 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 236 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 237 | },<br> |
| 238 | ],<br> |
| 239 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 240 | {<br> |
| 241 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 242 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 243 | },<br> |
| 244 | ],<br> |
| 245 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 246 | },<br> |
| 247 | "twoHours": { # Click analytics over the last two hours.<br> |
| 248 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 249 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 250 | {<br> |
| 251 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 252 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 253 | },<br> |
| 254 | ],<br> |
| 255 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 256 | {<br> |
| 257 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 258 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 259 | },<br> |
| 260 | ],<br> |
| 261 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 262 | {<br> |
| 263 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 264 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 265 | },<br> |
| 266 | ],<br> |
| 267 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 268 | {<br> |
| 269 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 270 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 271 | },<br> |
| 272 | ],<br> |
| 273 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 274 | },<br> |
| 275 | "day": { # Click analytics over the last day.<br> |
| 276 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 277 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 278 | {<br> |
| 279 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 280 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 281 | },<br> |
| 282 | ],<br> |
| 283 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 284 | {<br> |
| 285 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 286 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 287 | },<br> |
| 288 | ],<br> |
| 289 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 290 | {<br> |
| 291 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 292 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 293 | },<br> |
| 294 | ],<br> |
| 295 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 296 | {<br> |
| 297 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 298 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 299 | },<br> |
| 300 | ],<br> |
| 301 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 302 | },<br> |
| 303 | "month": { # Click analytics over the last month.<br> |
| 304 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 305 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 306 | {<br> |
| 307 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 308 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 309 | },<br> |
| 310 | ],<br> |
| 311 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 312 | {<br> |
| 313 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 314 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 315 | },<br> |
| 316 | ],<br> |
| 317 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 318 | {<br> |
| 319 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 320 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 321 | },<br> |
| 322 | ],<br> |
| 323 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 324 | {<br> |
| 325 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 326 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 327 | },<br> |
| 328 | ],<br> |
| 329 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 330 | },<br> |
| 331 | },<br> |
| 332 | "longUrl": "A String", # Long URL, e.g. "<a href="http://www.google.com/">http://www.google.com/</a>". Might not be present if the status is "REMOVED".<br> |
| 333 | "id": "A String", # Short URL, e.g. "<a href="http://goo.gl/l6MS">http://goo.gl/l6MS</a>".<br> |
| 334 | }<br> |
| 335 | <br> |
| 336 | <br> |
| 337 | Returns:<br> |
| 338 | An object of the form<br> |
| 339 | <br> |
| 340 | {<br> |
| 341 | "status": "A String", # Status of the target URL. Possible values: "OK", "MALWARE", "PHISHING", or "REMOVED". A URL might be marked "REMOVED" if it was flagged as spam, for example.<br> |
| 342 | "kind": "urlshortener#url", # The fixed string "urlshortener#url".<br> |
| 343 | "created": "A String", # Time the short URL was created; ISO 8601 representation using the yyyy-MM-dd'T'HH:mm:ss.SSSZZ format, e.g. "2010-10-14T19:01:24.944+00:00".<br> |
| 344 | "analytics": { # A summary of the click analytics for the short and long URL. Might not be present if not requested or currently unavailable.<br> |
| 345 | "week": { # Click analytics over the last week.<br> |
| 346 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 347 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 348 | {<br> |
| 349 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 350 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 351 | },<br> |
| 352 | ],<br> |
| 353 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 354 | {<br> |
| 355 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 356 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 357 | },<br> |
| 358 | ],<br> |
| 359 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 360 | {<br> |
| 361 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 362 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 363 | },<br> |
| 364 | ],<br> |
| 365 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 366 | {<br> |
| 367 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 368 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 369 | },<br> |
| 370 | ],<br> |
| 371 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 372 | },<br> |
| 373 | "allTime": { # Click analytics over all time.<br> |
| 374 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 375 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 376 | {<br> |
| 377 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 378 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 379 | },<br> |
| 380 | ],<br> |
| 381 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 382 | {<br> |
| 383 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 384 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 385 | },<br> |
| 386 | ],<br> |
| 387 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 388 | {<br> |
| 389 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 390 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 391 | },<br> |
| 392 | ],<br> |
| 393 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 394 | {<br> |
| 395 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 396 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 397 | },<br> |
| 398 | ],<br> |
| 399 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 400 | },<br> |
| 401 | "twoHours": { # Click analytics over the last two hours.<br> |
| 402 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 403 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 404 | {<br> |
| 405 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 406 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 407 | },<br> |
| 408 | ],<br> |
| 409 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 410 | {<br> |
| 411 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 412 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 413 | },<br> |
| 414 | ],<br> |
| 415 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 416 | {<br> |
| 417 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 418 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 419 | },<br> |
| 420 | ],<br> |
| 421 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 422 | {<br> |
| 423 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 424 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 425 | },<br> |
| 426 | ],<br> |
| 427 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 428 | },<br> |
| 429 | "day": { # Click analytics over the last day.<br> |
| 430 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 431 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 432 | {<br> |
| 433 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 434 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 435 | },<br> |
| 436 | ],<br> |
| 437 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 438 | {<br> |
| 439 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 440 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 441 | },<br> |
| 442 | ],<br> |
| 443 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 444 | {<br> |
| 445 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 446 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 447 | },<br> |
| 448 | ],<br> |
| 449 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 450 | {<br> |
| 451 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 452 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 453 | },<br> |
| 454 | ],<br> |
| 455 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 456 | },<br> |
| 457 | "month": { # Click analytics over the last month.<br> |
| 458 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 459 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 460 | {<br> |
| 461 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 462 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 463 | },<br> |
| 464 | ],<br> |
| 465 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 466 | {<br> |
| 467 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 468 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 469 | },<br> |
| 470 | ],<br> |
| 471 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 472 | {<br> |
| 473 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 474 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 475 | },<br> |
| 476 | ],<br> |
| 477 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 478 | {<br> |
| 479 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 480 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 481 | },<br> |
| 482 | ],<br> |
| 483 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 484 | },<br> |
| 485 | },<br> |
| 486 | "longUrl": "A String", # Long URL, e.g. "<a href="http://www.google.com/">http://www.google.com/</a>". Might not be present if the status is "REMOVED".<br> |
| 487 | "id": "A String", # Short URL, e.g. "<a href="http://goo.gl/l6MS">http://goo.gl/l6MS</a>".<br> |
| 488 | }</tt></dd></dl> |
Joe Gregorio | afc45f2 | 2011-02-20 16:11:28 -0500 | [diff] [blame] | 489 | |
| 490 | <dl><dt><a name="Resource-list"><strong>list</strong></a> = method(self, **kwargs)</dt><dd><tt>Retrieves a list of URLs shortened by a user.<br> |
| 491 | <br> |
| 492 | Args:<br> |
Joe Gregorio | ad258e2 | 2011-02-22 22:53:30 -0500 | [diff] [blame] | 493 | start_token: string, Token for requesting successive pages of results.<br> |
| 494 | projection: string, Additional information to return.<br> |
| 495 | Allowed values<br> |
| 496 | ANALYTICS_CLICKS - Returns short URL click counts.<br> |
Joe Gregorio | b417caf | 2011-12-08 12:04:24 -0500 | [diff] [blame] | 497 | FULL - Returns short URL click counts.<br> |
| 498 | <br> |
| 499 | Returns:<br> |
| 500 | An object of the form<br> |
| 501 | <br> |
| 502 | {<br> |
| 503 | "nextPageToken": "A String", # A token to provide to get the next page of results.<br> |
| 504 | "items": [ # A list of URL resources.<br> |
| 505 | {<br> |
| 506 | "status": "A String", # Status of the target URL. Possible values: "OK", "MALWARE", "PHISHING", or "REMOVED". A URL might be marked "REMOVED" if it was flagged as spam, for example.<br> |
| 507 | "kind": "urlshortener#url", # The fixed string "urlshortener#url".<br> |
| 508 | "created": "A String", # Time the short URL was created; ISO 8601 representation using the yyyy-MM-dd'T'HH:mm:ss.SSSZZ format, e.g. "2010-10-14T19:01:24.944+00:00".<br> |
| 509 | "analytics": { # A summary of the click analytics for the short and long URL. Might not be present if not requested or currently unavailable.<br> |
| 510 | "week": { # Click analytics over the last week.<br> |
| 511 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 512 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 513 | {<br> |
| 514 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 515 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 516 | },<br> |
| 517 | ],<br> |
| 518 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 519 | {<br> |
| 520 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 521 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 522 | },<br> |
| 523 | ],<br> |
| 524 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 525 | {<br> |
| 526 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 527 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 528 | },<br> |
| 529 | ],<br> |
| 530 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 531 | {<br> |
| 532 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 533 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 534 | },<br> |
| 535 | ],<br> |
| 536 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 537 | },<br> |
| 538 | "allTime": { # Click analytics over all time.<br> |
| 539 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 540 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 541 | {<br> |
| 542 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 543 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 544 | },<br> |
| 545 | ],<br> |
| 546 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 547 | {<br> |
| 548 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 549 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 550 | },<br> |
| 551 | ],<br> |
| 552 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 553 | {<br> |
| 554 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 555 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 556 | },<br> |
| 557 | ],<br> |
| 558 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 559 | {<br> |
| 560 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 561 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 562 | },<br> |
| 563 | ],<br> |
| 564 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 565 | },<br> |
| 566 | "twoHours": { # Click analytics over the last two hours.<br> |
| 567 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 568 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 569 | {<br> |
| 570 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 571 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 572 | },<br> |
| 573 | ],<br> |
| 574 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 575 | {<br> |
| 576 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 577 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 578 | },<br> |
| 579 | ],<br> |
| 580 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 581 | {<br> |
| 582 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 583 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 584 | },<br> |
| 585 | ],<br> |
| 586 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 587 | {<br> |
| 588 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 589 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 590 | },<br> |
| 591 | ],<br> |
| 592 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 593 | },<br> |
| 594 | "day": { # Click analytics over the last day.<br> |
| 595 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 596 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 597 | {<br> |
| 598 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 599 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 600 | },<br> |
| 601 | ],<br> |
| 602 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 603 | {<br> |
| 604 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 605 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 606 | },<br> |
| 607 | ],<br> |
| 608 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 609 | {<br> |
| 610 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 611 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 612 | },<br> |
| 613 | ],<br> |
| 614 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 615 | {<br> |
| 616 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 617 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 618 | },<br> |
| 619 | ],<br> |
| 620 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 621 | },<br> |
| 622 | "month": { # Click analytics over the last month.<br> |
| 623 | "shortUrlClicks": "A String", # Number of clicks on this short URL.<br> |
| 624 | "countries": [ # Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 625 | {<br> |
| 626 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 627 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 628 | },<br> |
| 629 | ],<br> |
| 630 | "platforms": [ # Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 631 | {<br> |
| 632 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 633 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 634 | },<br> |
| 635 | ],<br> |
| 636 | "browsers": [ # Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 637 | {<br> |
| 638 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 639 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 640 | },<br> |
| 641 | ],<br> |
| 642 | "referrers": [ # Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.<br> |
| 643 | {<br> |
| 644 | "count": "A String", # Number of clicks for this top entry, e.g. for this particular country or browser.<br> |
| 645 | "id": "A String", # Label assigned to this top entry, e.g. "US" or "Chrome".<br> |
| 646 | },<br> |
| 647 | ],<br> |
| 648 | "longUrlClicks": "A String", # Number of clicks on all goo.gl short URLs pointing to this long URL.<br> |
| 649 | },<br> |
| 650 | },<br> |
| 651 | "longUrl": "A String", # Long URL, e.g. "<a href="http://www.google.com/">http://www.google.com/</a>". Might not be present if the status is "REMOVED".<br> |
| 652 | "id": "A String", # Short URL, e.g. "<a href="http://goo.gl/l6MS">http://goo.gl/l6MS</a>".<br> |
| 653 | },<br> |
| 654 | ],<br> |
| 655 | "kind": "urlshortener#urlHistory", # The fixed string "urlshortener#urlHistory".<br> |
| 656 | "itemsPerPage": 42, # Number of items returned with each full "page" of results. Note that the last page could have fewer items than the "itemsPerPage" value.<br> |
| 657 | "totalItems": 42, # Total number of short URLs associated with this user (may be approximate).<br> |
| 658 | }</tt></dd></dl> |
Joe Gregorio | afc45f2 | 2011-02-20 16:11:28 -0500 | [diff] [blame] | 659 | |
| 660 | <hr> |
| 661 | Data descriptors defined here:<br> |
| 662 | <dl><dt><strong>__dict__</strong></dt> |
| 663 | <dd><tt>dictionary for instance variables (if defined)</tt></dd> |
| 664 | </dl> |
| 665 | <dl><dt><strong>__weakref__</strong></dt> |
| 666 | <dd><tt>list of weak references to the object (if defined)</tt></dd> |
| 667 | </dl> |
| 668 | </td></tr></table> |
| 669 | </body></html> |