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
|
2013-12-26 Alexandre Passant <alex@seevl.net>
* Bugfixing page in GetUsersSearch
2013-12-05 Mike Taylor <bear@bear.im>
* Merge pull request #122 from rmihael/master
2013-12-05 Michael Korbakov <rmihael@gmail.com>
* Lazy loading of /help/configuration.json
2013-12-04 Mike Taylor <bear@bear.im>
* Merge pull request #121 from kureta/patch-1
2013-12-04 kureta <skureta@gmail.com>
* Updated README.md
2013-11-02 Mike Taylor <bear@bear.im>
* Merge pull request #118 from larsweiler/master
2013-11-03 Lars Weiler <lars@konvergenzfehler.de>
* Tab/Space fix
2013-11-03 Lars Weiler <lars@konvergenzfehler.de>
* Introducing 'count' for Api.GetFriends(), so that the default of 20 can be overwritten with a maximum of 200; faster results and less rate limit hits.
2013-11-03 Lars Weiler <lars@konvergenzfehler.de>
* Introducing 'count' for Api.GetFollowers(), so that the default of 20 can be overwritten with a maximum of 200; faster results and less rate limit hits.
2013-11-02 Mike Taylor <bear@bear.im>
* Merge pull request #117 from iepathos/master
2013-11-02 Glen Baker <iepathos@gmail.com>
* Updated requirements.txt with simplejson, oauth2, and oauthlib
2013-10-14 Mike Taylor <bear42@gmail.com>
* Merge pull request #115 from pmakowski/patch-1
2013-10-14 Philippe Makowski <pmakowski@ibphoenix.fr>
* remove oauth2
2013-10-06 Mike Taylor <bear42@gmail.com>
* bumping version to 1.1 for distribution, see CHANGES for details
2013-09-23 Mike Taylor <bear42@gmail.com>
* remove errant print statement
2013-09-23 Mike Taylor <bear42@gmail.com>
* apply patch from the email to the list that Arne Brodowski submitted - removes the Python 2.7 only dict comprehension item
2013-09-19 Mike Taylor <bear42@gmail.com>
* Merge pull request #114 from benctamas/master
2013-09-19 benctamas <mr.bence.tamas@gmail.com>
* fix GetListTimeline
2013-09-10 Mike Taylor <bear42@gmail.com>
* Merge pull request #113 from jarobins/master
2013-09-10 Jake Robinson <jarobins139@gmail.com>
* Fixed Conflict
2013-09-10 Jake Robinson <jarobins139@gmail.com>
* Update?
2013-09-10 Jake Robinson <jarobins139@gmail.com>
* Code changes
2013-09-10 Jake Robinson <jarobins139@gmail.com>
* Import PEP8 change
2013-09-10 Jake Robinson <jarobins139@gmail.com>
* Update README.md
2013-09-07 Mike Taylor <bear42@gmail.com>
* Merge pull request #110 from jarobins/master
2013-09-07 Mike Taylor <bear42@gmail.com>
* Merge pull request #112 from brodul/timeout
2013-09-05 Andraz Brodnik <brodul@brodul.org>
* Add timeout argument to Api.
2013-09-04 Jake Robinson <jarobins139@gmail.com>
* Removed OAuth2
2013-09-03 Jake Robinson <jarobins139@gmail.com>
* Update to inform user
2013-09-03 Jake Robinson <jarobins139@gmail.com>
* Merge pull request #7 from bear/master
2013-09-03 Mike Taylor <bear42@gmail.com>
* added GetListMembers()
2013-09-02 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Documentation Updates
2013-09-01 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Remove OAuth2 import
2013-09-01 Jake Robinson <jake.robinson@gtri.gatech.edu>
* code cleanup
2013-08-31 Mike Taylor <bear42@gmail.com>
* Merge pull request #108 from jarobins/master
2013-08-31 Jake Robinson <jake.robinson@gtri.gatech.edu>
* fixed typo
2013-08-31 Jake Robinson <jake.robinson@gtri.gatech.edu>
* List Class parameter update
2013-08-30 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Typo Fix
2013-08-30 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Updated User Class
2013-08-30 Mike Taylor <bear42@gmail.com>
* Merge pull request #107 from jarobins/master
2013-08-30 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Status Class parameter cleanup
2013-08-30 Mike Taylor <bear42@gmail.com>
* Merge pull request #106 from jarobins/master
2013-08-30 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Getting rid of OAuth2...
2013-08-30 Jake Robinson <jarobins139@gmail.com>
* Merge pull request #6 from bear/master
2013-08-30 Mike Taylor <bear42@gmail.com>
* Merge pull request #105 from jarobins/docs
2013-08-30 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Revert "Complete removal of OAuth2"
2013-08-30 Jake Robinson <jake.robinson@gtri.gatech.edu>
* New sphinx documentation
2013-08-30 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Complete removal of OAuth2
2013-08-30 Mike Taylor <bear42@gmail.com>
* fixed problems with GetListTimeline() for Issue 103
2013-08-29 Mike Taylor <bear42@gmail.com>
* Merge pull request #102 from jarobins/safe
2013-08-29 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Update to GetSteamSample
2013-08-29 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Base code for Streaming support
2013-08-29 Mike Taylor <bear42@gmail.com>
* Merge pull request #101 from jarobins/safe
2013-08-29 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Finished adding GetRetweeters #97
2013-08-29 Mike Taylor <bear42@gmail.com>
* Merge pull request #99 from moshekaplan/patch-1
2013-08-29 Moshe Kaplan <me@moshekaplan.com>
* Update twitter.html
2013-08-26 Mike Taylor <bear42@gmail.com>
* added GetListsList() (calls /lists/list ) and GetListTimeline() (calls /lists/statuses ) to the mix
2013-08-25 Mike Taylor <bear42@gmail.com>
* Merge pull request #96 from bear/wenyi
2013-08-25 harrywy <harrywy@gmail.com>
* merge and clean up
2013-08-25 harrywy <harrywy@gmail.com>
* Merge remote-tracking branch 'origin/master' into wenyi
2013-08-24 Mike Taylor <bear42@gmail.com>
* Merge pull request #95 from jarobins/working
2013-08-24 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Revert "Update README.md"
2013-08-24 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Revert "Complete Removal of oauth2"
2013-08-24 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Revert "Removing old OAuth"
2013-08-24 Jake Robinson <jarobins139@gmail.com>
* Merge pull request #5 from bear/master
2013-08-24 Mike Taylor <bear42@gmail.com>
* Merge pull request #93 from arcturusannamalai/master
2013-08-24 Muthiah Annamalai <muthuspost@gmail.com>
* cleanup code, for flags by @bear; then add a test case for ParseTweet
2013-08-24 Mike Taylor <bear42@gmail.com>
* merge conflict resolved
2013-08-24 Mike Taylor <bear42@gmail.com>
* Merge pull request #92 from arcturusannamalai/master
2013-08-24 Mike Taylor <bear42@gmail.com>
* Merge pull request #90 from philsturgeon/patch-1
2013-08-24 Muthiah Annamalai <muthuspost@gmail.com>
* Add a ParseTweet object which can identify MT, RT, URLs and user handles
2013-08-24 Jake Robinson <jarobins139@gmail.com>
* removed the commented _FetchUrl
2013-08-24 Phil Sturgeon <email@philsturgeon.co.uk>
* GetFavorites would try to use user_id for screen_name
2013-08-24 Sebastian Wiesinger <sebastian@karotte.org>
* Fix GetFollowerIDs error when total_count is None
2013-08-24 harrywy <harrywy@gmail.com>
* Merge branch 'master' of https://github.com/bear/python-twitter.git into wenyi
2013-08-24 harrywy <harrywy@gmail.com>
* merged latest and some updates: 1) add 'lang' filed to Status class 2) change MaximumHitFrequency to GetSleepTime to avoid rate limit 2) modify GetFollowers, GetFollowerIDs, GetFriends, GetFriendsIDs using GetSleepTime method
2013-08-22 Jake Robinson <jarobins139@gmail.com>
* Update README.md
2013-08-22 Jake Robinson <jake.robinson@gtri.gatech.edu>
* PostMedia function update
2013-08-22 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Retweeters Base Function
2013-08-22 Jake Robinson <jarobins139@gmail.com>
* Merge pull request #4 from bear/master
2013-08-22 Jake Robinson <jake.robinson@gtri.gatech.edu>
* working prototype of post_with_media
2013-08-21 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Complete Removal of oauth2
2013-08-21 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Removing old OAuth
2013-08-21 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Final request update commit
2013-08-21 Jake Robinson <jake.robinson@gtri.gatech.edu>
* More requests updates
2013-08-21 Jake Robinson <jarobins139@gmail.com>
* Update README.md
2013-08-19 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Request Update
2013-08-17 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Request changes and tidying up
2013-08-17 Jake Robinson <jake.robinson@gtri.gatech.edu>
* More _RequestUrl updates
2013-08-16 Jake Robinson <jarobins139@gmail.com>
* Adding the new dependencies
2013-08-16 Jake Robinson <jarobins139@gmail.com>
* Merge pull request #1 from jarobins/master
2013-08-16 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Updating to _RequestUrl #1
2013-08-16 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Update function GetHelpConfiguration
2013-08-16 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Delete unused files
2013-08-16 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Initial to Request library
2013-08-12 Mike Taylor <bear42@gmail.com>
* Merge pull request #87 from jarobins/master
2013-08-12 Jake Robinson <jake.robinson@gtri.gatech.edu>
* Change Trend class __repr__
2013-08-04 Mike Taylor <bear42@gmail.com>
* Merge pull request #84 from Xsns/master
2013-08-04 Mike Taylor <bear42@gmail.com>
* Add GetBlocks() to the API
2013-07-27 HU Pili <hpl1989@gmail.com>
* get help/configuration.json and get short URL length
2013-07-25 Sebastian Wiesinger <sebastian@karotte.org>
* Remove trailing whitespace
2013-07-09 Mike Taylor <bear42@gmail.com>
* Merge pull request #83 from phdru/master
2013-07-09 Oleg Broytman <phd@phdru.name>
* Use module webbrowser to open the URL
2013-07-09 Oleg Broytman <phd@phdru.name>
* Fixed shebang lines
2013-07-05 Mike Taylor <bear42@gmail.com>
* Merge pull request #81 from LeeMendelowitz/oembed
2013-07-05 Lee Mendelowitz <LMendy@gmail.com>
* Added method GetStatusOembed to Api class
2013-07-04 Sebastian Wiesinger <sebastian@karotte.org>
* Merge pull request #80 from theopolisme/patch-1
2013-07-04 theopolisme <theopolismewiki@gmail.com>
* Remove GetPublicTimeline() from docstring
2013-07-03 Mike Taylor <bear42@gmail.com>
* Merge pull request #77 from daniilr/master
2013-07-04 Даниил Рыжков <daniil.re@gmail.com>
* Now script can be used as module, no need to edit script to set consumer_key and consumer_secret
2013-07-04 Даниил Рыжков <daniil.re@gmail.com>
* PEP8
2013-07-04 Даниил Рыжков <daniil.re@gmail.com>
* Sending oauth_callback=oob in order to obtain PIN
2013-07-03 Sebastian Wiesinger <sebastian@karotte.org>
* Merge branch 'issue_76' into upstream
2013-07-03 Osama Khalid <osamak@gnu.org>
* Fix include_rts
2013-07-03 Osama Khalid <osamak@gnu.org>
* Replace 'except:' with 'except ValueError:'
2013-06-19 Mike Taylor <bear42@gmail.com>
* Merge pull request #70 from Xsns/master
2013-06-19 HU Pili <hpl1989@gmail.com>
* remove GetFriendsTimeline from doc
2013-06-13 Sebastian Wiesinger <sebastian@karotte.org>
* Update GetFollowerIDs with total_count to limit API calls
2013-06-13 Sebastian Wiesinger <sebastian@karotte.org>
* Fix function documentation for PostDirectMessage
2013-06-12 Mike Taylor <bear42@gmail.com>
* Make exception handling compatible with Python 2.5
2013-06-07 Mike Taylor <bear42@gmail.com>
* Update twitter.py
2013-06-07 Mike Taylor <bear42@gmail.com>
* Update setup.py
2013-06-07 Mike Taylor <bear42@gmail.com>
* Update CHANGES
2013-06-07 Mike Taylor <bear42@gmail.com>
* Update README.md
2013-06-07 Mike Taylor <bear42@gmail.com>
* Merge pull request #66 from jim-easterbrook/master
2013-06-07 Jim Easterbrook <jim@jim-easterbrook.me.uk>
* Python 2.5 compatibility.
2013-06-04 Mike Taylor <bear42@gmail.com>
* changed version to 1.0 removed doc directory until we can update docs for v1.1 API added to package MANIFEST.in the testdata directory
2013-06-04 Mike Taylor <bear42@gmail.com>
* Merge branch 'master' of github.com:bear/python-twitter
2013-05-30 Mike Taylor <bear42@gmail.com>
* Merge pull request #63 from c0z3n/master
2013-05-30 c0z3n <gordon.p.clement@gmail.com>
* corrected a bit of missing markdown formatting
2013-05-28 Mike Taylor <bear42@gmail.com>
* setting version to v1.0rc1 - realized I shouldn't push to PyPI a v1.0 just yet
2013-05-28 Mike Taylor <bear42@gmail.com>
* prep setup.py for v1.0.0 packaging
2013-05-28 Mike Taylor <bear42@gmail.com>
* fix errors in twitter_tests from the v1.1 api merge
2013-05-28 Mike Taylor <bear42@gmail.com>
* updating copyright year and contributor's list
2013-05-28 Mike Taylor <bear42@gmail.com>
* set version to v1.0.0 and update CHANGES
2013-05-28 Mike Taylor <bear42@gmail.com>
* set version to v1.0.0
2013-05-28 Mike Taylor <bear42@gmail.com>
* merging api_v1.1 branch to master
2013-05-21 Sebastian Wiesinger <sebastian@karotte.org>
* Update GetSubscriptions to API 1.1
2013-05-21 Sebastian Wiesinger <sebastian@karotte.org>
* Update DestroySubscription to API 1.1
2013-05-21 Sebastian Wiesinger <sebastian@karotte.org>
* Update CreateSubscription to API 1.1
2013-05-21 Sebastian Wiesinger <sebastian@karotte.org>
* GetUserByEmail removed, no longer available in API 1.1
2013-05-20 Mike Taylor <bear42@gmail.com>
* Merge pull request #60 from CisecoPlc/master
2013-05-20 dpslwk <dps.lwl@gmail.com>
* Add GetHomeTimeLine() as implemented here http://gitorious.org/osamak-python-twitter/osamak-python-twitter
2013-04-22 Mike Taylor <bear42@gmail.com>
* Merge pull request #56 from cahlan/api_v1.1
2013-04-22 Mike Taylor <bear42@gmail.com>
* Merge pull request #55 from cahlan/master
2013-04-22 Cahlan Sharp <cahlan@gmail.com>
* updated to retrieve favorite_count
2013-04-22 Mike Taylor <bear42@gmail.com>
* Merge pull request #54 from cahlan/master
2013-04-22 Cahlan Sharp <cahlan@gmail.com>
* updated to retrieve favorite_count
2013-04-12 Sebastian Wiesinger <sebastian@karotte.org>
* Fix twitter.List AsJsonString()
2013-04-13 Sebastian Wiesinger <sebastian@karotte.org>
* Update GetLists to API 1.1
2013-04-13 Sebastian Wiesinger <sebastian@karotte.org>
* Update DestroyList to API 1.1
2013-04-12 Sebastian Wiesinger <sebastian@karotte.org>
* Update CreateList to API 1.1
2013-04-12 Sebastian Wiesinger <sebastian@karotte.org>
* Fix twitter.List AsJsonString()
2013-04-12 Sebastian Wiesinger <sebastian@karotte.org>
* Update GetMentions to API 1.1
2013-04-12 Sebastian Wiesinger <sebastian@karotte.org>
* Update DestroyFavorite to API 1.1
2013-04-12 Sebastian Wiesinger <sebastian@karotte.org>
* Update CreateFavorite to API 1.1
2013-04-12 Sebastian Wiesinger <sebastian@karotte.org>
* Update DestroyFriendship to API 1.1
2013-04-12 Sebastian Wiesinger <sebastian@karotte.org>
* Update CreateFriendship to API 1.1
2013-04-12 Sebastian Wiesinger <sebastian@karotte.org>
* Update DestroyDirectMessage to API 1.1
2013-04-12 Sebastian Wiesinger <sebastian@karotte.org>
* Update PostDirectMessage to API 1.1
2013-04-12 Sebastian Wiesinger <sebastian@karotte.org>
* Update GetSentDirectMessages to API 1.1
2013-04-12 Sebastian Wiesinger <sebastian@karotte.org>
* Update GetDirectMessages to API 1.1
2013-04-12 Sebastian Wiesinger <sebastian@karotte.org>
* Update UsersLookup to API 1.1
2013-04-12 Sebastian Wiesinger <sebastian@karotte.org>
* GetFeatured removed
2013-04-12 Sebastian Wiesinger <sebastian@karotte.org>
* Update GetFollowerIDs and GetFollowers to API 1.1
2013-04-04 Mike Taylor <bear42@gmail.com>
* adjust GetRateLimitStatus to the changes needed for api v1.1
2013-03-26 Mike Taylor <bear42@gmail.com>
* Merge pull request #49 from fukkyy/api_v1.1
2013-03-27 Yoshinori Fukushima <yoshinori.fukushima@gmail.com>
* Update GetFavorites to API 1.1
2013-03-26 Sebastian Wiesinger <sebastian@karotte.org>
* Update DestroyStatus to API 1.1
2013-03-26 Sebastian Wiesinger <sebastian@karotte.org>
* Update GetStatus to API 1.1
2013-03-25 Sebastian Wiesinger <sebastian@karotte.org>
* Replaced GetFriendsTimeline with GetHomeTimeline
2013-03-22 Mike Taylor <bear42@gmail.com>
* added GetUsersSearch()
2013-03-19 Sebastian Wiesinger <sebastian@karotte.org>
* Update class Trend to API 1.1
2013-03-19 Sebastian Wiesinger <sebastian@karotte.org>
* Update GetTrendsCurrent, GetTrendsWoeid to API 1.1
2013-03-19 Sebastian Wiesinger <sebastian@karotte.org>
* Remove GetTrendsDaily and GetTrendsWeekly
2013-03-19 Sebastian Wiesinger <sebastian@karotte.org>
* Update GetUser to API 1.1
2013-03-18 Mike Taylor <bear42@gmail.com>
* adjust GetFriendIDs to api v1.1
2013-03-18 Mike Taylor <bear42@gmail.com>
* adjusted GetFriends for api v1.1
2013-03-18 Mike Taylor <bear42@gmail.com>
* Merge branch 'master' of github.com:bear/python-twitter into api_v1.1
2013-03-18 Mike Taylor <bear42@gmail.com>
* adjusted GetRetweets for api v1.1
2013-03-18 Mike Taylor <bear42@gmail.com>
* simple typo fix
2013-03-18 Mike Taylor <bear42@gmail.com>
* adjust GetReplies for api v1.1 NOTE we may deprecate this as it is now nothing but a special case of GetUserTimeline
2013-03-18 Mike Taylor <bear42@gmail.com>
* adjust GetUserRetweets for api v1.1 NOTE this technically doesn't exist in the v1.1 api as it's now a special case of GetUserTimeline -- we may just remove this in the final push
2013-03-18 Mike Taylor <bear42@gmail.com>
* PostRetweet updated for api v1.1
2013-03-18 Mike Taylor <bear42@gmail.com>
* adjusted PostUpdate() for api v1.1
2013-03-15 Sebastian Wiesinger <sebastian@karotte.org>
* Updated Api.Status class to API 1.1
2013-03-15 Sebastian Wiesinger <sebastian@karotte.org>
* VIM modeline for two-space indents
2013-03-15 Sebastian Wiesinger <sebastian@karotte.org>
* Updated twitter_test.py to API 1.1
2013-03-15 Sebastian Wiesinger <sebastian@karotte.org>
* Update GetUserTimeline to API 1.1
2013-03-15 Sebastian Wiesinger <sebastian@karotte.org>
* VIM modeline for two-space indents
2013-03-14 Sebastian Wiesinger <sebastian@karotte.org>
* Update GetSearch to API 1.1
2013-03-14 Sebastian Wiesinger <sebastian@karotte.org>
* Change API base URL to version 1.1
2013-03-13 Mike Taylor <bear42@gmail.com>
* Merge pull request #47 from sebastianw/hashbang
2013-03-13 Sebastian Wiesinger <sebastian@karotte.org>
* Merge branch 'master' into hashbang
2013-03-13 Sebastian Wiesinger <sebastian@karotte.org>
* Use default python version
2013-03-13 Mike Taylor <bear42@gmail.com>
* Merge pull request #46 from sebastianw/retweet
2013-03-13 Sebastian Wiesinger <sebastian@karotte.org>
* PostRetweet function implements retweet API
2013-03-08 Mike Taylor <bear42@gmail.com>
* Merge pull request #42 from abloch/noCountChars
2013-03-07 Akiva <akiva_eshbal@yahoo.com>
* disable the 140 chars counting before posting a tweet
2013-03-03 Mike Taylor <bear42@gmail.com>
* removed GetPublicTimeline from the docs so as to stop confusing new folks since it was the first example given ... d'oh!
2013-02-10 Mike Taylor <bear42@gmail.com>
* Merge branch 'api_v1.1' into merge20130210 manually fixed version number that caused the conflict Conflicts: setup.py twitter.py
2013-02-10 Mike Taylor <bear42@gmail.com>
* 2013-02-10 bumped version to 0.8.6
2013-02-10 Mike Taylor <bear42@gmail.com>
* Merge pull request #36 from bear/master
2013-02-10 Mike Taylor <bear42@gmail.com>
* update requirements.txt to remove distribute reference
2013-02-10 Mike Taylor <bear42@gmail.com>
* Merge pull request #35 from bear/master
2013-02-10 Mike Taylor <bear42@gmail.com>
* Merge pull request #33 from iElectric/profile_image_url_https
2013-02-09 Domen Kožar <domen@dev.si>
* use profile_image_url_https instead of profile_image_url
2013-02-07 Mike Taylor <bear42@gmail.com>
* setting version to 0.9.0
2013-02-07 Mike Taylor <bear42@gmail.com>
* bumping version to 0.8.5 to prepare for release
2013-02-07 Mike Taylor <bear42@gmail.com>
* Merge git://gitorious.org/osamak-python-twitter/osamak-python-twitter
2013-02-06 Mike Taylor <bear42@gmail.com>
* Merge pull request #30 from ardahal/master
2013-02-06 AR Dahal <dahalaishraj@gmail.com>
* Fixed inability to run without http_proxy variable
2013-02-05 Mike Taylor <bear42@gmail.com>
* Merge pull request #24 from themylogin/master
2013-02-05 Mike Taylor <bear42@gmail.com>
* Merge pull request #27 from robert-b-clarke/master
2013-02-05 Mike Taylor <bear42@gmail.com>
* Merge pull request #25 from pradeep1288/master
2013-02-05 Mike Taylor <bear42@gmail.com>
* Merge pull request #28 from ardahal/master
2013-02-05 Mike Taylor <bear42@gmail.com>
* Merge pull request #29 from csanden/master
2013-02-04 Chris Sanden <chris.sanden@gmail.com>
* Updated GetFollowerIDs to use the same interface as GetFriendIDs
2013-02-04 AR Dahal <dahalaishraj@gmail.com>
* Added support to work behind an HTTP Proxy
2013-02-04 Robert Clarke <robert_clarke@trendmicro.co.uk>
* simple tests for lat/long params on PostUpdate
2013-02-04 Robert Clarke <robert_clarke@trendmicro.co.uk>
* add support for latitude and longitude parameters to PostUpdate
2013-02-02 Osama Khalid <osamak@gnu.org>
* Add GetSentDirectMessages()
2013-01-31 Pradeep Nayak <pradeep1288@gmail.com>
* The function GetUserTimeline id=user format
2013-01-31 Pradeep Nayak <pradeep1288@gmail.com>
* user argument of GetUserTimeline is not a key value pair
2013-01-29 themylogin <themylogin@gmail.com>
* add Status.media (images from twimg)
2013-01-18 Mike Taylor <bear42@gmail.com>
* Merge pull request #20 from sbywater/master
2013-01-18 Steve Bywater <stephen.bywater@gmail.com>
* Fixes typos in docstrings and error messages.
2013-01-18 Mike Taylor <bear42@gmail.com>
* Merge pull request #15 from kwbock/master
2013-01-17 Mike Taylor <bear42@gmail.com>
* Merge pull request #19 from sbywater/master
2013-01-17 Steve Bywater <stephen.bywater@gmail.com>
* Adds Api.GetRetweetsOfMe
2012-12-14 Kyle Bock <kylewbock@gmail.com>
* altered test to match the structure returned by the twitter api
2012-12-14 Kyle Bock <kylewbock@gmail.com>
* fixes an error when trying to get followers.
2012-12-09 Mike Taylor <bear42@gmail.com>
* Removing GetPublicTimeline - it is deprecated and doesn't exist even v1.1 API https://github.com/bear/python-twitter/issues/13
2012-12-09 Mike Taylor <bear42@gmail.com>
* fixed GetFollowers test by removing the invalid parameter. adjusted GetFollowers() to handle the return from the API properly.
2012-12-09 Mike Taylor <bear42@gmail.com>
* Merge pull request #9 from larsweiler/master
2012-12-09 Mike Taylor <bear42@gmail.com>
* Merge pull request #14 from ianozsvald/master
2012-12-08 Ian Ozsvald <ian@ianozsvald.com>
* add user option to GetFollowers so it has the same interface as GetFriends
2012-12-06 Lars Weiler <lars@konvergenzfehler.de>
* Merge branch 'master' of git://github.com/ianozsvald/python-twitter
2012-12-03 Ian Ozsvald <ian@ianozsvald.com>
* added requirements.txt note
2012-12-03 Ian Ozsvald <ian@ianozsvald.com>
* basic requirements file for pip
2012-12-03 Ian Ozsvald <ian@ianozsvald.com>
* fetch all pages (via cursor) for GetFriends and GetFollowers
2012-11-22 Lars Weiler <lars@konvergenzfehler.de>
* Make some options for user_timeline and search API available.
2012-11-13 Mike Taylor <bear42@gmail.com>
* Merge pull request #7 from n1k0/patch-1
2012-11-13 Nicolas Perriault <nperriault@gmail.com>
* Updated README.md to actually use Markdown
2012-11-05 Mike Taylor <bear42@gmail.com>
* https://github.com/bear/python-twitter/issues/4 Api.UserLookUp() throws attribute error when corresponding screen_name is not found
2012-11-04 Mike Taylor <bear42@gmail.com>
* Merge pull request #5 from thefinn93/master
2012-10-21 Finn Herzfled <thefinn93@thefinn93.com>
* Updated setup.py with the new name of the README file
2012-10-16 Mike Taylor <bear42@gmail.com>
* bumped version to 0.8.4 updated repo url to point to github added previous two commits to CHANGES
2012-10-16 Mike Taylor <bear42@gmail.com>
* google code issue 233 http://code.google.com/p/python-twitter/issues/detail?id=233 Add exclude_replies parameter to GetUserTimeline
2012-10-16 Mike Taylor <bear42@gmail.com>
* Issue 1 get_access_token.py attempts Web auth reported by michaelmior on github Add oob parameter to the oauth auth token request since we can assume that folks using are creating desktop apps
2012-10-16 Mike Taylor <bear42@gmail.com>
* adding t.py to gitignore
2012-10-16 Mike Taylor <bear42@gmail.com>
* adding virtualenv dirs to gitignore
2012-09-12 Mike Taylor <bear42@gmail.com>
* Initial copy of the hg tip - no history yet, that will come later
2012-09-11 Mike Taylor <bear42@gmail.com>
* Initial commit
|