aperturedb


Nameaperturedb JSON
Version 0.4.27 PyPI version JSON
download
home_pageNone
SummaryApertureDB Python SDK
upload_time2024-05-31 20:23:13
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseThe MIT License @copyright Copyright (c) 2017 Intel Corporation @copyright Copyright (c) 2024 ApertureData Inc Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords aperturedb graph database image video metadata search indexing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ApertureDB Client Python Module

This is the python sdk for building applications with [ApertureDB](https://docs.aperturedata.io/Introduction/WhatIsAperture).

This comprises of utilities to get Data in and out of ApertureDB in an optimal manner.
A quick [getting started guide](https://docs.aperturedata.io/HowToGuides/start/Setup) is useful to start building with this sdk.
For more concrete examples, please refer to:
* [Simple examples and concepts](https://docs.aperturedata.io/category/simple-usage-examples)
* [Advanced usage examples](https://docs.aperturedata.io/category/advanced-usage-examples)

# Installing in a custom virtual enviroment.
```bash
pip install aperturedb[complete]
```

or an installation with only the core part of the SDK
```bash
pip install aperturedb
```

A complete [reference](https://docs.aperturedata.io/category/aperturedb-python-sdk) of this SDK is available on the offical [ApertureDB Documentation](https://docs.aperturedata.io)


# Dvelopment setup.
The recommended way is to clone this repo, and do an editable install as follows:
```bash
git clone https://github.com/aperture-data/aperturedb-python.git
cd aperturedb-python
pip install -e .[dev]
```


# Running tests.
The tests are inside the test dir.

All the tests can be run with:

```bash
bash run_test.sh
```

Running specefic tests can be accomplished by invoking it with pytest as follows:

```bash
cd test && docker compose up -d && PROJECT=aperturedata KAGGLE_username=ci KAGGLE_key=dummy coverage run -m python -m pytest test_Session.py -v --log-cli-level=DEBUG
```

# Reporting bugs.
Any error in the functionality / documentation / tests maybe reported by creating a
[github issue](https://github.com/aperture-data/aperturedb-python/issues).

# Development guidelines.
For inclusion of any features, a PR may be created with a patch,
and a brief description of the problem and the fix.
The CI enforces a coding style guideline with autopep8 and
a script to detect trailing white spaces.

In case a PR encounters failures, the log would describe the location of
the offending line with a description of the problem.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "aperturedb",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "aperturedb, graph, database, image, video, metadata, search, indexing",
    "author": null,
    "author_email": "ApertureData Engineering <team@aperturedata.io>",
    "download_url": "https://files.pythonhosted.org/packages/04/f2/383d262d454a4be15ad35bd7ad63133112471a4625c8328278f4b2c8ad92/aperturedb-0.4.27.tar.gz",
    "platform": null,
    "description": "# ApertureDB Client Python Module\n\nThis is the python sdk for building applications with [ApertureDB](https://docs.aperturedata.io/Introduction/WhatIsAperture).\n\nThis comprises of utilities to get Data in and out of ApertureDB in an optimal manner.\nA quick [getting started guide](https://docs.aperturedata.io/HowToGuides/start/Setup) is useful to start building with this sdk.\nFor more concrete examples, please refer to:\n* [Simple examples and concepts](https://docs.aperturedata.io/category/simple-usage-examples)\n* [Advanced usage examples](https://docs.aperturedata.io/category/advanced-usage-examples)\n\n# Installing in a custom virtual enviroment.\n```bash\npip install aperturedb[complete]\n```\n\nor an installation with only the core part of the SDK\n```bash\npip install aperturedb\n```\n\nA complete [reference](https://docs.aperturedata.io/category/aperturedb-python-sdk) of this SDK is available on the offical [ApertureDB Documentation](https://docs.aperturedata.io)\n\n\n# Dvelopment setup.\nThe recommended way is to clone this repo, and do an editable install as follows:\n```bash\ngit clone https://github.com/aperture-data/aperturedb-python.git\ncd aperturedb-python\npip install -e .[dev]\n```\n\n\n# Running tests.\nThe tests are inside the test dir.\n\nAll the tests can be run with:\n\n```bash\nbash run_test.sh\n```\n\nRunning specefic tests can be accomplished by invoking it with pytest as follows:\n\n```bash\ncd test && docker compose up -d && PROJECT=aperturedata KAGGLE_username=ci KAGGLE_key=dummy coverage run -m python -m pytest test_Session.py -v --log-cli-level=DEBUG\n```\n\n# Reporting bugs.\nAny error in the functionality / documentation / tests maybe reported by creating a\n[github issue](https://github.com/aperture-data/aperturedb-python/issues).\n\n# Development guidelines.\nFor inclusion of any features, a PR may be created with a patch,\nand a brief description of the problem and the fix.\nThe CI enforces a coding style guideline with autopep8 and\na script to detect trailing white spaces.\n\nIn case a PR encounters failures, the log would describe the location of\nthe offending line with a description of the problem.\n",
    "bugtrack_url": null,
    "license": "The MIT License  @copyright Copyright (c) 2017 Intel Corporation @copyright Copyright (c) 2024 ApertureData Inc  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "ApertureDB Python SDK",
    "version": "0.4.27",
    "project_urls": {
        "Bug Reports": "https://github.com/aperture-data/aperturedb-python/issues",
        "Homepage": "https://github.com/aperture-data/aperturedb-python"
    },
    "split_keywords": [
        "aperturedb",
        " graph",
        " database",
        " image",
        " video",
        " metadata",
        " search",
        " indexing"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6089626f588a8eee834a3aff0507ec85c0a65bea0a6edfca2929e7377f8491f",
                "md5": "a6e3a8c669cbfe69e4f0aebe81e33aa8",
                "sha256": "678729645d19644195340d36501c00f238b5f3e6a8035ad5ac33a297d2091182"
            },
            "downloads": -1,
            "filename": "aperturedb-0.4.27-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a6e3a8c669cbfe69e4f0aebe81e33aa8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 115098,
            "upload_time": "2024-05-31T20:23:11",
            "upload_time_iso_8601": "2024-05-31T20:23:11.535564Z",
            "url": "https://files.pythonhosted.org/packages/d6/08/9626f588a8eee834a3aff0507ec85c0a65bea0a6edfca2929e7377f8491f/aperturedb-0.4.27-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04f2383d262d454a4be15ad35bd7ad63133112471a4625c8328278f4b2c8ad92",
                "md5": "cdb637f4aeb0c1d3b5b8859551837d87",
                "sha256": "2bad497009135d9d1e6b2f30284b34bb89664f0a793a8d6dc6681e3fcdbfe68e"
            },
            "downloads": -1,
            "filename": "aperturedb-0.4.27.tar.gz",
            "has_sig": false,
            "md5_digest": "cdb637f4aeb0c1d3b5b8859551837d87",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 101769,
            "upload_time": "2024-05-31T20:23:13",
            "upload_time_iso_8601": "2024-05-31T20:23:13.289709Z",
            "url": "https://files.pythonhosted.org/packages/04/f2/383d262d454a4be15ad35bd7ad63133112471a4625c8328278f4b2c8ad92/aperturedb-0.4.27.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-31 20:23:13",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "aperture-data",
    "github_project": "aperturedb-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "aperturedb"
}
        
Elapsed time: 0.26188s