Get started with Python 3.7 by installing it on your Windows 10 machine using the Anaconda distribution. We'll also talk about Jupyter Notebook and Virtual Environments.
Author archives: jon_coffield
Install Python 3.7 on Windows 10 with Anaconda
Index all drives connected to macOS with multithreaded Python 3
Written by
on
in
Python.
In a recent project, we needed to rapidly index and filter all files in all connected drives on macOS. With multithreaded Python 3, and a little help from pandas, You can get it done quick and easy.
Install OpenCV 4 on macOS Mojave using CMake
Written by
on
in
OpenCV.
OpenCV (Open Source Computer Vision Library) is in our opinion the coolest open-source machine learning software library out there. We'll show you how to compile it from source on macOS Mojave using CMake.
Install Webmin on AWS Amazon Linux 2
Written by
on
in
AWS.
For years one of our favorite tools to manage Linux servers has been Webmin. This tool is a great way to stay on top of your Linux machines. We'll show you how to install Webmin on Amazon Linux 2.
Install python 3, pip 3, and virtualenv in Amazon Linux 2
Written by
on
in
AWS,
Python.
Get started with Python 3 on Amazon Linux 2 with this quick tutorial. With Virtualenv you can create isolated Python environments and easily manage your projects and their dependencies.
Open and read Excel file with Python using Pandas (With Examples)
Written by
on
in
Python.
The Pandas Python library is a fantastic tool to add to your Python toolbelt. In this article, we show you how to get started by opening an Excel file and doing some filtering.
Send Get and Post requests using Python
Written by
on
in
Python.
Learn how to send HTTP requests with Python using the requests library. Whether you're doing some web scraping or calling an API, the requests library is a simple way to get it done.
Sending Text Messages (SMS) with Python
Written by
on
in
Python.
More and more these days our clients are asking to integrate texting into their solution. In this article, we show you how to send messages using Python and Twilio.
List Comprehension in Python (With Examples)
Written by
on
in
Python.
One of my Favorite things about working in Python is how easy it is to work with lists. In other languages, you'd loop through a list or array to find the data you're looking for. But Python is so much cooler than that.