aiorubika


Nameaiorubika JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://github.com/irvanyamirali/aiorubika
Summaryaiorubika is a modern and fully asynchronous framework for Rubika Self API written in Python
upload_time2024-05-12 11:58:34
maintainerNone
docs_urlNone
authoramirali irvany
requires_python~=3.7
licenseNone
keywords rubika aiorubika bot asyncio aiohttp pydantic
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # aiorubika

Python-based asynchronous framework for Rubika messenger API

## Install
```bash
pip install aiorubika
```


## Quik Start
```python
from aiorubika import Client, filters, utils

bot = Client(name='bot')
@bot.on_message_updates(filters.is_private)
async def updates(update):
    print(update)
    await update.reply(utils.Code('hello') + utils.Underline('from') + utils.Bold('aiorubika'))

bot.run()
```


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/irvanyamirali/aiorubika",
    "name": "aiorubika",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "~=3.7",
    "maintainer_email": null,
    "keywords": "rubika, aiorubika, bot, asyncio, aiohttp, pydantic",
    "author": "amirali irvany",
    "author_email": "irvanyamirali@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/f8/bc/cabc814ca34de1924f7cb0cfe4e006d57ab2f964567d1920fc81908bd603/aiorubika-1.0.0.tar.gz",
    "platform": null,
    "description": "# aiorubika\n\nPython-based asynchronous framework for Rubika messenger API\n\n## Install\n```bash\npip install aiorubika\n```\n\n\n## Quik Start\n```python\nfrom aiorubika import Client, filters, utils\n\nbot = Client(name='bot')\n@bot.on_message_updates(filters.is_private)\nasync def updates(update):\n    print(update)\n    await update.reply(utils.Code('hello') + utils.Underline('from') + utils.Bold('aiorubika'))\n\nbot.run()\n```\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "aiorubika is a modern and fully asynchronous framework for Rubika Self API written in Python",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "https://github.com/irvanyamirali/aiorubika"
    },
    "split_keywords": [
        "rubika",
        " aiorubika",
        " bot",
        " asyncio",
        " aiohttp",
        " pydantic"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b69c5c499eea4efb211bc0d46792dc77e6ba578fe697b44b1b9506b0edf7b0c",
                "md5": "b89b6ce69745a2ac96507feb10e92842",
                "sha256": "0209ec7cc36c26efcee5d34430e0feb16e0af9832f030adff1326330038fa49e"
            },
            "downloads": -1,
            "filename": "aiorubika-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b89b6ce69745a2ac96507feb10e92842",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.7",
            "size": 52485,
            "upload_time": "2024-05-12T11:58:14",
            "upload_time_iso_8601": "2024-05-12T11:58:14.129233Z",
            "url": "https://files.pythonhosted.org/packages/2b/69/c5c499eea4efb211bc0d46792dc77e6ba578fe697b44b1b9506b0edf7b0c/aiorubika-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8bccabc814ca34de1924f7cb0cfe4e006d57ab2f964567d1920fc81908bd603",
                "md5": "1dfd547ae23e2b49362e73b823d0a9d6",
                "sha256": "9170c0fcf27b4ef73af9cbaed33c7510e689c183e407d64d8a24df71f5e2beca"
            },
            "downloads": -1,
            "filename": "aiorubika-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "1dfd547ae23e2b49362e73b823d0a9d6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.7",
            "size": 32925,
            "upload_time": "2024-05-12T11:58:34",
            "upload_time_iso_8601": "2024-05-12T11:58:34.138072Z",
            "url": "https://files.pythonhosted.org/packages/f8/bc/cabc814ca34de1924f7cb0cfe4e006d57ab2f964567d1920fc81908bd603/aiorubika-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-12 11:58:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "irvanyamirali",
    "github_project": "aiorubika",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "aiorubika"
}
        
Elapsed time: 0.26108s