Search Results

2
votes
5answers
344 views

How to write meaningful docstrings?

Hello crowd, What, in Your opinion is a meaningful docstring? What do You expect to be described there? For example, consider this Python class's __init__: …
4
votes

How do I protect python code?

Do not rely on obfuscation. As You have correctly concluded, it offers very limited protection. Instead, as many posters have mentioned make it: Not worth reverse engineering …