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