{"id":22375306,"url":"https://github.com/dsblank/datagrid","last_synced_at":"2026-02-06T09:35:15.092Z","repository":{"id":265684378,"uuid":"896472351","full_name":"dsblank/datagrid","owner":"dsblank","description":"DataGrid for Python mixed-media tables","archived":false,"fork":false,"pushed_at":"2025-01-27T14:25:05.000Z","size":1981,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-30T03:34:06.399Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/dsblank.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":"2024-11-30T13:05:36.000Z","updated_at":"2025-02-27T01:26:44.000Z","dependencies_parsed_at":"2024-11-30T14:27:15.894Z","dependency_job_id":"c2fcfb37-2925-4ed9-bac1-6b32b6eccf5c","html_url":"https://github.com/dsblank/datagrid","commit_stats":null,"previous_names":["dsblank/datagrid"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/dsblank/datagrid","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsblank%2Fdatagrid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsblank%2Fdatagrid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsblank%2Fdatagrid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsblank%2Fdatagrid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dsblank","download_url":"https://codeload.github.com/dsblank/datagrid/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsblank%2Fdatagrid/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29157426,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T07:18:23.844Z","status":"ssl_error","status_checked_at":"2026-02-06T07:13:32.659Z","response_time":59,"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":[],"created_at":"2024-12-04T21:20:06.036Z","updated_at":"2026-02-06T09:35:14.873Z","avatar_url":"https://github.com/dsblank.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# datagrid\n\nCreate a datagrid of mixed-media items, and log to comet.com.\n\n## Installation\n\n```\npip install datagrid\n```\n\n## Example\n\nThe following demo program will log 100 random images, scores, and categories:\n\n```python\nfrom comet_ml import start\nfrom datagrid import DataGrid, Image\n\nimport random\nfrom PIL import Image as PImage\nimport requests\n\nexperiment = start(project_name=\"datagrids\")\n\ncategories = [\"sunset\", \"landscape\", \"water\", \"tree\", \"city\"]\n\ndg = DataGrid(\n    columns=[\"Image\", \"Score\", \"Category\"],\n    name=\"Demo\"\n)\nurl = \"https://picsum.photos/200/300\"\nfor i in range(100):\n    im = PImage.open(requests.get(url, stream=True).raw)\n    category = random.choice(categories)\n    score = random.random()\n    image = Image(im, metadata={\"category\": category, \"score\": score})\n    dg.append([image, score, category])\n\ndg.log(experiment)\nexperiment.end()\n```\n\n## Visualization\n\n![image](https://github.com/user-attachments/assets/a2a168cd-8e82-4418-b793-58e76bc5ab63)\n\nLog into \u003ca href=\"https://comet.com\"\u003ecomet.com\u003c/a\u003e to see results.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdsblank%2Fdatagrid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdsblank%2Fdatagrid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdsblank%2Fdatagrid/lists"}