Python has BIOMETRIC support?!

Sdílet
Vložit
  • čas přidán 17. 06. 2024
  • I went on a bit of a research spree to see what sort of biometric support Python had, and the results were...mixed. This video goes into some detail about the Touch ID, how it was achieved, and what you'd (theoretically) need to do to get Windows Hello fingerprint support working (who said everything just worked on Windows?!).
    The project: github.com/parafoxia/python-t...
    -
    If you enjoy my content, consider supporting me on Patreon or becoming a member!
    • Patreon: / carberra
    • Membership: / @carberra
    Follow me elsewhere for even more Carberra!
    • Discord: / discord
    • Instagram: / carberratutorials
    I get a lot of people asking, so here's my setup!
    • Visual Studio Code: • My Visual Studio Code ...
    • Terminal: • Make your terminal loo...
    -
    If you have any questions, don't hesitate to ask in the comments! I'll try and answer as soon as I can, providing someone else hasn't already done so.
    #python #coding #howto

Komentáře • 5

  • @eboyd53
    @eboyd53 Před měsícem

    Interesting concepts displayed in this video.

  • @DuncanBooth
    @DuncanBooth Před měsícem +1

    It actually doesn't seem to be that easy to access the Hello api with pythonnet as it's part of UWP. It might be possible using the Python `winrt` package but that seems to be dead as it won't support anything newer than Python 3.9.

    • @Carberra
      @Carberra  Před měsícem

      Ah right, that's...unfortunate. If there is a use-case for it (I saw your other comment about Windows Hello potentially not being suitable for this), then could bring it back from the dead -- that's what I did with the Touch ID library (though that still ran fine on 3.12).

    • @DuncanBooth
      @DuncanBooth Před měsícem

      @@Carberra aha, I just found that `winsdk` is a community maintained copy of winrt. Having done `poetry add winsdk` I can now import and use the relevant functions. Now I just have to understand the Microsoft Hello docs.

    • @Carberra
      @Carberra  Před měsícem

      Ah nice! And good luck my guy! The docs looked pretty vicious for most of it, but from what I could tell looking around again after recording the fingerprint section doesn't seem too bad, so it might not be too awful.