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
|
2015-07-22 Jon Heaton <jonh@fb.com>
* version bump
2015-07-22 Jon Heaton <jonh@fb.com>
* fix
2015-07-22 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #167 from tedmiston/exhaustive-pagination-example
2015-07-16 Taylor Edmiston <tedmiston@gmail.com>
* Add exhaustive pagination example to README
2015-06-18 Jon Heaton <jonh@fb.com>
* fixed nit in readme
2015-06-18 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #125 from luk/ft-local-reactor-callbacks
2015-06-18 Jon Heaton <jonh@fb.com>
* Merge branch 'jimmyho-master'
2015-06-18 Jon Heaton <jonh@fb.com>
* Merge branch 'master' of https://github.com/jimmyho/python-instagram into jimmyho-master
2015-06-18 Jon Heaton <jonh@fb.com>
* Merge branch 'nomadjourney-master'
2015-06-18 Jon Heaton <jonh@fb.com>
* Merge branch 'master' of https://github.com/nomadjourney/python-instagram into nomadjourney-master
2015-06-18 Jon Heaton <jonh@fb.com>
* Merge branch 'Crowdbooster-master'
2015-06-18 Jon Heaton <jonh@fb.com>
* Merge branch 'master' of https://github.com/Crowdbooster/python-instagram into Crowdbooster-master
2015-06-18 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #144 from DavidAwad/patch-2
2015-06-18 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #140 from DavidAwad/patch-1
2015-05-28 Nizam Sayeed <nizam@nomadjourney.com>
* Added extra parameters (min_id, max_timestamp and min_timestamp) that are supported by user_recent_media endpoint.
2015-03-04 David Tran <dtran320@gmail.com>
* Addresses #127: Add an `exclude_format` parameter to `bind_method` to allow us to build a path without the format This is necessary because unlike the other endpoints, `media/shortcode/{shortcode}.json` 404s and should just be `media/shortcode/{shortcode}
2015-04-27 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #130 from zongxiao/master
2015-04-27 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #122 from vipul-sharma20/my_branch
2015-04-27 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #141 from hassanmian/master
2015-04-27 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #150 from Crowdbooster/hotfix/signed_request_no_client_secret
2015-04-23 David Tran <dtran320@gmail.com>
* Fixes all tests failing because of `None` secret passed to `hmac.new` introduced in 79c41e1a8bb3a6a2269da12ed1cebedd3a420d31 - All tests were previously failing with error `TypeError: object of `NoneType` has no len()`: https://travis-ci.org/Instagram/python-instagram/jobs/58567079 - If we weren't given a `client_secret`, we don't have a secret to sign the request with, so `_signed_request()` should just return the empty string.
2015-04-15 Jon Heaton <jonh@fb.com>
* version bump to suport signed requests
2015-04-13 David Awad <Davidawad64@gmail.com>
* code highlighting for the pip command.
2015-04-02 Hassan Mian <mian@willandskill.se>
* Merge pull request #1 from hassanmian/tags-empty-array
2015-04-02 Hassan Mian <mian@willandskill.se>
* Return empty array for media.tags if tags do not exist instead of AttributeError
2015-03-23 David Awad <Davidawad64@gmail.com>
* Update README.md
2015-03-17 Jon Heaton <jonh@fb.com>
* update to support signed requests
2015-02-22 Jimmy Ho <jho@jimmyho.com>
* guard against users_in_photo being none
2015-02-22 Jimmy Ho <jho@jimmyho.com>
* guard against users_in_photo being none
2015-02-22 Jimmy Ho <jho@jimmyho.com>
* Added users_in_photo in Media
2015-02-22 Jimmy Ho <jho@jimmyho.com>
* Added users_in_photo in Media
2015-02-15 zongxiao <czongxiao@gmail.com>
* fix _encode_multipart bug
2015-01-23 luk <code@sachen.org>
* Make registered subscription callbacks tied to the reactor object.
2015-01-05 vipul <vipul.sharma20@gmail.com>
* removed extra whitespaces
2014-11-27 Jon Heaton <jonh@fb.com>
* version increment
2014-11-20 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #113 from seajosh/master
2014-11-19 Josh Watts <josh.watts@gmail.com>
* #112 - travis.yml to be removed
2014-11-19 Josh Watts <josh.watts@gmail.com>
* added python 3 to Travis CI
2014-11-19 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #109 from seajosh/master
2014-11-10 Josh Watts <josh.watts@gmail.com>
* changed content.decode() to content since it's previously decoded
2014-11-10 Josh Watts <josh.watts@gmail.com>
* removed wsgiref==0.1.2 since it's a standard library python 2.5+
2014-10-23 Jon Heaton <jonh@fb.com>
* Python 3 Compatibility
2014-10-23 Jon Heaton <jonh@fb.com>
* Merge branch 'seajosh-master'
2014-10-23 Jon Heaton <jonh@fb.com>
* python3 compat changes
2014-10-20 Jon Heaton <jonh@fb.com>
* Merge branch 'master' of github.com:seajosh/python-instagram into seajosh-master
2014-10-20 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #103 from jkdf2/master
2014-10-20 Jon Heaton <jonh@fb.com>
* updated url to travis
2014-10-20 Jon Heaton <jonh@fb.com>
* Merge branch 'cmlh-travis-ci'
2014-10-20 Jon Heaton <jonh@fb.com>
* changed travis url
2014-10-20 Jon Heaton <jonh@fb.com>
* Merge branch 'travis-ci' of github.com:cmlh/python-instagram into cmlh-travis-ci
2014-10-20 Jon Heaton <jonh@fb.com>
* Version bump
2014-10-20 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #94 from danielroseman/recent_tags
2014-09-26 Josh Watts <josh.watts@shoutlet.com>
* fixed bug
2014-09-26 Josh Watts <josh.watts@shoutlet.com>
* Merge branch 'dev'
2014-09-26 Josh Watts <josh.watts@shoutlet.com>
* fixed Python 3 bug with disable certificate validation in httplib2
2014-09-25 Josh Watts <josh.watts@shoutlet.com>
* updated package requirements
2014-09-25 Josh Watts <josh.watts@shoutlet.com>
* removed comments
2014-09-25 Josh Watts <josh.watts@shoutlet.com>
* updated readme
2014-09-25 Josh Watts <josh.watts@shoutlet.com>
* updated version to 1.1.4
2014-09-25 Josh Watts <josh.watts@shoutlet.com>
* first cut of python 3 support
2014-09-07 Taylor Kline <taylor.kline@streamingfreebies.com>
* Mention handling errors by status codes in README
2014-08-27 Christian Heinrich <christian.heinrich@cmlh.id.au>
* Feature - Travis-CI Badge
2014-08-27 Christian Heinrich <christian.heinrich@cmlh.id.au>
* Feature - Travis CI
2014-08-12 Daniel Roseman <daniel@roseman.org.uk>
* tag_recent_media param is max_tag_id not max_id.
2014-08-05 Jon Heaton <jonh@fb.com>
* version increase for 1.1.3 release;
2014-08-05 Jon Heaton <jonh@fb.com>
* adding egg files
2014-08-05 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #92 from thelinuxkid/master
2014-08-05 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #89 from tomdottom/master
2014-08-05 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #88 from cmlh/user_follows
2014-08-05 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #81 from yoloseem/patch-1
2014-07-31 Jon Heaton <jonh@fb.com>
* Merge branch 'johncadengo-max-pages-none'
2014-07-30 Andres Buritica <andres@thelinuxkid.com>
* subscription POST and DELETE require signed header
2014-07-28 Andres Buritica <andres@thelinuxkid.com>
* Return the value for error code, type and message when no meta in response
2014-07-21 tom <thomas.marks@getmetric.com>
* Create valid path if no api.format specified
2014-07-15 Christian Heinrich <christian.heinrich@cmlh.id.au>
* Feature - User Follows
2014-07-06 johncadengo <johncadengo@gmail.com>
* Add option for max_pages=None.
2014-07-02 Jon Heaton <jonh@fb.com>
* version bump
2014-07-02 Jon Heaton <jonh@fb.com>
* cast location.id to string
2014-06-12 Hyunjun Kim <yoloseem@users.noreply.github.com>
* Prevent using Python built-in function.
2014-06-09 Jon Heaton <jonathan.heaton@gmail.com>
* added media shortcode support
2014-06-09 Jon Heaton <jonathan.heaton@gmail.com>
* Merge branch 'lcarvalho-master'
2014-06-03 Lucas Carvalho <lucas.carvalho@corp.globo.com>
* supporting /media/shortcode url
2014-06-03 Jon Heaton <jonathan.heaton@gmail.com>
* version increment
2014-06-03 Jon Heaton <jonathan.heaton@gmail.com>
* updated sample app to add like and unlike
2014-06-03 Jon Heaton <jonathan.heaton@gmail.com>
* Merge branch 'yssk22-signed-post'
2014-06-03 Jon Heaton <jonathan.heaton@gmail.com>
* changed to support secured requests
2014-06-03 Jon Heaton <jonathan.heaton@gmail.com>
* Merge branch 'yssk22-travis-ci'
2014-06-03 Jon Heaton <jonathan.heaton@gmail.com>
* Merge branch 'travis-ci' of github.com:yssk22/python-instagram into yssk22-travis-ci
2014-06-03 Yohei Sasaki <yssk22@gmail.com>
* Support the signed header.
2014-06-02 Yohei Sasaki <yssk22@gmail.com>
* Adding the Travis configuration file.
2014-05-22 Jon Heaton <jonathan.heaton@gmail.com>
* add support for new http status code for ratelimit exceeded
2014-05-15 Jon Heaton <jonathan.heaton@gmail.com>
* Merge branch 'master' of github.com:Instagram/python-instagram
2014-05-15 Jon Heaton <jonathan.heaton@gmail.com>
* Merge branch 'henninge-pagination-format'
2014-05-15 Jon Heaton <jonathan.heaton@gmail.com>
* Merge branch 'pagination-format' of github.com:henninge/python-instagram into henninge-pagination-format
2014-05-15 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #69 from j-e-d/patch-1
2014-05-12 Juan E. D. <chedar+gh@gmail.com>
* Update README.md Sample app to include Redis
2014-05-12 Juan E. D. <chedar+gh@gmail.com>
* Update README.md Sample app section
2014-05-09 Jon Heaton <jonathan.heaton@gmail.com>
* Merge branch 'johnboiles-master' propagates API response codes
2014-05-09 Jon Heaton <jonathan.heaton@gmail.com>
* Merge branch 'master' of github.com:johnboiles/python-instagram into johnboiles-master
2014-05-09 Jon Heaton <jonathan.heaton@gmail.com>
* updated sample to use new media methods
2014-05-02 John Boiles <johnaboiles@gmail.com>
* Adding an optional status_code to InstagramClientError
2014-04-24 Jon Heaton <jonathan.heaton@gmail.com>
* Merge branch 'master' of github.com:beichhor/python-instagram into beichhor-master
2014-04-24 Jon Heaton <jonathan.heaton@gmail.com>
* Merge branch 'master' of github.com:dvonlehman/python-instagram into dvonlehman-master
2014-04-24 Jon Heaton <jonathan.heaton@gmail.com>
* sample app update
2014-04-24 Jon Heaton <jonathan.heaton@gmail.com>
* Merge branch 'master' of github.com:Instagram/python-instagram
2014-04-24 Jon Heaton <jonathan.heaton@gmail.com>
* added x-ratelimt support to client obj
2014-04-23 Jon Heaton <jonathan.heaton@gmail.com>
* Merge branch 'video_support' of github.com:jjshabs/python-instagram into jjshabs-video_support
2014-04-23 Jonathan Heaton <jonathan.heaton@gmail.com>
* Merge pull request #61 from philsturgeon/patch-1
2014-04-22 Jon Heaton <jonathan.heaton@gmail.com>
* Merge branch 'master' of github.com:isnowfy/python-instagram into isnowfy-master
2014-04-07 Jon Heaton <jonathan.heaton@gmail.com>
* README update with CLA and new License and version 1 bump
2014-04-02 Joe Hura <dev@creatingtrouble.com>
* Media now supports video, has a 'type' field and additional url accessors Unit tests updated
2014-02-03 henninge <henning@keeeb.com>
* Set version to our own.
2014-01-21 Phil Sturgeon <email@philsturgeon.co.uk>
* Add syntax highlighting for Python examples
2013-12-17 Alberto Tretti <albertotretti@users.noreply.github.com>
* Merge pull request #51 from gvkalra/patch-1
2013-12-16 Alberto Tretti <albertotretti@users.noreply.github.com>
* Merge pull request #31 from tonyxiao/patch-1
2013-12-16 Alberto Tretti <albertotretti@users.noreply.github.com>
* Merge pull request #47 from kenkam/master
2013-12-16 Alberto Tretti <albertotretti@users.noreply.github.com>
* Merge pull request #40 from synth3tk/patch-1
2013-12-16 Alberto Tretti <albertotretti@users.noreply.github.com>
* Merge pull request #52 from dangayle/master
2013-09-16 Dan Gayle <dangayle@gmail.com>
* Update README.md
2013-09-15 Gaurav Kalra <gvkalra@gmail.com>
* Import simplejson with json_import
2013-08-18 isnowfy <isnowfy@gmail.com>
* add with_next_url implement to easy paginator
2013-07-22 isnowfy <isnowfy@gmail.com>
* use json_import instead of simplejson
2013-06-02 Kenneth Kam <kenkam@gmail.com>
* Fixed example code in README.md
2013-05-16 David Von Lehman <david.vonlehman@gmail.com>
* Update location_search method to accept new foursquare_v2_id parameter
2012-11-13 David Thomas <dev@synth3.tk>
* Added line break
2012-08-07 henninge <henning@keeeb.com>
* Add pagination_format parameter to api methods.
2012-07-31 Benn Eichhorn <benn.eichhorn@gmail.com>
* Fix comparison type bug
2012-07-31 Benn Eichhorn <benn.eichhorn@gmail.com>
* Handling any non meta response
2012-07-31 Benn Eichhorn <benn.eichhorn@gmail.com>
* Handle OAuthRateLimitException from Nginx
2012-07-08 tonyxiao <tonyx.ca@gmail.com>
* Fixed bug in sample_app.py. The access_token needs to be unpacked from returned arguments.
2012-05-29 Mike Krieger <mikeyk@instagram.com>
* Central json import logic
2012-05-29 Mike Krieger <mikeyk@instagram.com>
* Merge remote-tracking branch 'michaelhelmick/relationship_status'
2012-05-29 Michael Helmick <mikehelmick@me.com>
* Add user_relationship to README
2012-05-28 Michael Helmick <mikehelmick@me.com>
* 0.8.0, Bumping the minor because we *added a method*
2012-05-28 Michael Helmick <mikehelmick@me.com>
* Added user_relationship method, more verbose simplejson import, except ValueError on loads funcs
2012-05-26 Mike Krieger <mikeyk@instagram.com>
* Merge pull request #25 from pamelafox/patch-1
2012-05-26 Mike Krieger <mikeyk@instagram.com>
* Merge pull request #26 from pamelafox/patch-2
2012-04-11 Pamela Fox <pamela.fox@gmail.com>
* Adding more information to the README. The API is written in a way such that many of the methods are generated, and that makes it a bit tricky to see what arguments and return values correspond to each method. I've added examples and method signatures to the README so that other folks don't have to dig around the code as much.
2012-04-09 Pamela Fox <pamela.fox@gmail.com>
* Changed message to error_message, as that's what the API returns to me. Example JSON: {"code": 400, "error_type": "OAuthException", "error_message": "Redirect URI doesn't match original redirect URI"}
2012-03-02 Mike Krieger <mikeyk@instagram.com>
* version bump
2012-03-02 Mike Krieger <mikeyk@instagram.com>
* Updating fixture; temp removing test that doesn't match what we do in the API
2012-03-01 Mike Krieger <mikeyk@instagram.com>
* Merge pull request #23 from michaelhelmick/datetime_to_timestamp
2012-03-01 Mike Krieger <mikeyk@instagram.com>
* Merge pull request #24 from michaelhelmick/pep8_cleanup
2012-02-29 Michael Helmick <mikehelmick@me.com>
* PEP8 Cleanup
2012-02-29 Michael Helmick <mikehelmick@me.com>
* Datetime to Timestamp helper
2012-02-29 Michael Helmick <mikehelmick@me.com>
* Merge branch 'master' of git://github.com/Instagram/python-instagram
2012-02-28 Mike Krieger <mikeyk@instagram.com>
* Merge pull request #22 from akumria/fixup-remove-caption
2012-02-28 Mike Krieger <mikeyk@instagram.com>
* Merge pull request #20 from akumria/fixup-models
2012-02-28 Mike Krieger <mikeyk@instagram.com>
* Merge pull request #21 from akumria/fixup-add-tags-to-media
2012-02-28 Anand Kumria <akumria@acm.org>
* Convert the Tags dictionary into Tags objects too.
2012-02-28 Anand Kumria <akumria@acm.org>
* Explicitly construct the appropriate object.
2012-02-28 Anand Kumria <akumria@acm.org>
* There are no users of the Caption model, remove it.
2012-02-28 Anand Kumria <akumria@acm.org>
* Remove duplicated settings of the caption.
2012-02-28 Anand Kumria <akumria@acm.org>
* Prefix this with what kind of object it is.
2012-02-28 Anand Kumria <akumria@acm.org>
* Switch __str__ to __unicode__
2012-02-28 Anand Kumria <akumria@acm.org>
* Make it easier to identify various models with a __unicode__ method.
2012-02-24 Mike Krieger <mikeyk@instagram.com>
* Readme updates
2012-02-24 Mike Krieger <mikeyk@instagram.com>
* Another version bump
2012-02-24 Mike Krieger <mikeyk@instagram.com>
* Adding tags; fixes #6
2012-02-24 Mike Krieger <mikeyk@instagram.com>
* Version bump
2012-02-24 Mike Krieger <mikeyk@instagram.com>
* Add an 'empty' type explicitly
2012-02-24 Michael Helmick <mikehelmick@me.com>
* Fix #15
2012-02-24 Michael Helmick <mikehelmick@me.com>
* Fix #15
2012-02-24 Mike Krieger <mikeyk@instagram.com>
* Merge pull request #16 from michaelhelmick/master
2012-02-24 Mike Helmick <mikehelmick@me.com>
* Default args should not be mutable
2012-02-24 Mike Krieger <mikeyk@instagram.com>
* Updating readme with pip instructions
2012-02-23 Mike Krieger <mikeyk@instagram.com>
* Version bump and README update
2012-02-23 Mike Krieger <mikeyk@instagram.com>
* Making the mock http class compatible with the kwarg passed in
2012-02-23 Mike Krieger <mikeyk@instagram.com>
* Handle if filter is missing
2011-04-11 Mattias Gunneras <mattias@breakfastny.com>
* Bugfix. check key not attribute of dict
2011-04-10 Mattias Gunneras <mattias@breakfastny.com>
* fixed models
2011-02-28 Mattias Gunneras <mattias@breakfastny.com>
* Added fixture for geography query
2011-02-27 Mattias Gunneras <mattias@breakfastny.com>
* Fixed bug in geographies url endpoint
2011-02-27 Mattias Gunneras <mattias@breakfastny.com>
* Added filter property to Media model
2011-02-27 Mattias Gunneras <mattias@breakfastny.com>
* Fix bug where Point didn't get added to Location
2011-02-25 Mattias Gunneras <mattias@breakfastny.com>
* Whitespace cleanup tabs are now spaces.
2011-02-25 Mattias Gunneras <mattias@breakfastny.com>
* Added method to fetch Media based on geography_id
2011-02-25 Mattias Gunneras <mattias@breakfastny.com>
* Added Caption to Media model
2011-02-25 Mattias Gunneras <mattias@breakfastny.com>
* Fixed bug where str representation of Comment returned None
2011-02-25 Mattias Gunneras <mattias@breakfastny.com>
* Added caption class
2011-02-25 Mattias Gunneras <mattias@breakfastny.com>
* Added list of Users to Media.likes if available
2011-02-25 Mattias Gunneras <mattias@breakfastny.com>
* Added new json fixuture
2011-07-02 Jamie Curle <me@jamiecurle.com>
* Updated the Location model to pass point in the kwargs as opposed the to args. This makes it available to the location object as location.point. When being passed in the args it was not being added to the Location class because the args were not being iterated over.
2012-02-23 Mike Krieger <mikekrieger@gmail.com>
* Merge pull request #12 from akumria/fixup-https
2011-11-22 Jack Shedd <jshedd@thisismess.com>
* Updating model to reflect new Relationship
2012-02-23 Mike Krieger <mikeyk@instagram.com>
* Minor spacing fix
2012-02-23 Mike Krieger <mikekrieger@gmail.com>
* Merge pull request #11 from shreyansb/master
2012-02-23 Mike Krieger <mikekrieger@gmail.com>
* Merge pull request #13 from akumria/fixup-media-popular
2012-02-23 Mike Krieger <mikekrieger@gmail.com>
* Merge pull request #14 from akumria/fixup-relationships
2012-02-23 Mike Krieger <mikekrieger@gmail.com>
* Merge pull request #15 from akumria/fixup-oauth-return-user
2012-02-20 Anand Kumria <akumria@acm.org>
* Relationship changes are a POSTed.
2012-02-20 Anand Kumria <akumria@acm.org>
* As well as returning the access_token, return who it is associated to
2012-02-16 Anand Kumria <akumria@acm.org>
* Not all Locations have latitude / longitude.
2012-02-16 Anand Kumria <akumria@acm.org>
* Disable SSL validation.
2012-02-15 Shreyans Bhansali <shreyans@venmo.com>
* return_json api_responses, not media objects
2012-02-15 Shreyans Bhansali <shreyans@venmo.com>
* return_json instead of media obeject
2012-02-15 Shreyans Bhansali <shreyans@venmo.com>
* return raw json responses instead of media objects
2012-02-15 Mike Krieger <mikekrieger@gmail.com>
* Merge pull request #9 from prehensile/master
2012-02-15 Mike Krieger <mikekrieger@gmail.com>
* Merge pull request #7 from sandinmyjoints/master
2011-10-16 Henry Cooke <me@prehensile.co.uk>
* added Caption field to Media model objects
2011-09-05 William Bert <william.bert@gmail.com>
* Updated sample_app docs to specify that oauth_callback must be part of the call back uri.
2011-09-05 William Bert <william.bert@gmail.com>
* Updated README.md to say media_popular and standard_resolution.
2011-09-05 William Bert <william.bert@gmail.com>
* Specified basic scope explicitly when authenticating because API gives error if scope is blank.
2011-06-19 Mike Krieger <mikeyk@instagr.am>
* Fixing user follows / followed-by endpoints
2011-06-01 Mike Krieger <mikeyk@instagr.am>
* handle non-ID'd locations
2011-06-01 Mike Krieger <mikeyk@instagr.am>
* Adding user_liked_media endpoint
2011-02-28 Shayne Sweeney <shayne@instagram.com>
* Added method exchange_user_id_for_access_token which gives you an access_token response for a client who is already authorized.
2011-02-24 Mike Krieger <mikeyk@instagr.am>
* Bumping version number
2011-02-24 Mike Krieger <mikeyk@instagr.am>
* updating accepted parameters for subscriptions
2011-02-17 Mike Krieger <mikeyk@instagr.am>
* adding realtime support
2011-02-23 Shayne Sweeney <shayne@instagram.com>
* Init Image using object_from_dictionary for Python 2.5 support.
2011-02-21 Mike Krieger <mikeyk@instagr.am>
* Merge branch 'ghostrocket-master'
2011-02-20 Keith Fitzgerald <kfitzgerald@gmail.com>
* whoops, httplib2 is also required
2011-02-20 Keith Fitzgerald <kfitzgerald@gmail.com>
* install requires simplejson
2011-02-20 Keith Fitzgerald <kfitzgerald@gmail.com>
* this library requires simplejson
2011-02-20 Mike Krieger <mikeyk@instagr.am>
* adding commas as default to prevent confusion
2011-02-18 Mike Krieger <mikeyk@instagr.am>
* Adding scope support, updating XAuth parameters
2011-02-15 Mike Krieger <mikeyk@instagr.am>
* supports follow/unfollow updating test final API url
2011-02-04 Mike Krieger <mikeyk@instagr.am>
* adding fixtures for mocks support likes/ and comments/
2011-02-02 Mike Krieger <mikeyk@instagr.am>
* new models updated from comments
2011-02-02 Mike Krieger <mikeyk@instagr.am>
* adding /media and /media/../likers endpoint new sample app updating tests
2011-02-02 Mike Krieger <mikeyk@instagr.am>
* convert to datetime ll->latlng
2011-02-02 Mike Krieger <mikeyk@instagr.am>
* adding foursquare_id to acceptable paramters in location_search
2011-02-02 Mike Krieger <mikeyk@instagr.am>
* adding min/max timestamp support v2->v1
2011-02-01 Mike Krieger <mikeyk@instagr.am>
* add user agent add .json format
2011-02-01 Mike Krieger <mikeyk@instagr.am>
* small formatting tweak
2011-02-01 Mike Krieger <mikeyk@instagr.am>
* renaming README to README.md
2011-02-01 Mike Krieger <mikeyk@instagr.am>
* readme and one method change tweak
2011-02-01 Mike Krieger <mikeyk@instagr.am>
* Adding get_access_token helper script Adding test_settings support for local settings, and putting it in .gitignore
2011-02-01 Mike Krieger <mikeyk@instagr.am>
* Initial commit for python-instagram
2011-02-01 Mike Krieger <mikeyk@instagr.am>
* first commit
|