Search found 1 match

by maruel
Mon Jul 10, 2017 10:44 pm
Forum: MicroPython pyboard
Topic: best approach for an application config file
Replies: 16
Views: 23141

Re: best approach for an application config file

[quote="pythoncoder"]My preferred option is pickle (in the micropython library). Unlike (u)json all native Python data types are supported. The principal drawback is security: if the pickled file can be modified by ill-intentioned people they can force the execution of arbitrary Python code. If that...