neo4j-aura-sdk


Nameneo4j-aura-sdk JSON
Version 0.1.1 PyPI version JSON
download
home_pageNone
SummaryNone
upload_time2024-08-08 16:59:53
maintainerNone
docs_urlNone
authorZach Probst
requires_python<4.0,>=3.10
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Neo4j Aura SDK for Python

This is an SDK for interacting with the Neo4j Aura service from Python. 

## Installation

```bash
pip install neo4j-aura-sdk
```

## Usage

```python
from neo4j_aura_sdk import AuraClient


async def main():
    async with AuraClient.from_env() as client:
        tenants = await client.tenants()
        print(tenants)


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


## Development

### Running tests

```bash
make test
```

### Building the package

```bash
poetry build
```

### Publishing the package

```bash
poetry publish
```

## License

LICENSING INFORMATION TBD

## Contributing

Please see [CONTRIBUTING.md](CONTRIBUTING.md) for more information.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "neo4j-aura-sdk",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.10",
    "maintainer_email": null,
    "keywords": null,
    "author": "Zach Probst",
    "author_email": "Zach_Probst@intuit.com",
    "download_url": "https://files.pythonhosted.org/packages/df/e2/1cca2107ae44fd28445b119a4ffd6e3e24d944045f0c638c97ef75473141/neo4j_aura_sdk-0.1.1.tar.gz",
    "platform": null,
    "description": "# Neo4j Aura SDK for Python\n\nThis is an SDK for interacting with the Neo4j Aura service from Python. \n\n## Installation\n\n```bash\npip install neo4j-aura-sdk\n```\n\n## Usage\n\n```python\nfrom neo4j_aura_sdk import AuraClient\n\n\nasync def main():\n    async with AuraClient.from_env() as client:\n        tenants = await client.tenants()\n        print(tenants)\n\n\nif __name__ == \"__main__\":\n    import asyncio\n    asyncio.run(main())\n```\n\n\n## Development\n\n### Running tests\n\n```bash\nmake test\n```\n\n### Building the package\n\n```bash\npoetry build\n```\n\n### Publishing the package\n\n```bash\npoetry publish\n```\n\n## License\n\nLICENSING INFORMATION TBD\n\n## Contributing\n\nPlease see [CONTRIBUTING.md](CONTRIBUTING.md) for more information.\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": null,
    "version": "0.1.1",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f694ebd8ced2653928c648833c30307eb92ee8496e7caa998c93f9281e2079a4",
                "md5": "b158a598b5c84655a92f23e33205f329",
                "sha256": "0f9d6cb37b11511d8b4794e5610f325f25c386591c8eb3dae13b43460857ed5c"
            },
            "downloads": -1,
            "filename": "neo4j_aura_sdk-0.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b158a598b5c84655a92f23e33205f329",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.10",
            "size": 5357,
            "upload_time": "2024-08-08T16:59:52",
            "upload_time_iso_8601": "2024-08-08T16:59:52.568488Z",
            "url": "https://files.pythonhosted.org/packages/f6/94/ebd8ced2653928c648833c30307eb92ee8496e7caa998c93f9281e2079a4/neo4j_aura_sdk-0.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfe21cca2107ae44fd28445b119a4ffd6e3e24d944045f0c638c97ef75473141",
                "md5": "60f9f3402a54f46edaaf8c4e8c64501a",
                "sha256": "ee8e2d2fdd67ad85eea939708ffbbc62539d8849cf52617f1b2e35be06929789"
            },
            "downloads": -1,
            "filename": "neo4j_aura_sdk-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "60f9f3402a54f46edaaf8c4e8c64501a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.10",
            "size": 4596,
            "upload_time": "2024-08-08T16:59:53",
            "upload_time_iso_8601": "2024-08-08T16:59:53.464201Z",
            "url": "https://files.pythonhosted.org/packages/df/e2/1cca2107ae44fd28445b119a4ffd6e3e24d944045f0c638c97ef75473141/neo4j_aura_sdk-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-08 16:59:53",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "neo4j-aura-sdk"
}
        
Elapsed time: 0.68058s