{"id":34108766,"url":"https://github.com/momentohq/client-sdk-python-signer","last_synced_at":"2026-03-12T05:32:56.854Z","repository":{"id":65637775,"uuid":"593858381","full_name":"momentohq/client-sdk-python-signer","owner":"momentohq","description":"Official Python Signer SDK for Momento Serverless Cache","archived":false,"fork":false,"pushed_at":"2024-08-20T18:55:07.000Z","size":58,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-14T10:38:23.308Z","etag":null,"topics":["cache","python","sdk","serverless"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/momentohq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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}},"created_at":"2023-01-27T01:44:38.000Z","updated_at":"2024-08-20T18:53:37.000Z","dependencies_parsed_at":"2024-08-20T20:10:09.945Z","dependency_job_id":"b1815623-4c32-4237-b6c7-7b604f8ae846","html_url":"https://github.com/momentohq/client-sdk-python-signer","commit_stats":null,"previous_names":["momentohq/client-sdk-python-signed-urls"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/momentohq/client-sdk-python-signer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/momentohq%2Fclient-sdk-python-signer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/momentohq%2Fclient-sdk-python-signer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/momentohq%2Fclient-sdk-python-signer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/momentohq%2Fclient-sdk-python-signer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/momentohq","download_url":"https://codeload.github.com/momentohq/client-sdk-python-signer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/momentohq%2Fclient-sdk-python-signer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30416310,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T04:41:02.746Z","status":"ssl_error","status_checked_at":"2026-03-12T04:40:12.571Z","response_time":114,"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":["cache","python","sdk","serverless"],"created_at":"2025-12-14T18:21:53.770Z","updated_at":"2026-03-12T05:32:56.849Z","avatar_url":"https://github.com/momentohq.png","language":"Python","readme":"# Momento client-sdk-python-signer\n\n:warning: Experimental SDK :warning:\n\nPython SDK for Momento is experimental and under active development.\nThere could be non-backward compatible changes or removal in the future.\nPlease be aware that you may need to update your source code with the current version of the SDK when its version gets upgraded.\n\n---\n\n\u003cbr/\u003e\n\nPython SDK for Momento, a serverless cache that automatically scales without any of the operational overhead required by traditional caching solutions.\n\n\u003cbr/\u003e\n\n## Getting Started :running:\n\n### Requirements\n\n- [Python 3.7](https://www.python.org/downloads/) or above is required\n- A Momento Auth Token is required, you can generate one using the [Momento CLI](https://github.com/momentohq/momento-cli)\n\n\u003cbr/\u003e\n\n### Installing Momento and Running the Example\n\nCheck out our [Python SDK example](/examples/)!\n\n\u003cbr/\u003e\n\n### Using Momento\n\n```python\nimport os\nfrom momento import simple_cache_client as scc\n\n# Initializing Momento\n_MOMENTO_AUTH_TOKEN = os.getenv('MOMENTO_AUTH_TOKEN')\n_ITEM_DEFAULT_TTL_SECONDS = 60\nwith scc.SimpleCacheClient(_MOMENTO_AUTH_TOKEN, _ITEM_DEFAULT_TTL_SECONDS) as cache_client:\n    # Creating a cache named \"cache\"\n    _CACHE_NAME = 'cache'\n    cache_client.create_cache(_CACHE_NAME)\n\n    # Sets key with default TTL and get value with that key\n    _KEY = 'MyKey'\n    _VALUE = 'MyValue'\n    cache_client.set(_CACHE_NAME, _KEY, _VALUE)\n    get_resp = cache_client.get(_CACHE_NAME, _KEY)\n    print(f'Looked up Value: {str(get_resp.value())}')\n\n    # Sets key with TTL of 5 seconds\n    cache_client.set(_CACHE_NAME, _KEY, _VALUE, 5)\n\n    # Permanently deletes cache\n    cache_client.delete_cache(_CACHE_NAME)\n```\n\n\u003cbr/\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmomentohq%2Fclient-sdk-python-signer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmomentohq%2Fclient-sdk-python-signer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmomentohq%2Fclient-sdk-python-signer/lists"}