pip install pyce We also talked about this at PyCon Delhi: Common Techniques and Challenges for Python. Common techniques to protect code in production are binary signing, obfuscation, or encryption. But, these techniques typically assume that we are pr... (more…)
Read more »
In Python, everything is object. Functions in Python are first-class objects which means that they can be stored in a variable, added in the lists, passed as arguments to another function etc. With… (more…)
Read more »
You may have already found a decorator in some Python code. For example, the following is commonly used to create static methods within a class: (more…)
Read more »
This post introduces the reader to Python maps, implemented by the built-in map() function of Python.Map is a powerful function that not only gives us new ways to transform data, but also aids us in... (more…)
Read more »
Go(golang) is a very fast and efficient compiled programming language. Much like
how you can build Python C-extensions to speed up your python applications, Python
developers also have the option to build Go components that are embedded into their python. (more…)
Read more »