moesif-aiohttp


Namemoesif-aiohttp JSON
Version 1.1.0 PyPI version JSON
download
home_pagehttps://www.moesif.com/docs/server-integration/python-aiohttp/
SummaryMoesif Middleware for AIOHTTP
upload_time2024-04-17 04:27:23
maintainerNone
docs_urlNone
authorMoesif, Inc
requires_pythonNone
licenseApache Software License
keywords log analysis restful api development debug wsgi flask bottle http middleware
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Moesif Middleware for AIOHTTP

[![Built For][ico-built-for]][link-built-for]
[![Latest Version][ico-version]][link-package]
[![Language Versions][ico-language]][link-language]
[![Software License][ico-license]][link-license]
[![Source Code][ico-source]][link-source]

AIOHTTP middleware that automatically logs _incoming_ API calls and sends to [Moesif](https://www.moesif.com) for API analytics and monitoring.

[Source Code on GitHub](https://github.com/moesif/moesif-aiohttp)


## How to install

```shell
pip install moesif_aiohttp
```

## Configuration options

For options that use the request and response as input arguments, these use the `aiohttp` web [request](https://docs.aiohttp.org/en/stable/web_reference.html#aiohttp.web.Request) or [response](https://docs.aiohttp.org/en/stable/web_reference.html#aiohttp.web.Response) objects. 

Please note that incase of the streaming api, the response object is [aiohttp_sse.EventSourceResponse](https://developer.mozilla.org/en-US/docs/Web/API/EventSource)

#### __`APPLICATION_ID`__
(__required__), _string_, is obtained via your Moesif Account, this is required.

#### __`SKIP`__
(optional) _(request, response) => boolean_, a function that takes a request and a response, and returns true if you want to skip this particular event.

#### __`IDENTIFY_USER`__
(optional, but highly recommended) _(request, response) => string_, a function that takes a request and a response, and returns a string that is the user id used by your system. While Moesif tries to identify users automatically,
but different frameworks and your implementation might be very different, it would be helpful and much more accurate to provide this function.

#### __`IDENTIFY_COMPANY`__
(optional) _(request, response) => string_, a function that takes a request and a response, and returns a string that is the company id for this event.

#### __`GET_METADATA`__
(optional) _(request, response) => dictionary_, getMetadata is a function that returns an object that allows you to add custom metadata that will be associated with the event. The metadata must be a dictionary that can be converted to JSON. For example, you may want to save a VM instance_id, a trace_id, or a tenant_id with the request.

#### __`GET_SESSION_TOKEN`__
(optional) _(request, response) => string_, a function that takes a request and a response, and returns a string that is the session token for this event. Again, Moesif tries to get the session token automatically, but if you setup is very different from standard, this function will be very help for tying events together, and help you replay the events.

#### __`MASK_EVENT_MODEL`__
(optional) _(EventModel) => EventModel_, a function that takes an EventModel and returns an EventModel with desired data removed. The return value must be a valid EventModel required by Moesif data ingestion API. For details regarding EventModel please see the [Moesif Python API Documentation](https://www.moesif.com/docs/api?python).

#### __`DEBUG`__
(optional) _boolean_, a flag to see debugging messages.

#### __`LOG_BODY`__
(optional) _boolean_, default True, Set to False to remove logging request and response body.

#### __`EVENT_QUEUE_SIZE`__
(optional) __int__, default 1000000, the maximum number of event objects queued in memory pending upload to Moesif.  If the queue is full additional calls to `MoesifMiddleware` will return immediately without logging the event, so this number should be set based on the expected event size and memory capacity

### __`EVENT_WORKER_COUNT`__
(optional) __int__, default 2, the number of worker threads to use for uploading events to Moesif. If you have a large number of events being logged, increasing this number can improve upload performance.

#### __`BATCH_SIZE`__
(optional) __int__, default 100, Maximum batch size when sending events to Moesif when reading from the queue

#### __`EVENT_BATCH_TIMEOUT`__
(optional) __int__, default 2, Maximum time in seconds to wait before sending a batch of events to Moesif when reading from the queue

#### __`AUTHORIZATION_HEADER_NAME`__
(optional) _string_, A request header field name used to identify the User in Moesif. Default value is `authorization`. Also, supports a comma separated string. We will check headers in order like `"X-Api-Key,Authorization"`.

#### __`AUTHORIZATION_USER_ID_FIELD`__
(optional) _string_, A field name used to parse the User from authorization header in Moesif. Default value is `sub`.

#### __`BASE_URI`__
(optional) _string_, A local proxy hostname when sending traffic via secure proxy. Please set this field when using secure proxy. For more details, refer [secure proxy documentation.](https://www.moesif.com/docs/platform/secure-proxy/#2-configure-moesif-sdk)

### Example:

```python
def identify_user(request, response):
    # Your custom code that returns a user id string
    return "12345"

def identify_company(request, response):
    # Your custom code that returns a company id string
    return "67890"

def should_skip(request, response):
    # Your custom code that returns true to skip logging
    return "health/probe" in request.url

def get_token(request, response):
    # If you don't want to use the standard WSGI session token,
    # add your custom code that returns a string for session/API token
    return "XXXXXXXXXXXXXX"

def mask_event(eventmodel):
    # Your custom code to change or remove any sensitive fields
    if 'password' in eventmodel.response.body:
        eventmodel.response.body['password'] = None
    return eventmodel

def get_metadata(app, environ):
    return {
        'datacenter': 'westus',
        'deployment_version': 'v1.2.3',
    }

moesif_settings = {
    'APPLICATION_ID': 'Your Moesif Application Id',
    'DEBUG': False,
    'LOG_BODY': True,
    'IDENTIFY_USER': identify_user,
    'IDENTIFY_COMPANY': identify_company,
    'GET_SESSION_TOKEN': get_token,
    'SKIP': should_skip,
    'MASK_EVENT_MODEL': mask_event,
    'GET_METADATA': get_metadata,
    'CAPTURE_OUTGOING_REQUESTS': False
}

app = web.Application(
        middlewares=[MoesifMiddleware(moesif_settings)],
    )
```

## Update User

### Update A Single User
Create or update a user profile in Moesif.
The metadata field can be any customer demographic or other info you want to store.
Only the `user_id` field is required.
For details, visit the [Python API Reference](https://www.moesif.com/docs/api?python#update-a-user).

```python
moesif_settings = {
    'APPLICATION_ID': 'Your Moesif Application Id',
}

# Only user_id is required.
# Campaign object is optional, but useful if you want to track ROI of acquisition channels
# See https://www.moesif.com/docs/api#users for campaign schema
# metadata can be any custom object
user = {
  'user_id': '12345',
  'company_id': '67890', # If set, associate user with a company object
  'campaign': {
    'utm_source': 'google',
    'utm_medium': 'cpc', 
    'utm_campaign': 'adwords',
    'utm_term': 'api+tooling',
    'utm_content': 'landing'
  },
  'metadata': {
    'email': 'john@acmeinc.com',
    'first_name': 'John',
    'last_name': 'Doe',
    'title': 'Software Engineer',
    'sales_info': {
        'stage': 'Customer',
        'lifetime_value': 24000,
        'account_owner': 'mary@contoso.com'
    },
  }
}

update_user = MoesifMiddleware(moesif_settings).update_user(user)
```

### Update Users in Batch
Similar to update_user, but used to update a list of users in one batch. 
Only the `user_id` field is required.
For details, visit the [Python API Reference](https://www.moesif.com/docs/api?python#update-users-in-batch).

```python
moesif_settings = {
    'APPLICATION_ID': 'Your Moesif Application Id',
}

userA = {
  'user_id': '12345',
  'company_id': '67890', # If set, associate user with a company object
  'metadata': {
    'email': 'john@acmeinc.com',
    'first_name': 'John',
    'last_name': 'Doe',
    'title': 'Software Engineer',
    'sales_info': {
        'stage': 'Customer',
        'lifetime_value': 24000,
        'account_owner': 'mary@contoso.com'
    },
  }
}

userB = {
  'user_id': '54321',
  'company_id': '67890', # If set, associate user with a company object
  'metadata': {
    'email': 'mary@acmeinc.com',
    'first_name': 'Mary',
    'last_name': 'Jane',
    'title': 'Software Engineer',
    'sales_info': {
        'stage': 'Customer',
        'lifetime_value': 48000,
        'account_owner': 'mary@contoso.com'
    },
  }
}
update_users = MoesifMiddleware(moesif_settings).update_users_batch([userA, userB])
```

## Update Company

### Update A Single Company
Create or update a company profile in Moesif.
The metadata field can be any company demographic or other info you want to store.
Only the `company_id` field is required.
For details, visit the [Python API Reference](https://www.moesif.com/docs/api?python#update-a-company).

```python
moesif_settings = {
    'APPLICATION_ID': 'Your Moesif Application Id',
}

# Only company_id is required.
# Campaign object is optional, but useful if you want to track ROI of acquisition channels
# See https://www.moesif.com/docs/api#update-a-company for campaign schema
# metadata can be any custom object
company = {
  'company_id': '67890',
  'company_domain': 'acmeinc.com', # If domain is set, Moesif will enrich your profiles with publicly available info 
  'campaign': {
    'utm_source': 'google',
    'utm_medium': 'cpc', 
    'utm_campaign': 'adwords',
    'utm_term': 'api+tooling',
    'utm_content': 'landing'
  },
  'metadata': {
    'org_name': 'Acme, Inc',
    'plan_name': 'Free',
    'deal_stage': 'Lead',
    'mrr': 24000,
    'demographics': {
        'alexa_ranking': 500000,
        'employee_count': 47
    },
  }
}

update_company = MoesifMiddleware(moesif_settings).update_company(company)
```

### Update Companies in Batch
Similar to update_company, but used to update a list of companies in one batch. 
Only the `company_id` field is required.
For details, visit the [Python API Reference](https://www.moesif.com/docs/api?python#update-companies-in-batch).

```python
moesif_settings = {
    'APPLICATION_ID': 'Your Moesif Application Id',
}

companyA = {
  'company_id': '67890',
  'company_domain': 'acmeinc.com', # If domain is set, Moesif will enrich your profiles with publicly available info 
  'metadata': {
    'org_name': 'Acme, Inc',
    'plan_name': 'Free',
    'deal_stage': 'Lead',
    'mrr': 24000,
    'demographics': {
        'alexa_ranking': 500000,
        'employee_count': 47
    },
  }
}

companyB = {
  'company_id': '09876',
  'company_domain': 'contoso.com', # If domain is set, Moesif will enrich your profiles with publicly available info 
  'metadata': {
    'org_name': 'Contoso, Inc',
    'plan_name': 'Free',
    'deal_stage': 'Lead',
    'mrr': 48000,
    'demographics': {
        'alexa_ranking': 500000,
        'employee_count': 53
    },
  }
}

update_companies = MoesifMiddleware(moesif_settings).update_companies_batch([companyA, companyB])
```

## Other integrations

To view more documentation on integration options, please visit __[the Integration Options Documentation](https://www.moesif.com/docs/getting-started/integration-options/).__

[ico-built-for]: https://img.shields.io/badge/built%20for-python%20aiohttp-blue.svg
[ico-version]: https://img.shields.io/pypi/v/moesif-aiohttp.svg
[ico-language]: https://img.shields.io/pypi/pyversions/moesif-aiohttp.svg
[ico-license]: https://img.shields.io/badge/License-Apache%202.0-green.svg
[ico-source]: https://img.shields.io/github/last-commit/moesif/moesif-aiohttp.svg?style=social

[link-built-for]: https://en.wikipedia.org/wiki/Web_Server_Gateway_Interface
[link-package]: https://pypi.python.org/pypi/moesif-aiohttp
[link-language]: https://pypi.python.org/pypi/moesif-aiohttp
[link-license]: https://raw.githubusercontent.com/Moesif/moesif-aiohttp/master/LICENSE
[link-source]: https://github.com/Moesif/moesif-aiohttp

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.moesif.com/docs/server-integration/python-aiohttp/",
    "name": "moesif-aiohttp",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "log analysis restful api development debug wsgi flask bottle http middleware",
    "author": "Moesif, Inc",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/44/4e/d73b3e19d57b23961686d929ab27f743b16c0e23f5044ed472ecde54ed00/moesif_aiohttp-1.1.0.tar.gz",
    "platform": null,
    "description": "# Moesif Middleware for AIOHTTP\n\n[![Built For][ico-built-for]][link-built-for]\n[![Latest Version][ico-version]][link-package]\n[![Language Versions][ico-language]][link-language]\n[![Software License][ico-license]][link-license]\n[![Source Code][ico-source]][link-source]\n\nAIOHTTP middleware that automatically logs _incoming_ API calls and sends to [Moesif](https://www.moesif.com) for API analytics and monitoring.\n\n[Source Code on GitHub](https://github.com/moesif/moesif-aiohttp)\n\n\n## How to install\n\n```shell\npip install moesif_aiohttp\n```\n\n## Configuration options\n\nFor options that use the request and response as input arguments, these use the `aiohttp` web [request](https://docs.aiohttp.org/en/stable/web_reference.html#aiohttp.web.Request) or [response](https://docs.aiohttp.org/en/stable/web_reference.html#aiohttp.web.Response) objects. \n\nPlease note that incase of the streaming api, the response object is [aiohttp_sse.EventSourceResponse](https://developer.mozilla.org/en-US/docs/Web/API/EventSource)\n\n#### __`APPLICATION_ID`__\n(__required__), _string_, is obtained via your Moesif Account, this is required.\n\n#### __`SKIP`__\n(optional) _(request, response) => boolean_, a function that takes a request and a response, and returns true if you want to skip this particular event.\n\n#### __`IDENTIFY_USER`__\n(optional, but highly recommended) _(request, response) => string_, a function that takes a request and a response, and returns a string that is the user id used by your system. While Moesif tries to identify users automatically,\nbut different frameworks and your implementation might be very different, it would be helpful and much more accurate to provide this function.\n\n#### __`IDENTIFY_COMPANY`__\n(optional) _(request, response) => string_, a function that takes a request and a response, and returns a string that is the company id for this event.\n\n#### __`GET_METADATA`__\n(optional) _(request, response) => dictionary_, getMetadata is a function that returns an object that allows you to add custom metadata that will be associated with the event. The metadata must be a dictionary that can be converted to JSON. For example, you may want to save a VM instance_id, a trace_id, or a tenant_id with the request.\n\n#### __`GET_SESSION_TOKEN`__\n(optional) _(request, response) => string_, a function that takes a request and a response, and returns a string that is the session token for this event. Again, Moesif tries to get the session token automatically, but if you setup is very different from standard, this function will be very help for tying events together, and help you replay the events.\n\n#### __`MASK_EVENT_MODEL`__\n(optional) _(EventModel) => EventModel_, a function that takes an EventModel and returns an EventModel with desired data removed. The return value must be a valid EventModel required by Moesif data ingestion API. For details regarding EventModel please see the [Moesif Python API Documentation](https://www.moesif.com/docs/api?python).\n\n#### __`DEBUG`__\n(optional) _boolean_, a flag to see debugging messages.\n\n#### __`LOG_BODY`__\n(optional) _boolean_, default True, Set to False to remove logging request and response body.\n\n#### __`EVENT_QUEUE_SIZE`__\n(optional) __int__, default 1000000, the maximum number of event objects queued in memory pending upload to Moesif.  If the queue is full additional calls to `MoesifMiddleware` will return immediately without logging the event, so this number should be set based on the expected event size and memory capacity\n\n### __`EVENT_WORKER_COUNT`__\n(optional) __int__, default 2, the number of worker threads to use for uploading events to Moesif. If you have a large number of events being logged, increasing this number can improve upload performance.\n\n#### __`BATCH_SIZE`__\n(optional) __int__, default 100, Maximum batch size when sending events to Moesif when reading from the queue\n\n#### __`EVENT_BATCH_TIMEOUT`__\n(optional) __int__, default 2, Maximum time in seconds to wait before sending a batch of events to Moesif when reading from the queue\n\n#### __`AUTHORIZATION_HEADER_NAME`__\n(optional) _string_, A request header field name used to identify the User in Moesif. Default value is `authorization`. Also, supports a comma separated string. We will check headers in order like `\"X-Api-Key,Authorization\"`.\n\n#### __`AUTHORIZATION_USER_ID_FIELD`__\n(optional) _string_, A field name used to parse the User from authorization header in Moesif. Default value is `sub`.\n\n#### __`BASE_URI`__\n(optional) _string_, A local proxy hostname when sending traffic via secure proxy. Please set this field when using secure proxy. For more details, refer [secure proxy documentation.](https://www.moesif.com/docs/platform/secure-proxy/#2-configure-moesif-sdk)\n\n### Example:\n\n```python\ndef identify_user(request, response):\n    # Your custom code that returns a user id string\n    return \"12345\"\n\ndef identify_company(request, response):\n    # Your custom code that returns a company id string\n    return \"67890\"\n\ndef should_skip(request, response):\n    # Your custom code that returns true to skip logging\n    return \"health/probe\" in request.url\n\ndef get_token(request, response):\n    # If you don't want to use the standard WSGI session token,\n    # add your custom code that returns a string for session/API token\n    return \"XXXXXXXXXXXXXX\"\n\ndef mask_event(eventmodel):\n    # Your custom code to change or remove any sensitive fields\n    if 'password' in eventmodel.response.body:\n        eventmodel.response.body['password'] = None\n    return eventmodel\n\ndef get_metadata(app, environ):\n    return {\n        'datacenter': 'westus',\n        'deployment_version': 'v1.2.3',\n    }\n\nmoesif_settings = {\n    'APPLICATION_ID': 'Your Moesif Application Id',\n    'DEBUG': False,\n    'LOG_BODY': True,\n    'IDENTIFY_USER': identify_user,\n    'IDENTIFY_COMPANY': identify_company,\n    'GET_SESSION_TOKEN': get_token,\n    'SKIP': should_skip,\n    'MASK_EVENT_MODEL': mask_event,\n    'GET_METADATA': get_metadata,\n    'CAPTURE_OUTGOING_REQUESTS': False\n}\n\napp = web.Application(\n        middlewares=[MoesifMiddleware(moesif_settings)],\n    )\n```\n\n## Update User\n\n### Update A Single User\nCreate or update a user profile in Moesif.\nThe metadata field can be any customer demographic or other info you want to store.\nOnly the `user_id` field is required.\nFor details, visit the [Python API Reference](https://www.moesif.com/docs/api?python#update-a-user).\n\n```python\nmoesif_settings = {\n    'APPLICATION_ID': 'Your Moesif Application Id',\n}\n\n# Only user_id is required.\n# Campaign object is optional, but useful if you want to track ROI of acquisition channels\n# See https://www.moesif.com/docs/api#users for campaign schema\n# metadata can be any custom object\nuser = {\n  'user_id': '12345',\n  'company_id': '67890', # If set, associate user with a company object\n  'campaign': {\n    'utm_source': 'google',\n    'utm_medium': 'cpc', \n    'utm_campaign': 'adwords',\n    'utm_term': 'api+tooling',\n    'utm_content': 'landing'\n  },\n  'metadata': {\n    'email': 'john@acmeinc.com',\n    'first_name': 'John',\n    'last_name': 'Doe',\n    'title': 'Software Engineer',\n    'sales_info': {\n        'stage': 'Customer',\n        'lifetime_value': 24000,\n        'account_owner': 'mary@contoso.com'\n    },\n  }\n}\n\nupdate_user = MoesifMiddleware(moesif_settings).update_user(user)\n```\n\n### Update Users in Batch\nSimilar to update_user, but used to update a list of users in one batch. \nOnly the `user_id` field is required.\nFor details, visit the [Python API Reference](https://www.moesif.com/docs/api?python#update-users-in-batch).\n\n```python\nmoesif_settings = {\n    'APPLICATION_ID': 'Your Moesif Application Id',\n}\n\nuserA = {\n  'user_id': '12345',\n  'company_id': '67890', # If set, associate user with a company object\n  'metadata': {\n    'email': 'john@acmeinc.com',\n    'first_name': 'John',\n    'last_name': 'Doe',\n    'title': 'Software Engineer',\n    'sales_info': {\n        'stage': 'Customer',\n        'lifetime_value': 24000,\n        'account_owner': 'mary@contoso.com'\n    },\n  }\n}\n\nuserB = {\n  'user_id': '54321',\n  'company_id': '67890', # If set, associate user with a company object\n  'metadata': {\n    'email': 'mary@acmeinc.com',\n    'first_name': 'Mary',\n    'last_name': 'Jane',\n    'title': 'Software Engineer',\n    'sales_info': {\n        'stage': 'Customer',\n        'lifetime_value': 48000,\n        'account_owner': 'mary@contoso.com'\n    },\n  }\n}\nupdate_users = MoesifMiddleware(moesif_settings).update_users_batch([userA, userB])\n```\n\n## Update Company\n\n### Update A Single Company\nCreate or update a company profile in Moesif.\nThe metadata field can be any company demographic or other info you want to store.\nOnly the `company_id` field is required.\nFor details, visit the [Python API Reference](https://www.moesif.com/docs/api?python#update-a-company).\n\n```python\nmoesif_settings = {\n    'APPLICATION_ID': 'Your Moesif Application Id',\n}\n\n# Only company_id is required.\n# Campaign object is optional, but useful if you want to track ROI of acquisition channels\n# See https://www.moesif.com/docs/api#update-a-company for campaign schema\n# metadata can be any custom object\ncompany = {\n  'company_id': '67890',\n  'company_domain': 'acmeinc.com', # If domain is set, Moesif will enrich your profiles with publicly available info \n  'campaign': {\n    'utm_source': 'google',\n    'utm_medium': 'cpc', \n    'utm_campaign': 'adwords',\n    'utm_term': 'api+tooling',\n    'utm_content': 'landing'\n  },\n  'metadata': {\n    'org_name': 'Acme, Inc',\n    'plan_name': 'Free',\n    'deal_stage': 'Lead',\n    'mrr': 24000,\n    'demographics': {\n        'alexa_ranking': 500000,\n        'employee_count': 47\n    },\n  }\n}\n\nupdate_company = MoesifMiddleware(moesif_settings).update_company(company)\n```\n\n### Update Companies in Batch\nSimilar to update_company, but used to update a list of companies in one batch. \nOnly the `company_id` field is required.\nFor details, visit the [Python API Reference](https://www.moesif.com/docs/api?python#update-companies-in-batch).\n\n```python\nmoesif_settings = {\n    'APPLICATION_ID': 'Your Moesif Application Id',\n}\n\ncompanyA = {\n  'company_id': '67890',\n  'company_domain': 'acmeinc.com', # If domain is set, Moesif will enrich your profiles with publicly available info \n  'metadata': {\n    'org_name': 'Acme, Inc',\n    'plan_name': 'Free',\n    'deal_stage': 'Lead',\n    'mrr': 24000,\n    'demographics': {\n        'alexa_ranking': 500000,\n        'employee_count': 47\n    },\n  }\n}\n\ncompanyB = {\n  'company_id': '09876',\n  'company_domain': 'contoso.com', # If domain is set, Moesif will enrich your profiles with publicly available info \n  'metadata': {\n    'org_name': 'Contoso, Inc',\n    'plan_name': 'Free',\n    'deal_stage': 'Lead',\n    'mrr': 48000,\n    'demographics': {\n        'alexa_ranking': 500000,\n        'employee_count': 53\n    },\n  }\n}\n\nupdate_companies = MoesifMiddleware(moesif_settings).update_companies_batch([companyA, companyB])\n```\n\n## Other integrations\n\nTo view more documentation on integration options, please visit __[the Integration Options Documentation](https://www.moesif.com/docs/getting-started/integration-options/).__\n\n[ico-built-for]: https://img.shields.io/badge/built%20for-python%20aiohttp-blue.svg\n[ico-version]: https://img.shields.io/pypi/v/moesif-aiohttp.svg\n[ico-language]: https://img.shields.io/pypi/pyversions/moesif-aiohttp.svg\n[ico-license]: https://img.shields.io/badge/License-Apache%202.0-green.svg\n[ico-source]: https://img.shields.io/github/last-commit/moesif/moesif-aiohttp.svg?style=social\n\n[link-built-for]: https://en.wikipedia.org/wiki/Web_Server_Gateway_Interface\n[link-package]: https://pypi.python.org/pypi/moesif-aiohttp\n[link-language]: https://pypi.python.org/pypi/moesif-aiohttp\n[link-license]: https://raw.githubusercontent.com/Moesif/moesif-aiohttp/master/LICENSE\n[link-source]: https://github.com/Moesif/moesif-aiohttp\n",
    "bugtrack_url": null,
    "license": "Apache Software License",
    "summary": "Moesif Middleware for AIOHTTP",
    "version": "1.1.0",
    "project_urls": {
        "Homepage": "https://www.moesif.com/docs/server-integration/python-aiohttp/"
    },
    "split_keywords": [
        "log",
        "analysis",
        "restful",
        "api",
        "development",
        "debug",
        "wsgi",
        "flask",
        "bottle",
        "http",
        "middleware"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c55c890c57f8e2a8df1b61e15fc51d5e78ef846df3a50c17e6e6eadbab6e01c",
                "md5": "9fed0352a21251e5b94b4d154fcfaa08",
                "sha256": "950260791ef6627e8e8f44e0450ea63513be51b7e1f343513e223052f860a34a"
            },
            "downloads": -1,
            "filename": "moesif_aiohttp-1.1.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9fed0352a21251e5b94b4d154fcfaa08",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 20918,
            "upload_time": "2024-04-17T04:27:21",
            "upload_time_iso_8601": "2024-04-17T04:27:21.297403Z",
            "url": "https://files.pythonhosted.org/packages/7c/55/c890c57f8e2a8df1b61e15fc51d5e78ef846df3a50c17e6e6eadbab6e01c/moesif_aiohttp-1.1.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "444ed73b3e19d57b23961686d929ab27f743b16c0e23f5044ed472ecde54ed00",
                "md5": "066abc06170080fa9bfbd18ed059d0ca",
                "sha256": "220f6ba30435fc50d2f33c0cfbc5ab95119a55d582f8d0452983cc91eda2b0be"
            },
            "downloads": -1,
            "filename": "moesif_aiohttp-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "066abc06170080fa9bfbd18ed059d0ca",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 18431,
            "upload_time": "2024-04-17T04:27:23",
            "upload_time_iso_8601": "2024-04-17T04:27:23.091873Z",
            "url": "https://files.pythonhosted.org/packages/44/4e/d73b3e19d57b23961686d929ab27f743b16c0e23f5044ed472ecde54ed00/moesif_aiohttp-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-17 04:27:23",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "moesif-aiohttp"
}
        
Elapsed time: 0.23894s