{"library":"spreadsnake","title":"spreadsnake","type":"library","description":"A Python spreadsheet API for reading, writing, and manipulating spreadsheet files (e.g., Excel, CSV). Currently in alpha (v1.0a1), release cadence is unknown.","language":"python","status":"active","last_verified":"Sat May 09","install":{"commands":["pip install spreadsnake==1.0a1"],"cli":null},"imports":["from spreadsnake import Spreadsheet","from spreadsnake import load_workbook"],"auth":{"required":false,"env_vars":[]},"links":{"homepage":null,"github":"https://github.com/RandomKiddo/spreadsnake","docs":null,"changelog":null,"pypi":"https://pypi.org/project/spreadsnake/","npm":null,"openapi_spec":null,"status_page":null,"smithery":null},"quickstart":{"code":"from spreadsnake import load_workbook, Spreadsheet\n\n# Load an existing spreadsheet\nwb = load_workbook('example.xlsx')\n\n# Create a new spreadsheet\nnew_wb = Spreadsheet()\nnew_wb.add_sheet('Sheet1')\nsheet = new_wb['Sheet1']\nsheet['A1'] = 'Hello'\nnew_wb.save('new_file.xlsx')","lang":"python","description":"Basic usage: load, create, modify, and save spreadsheets.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}