{"id":20057543,"url":"https://github.com/roo-oliv/staticmaps-signature","last_synced_at":"2025-09-07T12:37:56.827Z","repository":{"id":57471208,"uuid":"104507180","full_name":"roo-oliv/staticmaps-signature","owner":"roo-oliv","description":"Easily sign Google StaticMap API request urls with your API Key or Client ID.","archived":false,"fork":false,"pushed_at":"2023-01-11T18:05:57.000Z","size":32,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-05T15:10:25.279Z","etag":null,"topics":["api-key","client-id","google-api","google-maps","google-maps-api","private-key","secret","signature","staticmap","staticmaps"],"latest_commit_sha":null,"homepage":"http://staticmaps-signature.readthedocs.io","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/roo-oliv.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":"allrod5","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2017-09-22T18:41:27.000Z","updated_at":"2025-07-27T04:26:27.000Z","dependencies_parsed_at":"2023-02-09T04:01:09.893Z","dependency_job_id":null,"html_url":"https://github.com/roo-oliv/staticmaps-signature","commit_stats":null,"previous_names":["roo-oliv/staticmaps-signature","allrod5/staticmaps-signature"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/roo-oliv/staticmaps-signature","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roo-oliv%2Fstaticmaps-signature","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roo-oliv%2Fstaticmaps-signature/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roo-oliv%2Fstaticmaps-signature/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roo-oliv%2Fstaticmaps-signature/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/roo-oliv","download_url":"https://codeload.github.com/roo-oliv/staticmaps-signature/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roo-oliv%2Fstaticmaps-signature/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274039445,"owners_count":25211901,"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","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["api-key","client-id","google-api","google-maps","google-maps-api","private-key","secret","signature","staticmap","staticmaps"],"created_at":"2024-11-13T12:59:23.843Z","updated_at":"2025-09-07T12:37:56.776Z","avatar_url":"https://github.com/roo-oliv.png","language":"Python","funding_links":["https://github.com/sponsors/allrod5"],"categories":[],"sub_categories":[],"readme":"StaticMaps Signature\n====================\n\nEasily sign Google StaticMap API request urls with your API Key or Client ID.\n\nPython 2.x and 3.x are supported.\n\n.. |build| image:: https://travis-ci.org/allrod5/staticmaps-signature.svg?branch=master\n    :target: https://travis-ci.org/allrod5/staticmaps-signature\n    :scale: 100%\n    :align: middle\n.. |coverage| image:: https://coveralls.io/repos/github/allrod5/staticmaps-signature/badge.svg?branch=master\n    :target: https://coveralls.io/github/allrod5/staticmaps-signature?branch=master\n    :scale: 100%\n    :align: middle\n\n+---------+------------+\n| |build| | |coverage| |\n+---------+------------+\n\nUsage\n-----\n\nUsing StaticMaps Signature is pretty straight forward:\n\n.. code:: python\n\n    from staticmaps_signature import StaticMapURLSigner\n    staticmap_url_signer = StaticMapURLSigner(\n        public_key=YOUR_API_KEY, private_key=YOUR_SECRET)\n\n    signed = staticmap_url_signer.sign_url(URL_TO_SIGN)\n\nThis will return your URL appended with\n``'\u0026key=YOUR_API_KEY\u0026signature=UNIQUE_SIGNATURE'``.\n\nIf you wish to use your Cliend ID instead then just instantiate\n:class:`StaticMapURLSigner` like this:\n\n.. code:: python\n\n    staticmap_url_signer = StaticMapURLSigner(\n        client_id=YOUR_CLIENT_ID, private_key=YOUR_SECRET)\n\nIn case your URL already contains your API Key or Cliend ID instantiate\n:class:`StaticMapURLSigner` with your shared secret only:\n\n.. code:: python\n\n    staticmap_url_signer = StaticMapURLSigner(private_key=YOUR_SECRET)\n\nIf you want just to append your API Key to the URL rather than signing it\njust instantiate :class:`StaticMapURLSigner` with your key only:\n\n.. code:: python\n\n    staticmap_url_signer = StaticMapURLSigner(public_key=YOUR_API_KEY)\n\nThat's all there is for it.\n\nThis project is not maintained or supported by Google nor Google Maps.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froo-oliv%2Fstaticmaps-signature","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froo-oliv%2Fstaticmaps-signature","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froo-oliv%2Fstaticmaps-signature/lists"}