PyQvd


NamePyQvd JSON
Version 2.2.1 PyPI version JSON
download
home_pageNone
SummaryUtility library for reading/writing Qlik View Data (QVD) files in Python.
upload_time2025-02-01 13:59:59
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT License Copyright (c) 2024 Constantin Müller 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 qlik qvd qlik sense qlik view pandas
VCS
bugtrack_url
requirements build twine pytest pylint pandas
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PyQvd

> Utility library for reading/writing Qlik View Data (QVD) files in Python.

The _PyQvd_ library provides a simple API for reading/writing Qlik View Data (QVD) files in Python.
Using this library, it is possible to parse the binary QVD file format and convert it to a Python object
structure or vice versa.

---

- [Install](#install)
- [Usage](#usage)
- [License](#license)
  - [Forbidden](#forbidden)

---

## Install

PyQvd is a Python library available through [pypi](https://pypi.org/). The recommended way to
install and maintain PyQvd as a dependency is through the package installer (PIP). Before
installing this library, download and install Python.

To use PyQvd, first install it using pip:

```bash
(.venv) $ pip install PyQvd
```

## Usage

For a detailed overview of the library's API, please refer to the
[documentation](https://pyqvd.readthedocs.io). Below is a quick example how to use _PyQvd_.

```python
from pyqvd import QvdTable

tbl = QvdTable.from_qvd("path/to/file.qvd")
print(tbl.head())
```

The above example loads the _PyQvd_ library and parses an example QVD file. A QVD file is typically
loaded using the static `QvdTable.from_qvd` function of the `QvdTable` class itself. After loading
the file's content, numerous methods and properties are available to work with the parsed data.

## License

Copyright (c) 2024 Constantin Müller

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.

[MIT License](https://opensource.org/licenses/MIT) or [LICENSE](LICENSE) for
more details.

### Forbidden

**Hold Liable**: Software is provided without warranty and the software
author/license owner cannot be held liable for damages.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "PyQvd",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "qlik, qvd, qlik sense, qlik view, pandas",
    "author": null,
    "author_email": "Constantin M\u00fcller <info@mueller-constantin.de>",
    "download_url": "https://files.pythonhosted.org/packages/86/ff/149a76fb5972364e30a3af74a20ee9b9812fa8413af9e4fb638f91dbd837/pyqvd-2.2.1.tar.gz",
    "platform": null,
    "description": "# PyQvd\r\n\r\n> Utility library for reading/writing Qlik View Data (QVD) files in Python.\r\n\r\nThe _PyQvd_ library provides a simple API for reading/writing Qlik View Data (QVD) files in Python.\r\nUsing this library, it is possible to parse the binary QVD file format and convert it to a Python object\r\nstructure or vice versa.\r\n\r\n---\r\n\r\n- [Install](#install)\r\n- [Usage](#usage)\r\n- [License](#license)\r\n  - [Forbidden](#forbidden)\r\n\r\n---\r\n\r\n## Install\r\n\r\nPyQvd is a Python library available through [pypi](https://pypi.org/). The recommended way to\r\ninstall and maintain PyQvd as a dependency is through the package installer (PIP). Before\r\ninstalling this library, download and install Python.\r\n\r\nTo use PyQvd, first install it using pip:\r\n\r\n```bash\r\n(.venv) $ pip install PyQvd\r\n```\r\n\r\n## Usage\r\n\r\nFor a detailed overview of the library's API, please refer to the\r\n[documentation](https://pyqvd.readthedocs.io). Below is a quick example how to use _PyQvd_.\r\n\r\n```python\r\nfrom pyqvd import QvdTable\r\n\r\ntbl = QvdTable.from_qvd(\"path/to/file.qvd\")\r\nprint(tbl.head())\r\n```\r\n\r\nThe above example loads the _PyQvd_ library and parses an example QVD file. A QVD file is typically\r\nloaded using the static `QvdTable.from_qvd` function of the `QvdTable` class itself. After loading\r\nthe file's content, numerous methods and properties are available to work with the parsed data.\r\n\r\n## License\r\n\r\nCopyright (c) 2024 Constantin M\u00fcller\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n\r\n[MIT License](https://opensource.org/licenses/MIT) or [LICENSE](LICENSE) for\r\nmore details.\r\n\r\n### Forbidden\r\n\r\n**Hold Liable**: Software is provided without warranty and the software\r\nauthor/license owner cannot be held liable for damages.\r\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 Constantin M\u00fcller  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": "Utility library for reading/writing Qlik View Data (QVD) files in Python.",
    "version": "2.2.1",
    "project_urls": {
        "Changelog": "https://github.com/MuellerConstantin/PyQvd/CHANGELOG.md",
        "Documentation": "https://pyqvd.readthedocs.io",
        "Homepage": "https://github.com/MuellerConstantin/PyQvd",
        "Issues": "https://github.com/MuellerConstantin/PyQvd/issues",
        "Repository": "https://github.com/MuellerConstantin/PyQvd.git"
    },
    "split_keywords": [
        "qlik",
        " qvd",
        " qlik sense",
        " qlik view",
        " pandas"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0cfa6c898816cd5349d654497e2bc5808b96b40fb433bcc8e59898f5333606f9",
                "md5": "a7ae51e8af9082b98812e0a1b9eb2c67",
                "sha256": "45d5e4b54be3621c0b8af20ada8a7cb0128edf67fefd49d1e1ca8484d0f8895b"
            },
            "downloads": -1,
            "filename": "PyQvd-2.2.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a7ae51e8af9082b98812e0a1b9eb2c67",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 27376,
            "upload_time": "2025-02-01T13:59:57",
            "upload_time_iso_8601": "2025-02-01T13:59:57.273814Z",
            "url": "https://files.pythonhosted.org/packages/0c/fa/6c898816cd5349d654497e2bc5808b96b40fb433bcc8e59898f5333606f9/PyQvd-2.2.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86ff149a76fb5972364e30a3af74a20ee9b9812fa8413af9e4fb638f91dbd837",
                "md5": "369ab5450f2949425860a65afcce5a37",
                "sha256": "3744654299ba3c16cb71e1cb0cdee5e9683b7881c67604cde560f239b27e51ad"
            },
            "downloads": -1,
            "filename": "pyqvd-2.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "369ab5450f2949425860a65afcce5a37",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 24712,
            "upload_time": "2025-02-01T13:59:59",
            "upload_time_iso_8601": "2025-02-01T13:59:59.183557Z",
            "url": "https://files.pythonhosted.org/packages/86/ff/149a76fb5972364e30a3af74a20ee9b9812fa8413af9e4fb638f91dbd837/pyqvd-2.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-01 13:59:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MuellerConstantin",
    "github_project": "PyQvd",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "build",
            "specs": []
        },
        {
            "name": "twine",
            "specs": []
        },
        {
            "name": "pytest",
            "specs": []
        },
        {
            "name": "pylint",
            "specs": []
        },
        {
            "name": "pandas",
            "specs": []
        }
    ],
    "lcname": "pyqvd"
}
        
Elapsed time: 0.88000s