Using Zig to write native extension modules for Python - Adam Serafini

Поділитися
Вставка
  • Опубліковано 26 гру 2024

КОМЕНТАРІ • 5

  • @obkf-too
    @obkf-too 8 місяців тому +1

    So exciting to be honest, mixing the best of both words with a simple interface would be great.

  • @TravisTennies
    @TravisTennies Рік тому +4

    I want to go to a bar with you all!

  • @MatheusCatarino
    @MatheusCatarino Рік тому +2

    8:55 - Is there some alternative to python3 to MinGW beyond msys2 packages?
    So you can build using the windows-gnu target.

  • @FunkyELF
    @FunkyELF Місяць тому

    For creating a library, I'm fairly against writing CPython code in any other language really. In my opinion it'd be much better to write a pure Zig library and write the Python module in pure Python which uses something like CFFI to call into the Zig. Don't put anything Python specific in the library, then you could make use of that same library in alternative Python implementations like MyPy, or Golang or other languages that have nice C interop.

  • @khanra17
    @khanra17 Рік тому

    Don't