
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
serializable-excel
Advanced tools
A user-friendly Python library for seamless bidirectional conversion between Excel spreadsheets and Pydantic models
A user-friendly Python library for seamless bidirectional conversion between Excel spreadsheets and Pydantic models using declarative syntax similar to SQLAlchemy.
from serializable_excel import ExcelModel, Column
class UserModel(ExcelModel):
name: str = Column(header="Name")
age: int = Column(header="Age")
email: str = Column(header="Email")
# Read from Excel file
users = UserModel.from_excel("users.xlsx")
# Write to Excel file
UserModel.to_excel(users, "output.xlsx")
# Or work with bytes for API usage
excel_bytes = UserModel.to_excel(users, return_bytes=True)
users = UserModel.from_excel(file_bytes)
pip install serializable-excel
Or install from source:
git clone https://github.com/of1nn/serializable-excel.git
cd serializable-excel
pip install -r requirements.txt
📚 Full documentation is available at of1nn.github.io/serializable-excel
The documentation includes:
This project is licensed under the MIT License - see the LICENSE file for details.
Contributions are welcome! Please see our Contributing Guide for details.
FAQs
A user-friendly Python library for seamless bidirectional conversion between Excel spreadsheets and Pydantic models
We found that serializable-excel demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.