A simple Python wrapper to AWS Dynamodb. Contribute to dineshsonachalam/Lucid-Dynamodb development by creating an account on GitHub. (more…)
Read more »
For the next part of my blog series on pulling apart Python's syntactic sugar, I'm going to be tackling rich comparison operators: ==, !=, >, <, >=, <=. For this post I am going to be picking apart the example of a > b. ... (more…)
Read more »
Nuitka is a Python compiler written in Python. It's fully compatible with Python 2.6, 2.7, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, and 3.9. You feed it your Python app, it does a lot of clever things, ... (more…)
Read more »
Regular expressions can be arcane, yet when used with care they can also be very powerful. In this post a couple of tips to get more out of your regexes when using Python's re module. (more…)
Read more »
Clojure has an amazing ability to leverage other languages through interop. It can use interop for Java, JavaScript, and now Python with the libpython-clj li... (more…)
Read more »