{"id":15942591,"url":"https://github.com/bclindner/python-xls-csv-convert","last_synced_at":"2026-07-10T13:32:25.435Z","repository":{"id":100502585,"uuid":"603848983","full_name":"bclindner/python-xls-csv-convert","owner":"bclindner","description":null,"archived":false,"fork":false,"pushed_at":"2023-02-19T18:56:03.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-26T20:43:24.688Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bclindner.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-19T18:40:34.000Z","updated_at":"2023-02-19T18:43:43.000Z","dependencies_parsed_at":"2023-05-15T11:15:35.294Z","dependency_job_id":null,"html_url":"https://github.com/bclindner/python-xls-csv-convert","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bclindner/python-xls-csv-convert","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bclindner%2Fpython-xls-csv-convert","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bclindner%2Fpython-xls-csv-convert/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bclindner%2Fpython-xls-csv-convert/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bclindner%2Fpython-xls-csv-convert/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bclindner","download_url":"https://codeload.github.com/bclindner/python-xls-csv-convert/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bclindner%2Fpython-xls-csv-convert/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35333326,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-10T02:00:06.465Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-10-07T07:41:58.240Z","updated_at":"2026-07-10T13:32:25.419Z","avatar_url":"https://github.com/bclindner.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Python XLS-to-CSV Processing Script\n\nThis script opens an `employee.xls` file at a provided path with the format:\n\n| employeeid | expense1 | expense2 | expense3 | totalexpense |\n|------------|----------|----------|----------|--------------|\n| 1          | 1        | 2        | 3        |              |\n| 2          | 10.10    | 31       | 4        |              |\n| ...        |          |          |          |              |\n\nIt then sums the columns from `expense1`, `expense2`, and `expense3` and writes\na new verson of this file, `employee.csv`, with the result of the summed columns\nin the `totalexpense` column.\n\n## Setup\n\nThis project is an unpackaged Python script. You will need Python 3.8 and pip to\nrun it - please make sure it is installed and in your PATH before continuing.\n\nDownload or clone this repository:\n```\ngit clone https://github.com/bclindner/python-xls-csv-convert\ncd python-xls-csv-convert\n```\n\nA virtual environment would be recommended, to avoid polluting your system's\nPython installation.\n\nLinux instructions:\n\n```sh\npython -m venv venv\n. venv/bin/activate\n```\n\nWindows instructions:\n```ps1\npython -m venv venv\nvenv/Scripts/activate.ps1\n```\n\nOnce your virtual environment is initialized, install the requirements:\n\n```\npip install -r requirements.txt\n```\n\nYou can now launch the script - run this command with the directory of the XLS\nfile as an argument:\n\n```ps1\npython run.py C:\\temp\\incoming\\employee.xls\n```\n\nIf everything was set up correctly, the program should have created a new file,\n`output.csv`, in the same folder as the `employee.xls` file.\n\nThe script is configured to fail on the following cases, for safety:\n* A path was not specified when running\n* The path specified is not a file or does not exist\n* The output.csv file already exists\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbclindner%2Fpython-xls-csv-convert","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbclindner%2Fpython-xls-csv-convert","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbclindner%2Fpython-xls-csv-convert/lists"}