this post was submitted on 16 Jan 2022
10 points (100.0% liked)

Python

3186 readers
2 users here now

News and discussions about the programming language Python


founded 5 years ago
MODERATORS
 

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.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] AgreeableLandscape@lemmy.ml 2 points 2 years ago* (last edited 2 years ago) (1 children)

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.

[โ€“] masu@lemmy.ml 2 points 2 years ago

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