{"id":43903330,"url":"https://github.com/singlestore-labs/ibis-singlestoredb","last_synced_at":"2026-02-06T19:20:48.371Z","repository":{"id":81982347,"uuid":"455320823","full_name":"singlestore-labs/ibis-singlestoredb","owner":"singlestore-labs","description":"Ibis backend for SingleStoreDB","archived":false,"fork":false,"pushed_at":"2025-12-12T21:24:20.000Z","size":278507,"stargazers_count":2,"open_issues_count":6,"forks_count":1,"subscribers_count":6,"default_branch":"main","last_synced_at":"2026-01-18T02:14:30.193Z","etag":null,"topics":["database","dataframe","ibis","python","singlestoredb"],"latest_commit_sha":null,"homepage":"https://singlestore.com","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/singlestore-labs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-03T20:39:56.000Z","updated_at":"2025-12-12T21:24:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"b24d1a20-0d82-43a4-a068-eba2e8e7f2e6","html_url":"https://github.com/singlestore-labs/ibis-singlestoredb","commit_stats":{"total_commits":68,"total_committers":3,"mean_commits":"22.666666666666668","dds":0.1470588235294118,"last_synced_commit":"c220891704951d5d50c79b336619c8c64e536227"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/singlestore-labs/ibis-singlestoredb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singlestore-labs%2Fibis-singlestoredb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singlestore-labs%2Fibis-singlestoredb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singlestore-labs%2Fibis-singlestoredb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singlestore-labs%2Fibis-singlestoredb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/singlestore-labs","download_url":"https://codeload.github.com/singlestore-labs/ibis-singlestoredb/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singlestore-labs%2Fibis-singlestoredb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29173495,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T16:33:35.550Z","status":"ssl_error","status_checked_at":"2026-02-06T16:33:30.716Z","response_time":59,"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":["database","dataframe","ibis","python","singlestoredb"],"created_at":"2026-02-06T19:20:47.462Z","updated_at":"2026-02-06T19:20:48.363Z","avatar_url":"https://github.com/singlestore-labs.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# \u003cimg src=\"https://github.com/singlestore-labs/singlestoredb-python/blob/main/resources/singlestore-logo.png\" height=\"60\" valign=\"middle\"/\u003e Ibis backend for SingleStoreDB\n\n**Attention**: The code in this repository is intended for experimental use only and is not fully tested, documented, or supported by SingleStore. Visit the [SingleStore Forums](https://www.singlestore.com/forum/) to ask questions about this repository.\n\nThis project contains an [Ibis](https://ibis-project.org) backend\nfor the SingleStore database. This allows you to access and manipulate your\ndata using a DataFrame-like API.\n\n## Install\n\nThis package can be installed from PyPI using `pip`:\n```\npip install ibis-singlestoredb\n```\n\n## Usage\n\nConnections to the SingleStoreDB database are made using URLs that specify\nthe connection driver package, server hostname, server port, and user\ncredentials.\n```\nimport ibis\n\n# Connect using the default connector\nconn = ibis.singlestoredb.connect('user:password@host:3306/db_name')\n\n# Get an Ibis DataFrame object that points to the 'employees' table\nemployees = conn.table('employees')\n\n# Apply DataFrame-like operations (lazily)\nres = employees[employees.name.like('Smith')][employees.deptId \u003e 1]\n\n# Execute the operations\nres.execute()\n```\n\nConnecting to the HTTP API is done as follows:\n```\n# Use the HTTP API connector\nconn = ibis.singlestoredb.connect('http://user:password@host:8080/db_name')\n```\n\n## Examples\n\nThere are some example Jupyter notebooks in the\n[examples](https://github.com/singlestore-labs/ibis-singlestoredb/tree/main/examples)\ndirectory.\n\n\n## License\n\nThis library is licensed under the [Apache 2.0 License](https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/main/LICENSE?token=GHSAT0AAAAAABMGV6QPNR6N23BVICDYK5LAYTVK5EA).\n\n## Resources\n\n* [SingleStore](https://singlestore.com)\n* [Ibis](https://ibis-project.org)\n* [Python](https://python.org)\n\n## User agreement\n\nSINGLESTORE, INC. (\"SINGLESTORE\") AGREES TO GRANT YOU AND YOUR COMPANY ACCESS TO THIS OPEN SOURCE SOFTWARE CONNECTOR ONLY IF (A) YOU AND YOUR COMPANY REPRESENT AND WARRANT THAT YOU, ON BEHALF OF YOUR COMPANY, HAVE THE AUTHORITY TO LEGALLY BIND YOUR COMPANY AND (B) YOU, ON BEHALF OF YOUR COMPANY ACCEPT AND AGREE TO BE BOUND BY ALL OF THE OPEN SOURCE TERMS AND CONDITIONS APPLICABLE TO THIS OPEN SOURCE CONNECTOR AS SET FORTH BELOW (THIS “AGREEMENT”), WHICH SHALL BE DEFINITIVELY EVIDENCED BY ANY ONE OF THE FOLLOWING MEANS: YOU, ON BEHALF OF YOUR COMPANY, CLICKING THE “DOWNLOAD, “ACCEPTANCE” OR “CONTINUE” BUTTON, AS APPLICABLE OR COMPANY’S INSTALLATION, ACCESS OR USE OF THE OPEN SOURCE CONNECTOR AND SHALL BE EFFECTIVE ON THE EARLIER OF THE DATE ON WHICH THE DOWNLOAD, ACCESS, COPY OR INSTALL OF THE CONNECTOR OR USE ANY SERVICES (INCLUDING ANY UPDATES OR UPGRADES) PROVIDED BY SINGLESTORE.\nBETA SOFTWARE CONNECTOR\n\nCustomer Understands and agrees that it is  being granted access to pre-release or “beta” versions of SingleStore’s open source software connector (“Beta Software Connector”) for the limited purposes of non-production testing and evaluation of such Beta Software Connector. Customer acknowledges that SingleStore shall have no obligation to release a generally available version of such Beta Software Connector or to provide support or warranty for such versions of the Beta Software Connector  for any production or non-evaluation use.\n\nNOTWITHSTANDING ANYTHING TO THE CONTRARY IN ANY DOCUMENTATION,  AGREEMENT OR IN ANY ORDER DOCUMENT, SINGLESTORE WILL HAVE NO WARRANTY, INDEMNITY, SUPPORT, OR SERVICE LEVEL, OBLIGATIONS WITH\nRESPECT TO THIS BETA SOFTWARE CONNECTOR (INCLUDING TOOLS AND UTILITIES).\n\nAPPLICABLE OPEN SOURCE LICENSE: Apache 2.0\n\nIF YOU OR YOUR COMPANY DO NOT AGREE TO THESE TERMS AND CONDITIONS, DO NOT CHECK THE ACCEPTANCE BOX, AND DO NOT DOWNLOAD, ACCESS, COPY, INSTALL OR USE THE SOFTWARE OR THE SERVICES.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsinglestore-labs%2Fibis-singlestoredb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsinglestore-labs%2Fibis-singlestoredb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsinglestore-labs%2Fibis-singlestoredb/lists"}