File: twitter.html

package info (click to toggle)
python-twitter 3.3-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 13,044 kB
  • sloc: python: 6,244; makefile: 213
file content (3080 lines) | stat: -rw-r--r-- 205,686 bytes parent folder | download | duplicates (3)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
<!doctype html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head><title>Python: module twitter</title>
</head>
<body bgcolor="#f0f0f8">

<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading">
    <tr bgcolor="#7799ee">
        <td valign=bottom>&nbsp;<br>
            <font color="#ffffff" face="helvetica, arial">&nbsp;<br><big><big><strong>twitter</strong></big></big>
                (version 0.8)</font></td
                >
        <td align=right valign=bottom
                ><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a
                href="twitter.py">twitter.py</a></font></td>
    </tr>
</table>
<p>
    <tt>A&nbsp;library&nbsp;that&nbsp;provides&nbsp;a&nbsp;Python&nbsp;interface&nbsp;to&nbsp;the&nbsp;Twitter&nbsp;API</tt>
</p>

<p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
    <tr bgcolor="#aa55cc">
        <td colspan=3 valign=bottom>&nbsp;<br>
            <font color="#ffffff" face="helvetica, arial"><big><strong>Modules</strong></big></font></td>
    </tr>

    <tr>
        <td bgcolor="#aa55cc"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td>
        <td>&nbsp;</td>
        <td width="100%">
            <table width="100%" summary="list">
                <tr>
                    <td width="25%" valign=top><a href="StringIO.html">StringIO</a><br>
                        <a href="base64.html">base64</a><br>
                        <a href="calendar.html">calendar</a><br>
                        <a href="datetime.html">datetime</a><br>
                        <a href="gzip.html">gzip</a><br>
                    </td>
                    <td width="25%" valign=top><a href="httplib.html">httplib</a><br>
                        <a href="oauth2.html">oauth2</a><br>
                        <a href="os.html">os</a><br>
                        <a href="rfc822.html">rfc822</a><br>
                        <a href="json.html">json</a><br>
                    </td>
                    <td width="25%" valign=top><a href="sys.html">sys</a><br>
                        <a href="tempfile.html">tempfile</a><br>
                        <a href="textwrap.html">textwrap</a><br>
                        <a href="time.html">time</a><br>
                        <a href="urllib.html">urllib</a><br>
                    </td>
                    <td width="25%" valign=top><a href="urllib2.html">urllib2</a><br>
                        <a href="urlparse.html">urlparse</a><br>
                    </td>
                </tr>
            </table>
        </td>
    </tr>
</table>
<p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
    <tr bgcolor="#ee77aa">
        <td colspan=3 valign=bottom>&nbsp;<br>
            <font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td>
    </tr>

    <tr>
        <td bgcolor="#ee77aa"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td>
        <td>&nbsp;</td>
        <td width="100%">
            <dl>
                <dt><font face="helvetica, arial"><a href="__builtin__.html#object">__builtin__.object</a>
                </font></dt>
                <dd>
                    <dl>
                        <dt><font face="helvetica, arial"><a href="twitter.html#Api">Api</a>
                        </font></dt>
                        <dt><font face="helvetica, arial"><a href="twitter.html#DirectMessage">DirectMessage</a>
                        </font></dt>
                        <dt><font face="helvetica, arial"><a href="twitter.html#Hashtag">Hashtag</a>
                        </font></dt>
                        <dt><font face="helvetica, arial"><a href="twitter.html#List">List</a>
                        </font></dt>
                        <dt><font face="helvetica, arial"><a href="twitter.html#Status">Status</a>
                        </font></dt>
                        <dt><font face="helvetica, arial"><a href="twitter.html#Trend">Trend</a>
                        </font></dt>
                        <dt><font face="helvetica, arial"><a href="twitter.html#Url">Url</a>
                        </font></dt>
                        <dt><font face="helvetica, arial"><a href="twitter.html#User">User</a>
                        </font></dt>
                    </dl>
                </dd>
                <dt><font face="helvetica, arial"><a href="exceptions.html#Exception">exceptions.Exception</a>(<a
                        href="exceptions.html#BaseException">exceptions.BaseException</a>)
                </font></dt>
                <dd>
                    <dl>
                        <dt><font face="helvetica, arial"><a href="twitter.html#TwitterError">TwitterError</a>
                        </font></dt>
                    </dl>
                </dd>
            </dl>
            <p>
            <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
                <tr bgcolor="#ffc8d8">
                    <td colspan=3 valign=bottom>&nbsp;<br>
                        <font color="#000000" face="helvetica, arial"><a name="Api">class <strong>Api</strong></a>(<a
                                href="__builtin__.html#object">__builtin__.object</a>)</font></td>
                </tr>

                <tr bgcolor="#ffc8d8">
                    <td rowspan=2><tt>&nbsp;&nbsp;&nbsp;</tt></td>
                    <td colspan=2><tt>A&nbsp;python&nbsp;interface&nbsp;into&nbsp;the&nbsp;Twitter&nbsp;API<br>
                        &nbsp;<br>
                        By&nbsp;default,&nbsp;the&nbsp;<a href="#Api">Api</a>&nbsp;caches&nbsp;results&nbsp;for&nbsp;1&nbsp;minute.<br>
                        &nbsp;<br>
                        Example&nbsp;usage:<br>
                        &nbsp;<br>
                        &nbsp;&nbsp;To&nbsp;create&nbsp;an&nbsp;instance&nbsp;of&nbsp;the&nbsp;twitter.<a href="#Api">Api</a>&nbsp;class,&nbsp;with&nbsp;no&nbsp;authentication:<br>
                        &nbsp;<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;import&nbsp;twitter<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api&nbsp;=&nbsp;twitter.<a href="#Api">Api</a>()<br>
                        &nbsp;<br>
                        &nbsp;&nbsp;To&nbsp;fetch&nbsp;a&nbsp;single&nbsp;user's&nbsp;public&nbsp;status&nbsp;messages,&nbsp;where&nbsp;"user"&nbsp;is&nbsp;either<br>
                        &nbsp;&nbsp;a&nbsp;Twitter&nbsp;"short&nbsp;name"&nbsp;or&nbsp;their&nbsp;user&nbsp;id.<br>
                        &nbsp;<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;statuses&nbsp;=&nbsp;api.<a
                                href="#Api-GetUserTimeline">GetUserTimeline</a>(user)<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;print&nbsp;[s.text&nbsp;for&nbsp;s&nbsp;in&nbsp;statuses]<br>
                        &nbsp;<br>
                        &nbsp;&nbsp;To&nbsp;use&nbsp;authentication,&nbsp;instantiate&nbsp;the&nbsp;twitter.<a
                                href="#Api">Api</a>&nbsp;class&nbsp;with&nbsp;a<br>
                        &nbsp;&nbsp;consumer&nbsp;key&nbsp;and&nbsp;secret;&nbsp;and&nbsp;the&nbsp;oAuth&nbsp;key&nbsp;and&nbsp;secret:<br>
                        &nbsp;<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api&nbsp;=&nbsp;twitter.<a href="#Api">Api</a>(consumer_key='twitter&nbsp;consumer&nbsp;key',<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;consumer_secret='twitter&nbsp;consumer&nbsp;secret',<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;access_token_key='the_key_given',<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;access_token_secret='the_key_secret')<br>
                        &nbsp;<br>
                        &nbsp;&nbsp;To&nbsp;fetch&nbsp;your&nbsp;friends&nbsp;(after&nbsp;being&nbsp;authenticated):<br>
                        &nbsp;<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;users&nbsp;=&nbsp;api.<a href="#Api-GetFriends">GetFriends</a>()<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;print&nbsp;[u.name&nbsp;for&nbsp;u&nbsp;in&nbsp;users]<br>
                        &nbsp;<br>
                        &nbsp;&nbsp;To&nbsp;post&nbsp;a&nbsp;twitter&nbsp;status&nbsp;message&nbsp;(after&nbsp;being&nbsp;authenticated):<br>
                        &nbsp;<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;status&nbsp;=&nbsp;api.<a href="#Api-PostUpdate">PostUpdate</a>('I&nbsp;love&nbsp;python-twitter!')<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;print&nbsp;status.text<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;I&nbsp;love&nbsp;python-twitter!<br>
                        &nbsp;<br>
                        &nbsp;&nbsp;There&nbsp;are&nbsp;many&nbsp;other&nbsp;methods,&nbsp;including:<br>
                        &nbsp;<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api.<a href="#Api-PostUpdates">PostUpdates</a>(status)<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api.<a
                                href="#Api-PostDirectMessage">PostDirectMessage</a>(user,&nbsp;text)<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api.<a href="#Api-GetUser">GetUser</a>(user)<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api.<a href="#Api-GetReplies">GetReplies</a>()<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api.<a href="#Api-GetUserTimeline">GetUserTimeline</a>(user)<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api.<a href="#Api-GetStatus">GetStatus</a>(id)<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api.<a href="#Api-DestroyStatus">DestroyStatus</a>(id)<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api.<a href="#Api-GetFriends">GetFriends</a>(user)<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api.<a href="#Api-GetFollowers">GetFollowers</a>()<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api.<a href="#Api-GetFeatured">GetFeatured</a>()<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api.<a
                                href="#Api-GetDirectMessages">GetDirectMessages</a>()<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api.<a
                                href="#Api-PostDirectMessage">PostDirectMessage</a>(user,&nbsp;text)<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api.<a href="#Api-DestroyDirectMessage">DestroyDirectMessage</a>(id)<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api.<a
                                href="#Api-DestroyFriendship">DestroyFriendship</a>(user)<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api.<a
                                href="#Api-CreateFriendship">CreateFriendship</a>(user)<br>
                        &nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&nbsp;api.<a
                                href="#Api-VerifyCredentials">VerifyCredentials</a>()<br>&nbsp;</tt></td>
                </tr>
                <tr>
                    <td>&nbsp;</td>
                    <td width="100%">Methods defined here:<br>
                        <dl>
                            <dt><a name="Api-ClearCredentials"><strong>ClearCredentials</strong></a>(self)</dt>
                            <dd><tt>Clear&nbsp;the&nbsp;any&nbsp;credentials&nbsp;for&nbsp;this&nbsp;instance</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-CreateFavorite"><strong>CreateFavorite</strong></a>(self, status)</dt>
                            <dd><tt>Favorites&nbsp;the&nbsp;status&nbsp;specified&nbsp;in&nbsp;the&nbsp;status&nbsp;parameter&nbsp;as&nbsp;the&nbsp;authenticating&nbsp;user.<br>
                                Returns&nbsp;the&nbsp;favorite&nbsp;status&nbsp;when&nbsp;successful.<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;The&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instance&nbsp;to&nbsp;mark&nbsp;as&nbsp;a&nbsp;favorite.<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instance&nbsp;representing&nbsp;the&nbsp;newly-marked&nbsp;favorite.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-CreateFriendship"><strong>CreateFriendship</strong></a>(self, user)</dt>
                            <dd><tt>Befriends&nbsp;the&nbsp;user&nbsp;specified&nbsp;in&nbsp;the&nbsp;user&nbsp;parameter&nbsp;as&nbsp;the&nbsp;authenticating&nbsp;user.<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;The&nbsp;ID&nbsp;or&nbsp;screen&nbsp;name&nbsp;of&nbsp;the&nbsp;user&nbsp;to&nbsp;befriend.<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;twitter.<a href="#User">User</a>&nbsp;instance&nbsp;representing&nbsp;the&nbsp;befriended&nbsp;user.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-CreateList"><strong>CreateList</strong></a>(self, user, name, mode<font
                                    color="#909090">=None</font>, description<font color="#909090">=None</font>)
                            </dt>
                            <dd><tt>Creates&nbsp;a&nbsp;new&nbsp;list&nbsp;with&nbsp;the&nbsp;given&nbsp;name<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;user:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Twitter&nbsp;name&nbsp;to&nbsp;create&nbsp;the&nbsp;list&nbsp;for<br>
                                &nbsp;&nbsp;name:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;New&nbsp;name&nbsp;for&nbsp;the&nbsp;list<br>
                                &nbsp;&nbsp;mode:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;'public'&nbsp;or&nbsp;'private'.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Defaults&nbsp;to&nbsp;'public'.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;description:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Description&nbsp;of&nbsp;the&nbsp;list.&nbsp;[Optional]<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;twitter.<a href="#List">List</a>&nbsp;instance&nbsp;representing&nbsp;the&nbsp;new&nbsp;list</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-CreateSubscription"><strong>CreateSubscription</strong></a>(self, owner,
                                list)
                            </dt>
                            <dd><tt>Creates&nbsp;a&nbsp;subscription&nbsp;to&nbsp;a&nbsp;list&nbsp;by&nbsp;the&nbsp;authenticated&nbsp;user<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;owner:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;<a href="#User">User</a>&nbsp;name&nbsp;or&nbsp;id&nbsp;of&nbsp;the&nbsp;owner&nbsp;of&nbsp;the&nbsp;list&nbsp;being&nbsp;subscribed&nbsp;to.<br>
                                &nbsp;&nbsp;list:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;slug&nbsp;or&nbsp;list&nbsp;id&nbsp;to&nbsp;subscribe&nbsp;the&nbsp;user&nbsp;to<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;twitter.<a href="#List">List</a>&nbsp;instance&nbsp;representing&nbsp;the&nbsp;list&nbsp;subscribed&nbsp;to</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-DestroyDirectMessage"><strong>DestroyDirectMessage</strong></a>(self, id)
                            </dt>
                            <dd><tt>Destroys&nbsp;the&nbsp;direct&nbsp;message&nbsp;specified&nbsp;in&nbsp;the&nbsp;required&nbsp;ID&nbsp;parameter.<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated,&nbsp;and&nbsp;the<br>
                                authenticating&nbsp;user&nbsp;must&nbsp;be&nbsp;the&nbsp;recipient&nbsp;of&nbsp;the&nbsp;specified&nbsp;direct<br>
                                message.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;id:&nbsp;The&nbsp;id&nbsp;of&nbsp;the&nbsp;direct&nbsp;message&nbsp;to&nbsp;be&nbsp;destroyed<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;twitter.<a href="#DirectMessage">DirectMessage</a>&nbsp;instance&nbsp;representing&nbsp;the&nbsp;message&nbsp;destroyed</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-DestroyFavorite"><strong>DestroyFavorite</strong></a>(self, status)</dt>
                            <dd><tt>Un-favorites&nbsp;the&nbsp;status&nbsp;specified&nbsp;in&nbsp;the&nbsp;ID&nbsp;parameter&nbsp;as&nbsp;the&nbsp;authenticating&nbsp;user.<br>
                                Returns&nbsp;the&nbsp;un-favorited&nbsp;status&nbsp;in&nbsp;the&nbsp;requested&nbsp;format&nbsp;when&nbsp;successful.<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;The&nbsp;twitter.<a href="#Status">Status</a>&nbsp;to&nbsp;unmark&nbsp;as&nbsp;a&nbsp;favorite.<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instance&nbsp;representing&nbsp;the&nbsp;newly-unmarked&nbsp;favorite.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-DestroyFriendship"><strong>DestroyFriendship</strong></a>(self, user)</dt>
                            <dd><tt>Discontinues&nbsp;friendship&nbsp;with&nbsp;the&nbsp;user&nbsp;specified&nbsp;in&nbsp;the&nbsp;user&nbsp;parameter.<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;The&nbsp;ID&nbsp;or&nbsp;screen&nbsp;name&nbsp;of&nbsp;the&nbsp;user&nbsp;&nbsp;with&nbsp;whom&nbsp;to&nbsp;discontinue&nbsp;friendship.<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;twitter.<a href="#User">User</a>&nbsp;instance&nbsp;representing&nbsp;the&nbsp;discontinued&nbsp;friend.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-DestroyList"><strong>DestroyList</strong></a>(self, user, id)</dt>
                            <dd><tt>Destroys&nbsp;the&nbsp;list&nbsp;from&nbsp;the&nbsp;given&nbsp;user<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;user:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;user&nbsp;to&nbsp;remove&nbsp;the&nbsp;list&nbsp;from.<br>
                                &nbsp;&nbsp;id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;slug&nbsp;or&nbsp;id&nbsp;of&nbsp;the&nbsp;list&nbsp;to&nbsp;remove.<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;twitter.<a href="#List">List</a>&nbsp;instance&nbsp;representing&nbsp;the&nbsp;removed&nbsp;list.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-DestroyStatus"><strong>DestroyStatus</strong></a>(self, id)</dt>
                            <dd><tt>Destroys&nbsp;the&nbsp;status&nbsp;specified&nbsp;by&nbsp;the&nbsp;required&nbsp;ID&nbsp;parameter.<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated&nbsp;and&nbsp;the<br>
                                authenticating&nbsp;user&nbsp;must&nbsp;be&nbsp;the&nbsp;author&nbsp;of&nbsp;the&nbsp;specified&nbsp;status.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;numerical&nbsp;ID&nbsp;of&nbsp;the&nbsp;status&nbsp;you're&nbsp;trying&nbsp;to&nbsp;destroy.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instance&nbsp;representing&nbsp;the&nbsp;destroyed&nbsp;status&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-DestroySubscription"><strong>DestroySubscription</strong></a>(self, owner,
                                list)
                            </dt>
                            <dd><tt>Destroys&nbsp;the&nbsp;subscription&nbsp;to&nbsp;a&nbsp;list&nbsp;for&nbsp;the&nbsp;authenticated&nbsp;user<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;owner:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;user&nbsp;id&nbsp;or&nbsp;screen&nbsp;name&nbsp;of&nbsp;the&nbsp;user&nbsp;that&nbsp;owns&nbsp;the<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;list&nbsp;that&nbsp;is&nbsp;to&nbsp;be&nbsp;unsubscribed&nbsp;from<br>
                                &nbsp;&nbsp;list:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;slug&nbsp;or&nbsp;list&nbsp;id&nbsp;of&nbsp;the&nbsp;list&nbsp;to&nbsp;unsubscribe&nbsp;from<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;twitter.<a href="#List">List</a>&nbsp;instance&nbsp;representing&nbsp;the&nbsp;removed&nbsp;list.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-FilterPublicTimeline"><strong>FilterPublicTimeline</strong></a>(self, term,
                                since_id<font color="#909090">=None</font>)
                            </dt>
                            <dd><tt>Filter&nbsp;the&nbsp;public&nbsp;twitter&nbsp;timeline&nbsp;by&nbsp;a&nbsp;given&nbsp;search&nbsp;term&nbsp;on<br>
                                the&nbsp;local&nbsp;machine.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;term:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;term&nbsp;to&nbsp;search&nbsp;by.<br>
                                &nbsp;&nbsp;since_id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Returns&nbsp;results&nbsp;with&nbsp;an&nbsp;ID&nbsp;greater&nbsp;than&nbsp;(that&nbsp;is,&nbsp;more&nbsp;recent<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;than)&nbsp;the&nbsp;specified&nbsp;ID.&nbsp;There&nbsp;are&nbsp;limits&nbsp;to&nbsp;the&nbsp;number&nbsp;of<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Tweets&nbsp;which&nbsp;can&nbsp;be&nbsp;accessed&nbsp;through&nbsp;the&nbsp;API.&nbsp;If&nbsp;the&nbsp;limit&nbsp;of<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Tweets&nbsp;has&nbsp;occured&nbsp;since&nbsp;the&nbsp;since_id,&nbsp;the&nbsp;since_id&nbsp;will&nbsp;be<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;forced&nbsp;to&nbsp;the&nbsp;oldest&nbsp;ID&nbsp;available.&nbsp;[Optional]<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;sequence&nbsp;of&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instances,&nbsp;one&nbsp;for&nbsp;each&nbsp;message<br>
                                &nbsp;&nbsp;containing&nbsp;the&nbsp;term</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetDirectMessages"><strong>GetDirectMessages</strong></a>(self, since<font
                                    color="#909090">=None</font>, since_id<font color="#909090">=None</font>, page<font
                                    color="#909090">=None</font>)
                            </dt>
                            <dd><tt>Returns&nbsp;a&nbsp;list&nbsp;of&nbsp;the&nbsp;direct&nbsp;messages&nbsp;sent&nbsp;to&nbsp;the&nbsp;authenticating&nbsp;user.<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;since:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Narrows&nbsp;the&nbsp;returned&nbsp;results&nbsp;to&nbsp;just&nbsp;those&nbsp;statuses&nbsp;created<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;after&nbsp;the&nbsp;specified&nbsp;HTTP-formatted&nbsp;date.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;since_id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Returns&nbsp;results&nbsp;with&nbsp;an&nbsp;ID&nbsp;greater&nbsp;than&nbsp;(that&nbsp;is,&nbsp;more&nbsp;recent<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;than)&nbsp;the&nbsp;specified&nbsp;ID.&nbsp;There&nbsp;are&nbsp;limits&nbsp;to&nbsp;the&nbsp;number&nbsp;of<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Tweets&nbsp;which&nbsp;can&nbsp;be&nbsp;accessed&nbsp;through&nbsp;the&nbsp;API.&nbsp;If&nbsp;the&nbsp;limit&nbsp;of<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Tweets&nbsp;has&nbsp;occured&nbsp;since&nbsp;the&nbsp;since_id,&nbsp;the&nbsp;since_id&nbsp;will&nbsp;be<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;forced&nbsp;to&nbsp;the&nbsp;oldest&nbsp;ID&nbsp;available.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;page:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Specifies&nbsp;the&nbsp;page&nbsp;of&nbsp;results&nbsp;to&nbsp;retrieve.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Note:&nbsp;there&nbsp;are&nbsp;pagination&nbsp;limits.&nbsp;[Optional]<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;sequence&nbsp;of&nbsp;twitter.<a
                                        href="#DirectMessage">DirectMessage</a>&nbsp;instances</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetFavorites"><strong>GetFavorites</strong></a>(self, user<font
                                    color="#909090">=None</font>, page<font color="#909090">=None</font>)
                            </dt>
                            <dd><tt>Return&nbsp;a&nbsp;list&nbsp;of&nbsp;<a href="#Status">Status</a>&nbsp;objects&nbsp;representing&nbsp;favorited&nbsp;tweets.<br>
                                By&nbsp;default,&nbsp;returns&nbsp;the&nbsp;(up&nbsp;to)&nbsp;20&nbsp;most&nbsp;recent&nbsp;tweets&nbsp;for&nbsp;the<br>
                                authenticated&nbsp;user.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;user:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;twitter&nbsp;name&nbsp;or&nbsp;id&nbsp;of&nbsp;the&nbsp;user&nbsp;whose&nbsp;favorites&nbsp;you&nbsp;are&nbsp;fetching.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;If&nbsp;not&nbsp;specified,&nbsp;defaults&nbsp;to&nbsp;the&nbsp;authenticated&nbsp;user.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;page:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Specifies&nbsp;the&nbsp;page&nbsp;of&nbsp;results&nbsp;to&nbsp;retrieve.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Note:&nbsp;there&nbsp;are&nbsp;pagination&nbsp;limits.&nbsp;[Optional]</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetFeatured"><strong>GetFeatured</strong></a>(self)</dt>
                            <dd><tt>Fetch&nbsp;the&nbsp;sequence&nbsp;of&nbsp;twitter.<a href="#User">User</a>&nbsp;instances&nbsp;featured&nbsp;on&nbsp;twitter.com<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;sequence&nbsp;of&nbsp;twitter.<a href="#User">User</a>&nbsp;instances</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetFollowerIDs"><strong>GetFollowerIDs</strong></a>(self, userid<font
                                    color="#909090">=None</font>, cursor<font color="#909090">=-1</font>)
                            </dt>
                            <dd><tt>Fetch&nbsp;the&nbsp;sequence&nbsp;of&nbsp;twitter.<a href="#User">User</a>&nbsp;instances,&nbsp;one&nbsp;for&nbsp;each&nbsp;follower<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;sequence&nbsp;of&nbsp;twitter.<a href="#User">User</a>&nbsp;instances,&nbsp;one&nbsp;for&nbsp;each&nbsp;follower</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetFollowers"><strong>GetFollowers</strong></a>(self, page<font
                                    color="#909090">=None</font>)
                            </dt>
                            <dd><tt>Fetch&nbsp;the&nbsp;sequence&nbsp;of&nbsp;twitter.<a href="#User">User</a>&nbsp;instances,&nbsp;one&nbsp;for&nbsp;each&nbsp;follower<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;page:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Specifies&nbsp;the&nbsp;page&nbsp;of&nbsp;results&nbsp;to&nbsp;retrieve.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Note:&nbsp;there&nbsp;are&nbsp;pagination&nbsp;limits.&nbsp;[Optional]<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;sequence&nbsp;of&nbsp;twitter.<a href="#User">User</a>&nbsp;instances,&nbsp;one&nbsp;for&nbsp;each&nbsp;follower</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetFriendIDs"><strong>GetFriendIDs</strong></a>(self, user<font
                                    color="#909090">=None</font>, cursor<font color="#909090">=-1</font>)
                            </dt>
                            <dd><tt>Returns&nbsp;a&nbsp;list&nbsp;of&nbsp;twitter&nbsp;user&nbsp;id's&nbsp;for&nbsp;every&nbsp;person<br>
                                the&nbsp;specified&nbsp;user&nbsp;is&nbsp;following.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;user:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;id&nbsp;or&nbsp;screen_name&nbsp;of&nbsp;the&nbsp;user&nbsp;to&nbsp;retrieve&nbsp;the&nbsp;id&nbsp;list&nbsp;for<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;[Optional]<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;list&nbsp;of&nbsp;integers,&nbsp;one&nbsp;for&nbsp;each&nbsp;user&nbsp;id.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetFriends"><strong>GetFriends</strong></a>(self, user<font
                                    color="#909090">=None</font>, cursor<font color="#909090">=-1</font>)
                            </dt>
                            <dd><tt>Fetch&nbsp;the&nbsp;sequence&nbsp;of&nbsp;twitter.<a href="#User">User</a>&nbsp;instances,&nbsp;one&nbsp;for&nbsp;each&nbsp;friend.<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;user:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;twitter&nbsp;name&nbsp;or&nbsp;id&nbsp;of&nbsp;the&nbsp;user&nbsp;whose&nbsp;friends&nbsp;you&nbsp;are&nbsp;fetching.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;If&nbsp;not&nbsp;specified,&nbsp;defaults&nbsp;to&nbsp;the&nbsp;authenticated&nbsp;user.&nbsp;[Optional]<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;sequence&nbsp;of&nbsp;twitter.<a href="#User">User</a>&nbsp;instances,&nbsp;one&nbsp;for&nbsp;each&nbsp;friend</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetLists"><strong>GetLists</strong></a>(self, user, cursor<font
                                    color="#909090">=-1</font>)
                            </dt>
                            <dd><tt>Fetch&nbsp;the&nbsp;sequence&nbsp;of&nbsp;lists&nbsp;for&nbsp;a&nbsp;user.<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;user:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;twitter&nbsp;name&nbsp;or&nbsp;id&nbsp;of&nbsp;the&nbsp;user&nbsp;whose&nbsp;friends&nbsp;you&nbsp;are&nbsp;fetching.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;If&nbsp;the&nbsp;passed&nbsp;in&nbsp;user&nbsp;is&nbsp;the&nbsp;same&nbsp;as&nbsp;the&nbsp;authenticated&nbsp;user<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;then&nbsp;you&nbsp;will&nbsp;also&nbsp;receive&nbsp;private&nbsp;list&nbsp;data.<br>
                                &nbsp;&nbsp;cursor:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;"page"&nbsp;value&nbsp;that&nbsp;Twitter&nbsp;will&nbsp;use&nbsp;to&nbsp;start&nbsp;building&nbsp;the<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;list&nbsp;sequence&nbsp;from.&nbsp;&nbsp;-1&nbsp;to&nbsp;start&nbsp;at&nbsp;the&nbsp;beginning.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Twitter&nbsp;will&nbsp;return&nbsp;in&nbsp;the&nbsp;result&nbsp;the&nbsp;values&nbsp;for&nbsp;next_cursor<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;and&nbsp;previous_cursor.&nbsp;[Optional]<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;sequence&nbsp;of&nbsp;twitter.<a href="#List">List</a>&nbsp;instances,&nbsp;one&nbsp;for&nbsp;each&nbsp;list</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetMentions"><strong>GetMentions</strong></a>(self, since_id<font
                                    color="#909090">=None</font>, max_id<font color="#909090">=None</font>, page<font
                                    color="#909090">=None</font>)
                            </dt>
                            <dd><tt>Returns&nbsp;the&nbsp;20&nbsp;most&nbsp;recent&nbsp;mentions&nbsp;(status&nbsp;containing&nbsp;@twitterID)<br>
                                for&nbsp;the&nbsp;authenticating&nbsp;user.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;since_id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Returns&nbsp;results&nbsp;with&nbsp;an&nbsp;ID&nbsp;greater&nbsp;than&nbsp;(that&nbsp;is,&nbsp;more&nbsp;recent<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;than)&nbsp;the&nbsp;specified&nbsp;ID.&nbsp;There&nbsp;are&nbsp;limits&nbsp;to&nbsp;the&nbsp;number&nbsp;of<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Tweets&nbsp;which&nbsp;can&nbsp;be&nbsp;accessed&nbsp;through&nbsp;the&nbsp;API.&nbsp;If&nbsp;the&nbsp;limit&nbsp;of<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Tweets&nbsp;has&nbsp;occured&nbsp;since&nbsp;the&nbsp;since_id,&nbsp;the&nbsp;since_id&nbsp;will&nbsp;be<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;forced&nbsp;to&nbsp;the&nbsp;oldest&nbsp;ID&nbsp;available.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;max_id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Returns&nbsp;only&nbsp;statuses&nbsp;with&nbsp;an&nbsp;ID&nbsp;less&nbsp;than<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;(that&nbsp;is,&nbsp;older&nbsp;than)&nbsp;the&nbsp;specified&nbsp;ID.&nbsp;&nbsp;[Optional]<br>
                                &nbsp;&nbsp;page:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Specifies&nbsp;the&nbsp;page&nbsp;of&nbsp;results&nbsp;to&nbsp;retrieve.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Note:&nbsp;there&nbsp;are&nbsp;pagination&nbsp;limits.&nbsp;[Optional]<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;sequence&nbsp;of&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instances,&nbsp;one&nbsp;for&nbsp;each&nbsp;mention&nbsp;of&nbsp;the&nbsp;user.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetRateLimitStatus"><strong>GetRateLimitStatus</strong></a>(self)</dt>
                            <dd><tt>Fetch&nbsp;the&nbsp;rate&nbsp;limit&nbsp;status&nbsp;for&nbsp;the&nbsp;currently&nbsp;authorized&nbsp;user.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;dictionary&nbsp;containing&nbsp;the&nbsp;time&nbsp;the&nbsp;limit&nbsp;will&nbsp;reset&nbsp;(reset_time),<br>
                                &nbsp;&nbsp;the&nbsp;number&nbsp;of&nbsp;remaining&nbsp;hits&nbsp;allowed&nbsp;before&nbsp;the&nbsp;reset&nbsp;(remaining_hits),<br>
                                &nbsp;&nbsp;the&nbsp;number&nbsp;of&nbsp;hits&nbsp;allowed&nbsp;in&nbsp;a&nbsp;60-minute&nbsp;period&nbsp;(hourly_limit),&nbsp;and<br>
                                &nbsp;&nbsp;the&nbsp;time&nbsp;of&nbsp;the&nbsp;reset&nbsp;in&nbsp;seconds&nbsp;since&nbsp;The&nbsp;Epoch&nbsp;(reset_time_in_seconds).</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetReplies"><strong>GetReplies</strong></a>(self, since<font
                                    color="#909090">=None</font>, since_id<font color="#909090">=None</font>, page<font
                                    color="#909090">=None</font>)
                            </dt>
                            <dd><tt>Get&nbsp;a&nbsp;sequence&nbsp;of&nbsp;status&nbsp;messages&nbsp;representing&nbsp;the&nbsp;20&nbsp;most<br>
                                recent&nbsp;replies&nbsp;(status&nbsp;updates&nbsp;prefixed&nbsp;with&nbsp;@twitterID)&nbsp;to&nbsp;the<br>
                                authenticating&nbsp;user.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;since_id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Returns&nbsp;results&nbsp;with&nbsp;an&nbsp;ID&nbsp;greater&nbsp;than&nbsp;(that&nbsp;is,&nbsp;more&nbsp;recent<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;than)&nbsp;the&nbsp;specified&nbsp;ID.&nbsp;There&nbsp;are&nbsp;limits&nbsp;to&nbsp;the&nbsp;number&nbsp;of<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Tweets&nbsp;which&nbsp;can&nbsp;be&nbsp;accessed&nbsp;through&nbsp;the&nbsp;API.&nbsp;If&nbsp;the&nbsp;limit&nbsp;of<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Tweets&nbsp;has&nbsp;occured&nbsp;since&nbsp;the&nbsp;since_id,&nbsp;the&nbsp;since_id&nbsp;will&nbsp;be<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;forced&nbsp;to&nbsp;the&nbsp;oldest&nbsp;ID&nbsp;available.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;page:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Specifies&nbsp;the&nbsp;page&nbsp;of&nbsp;results&nbsp;to&nbsp;retrieve.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Note:&nbsp;there&nbsp;are&nbsp;pagination&nbsp;limits.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;since:<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;sequence&nbsp;of&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instances,&nbsp;one&nbsp;for&nbsp;each&nbsp;reply&nbsp;to&nbsp;the&nbsp;user.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetRetweets"><strong>GetRetweets</strong></a>(self, statusid)</dt>
                            <dd><tt>Returns&nbsp;up&nbsp;to&nbsp;100&nbsp;of&nbsp;the&nbsp;first&nbsp;retweets&nbsp;of&nbsp;the&nbsp;tweet&nbsp;identified<br>
                                by&nbsp;statusid<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;statusid:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;ID&nbsp;of&nbsp;the&nbsp;tweet&nbsp;for&nbsp;which&nbsp;retweets&nbsp;should&nbsp;be&nbsp;searched&nbsp;for<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;list&nbsp;of&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instances,&nbsp;which&nbsp;are&nbsp;retweets&nbsp;of&nbsp;statusid</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetSearch"><strong>GetSearch</strong></a>(self, term, geocode<font
                                    color="#909090">=None</font>, since_id<font color="#909090">=None</font>,
                                per_page<font color="#909090">=15</font>, page<font color="#909090">=1</font>, lang<font
                                        color="#909090">='en'</font>, show_user<font color="#909090">='true'</font>,
                                query_users<font color="#909090">=False</font>)
                            </dt>
                            <dd>
                                <tt>Return&nbsp;twitter&nbsp;search&nbsp;results&nbsp;for&nbsp;a&nbsp;given&nbsp;term.<br>
                                    &nbsp;<br>
                                    Args:<br>
                                    &nbsp;&nbsp;term:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;term&nbsp;to&nbsp;search&nbsp;by.<br>
                                    &nbsp;&nbsp;since_id:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;Returns&nbsp;results&nbsp;with&nbsp;an&nbsp;ID&nbsp;greater&nbsp;than&nbsp;(that&nbsp;is,&nbsp;more&nbsp;recent<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;than)&nbsp;the&nbsp;specified&nbsp;ID.&nbsp;There&nbsp;are&nbsp;limits&nbsp;to&nbsp;the&nbsp;number&nbsp;of<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;Tweets&nbsp;which&nbsp;can&nbsp;be&nbsp;accessed&nbsp;through&nbsp;the&nbsp;API.&nbsp;If&nbsp;the&nbsp;limit&nbsp;of<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;Tweets&nbsp;has&nbsp;occured&nbsp;since&nbsp;the&nbsp;since_id,&nbsp;the&nbsp;since_id&nbsp;will&nbsp;be<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;forced&nbsp;to&nbsp;the&nbsp;oldest&nbsp;ID&nbsp;available.&nbsp;[Optional]<br>
                                    &nbsp;&nbsp;geocode:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;geolocation&nbsp;information&nbsp;in&nbsp;the&nbsp;form&nbsp;(latitude,&nbsp;longitude,&nbsp;radius)<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;[Optional]<br>
                                    &nbsp;&nbsp;per_page:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;number&nbsp;of&nbsp;results&nbsp;to&nbsp;return.&nbsp;&nbsp;Default&nbsp;is&nbsp;15&nbsp;[Optional]<br>
                                    &nbsp;&nbsp;page:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;Specifies&nbsp;the&nbsp;page&nbsp;of&nbsp;results&nbsp;to&nbsp;retrieve.<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;Note:&nbsp;there&nbsp;are&nbsp;pagination&nbsp;limits.&nbsp;[Optional]<br>
                                    &nbsp;&nbsp;lang:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;language&nbsp;for&nbsp;results.&nbsp;&nbsp;Default&nbsp;is&nbsp;English&nbsp;[Optional]<br>
                                    &nbsp;&nbsp;show_user:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;prefixes&nbsp;screen&nbsp;name&nbsp;in&nbsp;status<br>
                                    &nbsp;&nbsp;query_users:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;If&nbsp;set&nbsp;to&nbsp;False,&nbsp;then&nbsp;all&nbsp;users&nbsp;only&nbsp;have&nbsp;screen_name&nbsp;and<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;profile_image_url&nbsp;available.<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;If&nbsp;set&nbsp;to&nbsp;True,&nbsp;all&nbsp;information&nbsp;of&nbsp;users&nbsp;are&nbsp;available,<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;but&nbsp;it&nbsp;uses&nbsp;lots&nbsp;of&nbsp;request&nbsp;quota,&nbsp;one&nbsp;per&nbsp;status.<br>
                                    &nbsp;<br>
                                    Returns:<br>
                                    &nbsp;&nbsp;A&nbsp;sequence&nbsp;of&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instances,&nbsp;one&nbsp;for&nbsp;each&nbsp;message&nbsp;containing<br>
                                    &nbsp;&nbsp;the&nbsp;term</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetStatus"><strong>GetStatus</strong></a>(self, id)</dt>
                            <dd><tt>Returns&nbsp;a&nbsp;single&nbsp;status&nbsp;message.<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated&nbsp;if&nbsp;the<br>
                                status&nbsp;message&nbsp;is&nbsp;private.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;numeric&nbsp;ID&nbsp;of&nbsp;the&nbsp;status&nbsp;you&nbsp;are&nbsp;trying&nbsp;to&nbsp;retrieve.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instance&nbsp;representing&nbsp;that&nbsp;status&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetSubscriptions"><strong>GetSubscriptions</strong></a>(self, user,
                                cursor<font color="#909090">=-1</font>)
                            </dt>
                            <dd><tt>Fetch&nbsp;the&nbsp;sequence&nbsp;of&nbsp;Lists&nbsp;that&nbsp;the&nbsp;given&nbsp;user&nbsp;is&nbsp;subscribed&nbsp;to<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;user:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;twitter&nbsp;name&nbsp;or&nbsp;id&nbsp;of&nbsp;the&nbsp;user<br>
                                &nbsp;&nbsp;cursor:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;"page"&nbsp;value&nbsp;that&nbsp;Twitter&nbsp;will&nbsp;use&nbsp;to&nbsp;start&nbsp;building&nbsp;the<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;list&nbsp;sequence&nbsp;from.&nbsp;&nbsp;-1&nbsp;to&nbsp;start&nbsp;at&nbsp;the&nbsp;beginning.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Twitter&nbsp;will&nbsp;return&nbsp;in&nbsp;the&nbsp;result&nbsp;the&nbsp;values&nbsp;for&nbsp;next_cursor<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;and&nbsp;previous_cursor.&nbsp;[Optional]<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;sequence&nbsp;of&nbsp;twitter.<a href="#List">List</a>&nbsp;instances,&nbsp;one&nbsp;for&nbsp;each&nbsp;list</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetTrendsCurrent"><strong>GetTrendsCurrent</strong></a>(self, exclude<font
                                    color="#909090">=None</font>)
                            </dt>
                            <dd><tt>Get&nbsp;the&nbsp;current&nbsp;top&nbsp;trending&nbsp;topics<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;exclude:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Appends&nbsp;the&nbsp;exclude&nbsp;parameter&nbsp;as&nbsp;a&nbsp;request&nbsp;parameter.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Currently&nbsp;only&nbsp;exclude=hashtags&nbsp;is&nbsp;supported.&nbsp;[Optional]<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;list&nbsp;with&nbsp;10&nbsp;entries.&nbsp;Each&nbsp;entry&nbsp;contains&nbsp;the&nbsp;twitter.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetTrendsDaily"><strong>GetTrendsDaily</strong></a>(self, exclude<font
                                    color="#909090">=None</font>, startdate<font color="#909090">=None</font>)
                            </dt>
                            <dd><tt>Get&nbsp;the&nbsp;current&nbsp;top&nbsp;trending&nbsp;topics&nbsp;for&nbsp;each&nbsp;hour&nbsp;in&nbsp;a&nbsp;given&nbsp;day<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;startdate:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;start&nbsp;date&nbsp;for&nbsp;the&nbsp;report.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Should&nbsp;be&nbsp;in&nbsp;the&nbsp;format&nbsp;YYYY-MM-DD.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;exclude:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Appends&nbsp;the&nbsp;exclude&nbsp;parameter&nbsp;as&nbsp;a&nbsp;request&nbsp;parameter.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Currently&nbsp;only&nbsp;exclude=hashtags&nbsp;is&nbsp;supported.&nbsp;[Optional]<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;list&nbsp;with&nbsp;24&nbsp;entries.&nbsp;Each&nbsp;entry&nbsp;contains&nbsp;the&nbsp;twitter.<br>
                                &nbsp;&nbsp;<a href="#Trend">Trend</a>&nbsp;elements&nbsp;that&nbsp;were&nbsp;trending&nbsp;at&nbsp;the&nbsp;corresponding&nbsp;hour&nbsp;of&nbsp;the&nbsp;day.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetTrendsWeekly"><strong>GetTrendsWeekly</strong></a>(self, exclude<font
                                    color="#909090">=None</font>, startdate<font color="#909090">=None</font>)
                            </dt>
                            <dd><tt>Get&nbsp;the&nbsp;top&nbsp;30&nbsp;trending&nbsp;topics&nbsp;for&nbsp;each&nbsp;day&nbsp;in&nbsp;a&nbsp;given&nbsp;week.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;startdate:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;start&nbsp;date&nbsp;for&nbsp;the&nbsp;report.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Should&nbsp;be&nbsp;in&nbsp;the&nbsp;format&nbsp;YYYY-MM-DD.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;exclude:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Appends&nbsp;the&nbsp;exclude&nbsp;parameter&nbsp;as&nbsp;a&nbsp;request&nbsp;parameter.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Currently&nbsp;only&nbsp;exclude=hashtags&nbsp;is&nbsp;supported.&nbsp;[Optional]<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;list&nbsp;with&nbsp;each&nbsp;entry&nbsp;contains&nbsp;the&nbsp;twitter.<br>
                                &nbsp;&nbsp;<a href="#Trend">Trend</a>&nbsp;elements&nbsp;of&nbsp;trending&nbsp;topics&nbsp;for&nbsp;the&nbsp;corrsponding&nbsp;day&nbsp;of&nbsp;the&nbsp;week</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetUser"><strong>GetUser</strong></a>(self, user)</dt>
                            <dd><tt>Returns&nbsp;a&nbsp;single&nbsp;user.<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;user:&nbsp;The&nbsp;twitter&nbsp;name&nbsp;or&nbsp;id&nbsp;of&nbsp;the&nbsp;user&nbsp;to&nbsp;retrieve.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;twitter.<a href="#User">User</a>&nbsp;instance&nbsp;representing&nbsp;that&nbsp;user</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetUserRetweets"><strong>GetUserRetweets</strong></a>(self, count<font
                                    color="#909090">=None</font>, since_id<font color="#909090">=None</font>,
                                max_id<font color="#909090">=None</font>, include_entities<font
                                        color="#909090">=False</font>)
                            </dt>
                            <dd><tt>Fetch&nbsp;the&nbsp;sequence&nbsp;of&nbsp;retweets&nbsp;made&nbsp;by&nbsp;a&nbsp;single&nbsp;user.<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;count:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;number&nbsp;of&nbsp;status&nbsp;messages&nbsp;to&nbsp;retrieve.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;since_id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Returns&nbsp;results&nbsp;with&nbsp;an&nbsp;ID&nbsp;greater&nbsp;than&nbsp;(that&nbsp;is,&nbsp;more&nbsp;recent<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;than)&nbsp;the&nbsp;specified&nbsp;ID.&nbsp;There&nbsp;are&nbsp;limits&nbsp;to&nbsp;the&nbsp;number&nbsp;of<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Tweets&nbsp;which&nbsp;can&nbsp;be&nbsp;accessed&nbsp;through&nbsp;the&nbsp;API.&nbsp;If&nbsp;the&nbsp;limit&nbsp;of<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Tweets&nbsp;has&nbsp;occured&nbsp;since&nbsp;the&nbsp;since_id,&nbsp;the&nbsp;since_id&nbsp;will&nbsp;be<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;forced&nbsp;to&nbsp;the&nbsp;oldest&nbsp;ID&nbsp;available.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;max_id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Returns&nbsp;results&nbsp;with&nbsp;an&nbsp;ID&nbsp;less&nbsp;than&nbsp;(that&nbsp;is,&nbsp;older&nbsp;than)&nbsp;or<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;equal&nbsp;to&nbsp;the&nbsp;specified&nbsp;ID.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;include_entities:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;If&nbsp;True,&nbsp;each&nbsp;tweet&nbsp;will&nbsp;include&nbsp;a&nbsp;node&nbsp;called&nbsp;"entities,".<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;This&nbsp;node&nbsp;offers&nbsp;a&nbsp;variety&nbsp;of&nbsp;metadata&nbsp;about&nbsp;the&nbsp;tweet&nbsp;in&nbsp;a<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;discreet&nbsp;structure,&nbsp;including:&nbsp;user_mentions,&nbsp;urls,&nbsp;and<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;hashtags.&nbsp;[Optional]<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;sequence&nbsp;of&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instances,&nbsp;one&nbsp;for&nbsp;each&nbsp;message&nbsp;up&nbsp;to&nbsp;count</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-GetUserTimeline"><strong>GetUserTimeline</strong></a>(self, id<font
                                    color="#909090">=None</font>, user_id<font color="#909090">=None</font>, screen_name<font
                                    color="#909090">=None</font>, since_id<font color="#909090">=None</font>,
                                max_id<font color="#909090">=None</font>, count<font color="#909090">=None</font>,
                                page<font color="#909090">=None</font>, include_rts<font color="#909090">=None</font>,
                                include_entities<font color="#909090">=None</font>)
                            </dt>
                            <dd><tt>Fetch&nbsp;the&nbsp;sequence&nbsp;of&nbsp;public&nbsp;<a href="#Status">Status</a>&nbsp;messages&nbsp;for&nbsp;a&nbsp;single&nbsp;user.<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated&nbsp;if&nbsp;the&nbsp;user&nbsp;is&nbsp;private.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Specifies&nbsp;the&nbsp;ID&nbsp;or&nbsp;screen&nbsp;name&nbsp;of&nbsp;the&nbsp;user&nbsp;for&nbsp;whom&nbsp;to&nbsp;return<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;the&nbsp;user_timeline.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;user_id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Specfies&nbsp;the&nbsp;ID&nbsp;of&nbsp;the&nbsp;user&nbsp;for&nbsp;whom&nbsp;to&nbsp;return&nbsp;the<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;user_timeline.&nbsp;Helpful&nbsp;for&nbsp;disambiguating&nbsp;when&nbsp;a&nbsp;valid&nbsp;user&nbsp;ID<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;is&nbsp;also&nbsp;a&nbsp;valid&nbsp;screen&nbsp;name.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;screen_name:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Specfies&nbsp;the&nbsp;screen&nbsp;name&nbsp;of&nbsp;the&nbsp;user&nbsp;for&nbsp;whom&nbsp;to&nbsp;return&nbsp;the<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;user_timeline.&nbsp;Helpful&nbsp;for&nbsp;disambiguating&nbsp;when&nbsp;a&nbsp;valid&nbsp;screen<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;name&nbsp;is&nbsp;also&nbsp;a&nbsp;user&nbsp;ID.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;since_id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Returns&nbsp;results&nbsp;with&nbsp;an&nbsp;ID&nbsp;greater&nbsp;than&nbsp;(that&nbsp;is,&nbsp;more&nbsp;recent<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;than)&nbsp;the&nbsp;specified&nbsp;ID.&nbsp;There&nbsp;are&nbsp;limits&nbsp;to&nbsp;the&nbsp;number&nbsp;of<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Tweets&nbsp;which&nbsp;can&nbsp;be&nbsp;accessed&nbsp;through&nbsp;the&nbsp;API.&nbsp;If&nbsp;the&nbsp;limit&nbsp;of<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Tweets&nbsp;has&nbsp;occured&nbsp;since&nbsp;the&nbsp;since_id,&nbsp;the&nbsp;since_id&nbsp;will&nbsp;be<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;forced&nbsp;to&nbsp;the&nbsp;oldest&nbsp;ID&nbsp;available.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;max_id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Returns&nbsp;only&nbsp;statuses&nbsp;with&nbsp;an&nbsp;ID&nbsp;less&nbsp;than&nbsp;(that&nbsp;is,&nbsp;older<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;than)&nbsp;or&nbsp;equal&nbsp;to&nbsp;the&nbsp;specified&nbsp;ID.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;count:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Specifies&nbsp;the&nbsp;number&nbsp;of&nbsp;statuses&nbsp;to&nbsp;retrieve.&nbsp;May&nbsp;not&nbsp;be<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;greater&nbsp;than&nbsp;200.&nbsp;&nbsp;[Optional]<br>
                                &nbsp;&nbsp;page:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Specifies&nbsp;the&nbsp;page&nbsp;of&nbsp;results&nbsp;to&nbsp;retrieve.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Note:&nbsp;there&nbsp;are&nbsp;pagination&nbsp;limits.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;include_rts:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;If&nbsp;True,&nbsp;the&nbsp;timeline&nbsp;will&nbsp;contain&nbsp;native&nbsp;retweets&nbsp;(if&nbsp;they<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;exist)&nbsp;in&nbsp;addition&nbsp;to&nbsp;the&nbsp;standard&nbsp;stream&nbsp;of&nbsp;tweets.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;include_entities:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;If&nbsp;True,&nbsp;each&nbsp;tweet&nbsp;will&nbsp;include&nbsp;a&nbsp;node&nbsp;called&nbsp;"entities,".<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;This&nbsp;node&nbsp;offers&nbsp;a&nbsp;variety&nbsp;of&nbsp;metadata&nbsp;about&nbsp;the&nbsp;tweet&nbsp;in&nbsp;a<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;discreet&nbsp;structure,&nbsp;including:&nbsp;user_mentions,&nbsp;urls,&nbsp;and<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;hashtags.&nbsp;[Optional]<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;sequence&nbsp;of&nbsp;<a href="#Status">Status</a>&nbsp;instances,&nbsp;one&nbsp;for&nbsp;each&nbsp;message&nbsp;up&nbsp;to&nbsp;count</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-MaximumHitFrequency"><strong>MaximumHitFrequency</strong></a>(self)</dt>
                            <dd><tt>Determines&nbsp;the&nbsp;minimum&nbsp;number&nbsp;of&nbsp;seconds&nbsp;that&nbsp;a&nbsp;program&nbsp;must&nbsp;wait<br>
                                before&nbsp;hitting&nbsp;the&nbsp;server&nbsp;again&nbsp;without&nbsp;exceeding&nbsp;the&nbsp;rate_limit<br>
                                imposed&nbsp;for&nbsp;the&nbsp;currently&nbsp;authenticated&nbsp;user.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;minimum&nbsp;second&nbsp;interval&nbsp;that&nbsp;a&nbsp;program&nbsp;must&nbsp;use&nbsp;so&nbsp;as&nbsp;to&nbsp;not<br>
                                &nbsp;&nbsp;exceed&nbsp;the&nbsp;rate_limit&nbsp;imposed&nbsp;for&nbsp;the&nbsp;user.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-PostDirectMessage"><strong>PostDirectMessage</strong></a>(self, user, text)
                            </dt>
                            <dd><tt>Post&nbsp;a&nbsp;twitter&nbsp;direct&nbsp;message&nbsp;from&nbsp;the&nbsp;authenticated&nbsp;user<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;user:&nbsp;The&nbsp;ID&nbsp;or&nbsp;screen&nbsp;name&nbsp;of&nbsp;the&nbsp;recipient&nbsp;user.<br>
                                &nbsp;&nbsp;text:&nbsp;The&nbsp;message&nbsp;text&nbsp;to&nbsp;be&nbsp;posted.&nbsp;&nbsp;Must&nbsp;be&nbsp;less&nbsp;than&nbsp;140&nbsp;characters.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;twitter.<a href="#DirectMessage">DirectMessage</a>&nbsp;instance&nbsp;representing&nbsp;the&nbsp;message&nbsp;posted</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-PostUpdate"><strong>PostUpdate</strong></a>(self, status,
                                in_reply_to_status_id<font color="#909090">=None</font>)
                            </dt>
                            <dd><tt>Post&nbsp;a&nbsp;twitter&nbsp;status&nbsp;message&nbsp;from&nbsp;the&nbsp;authenticated&nbsp;user.<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;status:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;message&nbsp;text&nbsp;to&nbsp;be&nbsp;posted.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Must&nbsp;be&nbsp;less&nbsp;than&nbsp;or&nbsp;equal&nbsp;to&nbsp;140&nbsp;characters.<br>
                                &nbsp;&nbsp;in_reply_to_status_id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;ID&nbsp;of&nbsp;an&nbsp;existing&nbsp;status&nbsp;that&nbsp;the&nbsp;status&nbsp;to&nbsp;be&nbsp;posted&nbsp;is<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;in&nbsp;reply&nbsp;to.&nbsp;&nbsp;This&nbsp;implicitly&nbsp;sets&nbsp;the&nbsp;in_reply_to_user_id<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;attribute&nbsp;of&nbsp;the&nbsp;resulting&nbsp;status&nbsp;to&nbsp;the&nbsp;user&nbsp;ID&nbsp;of&nbsp;the<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;message&nbsp;being&nbsp;replied&nbsp;to.&nbsp;&nbsp;Invalid/missing&nbsp;status&nbsp;IDs&nbsp;will&nbsp;be<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;ignored.&nbsp;[Optional]<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instance&nbsp;representing&nbsp;the&nbsp;message&nbsp;posted.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-PostUpdates"><strong>PostUpdates</strong></a>(self, status,
                                continuation<font color="#909090">=None</font>, **kwargs)
                            </dt>
                            <dd><tt>Post&nbsp;one&nbsp;or&nbsp;more&nbsp;twitter&nbsp;status&nbsp;messages&nbsp;from&nbsp;the&nbsp;authenticated&nbsp;user.<br>
                                &nbsp;<br>
                                Unlike&nbsp;api.PostUpdate,&nbsp;this&nbsp;method&nbsp;will&nbsp;post&nbsp;multiple&nbsp;status&nbsp;updates<br>
                                if&nbsp;the&nbsp;message&nbsp;is&nbsp;longer&nbsp;than&nbsp;140&nbsp;characters.<br>
                                &nbsp;<br>
                                The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;status:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;message&nbsp;text&nbsp;to&nbsp;be&nbsp;posted.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;May&nbsp;be&nbsp;longer&nbsp;than&nbsp;140&nbsp;characters.<br>
                                &nbsp;&nbsp;continuation:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;character&nbsp;string,&nbsp;if&nbsp;any,&nbsp;to&nbsp;be&nbsp;appended&nbsp;to&nbsp;all&nbsp;but&nbsp;the<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;last&nbsp;message.&nbsp;&nbsp;Note&nbsp;that&nbsp;Twitter&nbsp;strips&nbsp;trailing&nbsp;'...'&nbsp;strings<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;from&nbsp;messages.&nbsp;&nbsp;Consider&nbsp;using&nbsp;the&nbsp;unicode&nbsp;\u2026&nbsp;character<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;(horizontal&nbsp;ellipsis)&nbsp;instead.&nbsp;[Defaults&nbsp;to&nbsp;None]<br>
                                &nbsp;&nbsp;**kwargs:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;See&nbsp;api.PostUpdate&nbsp;for&nbsp;a&nbsp;list&nbsp;of&nbsp;accepted&nbsp;parameters.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;of&nbsp;list&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instance&nbsp;representing&nbsp;the&nbsp;messages&nbsp;posted.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-SetCache"><strong>SetCache</strong></a>(self, cache)</dt>
                            <dd><tt>Override&nbsp;the&nbsp;default&nbsp;cache.&nbsp;&nbsp;Set&nbsp;to&nbsp;None&nbsp;to&nbsp;prevent&nbsp;caching.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;cache:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;An&nbsp;instance&nbsp;that&nbsp;supports&nbsp;the&nbsp;same&nbsp;API&nbsp;as&nbsp;the&nbsp;twitter._FileCache</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-SetCacheTimeout"><strong>SetCacheTimeout</strong></a>(self, cache_timeout)
                            </dt>
                            <dd><tt>Override&nbsp;the&nbsp;default&nbsp;cache&nbsp;timeout.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;cache_timeout:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Time,&nbsp;in&nbsp;seconds,&nbsp;that&nbsp;responses&nbsp;should&nbsp;be&nbsp;reused.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-SetCredentials"><strong>SetCredentials</strong></a>(self, consumer_key,
                                consumer_secret, access_token_key<font color="#909090">=None</font>, access_token_secret<font
                                        color="#909090">=None</font>)
                            </dt>
                            <dd><tt>Set&nbsp;the&nbsp;consumer_key&nbsp;and&nbsp;consumer_secret&nbsp;for&nbsp;this&nbsp;instance<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;consumer_key:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;consumer_key&nbsp;of&nbsp;the&nbsp;twitter&nbsp;account.<br>
                                &nbsp;&nbsp;consumer_secret:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;consumer_secret&nbsp;for&nbsp;the&nbsp;twitter&nbsp;account.<br>
                                &nbsp;&nbsp;access_token_key:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;oAuth&nbsp;access&nbsp;token&nbsp;key&nbsp;value&nbsp;you&nbsp;retrieved<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;from&nbsp;running&nbsp;get_access_token.py.<br>
                                &nbsp;&nbsp;access_token_secret:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;oAuth&nbsp;access&nbsp;token's&nbsp;secret,&nbsp;also&nbsp;retrieved<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;from&nbsp;the&nbsp;get_access_token.py&nbsp;run.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-SetSource"><strong>SetSource</strong></a>(self, source)</dt>
                            <dd><tt>Suggest&nbsp;the&nbsp;"from&nbsp;source"&nbsp;value&nbsp;to&nbsp;be&nbsp;displayed&nbsp;on&nbsp;the&nbsp;Twitter&nbsp;web&nbsp;site.<br>
                                &nbsp;<br>
                                The&nbsp;value&nbsp;of&nbsp;the&nbsp;'source'&nbsp;parameter&nbsp;must&nbsp;be&nbsp;first&nbsp;recognized&nbsp;by<br>
                                the&nbsp;Twitter&nbsp;server.&nbsp;&nbsp;New&nbsp;source&nbsp;values&nbsp;are&nbsp;authorized&nbsp;on&nbsp;a&nbsp;case&nbsp;by<br>
                                case&nbsp;basis&nbsp;by&nbsp;the&nbsp;Twitter&nbsp;development&nbsp;team.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;source:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;source&nbsp;name&nbsp;as&nbsp;a&nbsp;string.&nbsp;&nbsp;Will&nbsp;be&nbsp;sent&nbsp;to&nbsp;the&nbsp;server&nbsp;as<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;the&nbsp;'source'&nbsp;parameter.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-SetUrllib"><strong>SetUrllib</strong></a>(self, urllib)</dt>
                            <dd><tt>Override&nbsp;the&nbsp;default&nbsp;urllib&nbsp;implementation.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;urllib:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;An&nbsp;instance&nbsp;that&nbsp;supports&nbsp;the&nbsp;same&nbsp;API&nbsp;as&nbsp;the&nbsp;urllib2&nbsp;module</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-SetUserAgent"><strong>SetUserAgent</strong></a>(self, user_agent)</dt>
                            <dd><tt>Override&nbsp;the&nbsp;default&nbsp;user&nbsp;agent<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;user_agent:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;string&nbsp;that&nbsp;should&nbsp;be&nbsp;send&nbsp;to&nbsp;the&nbsp;server&nbsp;as&nbsp;the&nbsp;<a
                                        href="#User">User</a>-agent</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-SetXTwitterHeaders"><strong>SetXTwitterHeaders</strong></a>(self, client,
                                url, version)
                            </dt>
                            <dd><tt>Set&nbsp;the&nbsp;X-Twitter&nbsp;HTTP&nbsp;headers&nbsp;that&nbsp;will&nbsp;be&nbsp;sent&nbsp;to&nbsp;the&nbsp;server.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;client:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;client&nbsp;name&nbsp;as&nbsp;a&nbsp;string.&nbsp;&nbsp;Will&nbsp;be&nbsp;sent&nbsp;to&nbsp;the&nbsp;server&nbsp;as<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the&nbsp;'X-Twitter-Client'&nbsp;header.<br>
                                &nbsp;&nbsp;url:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;URL&nbsp;of&nbsp;the&nbsp;meta.xml&nbsp;as&nbsp;a&nbsp;string.&nbsp;&nbsp;Will&nbsp;be&nbsp;sent&nbsp;to&nbsp;the&nbsp;server<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;as&nbsp;the&nbsp;'X-Twitter-Client-URL'&nbsp;header.<br>
                                &nbsp;&nbsp;version:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;client&nbsp;version&nbsp;as&nbsp;a&nbsp;string.&nbsp;&nbsp;Will&nbsp;be&nbsp;sent&nbsp;to&nbsp;the&nbsp;server<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;as&nbsp;the&nbsp;'X-Twitter-Client-Version'&nbsp;header.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-UsersLookup"><strong>UsersLookup</strong></a>(self, user_id<font
                                    color="#909090">=None</font>, screen_name<font color="#909090">=None</font>,
                                users<font color="#909090">=None</font>)
                            </dt>
                            <dd>
                                <tt>Fetch&nbsp;extended&nbsp;information&nbsp;for&nbsp;the&nbsp;specified&nbsp;users.<br>
                                    &nbsp;<br>
                                    Users&nbsp;may&nbsp;be&nbsp;specified&nbsp;either&nbsp;as&nbsp;lists&nbsp;of&nbsp;either&nbsp;user_ids,<br>
                                    screen_names,&nbsp;or&nbsp;twitter.<a href="#User">User</a>&nbsp;objects.&nbsp;The&nbsp;list&nbsp;of&nbsp;users&nbsp;that<br>
                                    are&nbsp;queried&nbsp;is&nbsp;the&nbsp;union&nbsp;of&nbsp;all&nbsp;specified&nbsp;parameters.<br>
                                    &nbsp;<br>
                                    The&nbsp;twitter.<a href="#Api">Api</a>&nbsp;instance&nbsp;must&nbsp;be&nbsp;authenticated.<br>
                                    &nbsp;<br>
                                    Args:<br>
                                    &nbsp;&nbsp;user_id:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;list&nbsp;of&nbsp;user_ids&nbsp;to&nbsp;retrieve&nbsp;extended&nbsp;information.<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;[Optional]<br>
                                    &nbsp;&nbsp;screen_name:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;list&nbsp;of&nbsp;screen_names&nbsp;to&nbsp;retrieve&nbsp;extended&nbsp;information.<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;[Optional]<br>
                                    &nbsp;&nbsp;users:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;list&nbsp;of&nbsp;twitter.<a href="#User">User</a>&nbsp;objects&nbsp;to&nbsp;retrieve&nbsp;extended&nbsp;information.<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;[Optional]<br>
                                    &nbsp;<br>
                                    Returns:<br>
                                    &nbsp;&nbsp;A&nbsp;list&nbsp;of&nbsp;twitter.<a href="#User">User</a>&nbsp;objects&nbsp;for&nbsp;the&nbsp;requested&nbsp;users</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-VerifyCredentials"><strong>VerifyCredentials</strong></a>(self)</dt>
                            <dd><tt>Returns&nbsp;a&nbsp;twitter.<a href="#User">User</a>&nbsp;instance&nbsp;if&nbsp;the&nbsp;authenticating&nbsp;user&nbsp;is&nbsp;valid.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;twitter.<a href="#User">User</a>&nbsp;instance&nbsp;representing&nbsp;that&nbsp;user&nbsp;if&nbsp;the<br>
                                &nbsp;&nbsp;credentials&nbsp;are&nbsp;valid,&nbsp;None&nbsp;otherwise.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="Api-__init__"><strong>__init__</strong></a>(self, consumer_key<font
                                    color="#909090">=None</font>, consumer_secret<font color="#909090">=None</font>,
                                access_token_key<font color="#909090">=None</font>, access_token_secret<font
                                        color="#909090">=None</font>, input_encoding<font color="#909090">=None</font>,
                                request_headers<font color="#909090">=None</font>, cache<font color="#909090">=&lt;object
                                    object at 0x1001da0a0&gt;</font>, shortner<font color="#909090">=None</font>,
                                base_url<font color="#909090">=None</font>, use_gzip_compression<font color="#909090">=False</font>,
                                debugHTTP<font color="#909090">=False</font>)
                            </dt>
                            <dd><tt>Instantiate&nbsp;a&nbsp;new&nbsp;twitter.<a href="#Api">Api</a>&nbsp;<a
                                    href="__builtin__.html#object">object</a>.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;consumer_key:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Your&nbsp;Twitter&nbsp;user's&nbsp;consumer_key.<br>
                                &nbsp;&nbsp;consumer_secret:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Your&nbsp;Twitter&nbsp;user's&nbsp;consumer_secret.<br>
                                &nbsp;&nbsp;access_token_key:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;oAuth&nbsp;access&nbsp;token&nbsp;key&nbsp;value&nbsp;you&nbsp;retrieved<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;from&nbsp;running&nbsp;get_access_token.py.<br>
                                &nbsp;&nbsp;access_token_secret:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;oAuth&nbsp;access&nbsp;token's&nbsp;secret,&nbsp;also&nbsp;retrieved<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;from&nbsp;the&nbsp;get_access_token.py&nbsp;run.<br>
                                &nbsp;&nbsp;input_encoding:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;encoding&nbsp;used&nbsp;to&nbsp;encode&nbsp;input&nbsp;strings.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;request_header:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;dictionary&nbsp;of&nbsp;additional&nbsp;HTTP&nbsp;request&nbsp;headers.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;cache:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;cache&nbsp;instance&nbsp;to&nbsp;use.&nbsp;Defaults&nbsp;to&nbsp;DEFAULT_CACHE.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Use&nbsp;None&nbsp;to&nbsp;disable&nbsp;caching.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;shortner:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;shortner&nbsp;instance&nbsp;to&nbsp;use.&nbsp;&nbsp;Defaults&nbsp;to&nbsp;None.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;See&nbsp;shorten_url.py&nbsp;for&nbsp;an&nbsp;example&nbsp;shortner.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;base_url:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;base&nbsp;URL&nbsp;to&nbsp;use&nbsp;to&nbsp;contact&nbsp;the&nbsp;Twitter&nbsp;API.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Defaults&nbsp;to&nbsp;https://twitter.com.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;use_gzip_compression:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Set&nbsp;to&nbsp;True&nbsp;to&nbsp;tell&nbsp;enable&nbsp;gzip&nbsp;compression&nbsp;for&nbsp;any&nbsp;call<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;made&nbsp;to&nbsp;Twitter.&nbsp;&nbsp;Defaults&nbsp;to&nbsp;False.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;debugHTTP:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Set&nbsp;to&nbsp;True&nbsp;to&nbsp;enable&nbsp;debug&nbsp;output&nbsp;from&nbsp;urllib2&nbsp;when&nbsp;performing<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;any&nbsp;HTTP&nbsp;requests.&nbsp;&nbsp;Defaults&nbsp;to&nbsp;False.&nbsp;[Optional]</tt>
                            </dd>
                        </dl>

                        <hr>
                        Data descriptors defined here:<br>
                        <dl>
                            <dt><strong>__dict__</strong></dt>
                            <dd><tt>dictionary&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>__weakref__</strong></dt>
                            <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;defined)</tt>
                            </dd>
                        </dl>
                        <hr>
                        Data and other attributes defined here:<br>
                        <dl>
                            <dt><strong>DEFAULT_CACHE_TIMEOUT</strong> = 60
                        </dl>

                    </td>
                </tr>
            </table>
            <p>
            <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
                <tr bgcolor="#ffc8d8">
                    <td colspan=3 valign=bottom>&nbsp;<br>
                        <font color="#000000" face="helvetica, arial"><a name="DirectMessage">class <strong>DirectMessage</strong></a>(<a
                                href="__builtin__.html#object">__builtin__.object</a>)</font></td>
                </tr>

                <tr bgcolor="#ffc8d8">
                    <td rowspan=2><tt>&nbsp;&nbsp;&nbsp;</tt></td>
                    <td colspan=2><tt>A&nbsp;class&nbsp;representing&nbsp;the&nbsp;<a href="#DirectMessage">DirectMessage</a>&nbsp;structure&nbsp;used&nbsp;by&nbsp;the&nbsp;twitter&nbsp;API.<br>
                        &nbsp;<br>
                        The&nbsp;<a href="#DirectMessage">DirectMessage</a>&nbsp;structure&nbsp;exposes&nbsp;the&nbsp;following&nbsp;properties:<br>
                        &nbsp;<br>
                        &nbsp;&nbsp;direct_message.id<br>
                        &nbsp;&nbsp;direct_message.created_at<br>
                        &nbsp;&nbsp;direct_message.created_at_in_seconds&nbsp;#&nbsp;read&nbsp;only<br>
                        &nbsp;&nbsp;direct_message.sender_id<br>
                        &nbsp;&nbsp;direct_message.sender_screen_name<br>
                        &nbsp;&nbsp;direct_message.recipient_id<br>
                        &nbsp;&nbsp;direct_message.recipient_screen_name<br>
                        &nbsp;&nbsp;direct_message.text<br>&nbsp;</tt></td>
                </tr>
                <tr>
                    <td>&nbsp;</td>
                    <td width="100%">Methods defined here:<br>
                        <dl>
                            <dt><a name="DirectMessage-AsDict"><strong>AsDict</strong></a>(self)</dt>
                            <dd><tt>A&nbsp;dict&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a
                                    href="#DirectMessage">DirectMessage</a>&nbsp;instance.<br>
                                &nbsp;<br>
                                The&nbsp;return&nbsp;value&nbsp;uses&nbsp;the&nbsp;same&nbsp;key&nbsp;names&nbsp;as&nbsp;the&nbsp;JSON&nbsp;representation.<br>
                                &nbsp;<br>
                                Return:<br>
                                &nbsp;&nbsp;A&nbsp;dict&nbsp;representing&nbsp;this&nbsp;twitter.<a
                                        href="#DirectMessage">DirectMessage</a>&nbsp;instance</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-AsJsonString"><strong>AsJsonString</strong></a>(self)</dt>
                            <dd><tt>A&nbsp;JSON&nbsp;string&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a
                                    href="#DirectMessage">DirectMessage</a>&nbsp;instance.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;JSON&nbsp;string&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a
                                        href="#DirectMessage">DirectMessage</a>&nbsp;instance</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-GetCreatedAt"><strong>GetCreatedAt</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;time&nbsp;this&nbsp;direct&nbsp;message&nbsp;was&nbsp;posted.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;time&nbsp;this&nbsp;direct&nbsp;message&nbsp;was&nbsp;posted</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-GetCreatedAtInSeconds"><strong>GetCreatedAtInSeconds</strong></a>(self)
                            </dt>
                            <dd><tt>Get&nbsp;the&nbsp;time&nbsp;this&nbsp;direct&nbsp;message&nbsp;was&nbsp;posted,&nbsp;in&nbsp;seconds&nbsp;since&nbsp;the&nbsp;epoch.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;time&nbsp;this&nbsp;direct&nbsp;message&nbsp;was&nbsp;posted,&nbsp;in&nbsp;seconds&nbsp;since&nbsp;the&nbsp;epoch.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-GetId"><strong>GetId</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;direct&nbsp;message</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-GetRecipientId"><strong>GetRecipientId</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;unique&nbsp;recipient&nbsp;id&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;unique&nbsp;recipient&nbsp;id&nbsp;of&nbsp;this&nbsp;direct&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt>
                                <a name="DirectMessage-GetRecipientScreenName"><strong>GetRecipientScreenName</strong></a>(self)
                            </dt>
                            <dd><tt>Get&nbsp;the&nbsp;unique&nbsp;recipient&nbsp;screen&nbsp;name&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;unique&nbsp;recipient&nbsp;screen&nbsp;name&nbsp;of&nbsp;this&nbsp;direct&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-GetSenderId"><strong>GetSenderId</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;unique&nbsp;sender&nbsp;id&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;unique&nbsp;sender&nbsp;id&nbsp;of&nbsp;this&nbsp;direct&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-GetSenderScreenName"><strong>GetSenderScreenName</strong></a>(self)
                            </dt>
                            <dd><tt>Get&nbsp;the&nbsp;unique&nbsp;sender&nbsp;screen&nbsp;name&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;unique&nbsp;sender&nbsp;screen&nbsp;name&nbsp;of&nbsp;this&nbsp;direct&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-GetText"><strong>GetText</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;text&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;text&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-SetCreatedAt"><strong>SetCreatedAt</strong></a>(self, created_at)
                            </dt>
                            <dd><tt>Set&nbsp;the&nbsp;time&nbsp;this&nbsp;direct&nbsp;message&nbsp;was&nbsp;posted.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;created_at:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;time&nbsp;this&nbsp;direct&nbsp;message&nbsp;was&nbsp;created</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-SetId"><strong>SetId</strong></a>(self, id)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;direct&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-SetRecipientId"><strong>SetRecipientId</strong></a>(self,
                                recipient_id)
                            </dt>
                            <dd><tt>Set&nbsp;the&nbsp;unique&nbsp;recipient&nbsp;id&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;recipient_id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;unique&nbsp;recipient&nbsp;id&nbsp;of&nbsp;this&nbsp;direct&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt>
                                <a name="DirectMessage-SetRecipientScreenName"><strong>SetRecipientScreenName</strong></a>(self,
                                recipient_screen_name)
                            </dt>
                            <dd><tt>Set&nbsp;the&nbsp;unique&nbsp;recipient&nbsp;screen&nbsp;name&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;recipient_screen_name:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;unique&nbsp;recipient&nbsp;screen&nbsp;name&nbsp;of&nbsp;this&nbsp;direct&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-SetSenderId"><strong>SetSenderId</strong></a>(self, sender_id)
                            </dt>
                            <dd><tt>Set&nbsp;the&nbsp;unique&nbsp;sender&nbsp;id&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;sender_id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;unique&nbsp;sender&nbsp;id&nbsp;of&nbsp;this&nbsp;direct&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-SetSenderScreenName"><strong>SetSenderScreenName</strong></a>(self,
                                sender_screen_name)
                            </dt>
                            <dd><tt>Set&nbsp;the&nbsp;unique&nbsp;sender&nbsp;screen&nbsp;name&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;sender_screen_name:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;unique&nbsp;sender&nbsp;screen&nbsp;name&nbsp;of&nbsp;this&nbsp;direct&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-SetText"><strong>SetText</strong></a>(self, text)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;text&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;text:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;text&nbsp;of&nbsp;this&nbsp;direct&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-__eq__"><strong>__eq__</strong></a>(self, other)</dt>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-__init__"><strong>__init__</strong></a>(self, id<font
                                    color="#909090">=None</font>, created_at<font color="#909090">=None</font>,
                                sender_id<font color="#909090">=None</font>, sender_screen_name<font color="#909090">=None</font>,
                                recipient_id<font color="#909090">=None</font>, recipient_screen_name<font
                                        color="#909090">=None</font>, text<font color="#909090">=None</font>)
                            </dt>
                            <dd><tt>An&nbsp;<a href="__builtin__.html#object">object</a>&nbsp;to&nbsp;hold&nbsp;a&nbsp;Twitter&nbsp;direct&nbsp;message.<br>
                                &nbsp;<br>
                                This&nbsp;class&nbsp;is&nbsp;normally&nbsp;instantiated&nbsp;by&nbsp;the&nbsp;twitter.<a
                                        href="#Api">Api</a>&nbsp;class&nbsp;and<br>
                                returned&nbsp;in&nbsp;a&nbsp;sequence.<br>
                                &nbsp;<br>
                                Note:&nbsp;Dates&nbsp;are&nbsp;posted&nbsp;in&nbsp;the&nbsp;form&nbsp;"Sat&nbsp;Jan&nbsp;27&nbsp;04:17:38&nbsp;+0000&nbsp;2007"<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;created_at:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;time&nbsp;this&nbsp;direct&nbsp;message&nbsp;was&nbsp;posted.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;sender_id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;id&nbsp;of&nbsp;the&nbsp;twitter&nbsp;user&nbsp;that&nbsp;sent&nbsp;this&nbsp;message.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;sender_screen_name:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;name&nbsp;of&nbsp;the&nbsp;twitter&nbsp;user&nbsp;that&nbsp;sent&nbsp;this&nbsp;message.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;recipient_id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;id&nbsp;of&nbsp;the&nbsp;twitter&nbsp;that&nbsp;received&nbsp;this&nbsp;message.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;recipient_screen_name:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;name&nbsp;of&nbsp;the&nbsp;twitter&nbsp;that&nbsp;received&nbsp;this&nbsp;message.&nbsp;[Optional]<br>
                                &nbsp;&nbsp;text:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;text&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.&nbsp;[Optional]</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-__ne__"><strong>__ne__</strong></a>(self, other)</dt>
                        </dl>

                        <dl>
                            <dt><a name="DirectMessage-__str__"><strong>__str__</strong></a>(self)</dt>
                            <dd><tt>A&nbsp;string&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a
                                    href="#DirectMessage">DirectMessage</a>&nbsp;instance.<br>
                                &nbsp;<br>
                                The&nbsp;return&nbsp;value&nbsp;is&nbsp;the&nbsp;same&nbsp;as&nbsp;the&nbsp;JSON&nbsp;string&nbsp;representation.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;string&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a
                                        href="#DirectMessage">DirectMessage</a>&nbsp;instance.</tt></dd>
                        </dl>

                        <hr>
                        Static methods defined here:<br>
                        <dl>
                            <dt><a name="DirectMessage-NewFromJsonDict"><strong>NewFromJsonDict</strong></a>(data)</dt>
                            <dd>
                                <tt>Create&nbsp;a&nbsp;new&nbsp;instance&nbsp;based&nbsp;on&nbsp;a&nbsp;JSON&nbsp;dict.<br>
                                    &nbsp;<br>
                                    Args:<br>
                                    &nbsp;&nbsp;data:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;JSON&nbsp;dict,&nbsp;as&nbsp;converted&nbsp;from&nbsp;the&nbsp;JSON&nbsp;in&nbsp;the&nbsp;twitter&nbsp;API<br>
                                    &nbsp;<br>
                                    Returns:<br>
                                    &nbsp;&nbsp;A&nbsp;twitter.<a href="#DirectMessage">DirectMessage</a>&nbsp;instance</tt>
                            </dd>
                        </dl>

                        <hr>
                        Data descriptors defined here:<br>
                        <dl>
                            <dt><strong>__dict__</strong></dt>
                            <dd><tt>dictionary&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>__weakref__</strong></dt>
                            <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;defined)</tt>
                            </dd>
                        </dl>
                        <dl>
                            <dt><strong>created_at</strong></dt>
                            <dd><tt>The&nbsp;time&nbsp;this&nbsp;direct&nbsp;message&nbsp;was&nbsp;posted.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>created_at_in_seconds</strong></dt>
                            <dd><tt>The&nbsp;time&nbsp;this&nbsp;direct&nbsp;message&nbsp;was&nbsp;posted,&nbsp;in&nbsp;seconds&nbsp;since&nbsp;the&nbsp;epoch</tt>
                            </dd>
                        </dl>
                        <dl>
                            <dt><strong>id</strong></dt>
                            <dd><tt>The&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>recipient_id</strong></dt>
                            <dd>
                                <tt>The&nbsp;unique&nbsp;recipient&nbsp;id&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.</tt>
                            </dd>
                        </dl>
                        <dl>
                            <dt><strong>recipient_screen_name</strong></dt>
                            <dd><tt>The&nbsp;unique&nbsp;recipient&nbsp;screen&nbsp;name&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.</tt>
                            </dd>
                        </dl>
                        <dl>
                            <dt><strong>sender_id</strong></dt>
                            <dd><tt>The&nbsp;unique&nbsp;sender&nbsp;id&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.</tt>
                            </dd>
                        </dl>
                        <dl>
                            <dt><strong>sender_screen_name</strong></dt>
                            <dd><tt>The&nbsp;unique&nbsp;sender&nbsp;screen&nbsp;name&nbsp;of&nbsp;this&nbsp;direct&nbsp;message.</tt>
                            </dd>
                        </dl>
                        <dl>
                            <dt><strong>text</strong></dt>
                            <dd><tt>The&nbsp;text&nbsp;of&nbsp;this&nbsp;direct&nbsp;message</tt></dd>
                        </dl>
                    </td>
                </tr>
            </table>
            <p>
            <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
                <tr bgcolor="#ffc8d8">
                    <td colspan=3 valign=bottom>&nbsp;<br>
                        <font color="#000000" face="helvetica, arial"><a name="Hashtag">class
                            <strong>Hashtag</strong></a>(<a
                                href="__builtin__.html#object">__builtin__.object</a>)</font></td>
                </tr>

                <tr bgcolor="#ffc8d8">
                    <td rowspan=2><tt>&nbsp;&nbsp;&nbsp;</tt></td>
                    <td colspan=2><tt>A&nbsp;class&nbsp;represeinting&nbsp;a&nbsp;twitter&nbsp;hashtag<br>&nbsp;</tt>
                    </td>
                </tr>
                <tr>
                    <td>&nbsp;</td>
                    <td width="100%">Methods defined here:<br>
                        <dl>
                            <dt><a name="Hashtag-__init__"><strong>__init__</strong></a>(self, text<font
                                    color="#909090">=None</font>)
                            </dt>
                        </dl>

                        <hr>
                        Static methods defined here:<br>
                        <dl>
                            <dt><a name="Hashtag-NewFromJsonDict"><strong>NewFromJsonDict</strong></a>(data)</dt>
                            <dd>
                                <tt>Create&nbsp;a&nbsp;new&nbsp;instance&nbsp;based&nbsp;on&nbsp;a&nbsp;JSON&nbsp;dict.<br>
                                    &nbsp;<br>
                                    Args:<br>
                                    &nbsp;&nbsp;data:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;JSON&nbsp;dict,&nbsp;as&nbsp;converted&nbsp;from&nbsp;the&nbsp;JSON&nbsp;in&nbsp;the&nbsp;twitter&nbsp;API<br>
                                    &nbsp;<br>
                                    Returns:<br>
                                    &nbsp;&nbsp;A&nbsp;twitter.<a href="#Hashtag">Hashtag</a>&nbsp;instance</tt></dd>
                        </dl>

                        <hr>
                        Data descriptors defined here:<br>
                        <dl>
                            <dt><strong>__dict__</strong></dt>
                            <dd><tt>dictionary&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>__weakref__</strong></dt>
                            <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;defined)</tt>
                            </dd>
                        </dl>
                    </td>
                </tr>
            </table>
            <p>
            <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
                <tr bgcolor="#ffc8d8">
                    <td colspan=3 valign=bottom>&nbsp;<br>
                        <font color="#000000" face="helvetica, arial"><a name="List">class <strong>List</strong></a>(<a
                                href="__builtin__.html#object">__builtin__.object</a>)</font></td>
                </tr>

                <tr bgcolor="#ffc8d8">
                    <td rowspan=2><tt>&nbsp;&nbsp;&nbsp;</tt></td>
                    <td colspan=2><tt>A&nbsp;class&nbsp;representing&nbsp;the&nbsp;<a href="#List">List</a>&nbsp;structure&nbsp;used&nbsp;by&nbsp;the&nbsp;twitter&nbsp;API.<br>
                        &nbsp;<br>
                        The&nbsp;<a href="#List">List</a>&nbsp;structure&nbsp;exposes&nbsp;the&nbsp;following&nbsp;properties:<br>
                        &nbsp;<br>
                        &nbsp;&nbsp;list.id<br>
                        &nbsp;&nbsp;list.name<br>
                        &nbsp;&nbsp;list.slug<br>
                        &nbsp;&nbsp;list.description<br>
                        &nbsp;&nbsp;list.full_name<br>
                        &nbsp;&nbsp;list.mode<br>
                        &nbsp;&nbsp;list.uri<br>
                        &nbsp;&nbsp;list.member_count<br>
                        &nbsp;&nbsp;list.subscriber_count<br>
                        &nbsp;&nbsp;list.following<br>&nbsp;</tt></td>
                </tr>
                <tr>
                    <td>&nbsp;</td>
                    <td width="100%">Methods defined here:<br>
                        <dl>
                            <dt><a name="List-AsDict"><strong>AsDict</strong></a>(self)</dt>
                            <dd><tt>A&nbsp;dict&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a
                                    href="#List">List</a>&nbsp;instance.<br>
                                &nbsp;<br>
                                The&nbsp;return&nbsp;value&nbsp;uses&nbsp;the&nbsp;same&nbsp;key&nbsp;names&nbsp;as&nbsp;the&nbsp;JSON&nbsp;representation.<br>
                                &nbsp;<br>
                                Return:<br>
                                &nbsp;&nbsp;A&nbsp;dict&nbsp;representing&nbsp;this&nbsp;twitter.<a
                                        href="#List">List</a>&nbsp;instance</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-AsJsonString"><strong>AsJsonString</strong></a>(self)</dt>
                            <dd><tt>A&nbsp;JSON&nbsp;string&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a
                                    href="#List">List</a>&nbsp;instance.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;JSON&nbsp;string&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a
                                        href="#List">List</a>&nbsp;instance</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-GetDescription"><strong>GetDescription</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;description&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;description&nbsp;of&nbsp;this&nbsp;list</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-GetFollowing"><strong>GetFollowing</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;following&nbsp;status&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;following&nbsp;status&nbsp;of&nbsp;this&nbsp;list</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-GetFull_name"><strong>GetFull_name</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;full_name&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;full_name&nbsp;of&nbsp;this&nbsp;list</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-GetId"><strong>GetId</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;list</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-GetMember_count"><strong>GetMember_count</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;member_count&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;member_count&nbsp;of&nbsp;this&nbsp;list</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-GetMode"><strong>GetMode</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;mode&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;mode&nbsp;of&nbsp;this&nbsp;list</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-GetName"><strong>GetName</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;real&nbsp;name&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;real&nbsp;name&nbsp;of&nbsp;this&nbsp;list</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-GetSlug"><strong>GetSlug</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;slug&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;slug&nbsp;of&nbsp;this&nbsp;list</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-GetSubscriber_count"><strong>GetSubscriber_count</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;subscriber_count&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;subscriber_count&nbsp;of&nbsp;this&nbsp;list</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-GetUri"><strong>GetUri</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;uri&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;uri&nbsp;of&nbsp;this&nbsp;list</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-GetUser"><strong>GetUser</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;user&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;owner&nbsp;of&nbsp;this&nbsp;list</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-SetDescription"><strong>SetDescription</strong></a>(self, description)
                            </dt>
                            <dd><tt>Set&nbsp;the&nbsp;description&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;description:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;description&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-SetFollowing"><strong>SetFollowing</strong></a>(self, following)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;following&nbsp;status&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;following:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;following&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-SetFull_name"><strong>SetFull_name</strong></a>(self, full_name)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;full_name&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;full_name:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;full_name&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-SetId"><strong>SetId</strong></a>(self, id)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-SetMember_count"><strong>SetMember_count</strong></a>(self, member_count)
                            </dt>
                            <dd><tt>Set&nbsp;the&nbsp;member_count&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;member_count:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;member_count&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-SetMode"><strong>SetMode</strong></a>(self, mode)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;mode&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;mode:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;mode&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-SetName"><strong>SetName</strong></a>(self, name)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;real&nbsp;name&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;name:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;real&nbsp;name&nbsp;of&nbsp;this&nbsp;list</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-SetSlug"><strong>SetSlug</strong></a>(self, slug)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;slug&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;slug:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;slug&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-SetSubscriber_count"><strong>SetSubscriber_count</strong></a>(self,
                                subscriber_count)
                            </dt>
                            <dd><tt>Set&nbsp;the&nbsp;subscriber_count&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;subscriber_count:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;subscriber_count&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-SetUri"><strong>SetUri</strong></a>(self, uri)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;uri&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;uri:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;uri&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-SetUser"><strong>SetUser</strong></a>(self, user)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;user&nbsp;of&nbsp;this&nbsp;list.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;user:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;owner&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="List-__eq__"><strong>__eq__</strong></a>(self, other)</dt>
                        </dl>

                        <dl>
                            <dt><a name="List-__init__"><strong>__init__</strong></a>(self, id<font color="#909090">=None</font>,
                                name<font color="#909090">=None</font>, slug<font color="#909090">=None</font>,
                                description<font color="#909090">=None</font>, full_name<font
                                        color="#909090">=None</font>, mode<font color="#909090">=None</font>, uri<font
                                        color="#909090">=None</font>, member_count<font color="#909090">=None</font>,
                                subscriber_count<font color="#909090">=None</font>, following<font
                                        color="#909090">=None</font>, user<font color="#909090">=None</font>)
                            </dt>
                        </dl>

                        <dl>
                            <dt><a name="List-__ne__"><strong>__ne__</strong></a>(self, other)</dt>
                        </dl>

                        <dl>
                            <dt><a name="List-__str__"><strong>__str__</strong></a>(self)</dt>
                            <dd><tt>A&nbsp;string&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a href="#List">List</a>&nbsp;instance.<br>
                                &nbsp;<br>
                                The&nbsp;return&nbsp;value&nbsp;is&nbsp;the&nbsp;same&nbsp;as&nbsp;the&nbsp;JSON&nbsp;string&nbsp;representation.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;string&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a
                                        href="#List">List</a>&nbsp;instance.</tt></dd>
                        </dl>

                        <hr>
                        Static methods defined here:<br>
                        <dl>
                            <dt><a name="List-NewFromJsonDict"><strong>NewFromJsonDict</strong></a>(data)</dt>
                            <dd>
                                <tt>Create&nbsp;a&nbsp;new&nbsp;instance&nbsp;based&nbsp;on&nbsp;a&nbsp;JSON&nbsp;dict.<br>
                                    &nbsp;<br>
                                    Args:<br>
                                    &nbsp;&nbsp;data:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;JSON&nbsp;dict,&nbsp;as&nbsp;converted&nbsp;from&nbsp;the&nbsp;JSON&nbsp;in&nbsp;the&nbsp;twitter&nbsp;API<br>
                                    &nbsp;<br>
                                    Returns:<br>
                                    &nbsp;&nbsp;A&nbsp;twitter.<a href="#List">List</a>&nbsp;instance</tt></dd>
                        </dl>

                        <hr>
                        Data descriptors defined here:<br>
                        <dl>
                            <dt><strong>__dict__</strong></dt>
                            <dd><tt>dictionary&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>__weakref__</strong></dt>
                            <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;defined)</tt>
                            </dd>
                        </dl>
                        <dl>
                            <dt><strong>description</strong></dt>
                            <dd><tt>The&nbsp;description&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>following</strong></dt>
                            <dd><tt>The&nbsp;following&nbsp;status&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>full_name</strong></dt>
                            <dd><tt>The&nbsp;full_name&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>id</strong></dt>
                            <dd><tt>The&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>member_count</strong></dt>
                            <dd><tt>The&nbsp;member_count&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>mode</strong></dt>
                            <dd><tt>The&nbsp;mode&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>name</strong></dt>
                            <dd><tt>The&nbsp;real&nbsp;name&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>slug</strong></dt>
                            <dd><tt>The&nbsp;slug&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>subscriber_count</strong></dt>
                            <dd><tt>The&nbsp;subscriber_count&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>uri</strong></dt>
                            <dd><tt>The&nbsp;uri&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>user</strong></dt>
                            <dd><tt>The&nbsp;owner&nbsp;of&nbsp;this&nbsp;list.</tt></dd>
                        </dl>
                    </td>
                </tr>
            </table>
            <p>
            <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
                <tr bgcolor="#ffc8d8">
                    <td colspan=3 valign=bottom>&nbsp;<br>
                        <font color="#000000" face="helvetica, arial"><a name="Status">class <strong>Status</strong></a>(<a
                                href="__builtin__.html#object">__builtin__.object</a>)</font></td>
                </tr>

                <tr bgcolor="#ffc8d8">
                    <td rowspan=2><tt>&nbsp;&nbsp;&nbsp;</tt></td>
                    <td colspan=2><tt>A&nbsp;class&nbsp;representing&nbsp;the&nbsp;<a href="#Status">Status</a>&nbsp;structure&nbsp;used&nbsp;by&nbsp;the&nbsp;twitter&nbsp;API.<br>
                        &nbsp;<br>
                        The&nbsp;<a href="#Status">Status</a>&nbsp;structure&nbsp;exposes&nbsp;the&nbsp;following&nbsp;properties:<br>
                        &nbsp;<br>
                        &nbsp;&nbsp;status.created_at<br>
                        &nbsp;&nbsp;status.created_at_in_seconds&nbsp;#&nbsp;read&nbsp;only<br>
                        &nbsp;&nbsp;status.favorited<br>
                        &nbsp;&nbsp;status.in_reply_to_screen_name<br>
                        &nbsp;&nbsp;status.in_reply_to_user_id<br>
                        &nbsp;&nbsp;status.in_reply_to_status_id<br>
                        &nbsp;&nbsp;status.truncated<br>
                        &nbsp;&nbsp;status.source<br>
                        &nbsp;&nbsp;status.id<br>
                        &nbsp;&nbsp;status.text<br>
                        &nbsp;&nbsp;status.location<br>
                        &nbsp;&nbsp;status.relative_created_at&nbsp;#&nbsp;read&nbsp;only<br>
                        &nbsp;&nbsp;status.user<br>
                        &nbsp;&nbsp;status.urls<br>
                        &nbsp;&nbsp;status.user_mentions<br>
                        &nbsp;&nbsp;status.hashtags<br>&nbsp;</tt></td>
                </tr>
                <tr>
                    <td>&nbsp;</td>
                    <td width="100%">Methods defined here:<br>
                        <dl>
                            <dt><a name="Status-AsDict"><strong>AsDict</strong></a>(self)</dt>
                            <dd><tt>A&nbsp;dict&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instance.<br>
                                &nbsp;<br>
                                The&nbsp;return&nbsp;value&nbsp;uses&nbsp;the&nbsp;same&nbsp;key&nbsp;names&nbsp;as&nbsp;the&nbsp;JSON&nbsp;representation.<br>
                                &nbsp;<br>
                                Return:<br>
                                &nbsp;&nbsp;A&nbsp;dict&nbsp;representing&nbsp;this&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instance</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-AsJsonString"><strong>AsJsonString</strong></a>(self)</dt>
                            <dd><tt>A&nbsp;JSON&nbsp;string&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a
                                    href="#Status">Status</a>&nbsp;instance.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;JSON&nbsp;string&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a
                                        href="#Status">Status</a>&nbsp;instance</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-GetCreatedAt"><strong>GetCreatedAt</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;time&nbsp;this&nbsp;status&nbsp;message&nbsp;was&nbsp;posted.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;time&nbsp;this&nbsp;status&nbsp;message&nbsp;was&nbsp;posted</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-GetCreatedAtInSeconds"><strong>GetCreatedAtInSeconds</strong></a>(self)
                            </dt>
                            <dd><tt>Get&nbsp;the&nbsp;time&nbsp;this&nbsp;status&nbsp;message&nbsp;was&nbsp;posted,&nbsp;in&nbsp;seconds&nbsp;since&nbsp;the&nbsp;epoch.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;time&nbsp;this&nbsp;status&nbsp;message&nbsp;was&nbsp;posted,&nbsp;in&nbsp;seconds&nbsp;since&nbsp;the&nbsp;epoch.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-GetFavorited"><strong>GetFavorited</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;favorited&nbsp;setting&nbsp;of&nbsp;this&nbsp;status&nbsp;message.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;True&nbsp;if&nbsp;this&nbsp;status&nbsp;message&nbsp;is&nbsp;favorited;&nbsp;False&nbsp;otherwise</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-GetId"><strong>GetId</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;status&nbsp;message.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;status&nbsp;message</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-GetInReplyToScreenName"><strong>GetInReplyToScreenName</strong></a>(self)
                            </dt>
                        </dl>

                        <dl>
                            <dt><a name="Status-GetInReplyToStatusId"><strong>GetInReplyToStatusId</strong></a>(self)
                            </dt>
                        </dl>

                        <dl>
                            <dt><a name="Status-GetInReplyToUserId"><strong>GetInReplyToUserId</strong></a>(self)</dt>
                        </dl>

                        <dl>
                            <dt><a name="Status-GetLocation"><strong>GetLocation</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;geolocation&nbsp;associated&nbsp;with&nbsp;this&nbsp;status&nbsp;message<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;geolocation&nbsp;string&nbsp;of&nbsp;this&nbsp;status&nbsp;message.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-GetNow"><strong>GetNow</strong></a>(self)</dt>
                            <dd>
                                <tt>Get&nbsp;the&nbsp;wallclock&nbsp;time&nbsp;for&nbsp;this&nbsp;status&nbsp;message.<br>
                                    &nbsp;<br>
                                    Used&nbsp;to&nbsp;calculate&nbsp;relative_created_at.&nbsp;&nbsp;Defaults&nbsp;to&nbsp;the&nbsp;time<br>
                                    the&nbsp;<a
                                            href="__builtin__.html#object">object</a>&nbsp;was&nbsp;instantiated.<br>
                                    &nbsp;<br>
                                    Returns:<br>
                                    &nbsp;&nbsp;Whatever&nbsp;the&nbsp;status&nbsp;instance&nbsp;believes&nbsp;the&nbsp;current&nbsp;time&nbsp;to&nbsp;be,<br>
                                    &nbsp;&nbsp;in&nbsp;seconds&nbsp;since&nbsp;the&nbsp;epoch.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-GetRelativeCreatedAt"><strong>GetRelativeCreatedAt</strong></a>(self)
                            </dt>
                            <dd><tt>Get&nbsp;a&nbsp;human&nbsp;redable&nbsp;string&nbsp;representing&nbsp;the&nbsp;posting&nbsp;time<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;human&nbsp;readable&nbsp;string&nbsp;representing&nbsp;the&nbsp;posting&nbsp;time</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-GetSource"><strong>GetSource</strong></a>(self)</dt>
                        </dl>

                        <dl>
                            <dt><a name="Status-GetText"><strong>GetText</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;text&nbsp;of&nbsp;this&nbsp;status&nbsp;message.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;text&nbsp;of&nbsp;this&nbsp;status&nbsp;message.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-GetTruncated"><strong>GetTruncated</strong></a>(self)</dt>
                        </dl>

                        <dl>
                            <dt><a name="Status-GetUser"><strong>GetUser</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;a&nbsp;twitter.<a href="#User">User</a>&nbsp;reprenting&nbsp;the&nbsp;entity&nbsp;posting&nbsp;this&nbsp;status&nbsp;message.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;twitter.<a href="#User">User</a>&nbsp;reprenting&nbsp;the&nbsp;entity&nbsp;posting&nbsp;this&nbsp;status&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-SetCreatedAt"><strong>SetCreatedAt</strong></a>(self, created_at)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;time&nbsp;this&nbsp;status&nbsp;message&nbsp;was&nbsp;posted.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;created_at:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;time&nbsp;this&nbsp;status&nbsp;message&nbsp;was&nbsp;created</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-SetFavorited"><strong>SetFavorited</strong></a>(self, favorited)</dt>
                            <dd>
                                <tt>Set&nbsp;the&nbsp;favorited&nbsp;state&nbsp;of&nbsp;this&nbsp;status&nbsp;message.<br>
                                    &nbsp;<br>
                                    Args:<br>
                                    &nbsp;&nbsp;favorited:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;boolean&nbsp;True/False&nbsp;favorited&nbsp;state&nbsp;of&nbsp;this&nbsp;status&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-SetId"><strong>SetId</strong></a>(self, id)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;status&nbsp;message.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;status&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-SetInReplyToScreenName"><strong>SetInReplyToScreenName</strong></a>(self,
                                in_reply_to_screen_name)
                            </dt>
                        </dl>

                        <dl>
                            <dt><a name="Status-SetInReplyToStatusId"><strong>SetInReplyToStatusId</strong></a>(self,
                                in_reply_to_status_id)
                            </dt>
                        </dl>

                        <dl>
                            <dt><a name="Status-SetInReplyToUserId"><strong>SetInReplyToUserId</strong></a>(self,
                                in_reply_to_user_id)
                            </dt>
                        </dl>

                        <dl>
                            <dt><a name="Status-SetLocation"><strong>SetLocation</strong></a>(self, location)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;geolocation&nbsp;associated&nbsp;with&nbsp;this&nbsp;status&nbsp;message<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;location:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;geolocation&nbsp;string&nbsp;of&nbsp;this&nbsp;status&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-SetNow"><strong>SetNow</strong></a>(self, now)</dt>
                            <dd>
                                <tt>Set&nbsp;the&nbsp;wallclock&nbsp;time&nbsp;for&nbsp;this&nbsp;status&nbsp;message.<br>
                                    &nbsp;<br>
                                    Used&nbsp;to&nbsp;calculate&nbsp;relative_created_at.&nbsp;&nbsp;Defaults&nbsp;to&nbsp;the&nbsp;time<br>
                                    the&nbsp;<a
                                            href="__builtin__.html#object">object</a>&nbsp;was&nbsp;instantiated.<br>
                                    &nbsp;<br>
                                    Args:<br>
                                    &nbsp;&nbsp;now:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;wallclock&nbsp;time&nbsp;for&nbsp;this&nbsp;instance.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-SetSource"><strong>SetSource</strong></a>(self, source)</dt>
                        </dl>

                        <dl>
                            <dt><a name="Status-SetText"><strong>SetText</strong></a>(self, text)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;text&nbsp;of&nbsp;this&nbsp;status&nbsp;message.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;text:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;text&nbsp;of&nbsp;this&nbsp;status&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-SetTruncated"><strong>SetTruncated</strong></a>(self, truncated)</dt>
                        </dl>

                        <dl>
                            <dt><a name="Status-SetUser"><strong>SetUser</strong></a>(self, user)</dt>
                            <dd><tt>Set&nbsp;a&nbsp;twitter.<a href="#User">User</a>&nbsp;reprenting&nbsp;the&nbsp;entity&nbsp;posting&nbsp;this&nbsp;status&nbsp;message.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;user:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;twitter.<a href="#User">User</a>&nbsp;reprenting&nbsp;the&nbsp;entity&nbsp;posting&nbsp;this&nbsp;status&nbsp;message</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-__eq__"><strong>__eq__</strong></a>(self, other)</dt>
                        </dl>

                        <dl>
                            <dt><a name="Status-__init__"><strong>__init__</strong></a>(self, created_at<font
                                    color="#909090">=None</font>, favorited<font color="#909090">=None</font>, id<font
                                    color="#909090">=None</font>, text<font color="#909090">=None</font>, location<font
                                    color="#909090">=None</font>, user<font color="#909090">=None</font>,
                                in_reply_to_screen_name<font color="#909090">=None</font>, in_reply_to_user_id<font
                                        color="#909090">=None</font>, in_reply_to_status_id<font
                                        color="#909090">=None</font>, truncated<font color="#909090">=None</font>,
                                source<font color="#909090">=None</font>, now<font color="#909090">=None</font>,
                                urls<font color="#909090">=None</font>, user_mentions<font color="#909090">=None</font>,
                                hashtags<font color="#909090">=None</font>)
                            </dt>
                            <dd><tt>An&nbsp;<a href="__builtin__.html#object">object</a>&nbsp;to&nbsp;hold&nbsp;a&nbsp;Twitter&nbsp;status&nbsp;message.<br>
                                &nbsp;<br>
                                This&nbsp;class&nbsp;is&nbsp;normally&nbsp;instantiated&nbsp;by&nbsp;the&nbsp;twitter.<a
                                        href="#Api">Api</a>&nbsp;class&nbsp;and<br>
                                returned&nbsp;in&nbsp;a&nbsp;sequence.<br>
                                &nbsp;<br>
                                Note:&nbsp;Dates&nbsp;are&nbsp;posted&nbsp;in&nbsp;the&nbsp;form&nbsp;"Sat&nbsp;Jan&nbsp;27&nbsp;04:17:38&nbsp;+0000&nbsp;2007"<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;created_at:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;time&nbsp;this&nbsp;status&nbsp;message&nbsp;was&nbsp;posted.&nbsp;[Optiona]<br>
                                &nbsp;&nbsp;favorited:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Whether&nbsp;this&nbsp;is&nbsp;a&nbsp;favorite&nbsp;of&nbsp;the&nbsp;authenticated&nbsp;user.&nbsp;[Optiona]<br>
                                &nbsp;&nbsp;id:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;status&nbsp;message.&nbsp;[Optiona]<br>
                                &nbsp;&nbsp;text:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;text&nbsp;of&nbsp;this&nbsp;status&nbsp;message.&nbsp;[Optiona]<br>
                                &nbsp;&nbsp;location:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;the&nbsp;geolocation&nbsp;string&nbsp;associated&nbsp;with&nbsp;this&nbsp;message.&nbsp;[Optiona]<br>
                                &nbsp;&nbsp;relative_created_at:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;human&nbsp;readable&nbsp;string&nbsp;representing&nbsp;the&nbsp;posting&nbsp;time.&nbsp;[Optiona]<br>
                                &nbsp;&nbsp;user:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;twitter.<a href="#User">User</a>&nbsp;instance&nbsp;representing&nbsp;the&nbsp;person&nbsp;posting&nbsp;the<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;message.&nbsp;[Optiona]<br>
                                &nbsp;&nbsp;now:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;current&nbsp;time,&nbsp;if&nbsp;the&nbsp;client&nbsp;choses&nbsp;to&nbsp;set&nbsp;it.<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;Defaults&nbsp;to&nbsp;the&nbsp;wall&nbsp;clock&nbsp;time.&nbsp;[Optiona]</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="Status-__ne__"><strong>__ne__</strong></a>(self, other)</dt>
                        </dl>

                        <dl>
                            <dt><a name="Status-__str__"><strong>__str__</strong></a>(self)</dt>
                            <dd><tt>A&nbsp;string&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instance.<br>
                                &nbsp;<br>
                                The&nbsp;return&nbsp;value&nbsp;is&nbsp;the&nbsp;same&nbsp;as&nbsp;the&nbsp;JSON&nbsp;string&nbsp;representation.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;string&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a
                                        href="#Status">Status</a>&nbsp;instance.</tt></dd>
                        </dl>

                        <hr>
                        Static methods defined here:<br>
                        <dl>
                            <dt><a name="Status-NewFromJsonDict"><strong>NewFromJsonDict</strong></a>(data)</dt>
                            <dd>
                                <tt>Create&nbsp;a&nbsp;new&nbsp;instance&nbsp;based&nbsp;on&nbsp;a&nbsp;JSON&nbsp;dict.<br>
                                    &nbsp;<br>
                                    Args:<br>
                                    &nbsp;&nbsp;data:&nbsp;A&nbsp;JSON&nbsp;dict,&nbsp;as&nbsp;converted&nbsp;from&nbsp;the&nbsp;JSON&nbsp;in&nbsp;the&nbsp;twitter&nbsp;API<br>
                                    Returns:<br>
                                    &nbsp;&nbsp;A&nbsp;twitter.<a href="#Status">Status</a>&nbsp;instance</tt></dd>
                        </dl>

                        <hr>
                        Data descriptors defined here:<br>
                        <dl>
                            <dt><strong>__dict__</strong></dt>
                            <dd><tt>dictionary&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>__weakref__</strong></dt>
                            <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;defined)</tt>
                            </dd>
                        </dl>
                        <dl>
                            <dt><strong>created_at</strong></dt>
                            <dd><tt>The&nbsp;time&nbsp;this&nbsp;status&nbsp;message&nbsp;was&nbsp;posted.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>created_at_in_seconds</strong></dt>
                            <dd><tt>The&nbsp;time&nbsp;this&nbsp;status&nbsp;message&nbsp;was&nbsp;posted,&nbsp;in&nbsp;seconds&nbsp;since&nbsp;the&nbsp;epoch</tt>
                            </dd>
                        </dl>
                        <dl>
                            <dt><strong>favorited</strong></dt>
                            <dd><tt>The&nbsp;favorited&nbsp;state&nbsp;of&nbsp;this&nbsp;status&nbsp;message.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>id</strong></dt>
                            <dd><tt>The&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;status&nbsp;message.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>in_reply_to_screen_name</strong></dt>
                            <dd><tt></tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>in_reply_to_status_id</strong></dt>
                            <dd><tt></tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>in_reply_to_user_id</strong></dt>
                            <dd><tt></tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>location</strong></dt>
                            <dd><tt>The&nbsp;geolocation&nbsp;string&nbsp;of&nbsp;this&nbsp;status&nbsp;message</tt>
                            </dd>
                        </dl>
                        <dl>
                            <dt><strong>now</strong></dt>
                            <dd><tt>The&nbsp;wallclock&nbsp;time&nbsp;for&nbsp;this&nbsp;status&nbsp;instance.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>relative_created_at</strong></dt>
                            <dd><tt>Get&nbsp;a&nbsp;human&nbsp;readable&nbsp;string&nbsp;representing&nbsp;the&nbsp;posting&nbsp;time</tt>
                            </dd>
                        </dl>
                        <dl>
                            <dt><strong>source</strong></dt>
                            <dd><tt></tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>text</strong></dt>
                            <dd><tt>The&nbsp;text&nbsp;of&nbsp;this&nbsp;status&nbsp;message</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>truncated</strong></dt>
                            <dd><tt></tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>user</strong></dt>
                            <dd><tt>A&nbsp;twitter.User&nbsp;reprenting&nbsp;the&nbsp;entity&nbsp;posting&nbsp;this&nbsp;status&nbsp;message</tt>
                            </dd>
                        </dl>
                    </td>
                </tr>
            </table>
            <p>
            <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
                <tr bgcolor="#ffc8d8">
                    <td colspan=3 valign=bottom>&nbsp;<br>
                        <font color="#000000" face="helvetica, arial"><a name="Trend">class
                            <strong>Trend</strong></a>(<a href="__builtin__.html#object">__builtin__.object</a>)</font>
                    </td>
                </tr>

                <tr bgcolor="#ffc8d8">
                    <td rowspan=2><tt>&nbsp;&nbsp;&nbsp;</tt></td>
                    <td colspan=2><tt>A&nbsp;class&nbsp;representing&nbsp;a&nbsp;trending&nbsp;topic<br>&nbsp;</tt></td>
                </tr>
                <tr>
                    <td>&nbsp;</td>
                    <td width="100%">Methods defined here:<br>
                        <dl>
                            <dt><a name="Trend-__init__"><strong>__init__</strong></a>(self, name<font color="#909090">=None</font>,
                                query<font color="#909090">=None</font>, timestamp<font color="#909090">=None</font>)
                            </dt>
                        </dl>

                        <dl>
                            <dt><a name="Trend-__str__"><strong>__str__</strong></a>(self)</dt>
                        </dl>

                        <hr>
                        Static methods defined here:<br>
                        <dl>
                            <dt><a name="Trend-NewFromJsonDict"><strong>NewFromJsonDict</strong></a>(data,
                                timestamp<font color="#909090">=None</font>)
                            </dt>
                            <dd>
                                <tt>Create&nbsp;a&nbsp;new&nbsp;instance&nbsp;based&nbsp;on&nbsp;a&nbsp;JSON&nbsp;dict<br>
                                    &nbsp;<br>
                                    Args:<br>
                                    &nbsp;&nbsp;data:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;JSON&nbsp;dict<br>
                                    &nbsp;&nbsp;timestamp:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;Gets&nbsp;set&nbsp;as&nbsp;the&nbsp;timestamp&nbsp;property&nbsp;of&nbsp;the&nbsp;new&nbsp;<a
                                            href="__builtin__.html#object">object</a><br>
                                    &nbsp;<br>
                                    Returns:<br>
                                    &nbsp;&nbsp;A&nbsp;twitter.<a href="#Trend">Trend</a>&nbsp;<a
                                            href="__builtin__.html#object">object</a></tt></dd>
                        </dl>

                        <hr>
                        Data descriptors defined here:<br>
                        <dl>
                            <dt><strong>__dict__</strong></dt>
                            <dd><tt>dictionary&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>__weakref__</strong></dt>
                            <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;defined)</tt>
                            </dd>
                        </dl>
                    </td>
                </tr>
            </table>
            <p>
            <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
                <tr bgcolor="#ffc8d8">
                    <td colspan=3 valign=bottom>&nbsp;<br>
                        <font color="#000000" face="helvetica, arial"><a name="TwitterError">class
                            <strong>TwitterError</strong></a>(<a
                                href="exceptions.html#Exception">exceptions.Exception</a>)</font></td>
                </tr>

                <tr bgcolor="#ffc8d8">
                    <td rowspan=2><tt>&nbsp;&nbsp;&nbsp;</tt></td>
                    <td colspan=2><tt>Base&nbsp;class&nbsp;for&nbsp;Twitter&nbsp;errors<br>&nbsp;</tt></td>
                </tr>
                <tr>
                    <td>&nbsp;</td>
                    <td width="100%">
                        <dl>
                            <dt>Method resolution order:</dt>
                            <dd><a href="twitter.html#TwitterError">TwitterError</a></dd>
                            <dd><a href="exceptions.html#Exception">exceptions.Exception</a></dd>
                            <dd><a href="exceptions.html#BaseException">exceptions.BaseException</a></dd>
                            <dd><a href="__builtin__.html#object">__builtin__.object</a></dd>
                        </dl>
                        <hr>
                        Data descriptors defined here:<br>
                        <dl>
                            <dt><strong>__weakref__</strong></dt>
                            <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;defined)</tt>
                            </dd>
                        </dl>
                        <dl>
                            <dt><strong>message</strong></dt>
                            <dd><tt>Returns&nbsp;the&nbsp;first&nbsp;argument&nbsp;used&nbsp;to&nbsp;construct&nbsp;this&nbsp;error.</tt>
                            </dd>
                        </dl>
                        <hr>
                        Methods inherited from <a href="exceptions.html#Exception">exceptions.Exception</a>:<br>
                        <dl>
                            <dt><a name="TwitterError-__init__"><strong>__init__</strong></a>(...)</dt>
                            <dd><tt>x.<a href="#TwitterError-__init__">__init__</a>(...)&nbsp;initializes&nbsp;x;&nbsp;see&nbsp;x.__class__.__doc__&nbsp;for&nbsp;signature</tt>
                            </dd>
                        </dl>

                        <hr>
                        Data and other attributes inherited from <a href="exceptions.html#Exception">exceptions.Exception</a>:<br>
                        <dl>
                            <dt><strong>__new__</strong> = &lt;built-in method __new__ of type object at 0x100119f80&gt;
                            <dd><tt>T.<a href="#TwitterError-__new__">__new__</a>(S,&nbsp;...)&nbsp;-&gt;&nbsp;a&nbsp;new&nbsp;<a
                                    href="__builtin__.html#object">object</a>&nbsp;with&nbsp;type&nbsp;S,&nbsp;a&nbsp;subtype&nbsp;of&nbsp;T</tt>
                        </dl>

                        <hr>
                        Methods inherited from <a href="exceptions.html#BaseException">exceptions.BaseException</a>:<br>
                        <dl>
                            <dt><a name="TwitterError-__delattr__"><strong>__delattr__</strong></a>(...)</dt>
                            <dd><tt>x.<a href="#TwitterError-__delattr__">__delattr__</a>('name')&nbsp;&lt;==&gt;&nbsp;del&nbsp;x.name</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="TwitterError-__getattribute__"><strong>__getattribute__</strong></a>(...)</dt>
                            <dd><tt>x.<a href="#TwitterError-__getattribute__">__getattribute__</a>('name')&nbsp;&lt;==&gt;&nbsp;x.name</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="TwitterError-__getitem__"><strong>__getitem__</strong></a>(...)</dt>
                            <dd><tt>x.<a
                                    href="#TwitterError-__getitem__">__getitem__</a>(y)&nbsp;&lt;==&gt;&nbsp;x[y]</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="TwitterError-__getslice__"><strong>__getslice__</strong></a>(...)</dt>
                            <dd><tt>x.<a href="#TwitterError-__getslice__">__getslice__</a>(i,&nbsp;j)&nbsp;&lt;==&gt;&nbsp;x[i:j]<br>
                                &nbsp;<br>
                                Use&nbsp;of&nbsp;negative&nbsp;indices&nbsp;is&nbsp;not&nbsp;supported.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="TwitterError-__reduce__"><strong>__reduce__</strong></a>(...)</dt>
                        </dl>

                        <dl>
                            <dt><a name="TwitterError-__repr__"><strong>__repr__</strong></a>(...)</dt>
                            <dd><tt>x.<a href="#TwitterError-__repr__">__repr__</a>()&nbsp;&lt;==&gt;&nbsp;repr(x)</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="TwitterError-__setattr__"><strong>__setattr__</strong></a>(...)</dt>
                            <dd><tt>x.<a href="#TwitterError-__setattr__">__setattr__</a>('name',&nbsp;value)&nbsp;&lt;==&gt;&nbsp;x.name&nbsp;=&nbsp;value</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="TwitterError-__setstate__"><strong>__setstate__</strong></a>(...)</dt>
                        </dl>

                        <dl>
                            <dt><a name="TwitterError-__str__"><strong>__str__</strong></a>(...)</dt>
                            <dd><tt>x.<a href="#TwitterError-__str__">__str__</a>()&nbsp;&lt;==&gt;&nbsp;str(x)</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="TwitterError-__unicode__"><strong>__unicode__</strong></a>(...)</dt>
                        </dl>

                        <hr>
                        Data descriptors inherited from <a
                            href="exceptions.html#BaseException">exceptions.BaseException</a>:<br>
                        <dl>
                            <dt><strong>__dict__</strong></dt>
                        </dl>
                        <dl>
                            <dt><strong>args</strong></dt>
                        </dl>
                    </td>
                </tr>
            </table>
            <p>
            <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
                <tr bgcolor="#ffc8d8">
                    <td colspan=3 valign=bottom>&nbsp;<br>
                        <font color="#000000" face="helvetica, arial"><a name="Url">class <strong>Url</strong></a>(<a
                                href="__builtin__.html#object">__builtin__.object</a>)</font></td>
                </tr>

                <tr bgcolor="#ffc8d8">
                    <td rowspan=2><tt>&nbsp;&nbsp;&nbsp;</tt></td>
                    <td colspan=2><tt>A&nbsp;class&nbsp;representing&nbsp;an&nbsp;URL&nbsp;contained&nbsp;in&nbsp;a&nbsp;tweet<br>&nbsp;
                    </tt></td>
                </tr>
                <tr>
                    <td>&nbsp;</td>
                    <td width="100%">Methods defined here:<br>
                        <dl>
                            <dt><a name="Url-__init__"><strong>__init__</strong></a>(self, url<font color="#909090">=None</font>,
                                expanded_url<font color="#909090">=None</font>)
                            </dt>
                        </dl>

                        <hr>
                        Static methods defined here:<br>
                        <dl>
                            <dt><a name="Url-NewFromJsonDict"><strong>NewFromJsonDict</strong></a>(data)</dt>
                            <dd>
                                <tt>Create&nbsp;a&nbsp;new&nbsp;instance&nbsp;based&nbsp;on&nbsp;a&nbsp;JSON&nbsp;dict.<br>
                                    &nbsp;<br>
                                    Args:<br>
                                    &nbsp;&nbsp;data:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;JSON&nbsp;dict,&nbsp;as&nbsp;converted&nbsp;from&nbsp;the&nbsp;JSON&nbsp;in&nbsp;the&nbsp;twitter&nbsp;API<br>
                                    &nbsp;<br>
                                    Returns:<br>
                                    &nbsp;&nbsp;A&nbsp;twitter.<a href="#Url">Url</a>&nbsp;instance</tt></dd>
                        </dl>

                        <hr>
                        Data descriptors defined here:<br>
                        <dl>
                            <dt><strong>__dict__</strong></dt>
                            <dd><tt>dictionary&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>__weakref__</strong></dt>
                            <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;defined)</tt>
                            </dd>
                        </dl>
                    </td>
                </tr>
            </table>
            <p>
            <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
                <tr bgcolor="#ffc8d8">
                    <td colspan=3 valign=bottom>&nbsp;<br>
                        <font color="#000000" face="helvetica, arial"><a name="User">class <strong>User</strong></a>(<a
                                href="__builtin__.html#object">__builtin__.object</a>)</font></td>
                </tr>

                <tr bgcolor="#ffc8d8">
                    <td rowspan=2><tt>&nbsp;&nbsp;&nbsp;</tt></td>
                    <td colspan=2><tt>A&nbsp;class&nbsp;representing&nbsp;the&nbsp;<a href="#User">User</a>&nbsp;structure&nbsp;used&nbsp;by&nbsp;the&nbsp;twitter&nbsp;API.<br>
                        &nbsp;<br>
                        The&nbsp;<a href="#User">User</a>&nbsp;structure&nbsp;exposes&nbsp;the&nbsp;following&nbsp;properties:<br>
                        &nbsp;<br>
                        &nbsp;&nbsp;user.id<br>
                        &nbsp;&nbsp;user.name<br>
                        &nbsp;&nbsp;user.screen_name<br>
                        &nbsp;&nbsp;user.location<br>
                        &nbsp;&nbsp;user.description<br>
                        &nbsp;&nbsp;user.profile_image_url<br>
                        &nbsp;&nbsp;user.profile_background_tile<br>
                        &nbsp;&nbsp;user.profile_background_image_url<br>
                        &nbsp;&nbsp;user.profile_sidebar_fill_color<br>
                        &nbsp;&nbsp;user.profile_background_color<br>
                        &nbsp;&nbsp;user.profile_link_color<br>
                        &nbsp;&nbsp;user.profile_text_color<br>
                        &nbsp;&nbsp;user.protected<br>
                        &nbsp;&nbsp;user.utc_offset<br>
                        &nbsp;&nbsp;user.time_zone<br>
                        &nbsp;&nbsp;user.url<br>
                        &nbsp;&nbsp;user.status<br>
                        &nbsp;&nbsp;user.statuses_count<br>
                        &nbsp;&nbsp;user.followers_count<br>
                        &nbsp;&nbsp;user.friends_count<br>
                        &nbsp;&nbsp;user.favourites_count<br>&nbsp;</tt></td>
                </tr>
                <tr>
                    <td>&nbsp;</td>
                    <td width="100%">Methods defined here:<br>
                        <dl>
                            <dt><a name="User-AsDict"><strong>AsDict</strong></a>(self)</dt>
                            <dd><tt>A&nbsp;dict&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a
                                    href="#User">User</a>&nbsp;instance.<br>
                                &nbsp;<br>
                                The&nbsp;return&nbsp;value&nbsp;uses&nbsp;the&nbsp;same&nbsp;key&nbsp;names&nbsp;as&nbsp;the&nbsp;JSON&nbsp;representation.<br>
                                &nbsp;<br>
                                Return:<br>
                                &nbsp;&nbsp;A&nbsp;dict&nbsp;representing&nbsp;this&nbsp;twitter.<a
                                        href="#User">User</a>&nbsp;instance</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="User-AsJsonString"><strong>AsJsonString</strong></a>(self)</dt>
                            <dd><tt>A&nbsp;JSON&nbsp;string&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a
                                    href="#User">User</a>&nbsp;instance.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;JSON&nbsp;string&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a
                                        href="#User">User</a>&nbsp;instance</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="User-GetDescription"><strong>GetDescription</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;short&nbsp;text&nbsp;description&nbsp;of&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;short&nbsp;text&nbsp;description&nbsp;of&nbsp;this&nbsp;user</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-GetFavouritesCount"><strong>GetFavouritesCount</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;number&nbsp;of&nbsp;favourites&nbsp;for&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;number&nbsp;of&nbsp;favourites&nbsp;for&nbsp;this&nbsp;user.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-GetFollowersCount"><strong>GetFollowersCount</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;follower&nbsp;count&nbsp;for&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;number&nbsp;of&nbsp;users&nbsp;following&nbsp;this&nbsp;user.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-GetFriendsCount"><strong>GetFriendsCount</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;friend&nbsp;count&nbsp;for&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;number&nbsp;of&nbsp;users&nbsp;this&nbsp;user&nbsp;has&nbsp;befriended.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-GetId"><strong>GetId</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;user</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="User-GetLocation"><strong>GetLocation</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;geographic&nbsp;location&nbsp;of&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;geographic&nbsp;location&nbsp;of&nbsp;this&nbsp;user</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="User-GetName"><strong>GetName</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;real&nbsp;name&nbsp;of&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;real&nbsp;name&nbsp;of&nbsp;this&nbsp;user</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="User-GetProfileBackgroundColor"><strong>GetProfileBackgroundColor</strong></a>(self)
                            </dt>
                        </dl>

                        <dl>
                            <dt>
                                <a name="User-GetProfileBackgroundImageUrl"><strong>GetProfileBackgroundImageUrl</strong></a>(self)
                            </dt>
                        </dl>

                        <dl>
                            <dt><a name="User-GetProfileBackgroundTile"><strong>GetProfileBackgroundTile</strong></a>(self)
                            </dt>
                            <dd><tt>Boolean&nbsp;for&nbsp;whether&nbsp;to&nbsp;tile&nbsp;the&nbsp;profile&nbsp;background&nbsp;image.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;True&nbsp;if&nbsp;the&nbsp;background&nbsp;is&nbsp;to&nbsp;be&nbsp;tiled,&nbsp;False&nbsp;if&nbsp;not,&nbsp;None&nbsp;if&nbsp;unset.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-GetProfileImageUrl"><strong>GetProfileImageUrl</strong></a>(self)</dt>
                            <dd>
                                <tt>Get&nbsp;the&nbsp;url&nbsp;of&nbsp;the&nbsp;thumbnail&nbsp;of&nbsp;this&nbsp;user.<br>
                                    &nbsp;<br>
                                    Returns:<br>
                                    &nbsp;&nbsp;The&nbsp;url&nbsp;of&nbsp;the&nbsp;thumbnail&nbsp;of&nbsp;this&nbsp;user</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-GetProfileLinkColor"><strong>GetProfileLinkColor</strong></a>(self)</dt>
                        </dl>

                        <dl>
                            <dt>
                                <a name="User-GetProfileSidebarFillColor"><strong>GetProfileSidebarFillColor</strong></a>(self)
                            </dt>
                        </dl>

                        <dl>
                            <dt><a name="User-GetProfileTextColor"><strong>GetProfileTextColor</strong></a>(self)</dt>
                        </dl>

                        <dl>
                            <dt><a name="User-GetProtected"><strong>GetProtected</strong></a>(self)</dt>
                        </dl>

                        <dl>
                            <dt><a name="User-GetScreenName"><strong>GetScreenName</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;short&nbsp;twitter&nbsp;name&nbsp;of&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;short&nbsp;twitter&nbsp;name&nbsp;of&nbsp;this&nbsp;user</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="User-GetStatus"><strong>GetStatus</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;latest&nbsp;twitter.<a href="#Status">Status</a>&nbsp;of&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;latest&nbsp;twitter.<a href="#Status">Status</a>&nbsp;of&nbsp;this&nbsp;user</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-GetStatusesCount"><strong>GetStatusesCount</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;number&nbsp;of&nbsp;status&nbsp;updates&nbsp;for&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;number&nbsp;of&nbsp;status&nbsp;updates&nbsp;for&nbsp;this&nbsp;user.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-GetTimeZone"><strong>GetTimeZone</strong></a>(self)</dt>
                            <dd><tt>Returns&nbsp;the&nbsp;current&nbsp;time&nbsp;zone&nbsp;string&nbsp;for&nbsp;the&nbsp;user.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;descriptive&nbsp;time&nbsp;zone&nbsp;string&nbsp;for&nbsp;the&nbsp;user.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-GetUrl"><strong>GetUrl</strong></a>(self)</dt>
                            <dd><tt>Get&nbsp;the&nbsp;homepage&nbsp;url&nbsp;of&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;homepage&nbsp;url&nbsp;of&nbsp;this&nbsp;user</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="User-GetUtcOffset"><strong>GetUtcOffset</strong></a>(self)</dt>
                        </dl>

                        <dl>
                            <dt><a name="User-SetDescription"><strong>SetDescription</strong></a>(self, description)
                            </dt>
                            <dd><tt>Set&nbsp;the&nbsp;short&nbsp;text&nbsp;description&nbsp;of&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;description:&nbsp;The&nbsp;short&nbsp;text&nbsp;description&nbsp;of&nbsp;this&nbsp;user</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-SetFavouritesCount"><strong>SetFavouritesCount</strong></a>(self, count)
                            </dt>
                            <dd><tt>Set&nbsp;the&nbsp;favourite&nbsp;count&nbsp;for&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;count:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;number&nbsp;of&nbsp;favourites&nbsp;for&nbsp;this&nbsp;user.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-SetFollowersCount"><strong>SetFollowersCount</strong></a>(self, count)
                            </dt>
                            <dd><tt>Set&nbsp;the&nbsp;follower&nbsp;count&nbsp;for&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;count:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;number&nbsp;of&nbsp;users&nbsp;following&nbsp;this&nbsp;user.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-SetFriendsCount"><strong>SetFriendsCount</strong></a>(self, count)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;friend&nbsp;count&nbsp;for&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;count:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;number&nbsp;of&nbsp;users&nbsp;this&nbsp;user&nbsp;has&nbsp;befriended.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-SetId"><strong>SetId</strong></a>(self, id)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;id:&nbsp;The&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;user.</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="User-SetLocation"><strong>SetLocation</strong></a>(self, location)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;geographic&nbsp;location&nbsp;of&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;location:&nbsp;The&nbsp;geographic&nbsp;location&nbsp;of&nbsp;this&nbsp;user</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-SetName"><strong>SetName</strong></a>(self, name)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;real&nbsp;name&nbsp;of&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;name:&nbsp;The&nbsp;real&nbsp;name&nbsp;of&nbsp;this&nbsp;user</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="User-SetProfileBackgroundColor"><strong>SetProfileBackgroundColor</strong></a>(self,
                                profile_background_color)
                            </dt>
                        </dl>

                        <dl>
                            <dt>
                                <a name="User-SetProfileBackgroundImageUrl"><strong>SetProfileBackgroundImageUrl</strong></a>(self,
                                profile_background_image_url)
                            </dt>
                        </dl>

                        <dl>
                            <dt><a name="User-SetProfileBackgroundTile"><strong>SetProfileBackgroundTile</strong></a>(self,
                                profile_background_tile)
                            </dt>
                            <dd><tt>Set&nbsp;the&nbsp;boolean&nbsp;flag&nbsp;for&nbsp;whether&nbsp;to&nbsp;tile&nbsp;the&nbsp;profile&nbsp;background&nbsp;image.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;profile_background_tile:&nbsp;Boolean&nbsp;flag&nbsp;for&nbsp;whether&nbsp;to&nbsp;tile&nbsp;or&nbsp;not.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-SetProfileImageUrl"><strong>SetProfileImageUrl</strong></a>(self,
                                profile_image_url)
                            </dt>
                            <dd>
                                <tt>Set&nbsp;the&nbsp;url&nbsp;of&nbsp;the&nbsp;thumbnail&nbsp;of&nbsp;this&nbsp;user.<br>
                                    &nbsp;<br>
                                    Args:<br>
                                    &nbsp;&nbsp;profile_image_url:&nbsp;The&nbsp;url&nbsp;of&nbsp;the&nbsp;thumbnail&nbsp;of&nbsp;this&nbsp;user</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-SetProfileLinkColor"><strong>SetProfileLinkColor</strong></a>(self,
                                profile_link_color)
                            </dt>
                        </dl>

                        <dl>
                            <dt>
                                <a name="User-SetProfileSidebarFillColor"><strong>SetProfileSidebarFillColor</strong></a>(self,
                                profile_sidebar_fill_color)
                            </dt>
                        </dl>

                        <dl>
                            <dt><a name="User-SetProfileTextColor"><strong>SetProfileTextColor</strong></a>(self,
                                profile_text_color)
                            </dt>
                        </dl>

                        <dl>
                            <dt><a name="User-SetProtected"><strong>SetProtected</strong></a>(self, protected)</dt>
                        </dl>

                        <dl>
                            <dt><a name="User-SetScreenName"><strong>SetScreenName</strong></a>(self, screen_name)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;short&nbsp;twitter&nbsp;name&nbsp;of&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;screen_name:&nbsp;the&nbsp;short&nbsp;twitter&nbsp;name&nbsp;of&nbsp;this&nbsp;user</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-SetStatus"><strong>SetStatus</strong></a>(self, status)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;latest&nbsp;twitter.<a href="#Status">Status</a>&nbsp;of&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;status:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;latest&nbsp;twitter.<a href="#Status">Status</a>&nbsp;of&nbsp;this&nbsp;user</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-SetStatusesCount"><strong>SetStatusesCount</strong></a>(self, count)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;status&nbsp;update&nbsp;count&nbsp;for&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;count:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;number&nbsp;of&nbsp;updates&nbsp;for&nbsp;this&nbsp;user.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-SetTimeZone"><strong>SetTimeZone</strong></a>(self, time_zone)</dt>
                            <dd><tt>Sets&nbsp;the&nbsp;user's&nbsp;time&nbsp;zone&nbsp;string.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;time_zone:<br>
                                &nbsp;&nbsp;&nbsp;&nbsp;The&nbsp;descriptive&nbsp;time&nbsp;zone&nbsp;to&nbsp;assign&nbsp;for&nbsp;the&nbsp;user.</tt>
                            </dd>
                        </dl>

                        <dl>
                            <dt><a name="User-SetUrl"><strong>SetUrl</strong></a>(self, url)</dt>
                            <dd><tt>Set&nbsp;the&nbsp;homepage&nbsp;url&nbsp;of&nbsp;this&nbsp;user.<br>
                                &nbsp;<br>
                                Args:<br>
                                &nbsp;&nbsp;url:&nbsp;The&nbsp;homepage&nbsp;url&nbsp;of&nbsp;this&nbsp;user</tt></dd>
                        </dl>

                        <dl>
                            <dt><a name="User-SetUtcOffset"><strong>SetUtcOffset</strong></a>(self, utc_offset)</dt>
                        </dl>

                        <dl>
                            <dt><a name="User-__eq__"><strong>__eq__</strong></a>(self, other)</dt>
                        </dl>

                        <dl>
                            <dt><a name="User-__init__"><strong>__init__</strong></a>(self, id<font color="#909090">=None</font>,
                                name<font color="#909090">=None</font>, screen_name<font color="#909090">=None</font>,
                                location<font color="#909090">=None</font>, description<font
                                        color="#909090">=None</font>, profile_image_url<font
                                        color="#909090">=None</font>, profile_background_tile<font
                                        color="#909090">=None</font>, profile_background_image_url<font color="#909090">=None</font>,
                                profile_sidebar_fill_color<font color="#909090">=None</font>,
                                profile_background_color<font color="#909090">=None</font>, profile_link_color<font
                                        color="#909090">=None</font>, profile_text_color<font
                                        color="#909090">=None</font>, protected<font color="#909090">=None</font>,
                                utc_offset<font color="#909090">=None</font>, time_zone<font
                                        color="#909090">=None</font>, followers_count<font color="#909090">=None</font>,
                                friends_count<font color="#909090">=None</font>, statuses_count<font color="#909090">=None</font>,
                                favourites_count<font color="#909090">=None</font>, url<font
                                        color="#909090">=None</font>, status<font color="#909090">=None</font>)
                            </dt>
                        </dl>

                        <dl>
                            <dt><a name="User-__ne__"><strong>__ne__</strong></a>(self, other)</dt>
                        </dl>

                        <dl>
                            <dt><a name="User-__str__"><strong>__str__</strong></a>(self)</dt>
                            <dd><tt>A&nbsp;string&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a href="#User">User</a>&nbsp;instance.<br>
                                &nbsp;<br>
                                The&nbsp;return&nbsp;value&nbsp;is&nbsp;the&nbsp;same&nbsp;as&nbsp;the&nbsp;JSON&nbsp;string&nbsp;representation.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;A&nbsp;string&nbsp;representation&nbsp;of&nbsp;this&nbsp;twitter.<a
                                        href="#User">User</a>&nbsp;instance.</tt></dd>
                        </dl>

                        <hr>
                        Static methods defined here:<br>
                        <dl>
                            <dt><a name="User-NewFromJsonDict"><strong>NewFromJsonDict</strong></a>(data)</dt>
                            <dd>
                                <tt>Create&nbsp;a&nbsp;new&nbsp;instance&nbsp;based&nbsp;on&nbsp;a&nbsp;JSON&nbsp;dict.<br>
                                    &nbsp;<br>
                                    Args:<br>
                                    &nbsp;&nbsp;data:<br>
                                    &nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;JSON&nbsp;dict,&nbsp;as&nbsp;converted&nbsp;from&nbsp;the&nbsp;JSON&nbsp;in&nbsp;the&nbsp;twitter&nbsp;API<br>
                                    &nbsp;<br>
                                    Returns:<br>
                                    &nbsp;&nbsp;A&nbsp;twitter.<a href="#User">User</a>&nbsp;instance</tt></dd>
                        </dl>

                        <hr>
                        Data descriptors defined here:<br>
                        <dl>
                            <dt><strong>__dict__</strong></dt>
                            <dd><tt>dictionary&nbsp;for&nbsp;instance&nbsp;variables&nbsp;(if&nbsp;defined)</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>__weakref__</strong></dt>
                            <dd><tt>list&nbsp;of&nbsp;weak&nbsp;references&nbsp;to&nbsp;the&nbsp;object&nbsp;(if&nbsp;defined)</tt>
                            </dd>
                        </dl>
                        <dl>
                            <dt><strong>description</strong></dt>
                            <dd><tt>The&nbsp;short&nbsp;text&nbsp;description&nbsp;of&nbsp;this&nbsp;user.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>favourites_count</strong></dt>
                            <dd><tt>The&nbsp;number&nbsp;of&nbsp;favourites&nbsp;for&nbsp;this&nbsp;user.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>followers_count</strong></dt>
                            <dd><tt>The&nbsp;number&nbsp;of&nbsp;users&nbsp;following&nbsp;this&nbsp;user.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>friends_count</strong></dt>
                            <dd><tt>The&nbsp;number&nbsp;of&nbsp;friends&nbsp;for&nbsp;this&nbsp;user.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>id</strong></dt>
                            <dd><tt>The&nbsp;unique&nbsp;id&nbsp;of&nbsp;this&nbsp;user.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>location</strong></dt>
                            <dd><tt>The&nbsp;geographic&nbsp;location&nbsp;of&nbsp;this&nbsp;user.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>name</strong></dt>
                            <dd><tt>The&nbsp;real&nbsp;name&nbsp;of&nbsp;this&nbsp;user.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>profile_background_color</strong></dt>
                        </dl>
                        <dl>
                            <dt><strong>profile_background_image_url</strong></dt>
                            <dd><tt>The&nbsp;url&nbsp;of&nbsp;the&nbsp;profile&nbsp;background&nbsp;of&nbsp;this&nbsp;user.</tt>
                            </dd>
                        </dl>
                        <dl>
                            <dt><strong>profile_background_tile</strong></dt>
                            <dd>
                                <tt>Boolean&nbsp;for&nbsp;whether&nbsp;to&nbsp;tile&nbsp;the&nbsp;background&nbsp;image.</tt>
                            </dd>
                        </dl>
                        <dl>
                            <dt><strong>profile_image_url</strong></dt>
                            <dd><tt>The&nbsp;url&nbsp;of&nbsp;the&nbsp;thumbnail&nbsp;of&nbsp;this&nbsp;user.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>profile_link_color</strong></dt>
                        </dl>
                        <dl>
                            <dt><strong>profile_sidebar_fill_color</strong></dt>
                        </dl>
                        <dl>
                            <dt><strong>profile_text_color</strong></dt>
                        </dl>
                        <dl>
                            <dt><strong>protected</strong></dt>
                        </dl>
                        <dl>
                            <dt><strong>screen_name</strong></dt>
                            <dd><tt>The&nbsp;short&nbsp;twitter&nbsp;name&nbsp;of&nbsp;this&nbsp;user.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>status</strong></dt>
                            <dd><tt>The&nbsp;latest&nbsp;twitter.Status&nbsp;of&nbsp;this&nbsp;user.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>statuses_count</strong></dt>
                            <dd><tt>The&nbsp;number&nbsp;of&nbsp;updates&nbsp;for&nbsp;this&nbsp;user.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>time_zone</strong></dt>
                            <dd><tt>Returns&nbsp;the&nbsp;current&nbsp;time&nbsp;zone&nbsp;string&nbsp;for&nbsp;the&nbsp;user.<br>
                                &nbsp;<br>
                                Returns:<br>
                                &nbsp;&nbsp;The&nbsp;descriptive&nbsp;time&nbsp;zone&nbsp;string&nbsp;for&nbsp;the&nbsp;user.</tt>
                            </dd>
                        </dl>
                        <dl>
                            <dt><strong>url</strong></dt>
                            <dd><tt>The&nbsp;homepage&nbsp;url&nbsp;of&nbsp;this&nbsp;user.</tt></dd>
                        </dl>
                        <dl>
                            <dt><strong>utc_offset</strong></dt>
                        </dl>
                    </td>
                </tr>
            </table>
        </td>
    </tr>
</table>
<p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
    <tr bgcolor="#eeaa77">
        <td colspan=3 valign=bottom>&nbsp;<br>
            <font color="#ffffff" face="helvetica, arial"><big><strong>Functions</strong></big></font></td>
    </tr>

    <tr>
        <td bgcolor="#eeaa77"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td>
        <td>&nbsp;</td>
        <td width="100%">
            <dl>
                <dt><a name="-md5"><strong>md5</strong></a> = openssl_md5(...)</dt>
                <dd><tt>Returns&nbsp;a&nbsp;md5&nbsp;hash&nbsp;<a href="__builtin__.html#object">object</a>;&nbsp;optionally&nbsp;initialized&nbsp;with&nbsp;a&nbsp;string</tt>
                </dd>
            </dl>
        </td>
    </tr>
</table>
<p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
    <tr bgcolor="#55aa55">
        <td colspan=3 valign=bottom>&nbsp;<br>
            <font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td>
    </tr>

    <tr>
        <td bgcolor="#55aa55"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td>
        <td>&nbsp;</td>
        <td width="100%"><strong>ACCESS_TOKEN_URL</strong> = 'https://api.twitter.com/oauth/access_token'<br>
            <strong>AUTHORIZATION_URL</strong> = 'https://api.twitter.com/oauth/authorize'<br>
            <strong>CHARACTER_LIMIT</strong> = 140<br>
            <strong>DEFAULT_CACHE</strong> = &lt;object object at 0x1001da0a0&gt;<br>
            <strong>REQUEST_TOKEN_URL</strong> = 'https://api.twitter.com/oauth/request_token'<br>
            <strong>SIGNIN_URL</strong> = 'https://api.twitter.com/oauth/authenticate'<br>
            <strong>__author__</strong> = 'python-twitter@googlegroups.com'<br>
            <strong>__version__</strong> = '0.8'
        </td>
    </tr>
</table>
<p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
    <tr bgcolor="#7799ee">
        <td colspan=3 valign=bottom>&nbsp;<br>
            <font color="#ffffff" face="helvetica, arial"><big><strong>Author</strong></big></font></td>
    </tr>

    <tr>
        <td bgcolor="#7799ee"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td>
        <td>&nbsp;</td>
        <td width="100%">python-twitter@googlegroups.com</td>
    </tr>
</table>
</body>
</html>