Python packages

xlwings – Extract the contents of the excel text box 

xlwings (Open Source) is a BSD-licensed Python library that makes it easy to call Python from Excel and vice versa. Numpy arrays and Pandas Series/DataFrames are fully supported. xlwings-powered workbooks are easy to distribute and work on Windows and Mac. xlwings is only compatible with Windows and macOS because it requires the installation of Excel. UDFs (User Defined Functions) are presently not supported […]

NumPy: The absolute basics for beginners

We are going to start our new course for NumPy. In this course we will learn what is NumPy and how to use NumPy. NumPy (Numerical Python) is an open source Python library that’s used in almost every field of science and engineering. It’s the universal standard for working with numerical data in Python, and […]

Python Virtual Environments and Packages

Packages and modules that aren’t included in the standard library are frequently used in Python applications. Applications may require a specific version of a library because the application requires the fix of a specific issue or because the application was created using an obsolete version of the library’s interface. This means that a single Python […]

Scroll to top