Name | crabpy JSON |
Version |
1.5.0
JSON |
| download |
home_page | None |
Summary | Interact with geographical webservices by Informatie Vlaanderen. |
upload_time | 2024-11-25 14:30:54 |
maintainer | None |
docs_url | None |
author | None |
requires_python | <3.13,>=3.10 |
license | The MIT License (MIT) Copyright (c) 2013-2016 Onroerend Erfgoed 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 |
agiv
capakey
crabpy
pyramid
web
wsgi
|
VCS |
|
bugtrack_url |
|
requirements |
certifi
charset-normalizer
decorator
dogpile-cache
idna
pbr
requests
stevedore
suds-py3
urllib3
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# CRABpy
This library provides access to the CRAB and CAPAKEY webservices operated by
the AGIV. Because connecting to these SOAP services from python can be somewhat
complicated, this library makes it easier.
[![docs](https://readthedocs.org/projects/crabpy/badge/?version=latest)](https://readthedocs.org/projects/crabpy/?badge=latest)
[![pypi](https://badge.fury.io/py/crabpy.png)](http://badge.fury.io/py/crabpy)
[![CI](https://github.com/OnroerendErfgoed/crabpy/actions/workflows/backend.yaml/badge.svg)](https://github.com/OnroerendErfgoed/crabpy/actions/workflows/backend.yaml)
[![Coverage](https://coveralls.io/repos/OnroerendErfgoed/crabpy/badge.png?branch=master)](https://coveralls.io/r/OnroerendErfgoed/crabpy?branch=master)
## Build wheel or sdist
```sh
pip install hatch
hatch build
hatch build -t wheel
hatch build -t sdist
```
## Work with pip-compile / pip-sync
full docs: https://pip-tools.readthedocs.io/en/latest/
To start, first install pip-tools:
```sh
pip install pip-tools
```
### uv (optional)
You can also use `uv` and for the remainder of the readme replace `pip`, `pip-compile` or
`pip-sync` by `uv pip`, `uv pip compile` and `uv pip sync`.
`uv` is a very fast replacement for pip-toools. It's optional, but can save a lot of time.
```sh
pip install uv
```
### Install requirements: pip-sync
Note, `pip-sync` also uninstalls everything from the virtualenv which does not belong
there according to the requirements file. This includes the project itself. You will
have to install `crabpy` again after `pip-sync`.
Since the requirements file of pip-sync is still a normal requirements file you can also
use `pip install -r` to install all libraries defined in it. This will not cleanup your
virtualenv and uninstall other libraries.
The compiled requirements files are made in a 3.11 environment.
```sh
pip-sync requirements-dev.txt
pip install -e .
```
`requirements-dev.txt` contains all libraries uncluding those for testing and development.
`requirements.txt` contains only the necessary libraries for running the library.
### Update requirements: pip-compile
```sh
echo -e "\nStarting"
PIP_COMPILE_ARGS="-q --strip-extras --no-header --resolver=backtracking --no-emit-options pyproject.toml"
pip-compile $PIP_COMPILE_ARGS -o requirements.txt;
echo "requirements.txt done"
pip-compile $PIP_COMPILE_ARGS --extra dev -o requirements-dev.txt;
echo "requirements-dev.txt done"
echo "Finished"
```
Raw data
{
"_id": null,
"home_page": null,
"name": "crabpy",
"maintainer": null,
"docs_url": null,
"requires_python": "<3.13,>=3.10",
"maintainer_email": null,
"keywords": "AGIV, CAPAKEY, crabpy, pyramid, web, wsgi",
"author": null,
"author_email": "Flanders Heritage Agency <ict@onroerenderfgoed.be>",
"download_url": "https://files.pythonhosted.org/packages/f3/ff/0b677eb432dcd7016174b594862cfe4cf3b51c8e30e7cee54672d762d1b2/crabpy-1.5.0.tar.gz",
"platform": null,
"description": "# CRABpy\n\nThis library provides access to the CRAB and CAPAKEY webservices operated by\nthe AGIV. Because connecting to these SOAP services from python can be somewhat\ncomplicated, this library makes it easier.\n\n[![docs](https://readthedocs.org/projects/crabpy/badge/?version=latest)](https://readthedocs.org/projects/crabpy/?badge=latest)\n[![pypi](https://badge.fury.io/py/crabpy.png)](http://badge.fury.io/py/crabpy)\n[![CI](https://github.com/OnroerendErfgoed/crabpy/actions/workflows/backend.yaml/badge.svg)](https://github.com/OnroerendErfgoed/crabpy/actions/workflows/backend.yaml)\n[![Coverage](https://coveralls.io/repos/OnroerendErfgoed/crabpy/badge.png?branch=master)](https://coveralls.io/r/OnroerendErfgoed/crabpy?branch=master)\n\n\n## Build wheel or sdist\n\n```sh\npip install hatch\nhatch build\nhatch build -t wheel\nhatch build -t sdist\n```\n\n\n## Work with pip-compile / pip-sync\n\nfull docs: https://pip-tools.readthedocs.io/en/latest/\n\nTo start, first install pip-tools: \n```sh\npip install pip-tools\n```\n\n### uv (optional)\n\nYou can also use `uv` and for the remainder of the readme replace `pip`, `pip-compile` or\n`pip-sync` by `uv pip`, `uv pip compile` and `uv pip sync`.\n\n`uv` is a very fast replacement for pip-toools. It's optional, but can save a lot of time.\n```sh\npip install uv\n```\n\n### Install requirements: pip-sync\n\nNote, `pip-sync` also uninstalls everything from the virtualenv which does not belong \nthere according to the requirements file. This includes the project itself. You will\nhave to install `crabpy` again after `pip-sync`.\nSince the requirements file of pip-sync is still a normal requirements file you can also\nuse `pip install -r` to install all libraries defined in it. This will not cleanup your\nvirtualenv and uninstall other libraries.\n\nThe compiled requirements files are made in a 3.11 environment.\n```sh\npip-sync requirements-dev.txt\npip install -e .\n```\n`requirements-dev.txt` contains all libraries uncluding those for testing and development.\n\n`requirements.txt` contains only the necessary libraries for running the library.\n\n### Update requirements: pip-compile\n\n```sh\necho -e \"\\nStarting\"\nPIP_COMPILE_ARGS=\"-q --strip-extras --no-header --resolver=backtracking --no-emit-options pyproject.toml\"\npip-compile $PIP_COMPILE_ARGS -o requirements.txt;\necho \"requirements.txt done\"\npip-compile $PIP_COMPILE_ARGS --extra dev -o requirements-dev.txt;\necho \"requirements-dev.txt done\"\necho \"Finished\"\n```\n",
"bugtrack_url": null,
"license": "The MIT License (MIT) Copyright (c) 2013-2016 Onroerend Erfgoed 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": "Interact with geographical webservices by Informatie Vlaanderen.",
"version": "1.5.0",
"project_urls": {
"Changelog": "https://github.com/OnroerendErfgoed/crabpy/blob/master/CHANGES.rst",
"Issues": "https://github.com/OnroerendErfgoed/crabpy/issues",
"Repository": "https://github.com/OnroerendErfgoed/crabpy.git"
},
"split_keywords": [
"agiv",
" capakey",
" crabpy",
" pyramid",
" web",
" wsgi"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "342e1d8b773ab8c9e204fb6e104190127f11e1df0d1253b8a1b59b59f59f596e",
"md5": "b6a9b248c4931d82be0a97b20f585534",
"sha256": "fc5b00c3ab10004f5289fd9200232e213b9f03eadc375284224911164fbe977e"
},
"downloads": -1,
"filename": "crabpy-1.5.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b6a9b248c4931d82be0a97b20f585534",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.13,>=3.10",
"size": 53373,
"upload_time": "2024-11-25T14:30:52",
"upload_time_iso_8601": "2024-11-25T14:30:52.329212Z",
"url": "https://files.pythonhosted.org/packages/34/2e/1d8b773ab8c9e204fb6e104190127f11e1df0d1253b8a1b59b59f59f596e/crabpy-1.5.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f3ff0b677eb432dcd7016174b594862cfe4cf3b51c8e30e7cee54672d762d1b2",
"md5": "ffdd9d0fa610c2fb6feb45764a522c24",
"sha256": "74de028841dff6d884a349489c218d47ea82f11149dc6fb9855e2fdfaf27c0c2"
},
"downloads": -1,
"filename": "crabpy-1.5.0.tar.gz",
"has_sig": false,
"md5_digest": "ffdd9d0fa610c2fb6feb45764a522c24",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<3.13,>=3.10",
"size": 228066,
"upload_time": "2024-11-25T14:30:54",
"upload_time_iso_8601": "2024-11-25T14:30:54.896678Z",
"url": "https://files.pythonhosted.org/packages/f3/ff/0b677eb432dcd7016174b594862cfe4cf3b51c8e30e7cee54672d762d1b2/crabpy-1.5.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-25 14:30:54",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "OnroerendErfgoed",
"github_project": "crabpy",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "certifi",
"specs": [
[
"==",
"2024.8.30"
]
]
},
{
"name": "charset-normalizer",
"specs": [
[
"==",
"3.4.0"
]
]
},
{
"name": "decorator",
"specs": [
[
"==",
"5.1.1"
]
]
},
{
"name": "dogpile-cache",
"specs": [
[
"==",
"1.3.3"
]
]
},
{
"name": "idna",
"specs": [
[
"==",
"3.10"
]
]
},
{
"name": "pbr",
"specs": [
[
"==",
"6.1.0"
]
]
},
{
"name": "requests",
"specs": [
[
"==",
"2.32.3"
]
]
},
{
"name": "stevedore",
"specs": [
[
"==",
"5.3.0"
]
]
},
{
"name": "suds-py3",
"specs": [
[
"==",
"1.4.5.0"
]
]
},
{
"name": "urllib3",
"specs": [
[
"==",
"2.2.3"
]
]
}
],
"lcname": "crabpy"
}