Microsoft is bringing Python to Excel

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

SurveyJS - JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor
Add the SurveyJS white-label form builder to your JavaScript app (React/Angular/Vue3). Build complex JSON forms without coding. Fully customizable, works with any backend, perfect for data-heavy apps. Learn more.
surveyjs.io
featured
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
  1. xlwings

    xlwings is a Python library that makes it easy to call Python from Excel and vice versa. It works with Excel on Windows and macOS as well as with Google Sheets and Excel on the web.

  2. SurveyJS

    JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor. Add the SurveyJS white-label form builder to your JavaScript app (React/Angular/Vue3). Build complex JSON forms without coding. Fully customizable, works with any backend, perfect for data-heavy apps. Learn more.

    SurveyJS logo
  3. MicroPyScript

    Discontinued MicroPyScript: A test harness for multiple runtimes in PyScript

    There's https://pyscript.net/ -- or do you mean for scripting the browser's behaviour rather than replacing JS in website code?

  4. node-bignum

    Big integers for Node.js using OpenSSL

    > Many languages that are considered "precision" languages have some form of suffix to denote large/long/arbitrary-sized literals. (C# there's a big useful difference if a literal ends with `m` or `l`.)

    The failure mode is significantly different when comparing JS to other mainstream languages. Most languages have a "checked" mode (either opt-in or mandatory) so that expressions like `4611686018427387904 + 4611686018427387904` can raise an error, whereas JS will just give you the wrong answer. Python is the most ergonomic for beginners or non-developers because the runtime will convert an integral type to an arbitrary precision integer on overflow.

    Yes, there are alternative primitives that can be used, but you need to know they exist. We're talking about a tool that is explicitly designed for people who are not professional programmers, and JS's behavior here is surprising unless you understand the underlying data model. I would personally much rather give beginners a tool incorporating as few footguns as possible.

    > JS is a language with the tools today to do precision arithmetic (whether you like it or not)

    Arbitrary precision arithmetic has been possible in JS since the language was invented, but it has always been a pain. The bignum NPM package[0] predates the BigInt numeric primitive by 9 years. The addition of `BigInt` to ES2020 was important for performance (since implementing an arithmetic primitive in JS makes calculations dog slow), but it didn't add any fundamental affordances to the language.

    [0]: https://github.com/justmoon/node-bignum

  5. grist-core

    Grist is the evolution of spreadsheets.

    https://github.com/gristlabs/grist-core/

  6. ironclad

    CPython API compatibility layer for IronPython (by IronLanguages)

  7. CopyQ

    Clipboard manager with advanced features

    Great to hear :)

    Re: a new clipboard app, often people recommend CopyQ, which is cross-platform: https://github.com/hluk/CopyQ

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • How to set Win+V shortcut for Clipboard History in Ubuntu Linux ?

    1 project | dev.to | 12 Mar 2025
  • Qopy: My Favorite Clipboard Manager as a Developer

    1 project | dev.to | 11 Sep 2024
  • Show HN: AutoDocument – Multi-Source Document Generation

    2 projects | news.ycombinator.com | 8 Aug 2024
  • PasteBar – Limitless, Free Clipboard Manager for Mac and Windows. Open Source

    2 projects | news.ycombinator.com | 29 Jul 2024
  • 7 Python Excel Libraries: In-Depth Review for Developers

    3 projects | dev.to | 18 Jul 2024

Did you know that JavaScript is
the 3rd most popular programming language
based on number of references?