Today I'm starting a new series of articles about a topic that does not get a lot of coverage: how to write Python unit tests. Unlike other testing tutorials, I'm going to focus on testing techniques… (more…)
Read more »
xarray (formerly xray) is an open source project and Python package
that aims to bring the labeled data power of pandas to the physical sciences,
by providing N-dimensional variants of the core pandas data structures.
Read more »
Python 2 is officially dead now (cf),
with the python.org release of 2.17.18, the last release of Python
2 (also).
That means that what happens now is its afterlife, because Python
2 being 'dead' doesn't mean that it's gone, and Python 2 is shaping
up to ... (more…)
Read more »
In this tutorial, you will learn how to sort a list in Python, by following the below three steps: Options to sort a list in Python What is the difference between “sort” and “sorted” An example of using “sort” An example of using “sorted” How to Sort a Li... (more…)
Read more »
Filesystem Spec (FSSPEC) is a project to unify various projects and classes to work with remote filesystems and
file-system-like abstractions using a standard pythonic interface. (more…)
Read more »