-
Notifications
You must be signed in to change notification settings - Fork 102
Added support for error handling #17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
08f4249
Update CLA process
86b2f08
add support for error handling
dibyadas dfa222a
few fixes
dibyadas 964c0f8
fix
dibyadas a89c59a
fix
dibyadas 2a3b176
trigger travis
dibyadas 5019bf0
Updating coveralls init
thinkingserious 76f7d8d
Updating coveralls init
thinkingserious d40c43d
Updating coveralls init
thinkingserious 2a87bd5
Remove coveralls
thinkingserious File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,16 @@ | ||
from .client import Client | ||
from .exceptions import ( | ||
HTTPError, | ||
BadRequestsError, | ||
UnauthorizedError, | ||
ForbiddenError, | ||
NotFoundError, | ||
MethodNotAllowedError, | ||
PayloadTooLargeError, | ||
UnsupportedMediaTypeError, | ||
TooManyRequestsError, | ||
InternalServerError, | ||
ServiceUnavailableError, | ||
GatewayTimeoutError | ||
) | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
class HTTPError(Exception): | ||
''' Base of all other errors''' | ||
def __init__(self,error): | ||
self.status_code = error.code | ||
self.reason = error.reason | ||
self.body = error.read() | ||
self.headers = error.hdrs | ||
|
||
class BadRequestsError(HTTPError): | ||
pass | ||
|
||
class UnauthorizedError(HTTPError): | ||
pass | ||
|
||
class ForbiddenError(HTTPError): | ||
pass | ||
|
||
class NotFoundError(HTTPError): | ||
pass | ||
|
||
class MethodNotAllowedError(HTTPError): | ||
pass | ||
|
||
class PayloadTooLargeError(HTTPError): | ||
pass | ||
|
||
class UnsupportedMediaTypeError(HTTPError): | ||
pass | ||
|
||
class TooManyRequestsError(HTTPError): | ||
pass | ||
|
||
class InternalServerError(HTTPError): | ||
pass | ||
|
||
class ServiceUnavailableError(HTTPError): | ||
pass | ||
|
||
class GatewayTimeoutError(HTTPError): | ||
pass | ||
|
||
err_dict = { 400 : BadRequestsError, | ||
401 : UnauthorizedError, | ||
403 : ForbiddenError, | ||
404 : NotFoundError, | ||
405 : MethodNotAllowedError, | ||
413 : PayloadTooLargeError, | ||
415 : UnsupportedMediaTypeError, | ||
429 : TooManyRequestsError, | ||
500 : InternalServerError, | ||
503 : ServiceUnavailableError, | ||
504 : GatewayTimeoutError | ||
} | ||
|
||
def handle_error(error): | ||
try: | ||
exc = err_dict[error.code](error) | ||
except KeyError as e: | ||
return HTTPError(error) | ||
return exc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could you please use spaces and pep8