ruson


Nameruson JSON
Version 1.0.5 PyPI version JSON
download
home_pageNone
SummaryAsynchronous MongoDB Driver Wrapper For Rust MongoDB crate
upload_time2024-04-12 23:07:56
maintainerNone
docs_urlNone
authorNone
requires_python>=3.11
licenseNone
keywords rust mongo driver database
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![PyPI version](https://badge.fury.io/py/ruson.svg)](https://badge.fury.io/py/ruson)

# Ruson-ODM

Ruson-ODM is an asynchronous object-document mapper for Python 3.11+. It is designed to be a lightweight and easy-to-use ODM for MongoDB.

## Installation

Ruson-ODM is available to be installed from PyPi with:

```bash
pip install ruson
``` 

## Usage

Using Ruson-ODM is easy and requires only two setup steps: setup and inheritance. After these two steps are complete, you can start using Ruson-ODM to query, insert, update and deleted documents from the database.

### Inheriting RusonDoc

`RusonDoc` is the interface that your classes will use to interact with the ODM. To use it, you must create a class that inherits from it.

```python
import asyncio
from ruson.core.config import Config
from ruson.core.instance import Ruson
from ruson.core.ruson_doc import RusonDoc


class User(RusonDoc):
    email: str
```

Note that subclasses can override super class attributes like the "id" field.

### Setup

To use the ruson ODM, you need to first create a `Config` instance with the necessary parameters for your database connection (`connection_name` is optional). With the config object created, you can then setup a `Ruson` connection using the singleton `Ruson`.

```python
async def setup_ruson():
    config = Config(database_uri="mongodb://localhost:27017", database_name="test", connection_name="default")
    await Ruson.create_connection(config)
```

### Querying the database

Once the `Ruson` connection is setup, you can start querying the database. Your classes that inherited from RusonDoc can now use the `find`, `find_one` and `find_many` methods to query the database.

By default, `Ruson` will not format your data. You can use the `formatter` parameter to pass a callable to format the response from the database.

```python
async def formatter(value: dict):
    # This function does not need to be async, it is just an
    # example to show that async functions are also supported
    return value["email"]


async def find():
    email = "test@example.com"

    # Return iterator over matched users
    users = await User(email=email).find(many=True)

    # Consumes iterator and transform into a list
    users_list = await users.tolist()

    print("Find method")
    print(f"Users found with email: '{email}'", len(users_list))
    print("Users", list(users_list[0].items()))
    print()


async def find_one():
    user_email = await User.find_one({"email": "test@example.com"}, formatter=formatter)
    print("Find one method")
    print("User email", user_email)
    print()


async def find_many():
    users_emails = await User.find_many(formatter=formatter)

    print("Find many method")
    # Iteration asynchronously through the results
    async for email in users_emails:
        print(email)

    print()
```

### Inserting into the database

To insert a document into the database, you can use the `insert_one` method either with an instance or a class.

```python
async def insert_one():
    print("Insert one method")

    # Insert using class method
    user = User(email="test@example.com")
    result = await User.insert_one(user)
    print("Inserted id", result.inserted_id)

    # Insert using instance method
    another = User(email="another@example.com")
    result = await another.insert()
    print("Inserted id", result.inserted_id)

    print()
```

To insert multiple documents into the database, you can use the `insert_many` method either with a class.

```python
async def insert_many():
    users = [
        User(email="test1@example.com"),
        User(email="test2@example.com"),
        User(email="test3@example.com"),
        User(email="test4@example.com"),
    ]
    result = await User.insert_many(users)

    print("Insert many method")
    print("Inserted ids", list(map(str, result.inserted_ids)))
    print()
```

### Updating records in the database

To update a record in the database, you can use the `update_one` method. This method takes two parameters, the filter and the update. The filter is used to find the document to update and the update is the data to update the document with. It can be used either with the class method or the instance method.

```python
async def update_one():
    result = await User.update_one(
        {"$set": {"email": "updated@example.com"}}, {"email": "test1@example.com"}
    )

    print("Update one method")
    print("Matched count", result.matched_count)
    print("Modified count", result.modified_count)
    print()
```

### Deleting records from the database

To delete a record from the database, you can use the `delete_one` method. This method takes a filter as a parameter and can be used either with the class method or the instance method.

```python
async def delete():
    # Delete only the first match using "many=False"
    result = await User(email="test4@example.com").delete(many=False)

    print("Delete method")
    print("Deleted count", result.deleted_count)
    print()


async def delete_one():
    # Delete class method
    result = await User.delete_one({"email": "test3@example.com"})

    print("Delete one method")
    print("Deleted count", result.deleted_count)
    print()
```

It is also possible to delete multiple records from the database using the `delete_many` method. This method takes a filter as a parameter and can be used either with the class method or the instance method `delete` combined with the flag `many=True`.

```python
async def delete_many():
    # Delete many using class method
    result = await User.delete_many({"email": {"$regex": "^test"}})

    print("Delete many method")
    print("Deleted count", result.deleted_count)
    print()
```

### To run the examples

```python
async def main():
    await setup_ruson()
    await insert_one()
    await insert_many()
    await find()
    await find_one()
    await find_many()
    await update_one()
    await delete()
    await delete_one()
    await delete_many()


if __name__ == "__main__":
    asyncio.run(main())
```

### Other supported methods

#### Ruson

-   `get_client`
-   `get_config`
-   `create_session`

#### Client

-   `database`
-   `default_database`
-   `list_databases`
-   `create_session`
-   `shutdown`

#### Database

-   `collection`
-   `list_collections`
-   `drop`

#### Collection

-   `upsert`
-   `count_documents`
-   `distinct`
-   `create_index`
-   `list_indexes`
-   `drop_indexes`
-   `drop`


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "ruson",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": "rust, mongo, driver, database",
    "author": null,
    "author_email": "Jo\u00e3o Severo <contato@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/c8/e6/5c0840471a8b2eeae6c4c6e4a358e933e6fcbde5826a7d47bb7c0f15ef22/ruson-1.0.5.tar.gz",
    "platform": null,
    "description": "[![PyPI version](https://badge.fury.io/py/ruson.svg)](https://badge.fury.io/py/ruson)\n\n# Ruson-ODM\n\nRuson-ODM is an asynchronous object-document mapper for Python 3.11+. It is designed to be a lightweight and easy-to-use ODM for MongoDB.\n\n## Installation\n\nRuson-ODM is available to be installed from PyPi with:\n\n```bash\npip install ruson\n``` \n\n## Usage\n\nUsing Ruson-ODM is easy and requires only two setup steps: setup and inheritance. After these two steps are complete, you can start using Ruson-ODM to query, insert, update and deleted documents from the database.\n\n### Inheriting RusonDoc\n\n`RusonDoc` is the interface that your classes will use to interact with the ODM. To use it, you must create a class that inherits from it.\n\n```python\nimport asyncio\nfrom ruson.core.config import Config\nfrom ruson.core.instance import Ruson\nfrom ruson.core.ruson_doc import RusonDoc\n\n\nclass User(RusonDoc):\n    email: str\n```\n\nNote that subclasses can override super class attributes like the \"id\" field.\n\n### Setup\n\nTo use the ruson ODM, you need to first create a `Config` instance with the necessary parameters for your database connection (`connection_name` is optional). With the config object created, you can then setup a `Ruson` connection using the singleton `Ruson`.\n\n```python\nasync def setup_ruson():\n    config = Config(database_uri=\"mongodb://localhost:27017\", database_name=\"test\", connection_name=\"default\")\n    await Ruson.create_connection(config)\n```\n\n### Querying the database\n\nOnce the `Ruson` connection is setup, you can start querying the database. Your classes that inherited from RusonDoc can now use the `find`, `find_one` and `find_many` methods to query the database.\n\nBy default, `Ruson` will not format your data. You can use the `formatter` parameter to pass a callable to format the response from the database.\n\n```python\nasync def formatter(value: dict):\n    # This function does not need to be async, it is just an\n    # example to show that async functions are also supported\n    return value[\"email\"]\n\n\nasync def find():\n    email = \"test@example.com\"\n\n    # Return iterator over matched users\n    users = await User(email=email).find(many=True)\n\n    # Consumes iterator and transform into a list\n    users_list = await users.tolist()\n\n    print(\"Find method\")\n    print(f\"Users found with email: '{email}'\", len(users_list))\n    print(\"Users\", list(users_list[0].items()))\n    print()\n\n\nasync def find_one():\n    user_email = await User.find_one({\"email\": \"test@example.com\"}, formatter=formatter)\n    print(\"Find one method\")\n    print(\"User email\", user_email)\n    print()\n\n\nasync def find_many():\n    users_emails = await User.find_many(formatter=formatter)\n\n    print(\"Find many method\")\n    # Iteration asynchronously through the results\n    async for email in users_emails:\n        print(email)\n\n    print()\n```\n\n### Inserting into the database\n\nTo insert a document into the database, you can use the `insert_one` method either with an instance or a class.\n\n```python\nasync def insert_one():\n    print(\"Insert one method\")\n\n    # Insert using class method\n    user = User(email=\"test@example.com\")\n    result = await User.insert_one(user)\n    print(\"Inserted id\", result.inserted_id)\n\n    # Insert using instance method\n    another = User(email=\"another@example.com\")\n    result = await another.insert()\n    print(\"Inserted id\", result.inserted_id)\n\n    print()\n```\n\nTo insert multiple documents into the database, you can use the `insert_many` method either with a class.\n\n```python\nasync def insert_many():\n    users = [\n        User(email=\"test1@example.com\"),\n        User(email=\"test2@example.com\"),\n        User(email=\"test3@example.com\"),\n        User(email=\"test4@example.com\"),\n    ]\n    result = await User.insert_many(users)\n\n    print(\"Insert many method\")\n    print(\"Inserted ids\", list(map(str, result.inserted_ids)))\n    print()\n```\n\n### Updating records in the database\n\nTo update a record in the database, you can use the `update_one` method. This method takes two parameters, the filter and the update. The filter is used to find the document to update and the update is the data to update the document with. It can be used either with the class method or the instance method.\n\n```python\nasync def update_one():\n    result = await User.update_one(\n        {\"$set\": {\"email\": \"updated@example.com\"}}, {\"email\": \"test1@example.com\"}\n    )\n\n    print(\"Update one method\")\n    print(\"Matched count\", result.matched_count)\n    print(\"Modified count\", result.modified_count)\n    print()\n```\n\n### Deleting records from the database\n\nTo delete a record from the database, you can use the `delete_one` method. This method takes a filter as a parameter and can be used either with the class method or the instance method.\n\n```python\nasync def delete():\n    # Delete only the first match using \"many=False\"\n    result = await User(email=\"test4@example.com\").delete(many=False)\n\n    print(\"Delete method\")\n    print(\"Deleted count\", result.deleted_count)\n    print()\n\n\nasync def delete_one():\n    # Delete class method\n    result = await User.delete_one({\"email\": \"test3@example.com\"})\n\n    print(\"Delete one method\")\n    print(\"Deleted count\", result.deleted_count)\n    print()\n```\n\nIt is also possible to delete multiple records from the database using the `delete_many` method. This method takes a filter as a parameter and can be used either with the class method or the instance method `delete` combined with the flag `many=True`.\n\n```python\nasync def delete_many():\n    # Delete many using class method\n    result = await User.delete_many({\"email\": {\"$regex\": \"^test\"}})\n\n    print(\"Delete many method\")\n    print(\"Deleted count\", result.deleted_count)\n    print()\n```\n\n### To run the examples\n\n```python\nasync def main():\n    await setup_ruson()\n    await insert_one()\n    await insert_many()\n    await find()\n    await find_one()\n    await find_many()\n    await update_one()\n    await delete()\n    await delete_one()\n    await delete_many()\n\n\nif __name__ == \"__main__\":\n    asyncio.run(main())\n```\n\n### Other supported methods\n\n#### Ruson\n\n-   `get_client`\n-   `get_config`\n-   `create_session`\n\n#### Client\n\n-   `database`\n-   `default_database`\n-   `list_databases`\n-   `create_session`\n-   `shutdown`\n\n#### Database\n\n-   `collection`\n-   `list_collections`\n-   `drop`\n\n#### Collection\n\n-   `upsert`\n-   `count_documents`\n-   `distinct`\n-   `create_index`\n-   `list_indexes`\n-   `drop_indexes`\n-   `drop`\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Asynchronous MongoDB Driver Wrapper For Rust MongoDB crate",
    "version": "1.0.5",
    "project_urls": null,
    "split_keywords": [
        "rust",
        " mongo",
        " driver",
        " database"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e35b75806c9d84f88894c904b93d165aa95284549a4958e78fba91b62cfd50ac",
                "md5": "eaceaa9b42479660920a3e994827cf1d",
                "sha256": "d6960da34c6cb08466334a43926258c66bd53f76bb2e4aa52802ef904a087504"
            },
            "downloads": -1,
            "filename": "ruson-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eaceaa9b42479660920a3e994827cf1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 4904217,
            "upload_time": "2024-04-12T23:07:30",
            "upload_time_iso_8601": "2024-04-12T23:07:30.285360Z",
            "url": "https://files.pythonhosted.org/packages/e3/5b/75806c9d84f88894c904b93d165aa95284549a4958e78fba91b62cfd50ac/ruson-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "35831a80f52d326bf19e5dd7881dba24246ada3636639c1ff6c43294782fbb4a",
                "md5": "e1b7634c239eddab8424f49daf47c381",
                "sha256": "1a41e5ad986087bef160bdc590b779a328c13ada68ced4c0f55f8a9405d0c6ce"
            },
            "downloads": -1,
            "filename": "ruson-1.0.5-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e1b7634c239eddab8424f49daf47c381",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 4646137,
            "upload_time": "2024-04-12T23:07:32",
            "upload_time_iso_8601": "2024-04-12T23:07:32.449211Z",
            "url": "https://files.pythonhosted.org/packages/35/83/1a80f52d326bf19e5dd7881dba24246ada3636639c1ff6c43294782fbb4a/ruson-1.0.5-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a11287db51a6ba4ba33667bc38a43985a167a8d945753a9140c2da758c3f6fbf",
                "md5": "34e08ce6ed37ec3eae774d1009670988",
                "sha256": "17feaf6452d7c884e7ce806a00d971d0adf88bba0484baa45d9b192bc1ab0180"
            },
            "downloads": -1,
            "filename": "ruson-1.0.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "34e08ce6ed37ec3eae774d1009670988",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 6913924,
            "upload_time": "2024-04-12T23:07:34",
            "upload_time_iso_8601": "2024-04-12T23:07:34.870121Z",
            "url": "https://files.pythonhosted.org/packages/a1/12/87db51a6ba4ba33667bc38a43985a167a8d945753a9140c2da758c3f6fbf/ruson-1.0.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fe0eb9149611d5b9dade515e443c14b3acc18f9155f4fa0fda65303e30b27dd8",
                "md5": "4bd703a579f562125873936cad181706",
                "sha256": "93bbb919555f0af16b01e0b204a60dcbffa175164ef990afae778f360ede71ab"
            },
            "downloads": -1,
            "filename": "ruson-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4bd703a579f562125873936cad181706",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 6527312,
            "upload_time": "2024-04-12T23:07:37",
            "upload_time_iso_8601": "2024-04-12T23:07:37.439362Z",
            "url": "https://files.pythonhosted.org/packages/fe/0e/b9149611d5b9dade515e443c14b3acc18f9155f4fa0fda65303e30b27dd8/ruson-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d7429281d7d61bf181efcaedcc456444cd3e5f081603f06193bfe1968be6227",
                "md5": "a8136eab5f9e6ff3e383ca0848c55cfc",
                "sha256": "7b9a37e1c2893c9bfce8d5a3dd3bccb50db4a5181f8e52324ab7f8f24440a84b"
            },
            "downloads": -1,
            "filename": "ruson-1.0.5-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a8136eab5f9e6ff3e383ca0848c55cfc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 4022199,
            "upload_time": "2024-04-12T23:07:39",
            "upload_time_iso_8601": "2024-04-12T23:07:39.494966Z",
            "url": "https://files.pythonhosted.org/packages/9d/74/29281d7d61bf181efcaedcc456444cd3e5f081603f06193bfe1968be6227/ruson-1.0.5-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f9d0f80d983f0dc34b8df464bd388477bab3d1a7c4a00b350bb75072e4b3711",
                "md5": "3955c069076a79e903c08c04f8021a6f",
                "sha256": "fc47c712c520d532eef145d8aef0b893c9b332e66a9d899dc034b538c61f3e57"
            },
            "downloads": -1,
            "filename": "ruson-1.0.5-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3955c069076a79e903c08c04f8021a6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 4755959,
            "upload_time": "2024-04-12T23:07:41",
            "upload_time_iso_8601": "2024-04-12T23:07:41.884388Z",
            "url": "https://files.pythonhosted.org/packages/2f/9d/0f80d983f0dc34b8df464bd388477bab3d1a7c4a00b350bb75072e4b3711/ruson-1.0.5-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50286e4ce65f0865e2653b3670848a0502fd46aafc9ad7f37bb5b3476fa7d3f0",
                "md5": "aa5e146d173a267e830874a415f18bce",
                "sha256": "059b2e84aa31fcf1e57980b292fad7373bb6eaffbbd59658d187e860527727d8"
            },
            "downloads": -1,
            "filename": "ruson-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa5e146d173a267e830874a415f18bce",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 4900192,
            "upload_time": "2024-04-12T23:07:43",
            "upload_time_iso_8601": "2024-04-12T23:07:43.662714Z",
            "url": "https://files.pythonhosted.org/packages/50/28/6e4ce65f0865e2653b3670848a0502fd46aafc9ad7f37bb5b3476fa7d3f0/ruson-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad013a3db1a4e8bb0b6df1b50d520d7df37156e6bb1ebbe7629808cb958a9c16",
                "md5": "f60a24ee143fb2de63287832a7d87b3d",
                "sha256": "b7cf0a34a5ceafc9db441e0cfabb6b16c1bb639af2725b15c50cae74113256db"
            },
            "downloads": -1,
            "filename": "ruson-1.0.5-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f60a24ee143fb2de63287832a7d87b3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 4642954,
            "upload_time": "2024-04-12T23:07:45",
            "upload_time_iso_8601": "2024-04-12T23:07:45.967787Z",
            "url": "https://files.pythonhosted.org/packages/ad/01/3a3db1a4e8bb0b6df1b50d520d7df37156e6bb1ebbe7629808cb958a9c16/ruson-1.0.5-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ff2feb5b95e0ace77637fcfc4f2179677fa6f3f469847d125ffc387de987635",
                "md5": "2c983d60d71e7b6060976902d7b68dd7",
                "sha256": "ef1cac498a5a7026ed899728a4ad6f2cd93e05588d014e455c24957553d433fe"
            },
            "downloads": -1,
            "filename": "ruson-1.0.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "2c983d60d71e7b6060976902d7b68dd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 6919324,
            "upload_time": "2024-04-12T23:07:47",
            "upload_time_iso_8601": "2024-04-12T23:07:47.845299Z",
            "url": "https://files.pythonhosted.org/packages/1f/f2/feb5b95e0ace77637fcfc4f2179677fa6f3f469847d125ffc387de987635/ruson-1.0.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f046d465aae4c1ed13c873449560dc35165d04ee572aa39554fd258f830ad0ef",
                "md5": "e43655a60594f49f322f2bf3435eaf22",
                "sha256": "62defb4b823cc15909a21e5a33bf9c5fe1e1f9cc89ed44d7651537eed03de5c9"
            },
            "downloads": -1,
            "filename": "ruson-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e43655a60594f49f322f2bf3435eaf22",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 6523909,
            "upload_time": "2024-04-12T23:07:50",
            "upload_time_iso_8601": "2024-04-12T23:07:50.274702Z",
            "url": "https://files.pythonhosted.org/packages/f0/46/d465aae4c1ed13c873449560dc35165d04ee572aa39554fd258f830ad0ef/ruson-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c51dbfd840692b0563c1500322459a90cf87b307e55733ad0cec68512634c48",
                "md5": "bc7b9b55fd5bdb3cd5d6b004fd7b96c5",
                "sha256": "5229a4be0aa71e3442019648a96a552941ef274e6975dbb5cb3dd91971a6f122"
            },
            "downloads": -1,
            "filename": "ruson-1.0.5-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "bc7b9b55fd5bdb3cd5d6b004fd7b96c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 4014845,
            "upload_time": "2024-04-12T23:07:52",
            "upload_time_iso_8601": "2024-04-12T23:07:52.711285Z",
            "url": "https://files.pythonhosted.org/packages/5c/51/dbfd840692b0563c1500322459a90cf87b307e55733ad0cec68512634c48/ruson-1.0.5-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a79e9abc77d83c69079118c7d7558860e4d3df3d10130a354f156e4f6c6183b3",
                "md5": "f7329e20cb1f05f8e0f75938feae0c1e",
                "sha256": "d8bc1537b575b418061f41150e5e24921915f75bf7945acd352066f409b52804"
            },
            "downloads": -1,
            "filename": "ruson-1.0.5-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f7329e20cb1f05f8e0f75938feae0c1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 4749912,
            "upload_time": "2024-04-12T23:07:54",
            "upload_time_iso_8601": "2024-04-12T23:07:54.356654Z",
            "url": "https://files.pythonhosted.org/packages/a7/9e/9abc77d83c69079118c7d7558860e4d3df3d10130a354f156e4f6c6183b3/ruson-1.0.5-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8e65c0840471a8b2eeae6c4c6e4a358e933e6fcbde5826a7d47bb7c0f15ef22",
                "md5": "5178135c0f8686cfc46be86e6ed1c1de",
                "sha256": "c8d6931d75ffa0fc5b7a21addfa101baa7535b1f650c7e3409f5133c988729c2"
            },
            "downloads": -1,
            "filename": "ruson-1.0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "5178135c0f8686cfc46be86e6ed1c1de",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 42847,
            "upload_time": "2024-04-12T23:07:56",
            "upload_time_iso_8601": "2024-04-12T23:07:56.707618Z",
            "url": "https://files.pythonhosted.org/packages/c8/e6/5c0840471a8b2eeae6c4c6e4a358e933e6fcbde5826a7d47bb7c0f15ef22/ruson-1.0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-12 23:07:56",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "ruson"
}
        
Elapsed time: 0.36822s