{"id":37063153,"url":"https://github.com/learningequality/kolibri-sync-extras-plugin","last_synced_at":"2026-01-14T07:03:04.588Z","repository":{"id":62592787,"uuid":"499642118","full_name":"learningequality/kolibri-sync-extras-plugin","owner":"learningequality","description":"Optional features for Kolibri, taking advantage of advanced features of Morango","archived":false,"fork":false,"pushed_at":"2024-08-19T14:37:46.000Z","size":58,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-07-08T12:14:12.541Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/learningequality.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.rst","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-03T20:25:48.000Z","updated_at":"2024-08-19T14:36:52.000Z","dependencies_parsed_at":"2024-05-06T17:51:41.933Z","dependency_job_id":null,"html_url":"https://github.com/learningequality/kolibri-sync-extras-plugin","commit_stats":{"total_commits":12,"total_committers":1,"mean_commits":12.0,"dds":0.0,"last_synced_commit":"54f3e519e4ac13a9059966e512c90025281a4724"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/learningequality/kolibri-sync-extras-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/learningequality%2Fkolibri-sync-extras-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/learningequality%2Fkolibri-sync-extras-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/learningequality%2Fkolibri-sync-extras-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/learningequality%2Fkolibri-sync-extras-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/learningequality","download_url":"https://codeload.github.com/learningequality/kolibri-sync-extras-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/learningequality%2Fkolibri-sync-extras-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28412493,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T05:26:33.345Z","status":"ssl_error","status_checked_at":"2026-01-14T05:21:57.251Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2026-01-14T07:03:03.969Z","updated_at":"2026-01-14T07:03:04.583Z","avatar_url":"https://github.com/learningequality.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kolibri Sync Extras plugin\n\n## What is this?\n\nKolibri is a Learning Management System / Learning App designed to run on low-power devices, targeting the needs of learners and teachers in contexts with limited infrastructure. See [learningequality.org/kolibri](https://learningequality.org/kolibri/) for more info.\n\nKolibri supports syncing facility data between two instances. This plugin provides additional sync related features that can be turned on to customize the behavior of those syncs. In particular, these features can enhance Kolibri's syncing mechanism when dealing with a large database or dataset.\n\n\n## How can I install this plugin?\n\n1. Inside your Kolibri virtual environment: `pip install kolibri-sync-extras-plugin`\n\n2. Activate the plugin: `kolibri plugin enable kolibri_sync_extras_plugin`\n\n3. Restart Kolibri\n\n\n## Plugin configuration\n\nThe following configuration options are available, and should be defined within the `[Sync]` section of `$KOLIBRI_HOME/options.ini` or define environment variables with the prefix `KOLIBRI_SYNC_`.\n\n| Option                             | Type | Default                           | Description                                                                  |\n|------------------------------------| --- |-----------------------------------|------------------------------------------------------------------------------|\n| `BACKGROUND_INITIALIZATION`        | Boolean | `False`                           | Whether to enable background initialization of pull syncs                    |\n| `BACKGROUND_INITIALIZATION_STAGES` | String | `serializing,queuing`                    | Comma separated list of stages for which to enable background initialization |\n| `BACKGROUND_FINALIZATION`          | Boolean | `False`                           | Whether to enable background finalization of push syncs                      |\n| `BACKGROUND_FINALIZATION_STAGES`   | String | `dequeuing,deserializing,cleanup` | Comma separated list of stages for which to enable background finalization   |\n\n### Example\n```ini\n[Sync]\nBACKGROUND_INITIALIZATION = True\nBACKGROUND_INITIALIZATION_STAGES = \"serializing\"\nBACKGROUND_FINALIZATION = True\nBACKGROUND_FINALIZATION_STAGES = \"deserializing,cleanup\"\n```\n\n## Development\n### Getting started\n```bash\n$ pip install -r requirements-dev.txt\n$ pre-commit install\n$ KOLIBRI_HOME=\"$(pwd)/.kolibri\" kolibri plugin enable kolibri_sync_extras_plugin\n```\n\n## Testing\n### Getting started\n```bash\n$ pip install -r requirements.txt -r requirements-test.txt\n$ KOLIBRI_HOME=\"$(pwd)/.kolibri\" kolibri plugin enable kolibri_sync_extras_plugin\n```\n\n### Running them\n```bash\n$ pytest test/\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flearningequality%2Fkolibri-sync-extras-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flearningequality%2Fkolibri-sync-extras-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flearningequality%2Fkolibri-sync-extras-plugin/lists"}