Can you recommend any cross platform Python app development frameworks where you write code once and it can be deployed to Linux, Android, Windows, MacOS and iOS.

  • Jesse
    link
    fedilink
    2
    edit-2
    2 years ago

    That would really suck if some Python packages were OS dependent, do you have an example?. I know some are hardware dependent (jit for computing on your Cuda enabled GPU). But the OS identification is really useful for things like understanding if you should be using forward or backward slashes and nomenclature like that.

    • @[email protected]
      link
      fedilink
      2
      edit-2
      2 years ago

      Any package that need access to hardware or the kernel would need to directly use operating system APIs. For example, a package that accesses LM_SENSORS on Linux wouldn’t work on Windows because the API would be completely different.

      • Jesse
        link
        fedilink
        22 years ago

        Ah very nice! I use Python for data science applications but that’s about it.