Build a Robo Advisor with Python (From Scratch): Automate your financial and investment decisions teaches you how to construct a Python-based financial advisor of your very own!
An excerpt from Publishing Python Packages by Dane Hillard
This article discusses using GitHub Actions inside of CI workflows, using the example of a Python package software product.
Read it if you want to learn more about CI and Python packages.
An excerpt from Publishing Python Packages by Dane Hillard
This article delves into what packages are exactly.
Read it if you want to learn more about Python packages.
From Publishing Python Packages by Dane Hillard This article covers the pieces of the Python build system itself, so you can learn how packages are built from scratch. Take 35% off Publishing Python Packages by entering fcchillard2 into the discount… Continue Reading →
In this tour de force live coding session, an expert Python coach Reuven Lerner shows you how functions work behind the scenes and how you can use them in different ways.
From Developing Microservice APIs with Python by Jose Haro Peralta
In this article we will explain what web APIs are. You will learn that a web API is a specific instance of the more general concept of Application Programming Interface (API). It is important to understand that an API is just a layer on top of an application, and that there are many different types of interfaces.
From Mastering Large Datasets with Python by J.T. Wolohan
This article covers
· Using map to do complex data transformations
· Chaining together small functions into pipelines
· Applying these pipelines in parallel on large datasets
From Probabilistic Deep Learning with Python by Oliver Dürr, Beate Sick, and Elvis Murina
This article dives into neural network architectures and how get started implementing and using them.
From Mastering Large Datasets by JT Wolohan
This article explores using the map function creatively in a data project.