aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/core (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-05-12Some fixes/typos and 'validate_body' relatedDavid Medina1-1/+1
2012-05-12Unify json importsDavid Medina2-5/+6
2012-04-17add pull request APINat Williams1-1/+1
there are a few little issues remaining. Mostly regarding handling meaningful non-20x response codes
2012-03-04Fix 422 messageDavid Medina1-2/+1
2012-03-04Get repository's commits supported with new resultDavid Medina3-13/+14
2012-03-04Refactor result. Now it's a packageDavid Medina6-208/+336
result.smart => Paginate iterator with 'page' behaviour. result.normal => Paginate iterator with 'next' behaviour.
2012-03-04Wrap result getter into partial. It's cleanerDavid Medina1-4/+3
2012-03-04Encapsulate Link header behaviourDavid Medina2-22/+44
2012-03-03remaining_requests attr to Github and ServicesDavid Medina1-0/+4
Updated with each request
2012-03-01Python 2.6 compatibilityDavid Medina2-1/+101
2012-03-01Complete services.repos docDavid Medina1-0/+32
Also add Mimetypes doc
2012-02-29Init documentationDavid Medina2-8/+8
+core +services.user ~services.repos
2012-02-17Services' renaming: base.Base to base.ServiceDavid Medina1-1/+1
2012-02-11Fix asserts bugs in client.David Medina1-7/+5
Fixing something that is there to check what never happens... But tests doesn't lie, so funny :P
2012-02-10Fix asserts bugs in client.David Medina1-7/+5
Fixing something that is there to check what never happens... But tests doesn't lie, so funny :P
2012-02-07Fix litle bugsDavid Medina1-2/+2
2012-02-07Clean requests interfaceDavid Medina3-16/+13
Refactorize on build request to support specific requests cleaner *Also support to verbose on requests library
2012-02-06Something confusing about PUT requestDavid Medina1-5/+2
It's solved as a provisional patch
2012-02-06Rename ghrequest to requestsDavid Medina6-356/+0
I think it's a redundant name. Only needs to move out from core module to avoid imports problems with `requests` library * Also change some in setup.py
2012-02-05User service completeDavid Medina7-11/+135
User.emails User.keys User.followers
2012-02-05Complete skeleton of services glueing to requestsDavid Medina2-4/+23
2012-02-05Added asserts to "that never happens"David Medina2-10/+31
Also fix response raises
2012-02-04Renaming (What I was thinking?)David Medina11-133/+217
resources => ghrequests models => resources + Also it's near to complete user service
2012-02-04Full support to Result dynamic and lazy iteratorDavid Medina1-0/+171
It paginate the requests that needs and does the real requests in the final moment
2012-02-04link_header third party libraryDavid Medina2-0/+89
2012-02-04Improve modelsDavid Medina1-2/+9
Now the models maps itself from json encoded Then we can inherit it and change behaviour to use polymorphism into resources ;)
2012-02-03Fix parse_argsDavid Medina1-2/+4
2012-02-03Fix imports to new environmentDavid Medina9-0/+262
Absolute imports as PEP8 tells