Integrate python with flutter for library consumption

109 views Asked by At

I'm developing a personal project in Flutter that aims to collect some user information such as (ram memory, hardware information, etc.).

Flutter does not provide a complete package for this idea, so I wanted to do this Python integration using the psutil library, how do I proceed...

1

There are 1 answers

0
Dhafin Rayhan On

If you're looking for a way to embed Python runtime to a Flutter app, you can try serious_python.

But if you're trying to collect user information as mentioned above, you might want to try writing custom platform-specific code.