{"id":15491305,"url":"https://github.com/patarapolw/simplecel","last_synced_at":"2025-06-18T18:39:03.557Z","repository":{"id":57467306,"uuid":"141664218","full_name":"patarapolw/simplecel","owner":"patarapolw","description":"Offline Excel-like app with no formula conversion, but with image/markdown/HTML support.","archived":false,"fork":false,"pushed_at":"2018-08-10T07:15:31.000Z","size":1812,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-22T19:12:15.146Z","etag":null,"topics":["excel","handsontable","pyexcel"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/patarapolw.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}},"created_at":"2018-07-20T04:39:45.000Z","updated_at":"2024-07-09T09:50:54.000Z","dependencies_parsed_at":"2022-09-10T02:02:19.915Z","dependency_job_id":null,"html_url":"https://github.com/patarapolw/simplecel","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/patarapolw/simplecel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patarapolw%2Fsimplecel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patarapolw%2Fsimplecel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patarapolw%2Fsimplecel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patarapolw%2Fsimplecel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/patarapolw","download_url":"https://codeload.github.com/patarapolw/simplecel/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patarapolw%2Fsimplecel/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260611522,"owners_count":23036361,"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","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":["excel","handsontable","pyexcel"],"created_at":"2024-10-02T07:44:46.919Z","updated_at":"2025-06-18T18:38:58.543Z","avatar_url":"https://github.com/patarapolw.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simplecel\n\n[![PyPI version shields.io](https://img.shields.io/pypi/v/simplecel.svg)](https://pypi.python.org/pypi/simplecel/)\n[![PyPI license](https://img.shields.io/pypi/l/simplecel.svg)](https://pypi.python.org/pypi/simplecel/)\n[![PyPI pyversions](https://img.shields.io/pypi/pyversions/simplecel.svg)](https://pypi.python.org/pypi/simplecel/)\n\nOffline Excel-like app with no formula conversion, but with image/markdown/HTML support.\n\n## Features\n\n- Custom renderers beyond https://docs.handsontable.com/5.0.0/demo-custom-renderers.html -- 'markdownRenderer', 'imageRenderer'. -- Can render images with URL's alone. No need for `\u003cimg src=\"\" /\u003e`.\n- Always good word wrap support and auto-row-height due to Handsontable.\n- Absolutely no formula conversion. Things like `=1+2`, `OCT2`, `11-14` will never get converted.\n- Max column width can be specified (default: 200).\n\n## Installation\n\n```commandline\npip install simplecel\npip install pyexcel-xlsx  # Or any other packages defined in pyexcel GitHub\n```\n\nFor what you need to install other than `simplecel`, please see https://github.com/pyexcel/pyexcel#available-plugins\n\n## Usage\n\n```commandline\n$ simplecel --help\nUsage: simplecel [OPTIONS] FILENAME\n\nOptions:\n  --config TEXT     Please input the path to CONFIG yaml, as defined in pyhandsontable.\n  --host TEXT\n  --port INTEGER\n  --debug\n  --help          Show this message and exit.\n$ simplecel example.xlsx\n```\n\nIn this case, `example.config.yaml` is also auto-loaded, although you can specify `*.config.yaml` directly in `--config`. If the file doesn't exist, it will be auto-generated on Save.\n\n## Example of `example.config.yaml`\n\n```yaml\nsimplecel:\n  _default: {allowInsertCol: false, hasHeader: true, renderers: markdownRenderer}\n  hanzi:\n    allowInsertCol: false\n    colHeaders: true\n    colWidths: [67, 197, 200, 71, 90, 106, 66, 60, 59, 200]\n    contextMenu: true\n    dropdownMenu: true\n    filters: true\n    hasHeader: true\n    manualColumnResize: true\n    manualRowResize: true\n    maxColWidth: 200\n    renderers: markdownRenderer\n    rowHeaders: true\n```\n\nOne-stop settings for all tables are defined in `_default`.\n\nNote that the `defaultConfig` in the Javascript are\n\n```javascript\nlet defaultConfig = {\n  rowHeaders: true,\n  colHeaders: true,\n  manualRowResize: true,\n  manualColumnResize: true,\n  // fixedRowsTop: 1,\n  filters: true,\n  dropdownMenu: true,\n  contextMenu: true,\n  maxColWidth: 200,\n  hasHeader: false,\n  // renderers: 'markdownRenderer',\n  allowInsertCol: true\n};\n```\n\n`renderers` can also accept something like\n\n```python\n{\n    1: \"markdownRenderer\",\n    2: \"markdownRenderer\"\n}\n```\n\nSome other acceptable configs are defined in https://docs.handsontable.com/5.0.0/Options.html\n\n## Plan\n\n- Wrap this app in PyQt / PyFlaDesk for GUI end-users (maybe later, as PyFlaDesk of now is still buggy).\n\n## Screenshots\n\n\u003cimg src=\"https://raw.githubusercontent.com/patarapolw/simplecel/master/screenshots/0.png\" /\u003e\n\u003cimg src=\"https://raw.githubusercontent.com/patarapolw/simplecel/master/screenshots/1.png\" /\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatarapolw%2Fsimplecel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpatarapolw%2Fsimplecel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatarapolw%2Fsimplecel/lists"}