{"id":21619346,"url":"https://github.com/konstantintogoi/aiomailru","last_synced_at":"2026-02-16T10:14:10.087Z","repository":{"id":57409013,"uuid":"187547834","full_name":"konstantintogoi/aiomailru","owner":"konstantintogoi","description":"Python Mail.Ru API wrapper","archived":false,"fork":false,"pushed_at":"2024-12-01T22:34:49.000Z","size":931,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-21T05:42:51.317Z","etag":null,"topics":["api","asyncio","asyncio-api-wrapper","mailru","mymail","rest"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/konstantintogoi.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-05-20T01:27:11.000Z","updated_at":"2024-12-01T22:34:30.000Z","dependencies_parsed_at":"2024-08-04T15:54:08.133Z","dependency_job_id":"a64aeb49-e278-45e5-a7c3-8271bac5c550","html_url":"https://github.com/konstantintogoi/aiomailru","commit_stats":{"total_commits":222,"total_committers":1,"mean_commits":222.0,"dds":0.0,"last_synced_commit":"6774d72127e576e1924a5d5c0666f898117ec125"},"previous_names":[],"tags_count":29,"template":false,"template_full_name":null,"purl":"pkg:github/konstantintogoi/aiomailru","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/konstantintogoi%2Faiomailru","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/konstantintogoi%2Faiomailru/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/konstantintogoi%2Faiomailru/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/konstantintogoi%2Faiomailru/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/konstantintogoi","download_url":"https://codeload.github.com/konstantintogoi/aiomailru/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/konstantintogoi%2Faiomailru/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278350964,"owners_count":25972676,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","asyncio","asyncio-api-wrapper","mailru","mymail","rest"],"created_at":"2024-11-24T23:08:48.473Z","updated_at":"2025-10-04T17:54:26.008Z","avatar_url":"https://github.com/konstantintogoi.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":".. image:: https://img.shields.io/badge/license-BSD-blue.svg\n    :target: https://github.com/konstantintogoi/aiomailru/blob/master/LICENSE\n\n.. image:: https://img.shields.io/pypi/v/aiomailru.svg\n    :target: https://pypi.python.org/pypi/aiomailru\n\n.. image:: https://img.shields.io/pypi/pyversions/aiomailru.svg\n    :target: https://pypi.python.org/pypi/aiomailru\n\n.. image:: https://readthedocs.org/projects/aiomailru/badge/?version=latest\n    :target: https://aiomailru.readthedocs.io/en/latest\n\n.. image:: https://github.com/konstantintogoi/aiomailru/actions/workflows/pages/pages-build-deployment/badge.svg\n    :target: https://konstantintogoi.github.io/aiomailru\n\n.. index-start-marker1\n\naiomailru\n=========\n\naiomailru is a python `Mail.Ru API \u003chttps://api.mail.ru/\u003e`_ wrapper.\nThe main features are:\n\nUsage\n-----\n\nTo use `Mail.Ru API \u003chttps://api.mail.ru/\u003e`_ you need a registered app and\n`Mail.Ru \u003chttps://mail.ru\u003e`_ account.\nFor more details, see\n`aiomailru Documentation \u003chttps://konstantintogoi.github.io/aiomailru\u003e`_.\n\nClient application\n~~~~~~~~~~~~~~~~~~\n\nUse :code:`ClientSession` when REST API is needed in:\n\n- a client component of the client-server application\n- a standalone mobile/desktop application\n\ni.e. when you embed your app's info (private key) in publicly available code.\n\n.. code-block:: python\n\n    from aiomailru import ClientSession, API\n\n    session = ClientSession(app_id, private_key, access_token, uid)\n    api = API(session)\n\n    events = await api.stream.get()\n    friends = await api.friends.getOnline()\n\nUse :code:`access_token` and :code:`uid`\nthat were received after authorization. For more details, see\n`authorization instruction \u003chttps://konstantintogoi.github.io/aiomailru/authorization\u003e`_.\n\nServer application\n~~~~~~~~~~~~~~~~~~\n\nUse :code:`ServerSession` when REST API is needed in:\n\n- a server component of the client-server application\n- requests from your servers\n\n.. code-block:: python\n\n    from aiomailru import ServerSession, API\n\n    session = ServerSession(app_id, secret_key, access_token)\n    api = API(session)\n\n    events = await api.stream.get()\n    friends = await api.friends.getOnline()\n\nUse :code:`access_token` that was received after authorization.\nFor more details, see\n`authorization instruction \u003chttps://konstantintogoi.github.io/aiomailru/authorization\u003e`_.\n\nInstallation\n------------\n\n.. code-block:: shell\n\n    $ pip install aiomailru\n\nSupported Python Versions\n-------------------------\n\nPython 3.7, 3.8, 3.9 are supported.\n\n.. index-end-marker1\n\nLicense\n-------\n\naiomailru is released under the BSD 2-Clause License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkonstantintogoi%2Faiomailru","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkonstantintogoi%2Faiomailru","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkonstantintogoi%2Faiomailru/lists"}