Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def __init__(self, **kwargs):
super(HttpRequest, self).__init__(**kwargs)
self.authentication = kwargs.get('authentication', None)
self.uri = kwargs.get('uri', None)
self.method = kwargs.get('method', None)
self.body = kwargs.get('body', None)
self.headers = kwargs.get('headers', None)