{"id":24309023,"url":"https://github.com/excites/geokey-sapelli","last_synced_at":"2025-09-26T14:31:30.301Z","repository":{"id":31721565,"uuid":"35287426","full_name":"ExCiteS/geokey-sapelli","owner":"ExCiteS","description":"Extends GeoKey with support for Sapelli","archived":false,"fork":false,"pushed_at":"2018-11-03T14:39:34.000Z","size":8637,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":16,"default_branch":"master","last_synced_at":"2025-01-11T10:38:02.669Z","etag":null,"topics":["django","geokey","geokey-extension","sapelli"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ExCiteS.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-05-08T15:39:30.000Z","updated_at":"2024-06-13T04:46:47.000Z","dependencies_parsed_at":"2022-08-28T05:00:54.545Z","dependency_job_id":null,"html_url":"https://github.com/ExCiteS/geokey-sapelli","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExCiteS%2Fgeokey-sapelli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExCiteS%2Fgeokey-sapelli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExCiteS%2Fgeokey-sapelli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExCiteS%2Fgeokey-sapelli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ExCiteS","download_url":"https://codeload.github.com/ExCiteS/geokey-sapelli/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234314445,"owners_count":18812697,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","geokey","geokey-extension","sapelli"],"created_at":"2025-01-17T05:12:22.291Z","updated_at":"2025-09-26T14:31:24.187Z","avatar_url":"https://github.com/ExCiteS.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":".. image:: https://img.shields.io/pypi/v/geokey-sapelli.svg\n    :alt: PyPI Package\n    :target: https://pypi.python.org/pypi/geokey-sapelli\n\n.. image:: https://img.shields.io/travis/ExCiteS/geokey-sapelli/master.svg\n    :alt: Travis CI Build Status\n    :target: https://travis-ci.org/ExCiteS/geokey-sapelli\n\n.. image:: https://coveralls.io/repos/ExCiteS/geokey-sapelli/badge.svg?branch=master\u0026service=github\n    :alt: Coveralls Test Coverage\n    :target: https://coveralls.io/github/ExCiteS/geokey-sapelli?branch=master\n\ngeokey-sapelli\n==============\n\nExtension for `GeoKey \u003chttps://github.com/ExCiteS/geokey\u003e`_ to add support for `Sapelli \u003chttps://github.com/ExCiteS/Sapelli\u003e`_. This extension enables users to upload `Sapelli project files \u003chttp://wiki.sapelli.org/index.php/Overview\u003e`_ (resulting in corresponding GeoKey projects), and Sapelli-produced data via the admin interface.\n\nInstall\n-------\n\ngeokey-sapelli requires:\n\n- Python version 2.7\n- `Java \u003chttp://www.oracle.com/technetwork/java/javase/downloads\u003e`_ (JRE or JDK) version 7 or up\n- GeoKey version 1.6 or greater\n\nInstall the geokey-sapelli from PyPI:\n\n.. code-block:: console\n\n    pip install geokey-sapelli\n\nOr from cloned repository:\n\n.. code-block:: console\n\n    cd geokey-sapelli\n    pip install -e .\n\nAdd the package to installed apps:\n\n.. code-block:: console\n\n    INSTALLED_APPS += (\n        ...\n        'geokey_sapelli',\n    )\n\nDownload the latest available version of the `Sapelli Collector CmdLn front-end \u003chttps://github.com/ExCiteS/Sapelli/releases\u003e`_ (the file you need looks like ``sapelli-collector-cmdln-X.X.X-XXXXXX-with-dependencies.jar``). Place the file in a folder of your choice (you can rename it as well if you want) and edit the `settings.py` file to add the *absolute* path to the file:\n\n.. code-block:: console\n\n    SAPELLI_JAR = '/path/to/sapelli-collector-cmdln-X.X.X-XXXXXX-with-dependencies.jar'\n\nRegister a new application (using the GeoKey admin interface) with authorisation type *password*. Add the generated Client ID to your `settings.py`:\n\n.. code-block:: console\n\n  SAPELLI_CLIENT_ID = 'YOUR_CLIENT_ID'\n\nMigrate the models into the database:\n\n.. code-block:: console\n\n    python manage.py migrate geokey_sapelli\n\nYou're now ready to go!\n\nUpdate\n------\n\nUpdate the geokey-sapelli from PyPI:\n\n.. code-block:: console\n\n    pip install -U geokey-sapelli\n\nMigrate the new models into the database:\n\n.. code-block:: console\n\n    python manage.py migrate geokey_sapelli\n\nTest\n----\n\nRun tests:\n\n.. code-block:: console\n\n    python manage.py test geokey_sapelli\n\nCheck code coverage:\n\n.. code-block:: console\n\n    pip install coverage\n    coverage run --source=geokey_sapelli manage.py test geokey_sapelli\n    coverage report -m --omit=*/tests/*,*/migrations/*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexcites%2Fgeokey-sapelli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fexcites%2Fgeokey-sapelli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexcites%2Fgeokey-sapelli/lists"}