Dealing with multiple currencies or FX rates in python is a common challenge for many applications such as for ecommerce sites fintech applications, or simply some clever bots that analyze the...

Dealing with multiple currencies or FX rates in python is a common challenge for many applications such as for ecommerce sites fintech applications, or simply some clever bots that analyze the...
So in this tutorial, we are going learn about how to get Historical stock data using pandas_datareader from yahoo finance along with basics of pandas dataframe and moving average. We will also learn...
In this tutorial, we will be learning how we can use bitly url Api service to create shortened links using python 3 programmatically. Let's talk about Bitly before we get into the coding part....
Six minutes of coding and 6 hours debugging. Well, it is inevitable that most of your time will be spent on debugging rather than coding in your early stage of programming. Debugging is often...
Logging is an essential tool for development as it helps us in keeping track of events, monitoring the program behavior, and debugging; and without it making big projects and running them is...
Someone gave you a bunch of data in a spreadsheet, and you want to analyze it programmatically. If setting up a database for this seems like a daunting task to you, then don't worry. In this...
The command line is a big part of using and understanding programming in Python. In this article, we will cover the command line parameters argv and argc - their origin and how you can use them....
Have you ever found yourself figuring out how to read lists of lists, filtering the list by element attributes, removing elements from a list, or flattening a matrix? Would you like to accomplish...
Managing lists is a very common task in any program activity. Within python it's fairly straightforward to do. One area that come up is to remove items from a list while iterating in Python...
Managing lists (or arrays as known in other languages) in python is a common task where you often need to take a section from the list - e.g. a slice of the list. This is where slice() can be used...