moesifasgi


Namemoesifasgi JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://www.moesif.com/docs/server-integration/python-asgi/
SummaryMoesif Middleware for Python ASGI based platforms (FastAPI & Others)
upload_time2024-04-15 17:34:55
maintainerNone
docs_urlNone
authorMoesif, Inc
requires_pythonNone
licenseApache Software License
keywords log analysis restful api development debug asgi fastapi http middleware
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Moesif Middleware for Python ASGI based Frameworks

[![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]

ASGI middleware that automatically logs _incoming_ or _outgoing_ API calls and sends to [Moesif](https://www.moesif.com) for API analytics and monitoring.
Supports Python Frameworks built on ASGI such as FastAPI and more.

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

[ASGI (Asynchronous Server Gateway Interface)](https://asgi.readthedocs.io/en/latest/)
is a spiritual successor to WSGI, intended to provide a standard interface between async-capable Python web servers, frameworks, and applications. Many Python Frameworks
are build on top of ASGI, such as [FastAPI](https://fastapi.tiangolo.com/), etc.
Moesif ASGI Middleware help APIs that are build on top of these Frameworks to
easily integrate with [Moesif](https://www.moesif.com).

## How to install

```shell
pip install moesifasgi
```

## How to use

### FastAPI

Add Moesif middleware to fastAPI app.

```python
from moesifasgi import MoesifMiddleware

moesif_settings = {
    'APPLICATION_ID': 'Your Moesif Application id',
    'LOG_BODY': True,
    # ... For other options see below.
}

app = FastAPI()

app.add_middleware(MoesifMiddleware, settings=moesif_settings)

```

Your Moesif Application Id can be found in the [_Moesif Portal_](https://www.moesif.com/).
After signing up for a Moesif account, your Moesif Application Id will be displayed during the onboarding steps. 

You can always find your Moesif Application Id at any time by logging 
into the [_Moesif Portal_](https://www.moesif.com/), click on the top right menu,
and then clicking _API Keys_.

For an example with Flask, see example in the `/examples/flask` folder of this repo.

### Other ASGI frameworks

If you are using a framework that is built on top of ASGI, it should work just by adding the Moesif middleware.
Please read the documentation for your specific framework on how to add middleware.

## Configuration options

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

For options that use the request and response as input arguments, these use the [Requests](https://www.starlette.io/requests/) and [Responses](https://www.starlette.io/responses/) objects respectively.

#### __`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_, a function that takes a request and a response, and
returns a dictionary (must be able to be encoded into JSON). This allows your
to associate this event with custom metadata. 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.

#### __`BATCH_SIZE`__
(optional) __int__, default 25, Maximum batch size when sending events to Moesif.

#### __`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

#### __`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)

### Options specific to outgoing API calls 

The options below are applicable to outgoing API calls (calls you initiate using the Python [Requests](http://docs.python-requests.org/en/master/) lib to third parties like Stripe or to your own services).

For options that use the request and response as input arguments, these use the [Requests](http://docs.python-requests.org/en/master/api/) lib's request or response objects.

If you are not using ASGI, you can import the [moesifpythonrequest](https://github.com/Moesif/moesifpythonrequest) directly.

#### __`CAPTURE_OUTGOING_REQUESTS`__
_boolean_, Default False. Set to True to capture all outgoing API calls. False will disable this functionality. 

##### __`GET_METADATA_OUTGOING`__
(optional) _(req, res) => dictionary_, a function that enables you to return custom metadata associated with the logged API calls. 
Takes in the [Requests](http://docs.python-requests.org/en/master/api/) request and response object as arguments. You should implement a function that 
returns a dictionary containing your custom metadata. (must be able to be encoded into JSON). For example, you may want to save a VM instance_id, a trace_id, or a resource_id with the request.

##### __`SKIP_OUTGOING`__
(optional) _(req, res) => boolean_, a function that takes a [Requests](http://docs.python-requests.org/en/master/api/) request and response,
and returns true if you want to skip this particular event.

##### __`IDENTIFY_USER_OUTGOING`__
(optional, but highly recommended) _(req, res) => string_, a function that takes [Requests](http://docs.python-requests.org/en/master/api/) request and 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_OUTGOING`__
(optional) _(req, res) => string_, a function that takes [Requests](http://docs.python-requests.org/en/master/api/) request and response, and returns a string that is the company id for this event.

##### __`GET_SESSION_TOKEN_OUTGOING`__
(optional) _(req, res) => string_, a function that takes [Requests](http://docs.python-requests.org/en/master/api/) request and 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.

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

### Example:

```python
# Your custom code that returns a user id string
custom_user = "12345"

async def custom_identify_user():
    return custom_user

# identify user using async mode
async def identify_user(request, response):
    user = await custom_identify_user()
    return user

# identify user not using async mode
def identify_user(request, response):
    return custom_user

# Your custom code that returns a company id string
custom_company = "67890"

async def custom_identify_company():
    return custom_company

# identify company using async mode
async def identify_company(request, response):
    company = await custom_identify_company()
    return company

# identify company not using async mode
def identify_company(request, response):
    return custom_company

custom_session_token = "XXXXXXXXXXXXXX"

async def custom_get_token():
    # If you don't want to use the standard ASGI session token,
    # add your custom code that returns a string for session/API token
    return custom_session_token

# get session token using async mode
async def get_token(request, response):
    result = await custom_get_token()
    return result

# get session token not using async mode
def get_token(request, response):
    return custom_session_token

custom_metadata = {
    'datacenter': 'westus',
    'deployment_version': 'v1.2.3',
}

async def custom_get_metadata():
    return custom_metadata

# get metadata using async mode
async def get_metadata(request, response):
    result = await custom_get_metadata()
    return result

# get metadata not using async mode
def get_metadata(request, response):
    return custom_metadata

skip_route = "health/probe"

async def custom_should_skip(request):
    # Your custom code that returns true to skip logging
    return skip_route in request.url._url

# should skip check using async mode
async def should_skip(request, response):
    result = await custom_should_skip(request)
    return result

# should skip check not using async mode
def should_skip(request, response):
    return skip_route in request.url._url

def custom_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

# mask event using async mode
async def mask_event(eventmodel):
    return custom_mask_event(eventmodel)

# mask event not using async mode
def mask_event(eventmodel):
    return custom_mask_event(eventmodel)


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 = FastAPI()

app.add_middleware(MoesifMiddleware, settings=moesif_settings)

```

**`OAuth2`** can also been used [more info](https://fastapi.tiangolo.com/tutorial/security/oauth2-jwt/)
## Tested versions

Moesif has validated `Moesif.Middleware` against the following framework.

|         | Framework Version |
|---------|-------------------|
| fastapi | > 0.51.0 - 0.78.0 |
| fastapi |  0.108.0          |

## 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%20asgi-blue.svg
[ico-version]: https://img.shields.io/pypi/v/moesifasgi.svg
[ico-language]: https://img.shields.io/pypi/pyversions/moesifasgi.svg
[ico-license]: https://img.shields.io/badge/License-Apache%202.0-green.svg
[ico-source]: https://img.shields.io/github/last-commit/moesif/moesifasgi.svg?style=social

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

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.moesif.com/docs/server-integration/python-asgi/",
    "name": "moesifasgi",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "log analysis restful api development debug asgi fastapi http middleware",
    "author": "Moesif, Inc",
    "author_email": "keyur@moesif.com",
    "download_url": "https://files.pythonhosted.org/packages/70/43/b0ff24c5c896f30f48997a4ca763376f1aed53a6965d74362c325f0e7188/moesifasgi-1.0.0.tar.gz",
    "platform": null,
    "description": "# Moesif Middleware for Python ASGI based Frameworks\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\nASGI middleware that automatically logs _incoming_ or _outgoing_ API calls and sends to [Moesif](https://www.moesif.com) for API analytics and monitoring.\nSupports Python Frameworks built on ASGI such as FastAPI and more.\n\n[Source Code on GitHub](https://github.com/moesif/moesifasgi)\n\n[ASGI (Asynchronous Server Gateway Interface)](https://asgi.readthedocs.io/en/latest/)\nis a spiritual successor to WSGI, intended to provide a standard interface between async-capable Python web servers, frameworks, and applications. Many Python Frameworks\nare build on top of ASGI, such as [FastAPI](https://fastapi.tiangolo.com/), etc.\nMoesif ASGI Middleware help APIs that are build on top of these Frameworks to\neasily integrate with [Moesif](https://www.moesif.com).\n\n## How to install\n\n```shell\npip install moesifasgi\n```\n\n## How to use\n\n### FastAPI\n\nAdd Moesif middleware to fastAPI app.\n\n```python\nfrom moesifasgi import MoesifMiddleware\n\nmoesif_settings = {\n    'APPLICATION_ID': 'Your Moesif Application id',\n    'LOG_BODY': True,\n    # ... For other options see below.\n}\n\napp = FastAPI()\n\napp.add_middleware(MoesifMiddleware, settings=moesif_settings)\n\n```\n\nYour Moesif Application Id can be found in the [_Moesif Portal_](https://www.moesif.com/).\nAfter signing up for a Moesif account, your Moesif Application Id will be displayed during the onboarding steps. \n\nYou can always find your Moesif Application Id at any time by logging \ninto the [_Moesif Portal_](https://www.moesif.com/), click on the top right menu,\nand then clicking _API Keys_.\n\nFor an example with Flask, see example in the `/examples/flask` folder of this repo.\n\n### Other ASGI frameworks\n\nIf you are using a framework that is built on top of ASGI, it should work just by adding the Moesif middleware.\nPlease read the documentation for your specific framework on how to add middleware.\n\n## Configuration options\n\n#### __`APPLICATION_ID`__\n(__required__), _string_, is obtained via your Moesif Account, this is required.\n\nFor options that use the request and response as input arguments, these use the [Requests](https://www.starlette.io/requests/) and [Responses](https://www.starlette.io/responses/) objects respectively.\n\n#### __`SKIP`__\n(optional) _(request, response) => boolean_, a function that takes a request and a response,\nand 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_, a function that takes a request and a response, and\nreturns a dictionary (must be able to be encoded into JSON). This allows your\nto associate this event with custom metadata. 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#### __`BATCH_SIZE`__\n(optional) __int__, default 25, Maximum batch size when sending events to Moesif.\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#### __`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### Options specific to outgoing API calls \n\nThe options below are applicable to outgoing API calls (calls you initiate using the Python [Requests](http://docs.python-requests.org/en/master/) lib to third parties like Stripe or to your own services).\n\nFor options that use the request and response as input arguments, these use the [Requests](http://docs.python-requests.org/en/master/api/) lib's request or response objects.\n\nIf you are not using ASGI, you can import the [moesifpythonrequest](https://github.com/Moesif/moesifpythonrequest) directly.\n\n#### __`CAPTURE_OUTGOING_REQUESTS`__\n_boolean_, Default False. Set to True to capture all outgoing API calls. False will disable this functionality. \n\n##### __`GET_METADATA_OUTGOING`__\n(optional) _(req, res) => dictionary_, a function that enables you to return custom metadata associated with the logged API calls. \nTakes in the [Requests](http://docs.python-requests.org/en/master/api/) request and response object as arguments. You should implement a function that \nreturns a dictionary containing your custom metadata. (must be able to be encoded into JSON). For example, you may want to save a VM instance_id, a trace_id, or a resource_id with the request.\n\n##### __`SKIP_OUTGOING`__\n(optional) _(req, res) => boolean_, a function that takes a [Requests](http://docs.python-requests.org/en/master/api/) request and response,\nand returns true if you want to skip this particular event.\n\n##### __`IDENTIFY_USER_OUTGOING`__\n(optional, but highly recommended) _(req, res) => string_, a function that takes [Requests](http://docs.python-requests.org/en/master/api/) request and 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_OUTGOING`__\n(optional) _(req, res) => string_, a function that takes [Requests](http://docs.python-requests.org/en/master/api/) request and response, and returns a string that is the company id for this event.\n\n##### __`GET_SESSION_TOKEN_OUTGOING`__\n(optional) _(req, res) => string_, a function that takes [Requests](http://docs.python-requests.org/en/master/api/) request and 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##### __`LOG_BODY_OUTGOING`__\n(optional) _boolean_, default True, Set to False to remove logging request and response body.\n\n### Example:\n\n```python\n# Your custom code that returns a user id string\ncustom_user = \"12345\"\n\nasync def custom_identify_user():\n    return custom_user\n\n# identify user using async mode\nasync def identify_user(request, response):\n    user = await custom_identify_user()\n    return user\n\n# identify user not using async mode\ndef identify_user(request, response):\n    return custom_user\n\n# Your custom code that returns a company id string\ncustom_company = \"67890\"\n\nasync def custom_identify_company():\n    return custom_company\n\n# identify company using async mode\nasync def identify_company(request, response):\n    company = await custom_identify_company()\n    return company\n\n# identify company not using async mode\ndef identify_company(request, response):\n    return custom_company\n\ncustom_session_token = \"XXXXXXXXXXXXXX\"\n\nasync def custom_get_token():\n    # If you don't want to use the standard ASGI session token,\n    # add your custom code that returns a string for session/API token\n    return custom_session_token\n\n# get session token using async mode\nasync def get_token(request, response):\n    result = await custom_get_token()\n    return result\n\n# get session token not using async mode\ndef get_token(request, response):\n    return custom_session_token\n\ncustom_metadata = {\n    'datacenter': 'westus',\n    'deployment_version': 'v1.2.3',\n}\n\nasync def custom_get_metadata():\n    return custom_metadata\n\n# get metadata using async mode\nasync def get_metadata(request, response):\n    result = await custom_get_metadata()\n    return result\n\n# get metadata not using async mode\ndef get_metadata(request, response):\n    return custom_metadata\n\nskip_route = \"health/probe\"\n\nasync def custom_should_skip(request):\n    # Your custom code that returns true to skip logging\n    return skip_route in request.url._url\n\n# should skip check using async mode\nasync def should_skip(request, response):\n    result = await custom_should_skip(request)\n    return result\n\n# should skip check not using async mode\ndef should_skip(request, response):\n    return skip_route in request.url._url\n\ndef custom_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\n# mask event using async mode\nasync def mask_event(eventmodel):\n    return custom_mask_event(eventmodel)\n\n# mask event not using async mode\ndef mask_event(eventmodel):\n    return custom_mask_event(eventmodel)\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 = FastAPI()\n\napp.add_middleware(MoesifMiddleware, settings=moesif_settings)\n\n```\n\n**`OAuth2`** can also been used [more info](https://fastapi.tiangolo.com/tutorial/security/oauth2-jwt/)\n## Tested versions\n\nMoesif has validated `Moesif.Middleware` against the following framework.\n\n|         | Framework Version |\n|---------|-------------------|\n| fastapi | > 0.51.0 - 0.78.0 |\n| fastapi |  0.108.0          |\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%20asgi-blue.svg\n[ico-version]: https://img.shields.io/pypi/v/moesifasgi.svg\n[ico-language]: https://img.shields.io/pypi/pyversions/moesifasgi.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/moesifasgi.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/moesifasgi\n[link-language]: https://pypi.python.org/pypi/moesifasgi\n[link-license]: https://raw.githubusercontent.com/Moesif/moesifasgi/master/LICENSE\n[link-source]: https://github.com/Moesif/moesifasgi\n",
    "bugtrack_url": null,
    "license": "Apache Software License",
    "summary": "Moesif Middleware for Python ASGI based platforms (FastAPI & Others)",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "https://www.moesif.com/docs/server-integration/python-asgi/"
    },
    "split_keywords": [
        "log",
        "analysis",
        "restful",
        "api",
        "development",
        "debug",
        "asgi",
        "fastapi",
        "http",
        "middleware"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c46d205df7af2a49a4cb36dbc68607c04432d482992d1ef975e7579b308e80ab",
                "md5": "033f1d182f32d83ea48297f8c33e310f",
                "sha256": "57833c0767f85eaeec5bdfb31e5d63f1158b748931d104e245949d9b527f1360"
            },
            "downloads": -1,
            "filename": "moesifasgi-1.0.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "033f1d182f32d83ea48297f8c33e310f",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 22497,
            "upload_time": "2024-04-15T17:34:53",
            "upload_time_iso_8601": "2024-04-15T17:34:53.544913Z",
            "url": "https://files.pythonhosted.org/packages/c4/6d/205df7af2a49a4cb36dbc68607c04432d482992d1ef975e7579b308e80ab/moesifasgi-1.0.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7043b0ff24c5c896f30f48997a4ca763376f1aed53a6965d74362c325f0e7188",
                "md5": "ce36097f623a9d4c6fd8fb1557c5995e",
                "sha256": "e5c5468696d9fd6f9eca87dfaaee5f16078d95b3ba458b6be5bae0a0805f2544"
            },
            "downloads": -1,
            "filename": "moesifasgi-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ce36097f623a9d4c6fd8fb1557c5995e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 21487,
            "upload_time": "2024-04-15T17:34:55",
            "upload_time_iso_8601": "2024-04-15T17:34:55.587084Z",
            "url": "https://files.pythonhosted.org/packages/70/43/b0ff24c5c896f30f48997a4ca763376f1aed53a6965d74362c325f0e7188/moesifasgi-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-15 17:34:55",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "moesifasgi"
}
        
Elapsed time: 0.51998s