{"id":15066778,"url":"https://github.com/21dimensions/python-client","last_synced_at":"2026-01-30T22:11:31.450Z","repository":{"id":57425072,"uuid":"152709973","full_name":"21dimensions/python-client","owner":"21dimensions","description":"Client for EasyEasy.io cloud database","archived":false,"fork":false,"pushed_at":"2018-10-23T12:49:09.000Z","size":3,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-14T10:59:57.653Z","etag":null,"topics":["cloud","database","databases","easyeasy","orm","orm-framework","storage"],"latest_commit_sha":null,"homepage":"http://easyeasy.io/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/21dimensions.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-10-12T07:18:33.000Z","updated_at":"2018-10-23T12:49:10.000Z","dependencies_parsed_at":"2022-09-19T05:20:47.112Z","dependency_job_id":null,"html_url":"https://github.com/21dimensions/python-client","commit_stats":null,"previous_names":["easyeasyio/python-client"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/21dimensions/python-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/21dimensions%2Fpython-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/21dimensions%2Fpython-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/21dimensions%2Fpython-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/21dimensions%2Fpython-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/21dimensions","download_url":"https://codeload.github.com/21dimensions/python-client/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/21dimensions%2Fpython-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28920744,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T20:25:28.696Z","status":"ssl_error","status_checked_at":"2026-01-30T20:25:13.426Z","response_time":66,"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":["cloud","database","databases","easyeasy","orm","orm-framework","storage"],"created_at":"2024-09-25T01:12:02.964Z","updated_at":"2026-01-30T22:11:31.427Z","avatar_url":"https://github.com/21dimensions.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# easyeasy.client\n\n## How to use\n\n### Install\n```\npip install easyeasy\n```\n\n### Initialize\n\n```python\nfrom easyeasy.client import Client\n\nclient = Client(\"bc420813-17d9-47fa-9d29-8bd6a1207f8a\")\n```\n\n### Examples\n\n```python\n\nclass Cat:\n    def __init__(self):\n        self.id = None\n        self.name = None\n        self.interests = []\n        self.age = None\n\ncat = Cat()\ncat.name = \"Sam\"\ncat.age = 1.5\ncat.interests = [\"play\", \"eat\", \"discover\"]\n\n# add object. entity name will be inferred from class name\nid = client.add(cat)\n\n# or specify entity name explicitly\nid = client.add(cat, \"cat\")\n\n# get one object by id. Specify entity type. Entity name will be inferred\ncat = client.get_one(id, Cat)\n\n# or specify entity name explicitly\ncat = client.get_one(id, Cat, \"cat\")\n# at least one should be specified(entity_class or entity_name). In case entity_class not specified, dict object will be returned\n\n\n# update object\ncat.age = 2.0\ncat.interests = [\"eat\", \"sleep\", \"play\"]\n\n# object must have id property to distinguish which object is being updated. entity_name can be specified explicitly\nclient.update(cat)\n\n# get all objects. entity_name can be specified explicitly\ncats_collection = client.get(Cat)\n\n# filtering\ncats_collection = client.get(Cat, query={'age': 1.5})  # get 1.5 years old cats\ncats_collection = client.get(Cat, query={'age_gt': 1.0})  # cats older than 1 year\ncats_collection = client.get(Cat, query={\"name_like\": \"Sa*\"})  # wildcard\n\n# paging\ncats_collection = client.get(Cat, query={\"_start\": \"10\", \"_count\": 10})\n\n# ordering\ncats_collection = client.get(Cat, query={\"_orderby\":\"age\"})\ncats_collection = client.get(Cat, query={\"_orderbydesc\":\"age\"})\n\n# learn more about filtering operators at: http://easyeasy.io/docs#/operators\n\n# delete object by id\nclient.delete(cat.id, Cat)\n```\n\n# Licence\nISC\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F21dimensions%2Fpython-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F21dimensions%2Fpython-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F21dimensions%2Fpython-client/lists"}