{"id":40157870,"url":"https://github.com/byteroad/pygeoapi_config","last_synced_at":"2026-01-19T16:00:34.215Z","repository":{"id":293704224,"uuid":"984693983","full_name":"byteroad/pygeoapi_config","owner":"byteroad","description":"pygeoapi configurator","archived":false,"fork":false,"pushed_at":"2025-11-17T11:01:29.000Z","size":759,"stargazers_count":0,"open_issues_count":3,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-11-17T13:06:35.887Z","etag":null,"topics":["ogcapi","pygeoapi","qgis","qgis-plugin"],"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/byteroad.png","metadata":{"files":{"readme":"README.md","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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-16T10:55:58.000Z","updated_at":"2025-11-17T11:01:34.000Z","dependencies_parsed_at":"2025-05-16T18:25:30.344Z","dependency_job_id":"3807d894-7f00-46f9-ae84-58f1f7e928b7","html_url":"https://github.com/byteroad/pygeoapi_config","commit_stats":null,"previous_names":["byteroad/pygeoapi_config"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/byteroad/pygeoapi_config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/byteroad%2Fpygeoapi_config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/byteroad%2Fpygeoapi_config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/byteroad%2Fpygeoapi_config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/byteroad%2Fpygeoapi_config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/byteroad","download_url":"https://codeload.github.com/byteroad/pygeoapi_config/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/byteroad%2Fpygeoapi_config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28573281,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T15:45:05.669Z","status":"ssl_error","status_checked_at":"2026-01-19T15:44:23.317Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["ogcapi","pygeoapi","qgis","qgis-plugin"],"created_at":"2026-01-19T16:00:22.682Z","updated_at":"2026-01-19T16:00:34.103Z","avatar_url":"https://github.com/byteroad.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"![icon](/conf-icon.png)\n# pygeoapi configurator\n\nThis plugin lets you read and write a [pygeoapi](https://pygeoapi.io/) configuration file on your local machine. You can deploy this configuration, by uploading it to a server with a pygeoapi instance.\n\nIn alternative you can pull and push a configuration directly from/to a running pygeoapi instance. In order to to this:\n\n* The pygeoapi [admin API](https://docs.pygeoapi.io/en/latest/admin-api.html) must be enabled on that instance.\n* The pygeoapi instance must be *unprotected* (*i.e.*: without authentication enabled).\n* If you want to see the changes without restarting the service, you must [run pygeoapi with hot reload](https://docs.pygeoapi.io/en/latest/admin-api.html#pygeoapi-hot-reloading-in-gunicorn).\n\nIt goes without saying that a combination of an unprotected instance and an enabled admin API creates a security risk that is unaceptable for production scenarios. For that reason it should be used for **testing purposes only, without exposing the service to the Internet**.\n\nRun pygeoapi docker container with hot reload, enabling the admin API:\n\n```bash\ndocker run -p 5000:80 -e PYGEOAPI_SERVER_ADMIN=true geopython/pygeoapi:latest run-with-hot-reload\n```\n\n## Deploy\n\ncopy this folder to your QGIS plugin directory. Something like:\n\n `~/.local/share/QGIS/QGIS3/profiles/default/python/plugins`\n\n ## Develop\n\n Install dependencies with:\n\n `pip install -r requirements`\n\n Compile resources with:\n\n `pb_tool compile`\n\nModify the user interface by opening pygeoapiconfig_dialog_base.ui in [Qt Creator](https://doc.qt.io/qtcreator/).\n\n ## Run unit tests locally\n Run the following command from the root folder: \n `python tests\\run_tests_locally.py` \n \n The YAML files to test against are stored under tests/yaml_samples and names as follows: 'organisation_repository_commit_filename'. \n\n ## Screenshot\n\n![screenshot](/screenshot.png)\n\n## Translate\n\n1. Create or modify 'i18n\\pygeoapi_config.pro' file to specify the .ui and .py files that contain translatable strings.\n\n2. Run the following command from OSGeo4W Shell to generate .ts files specified in 'pygeoapi_config.pro':\n\n`pylupdate5 i18n\\pygeoapi_config.pro`\n\n3. After editing the .ts files, run the following command to compile .dm files for each locale:\n\n`lrelease pygeoapi_config_pt.ts`\n\n## Contributing 🤝\n\nThis plugin is a live project and we welcome contributions from the community! If you have suggestions for improvements, found a bug, or want to add new features, feel free to:\n\n* Open an [issue](https://github.com/opengeospatial/ogc-records-website/issues) to start a discussion\n* Submit a [pull request](https://github.com/opengeospatial/ogc-records-website/pulls) with your proposed changes\n\nWe appreciate your support in making this plugin better!\n\n## License\n\nThis project is released under an [MIT License](./LICENSE)\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbyteroad%2Fpygeoapi_config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbyteroad%2Fpygeoapi_config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbyteroad%2Fpygeoapi_config/lists"}