Having command line parameters is an essential mechanism to manage the behaviour of your application but it can get complex to validate and extract the arguments. In our previous article on...
How to Get FX Currency Rates using Python 3
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...
Getting Historical Stock Data Using Python 3
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...
How To Generate Bitly Shortener URLs with the Bitly API in Python 3
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....
How to debug your code the smarter way in python 3.8
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...
Simple list comprehension examples in python 3
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...
Write Multiple JSON Objects To A File In Python 3
Whether you have experience in coding or you are just starting to learn how to code, you must have heard of JSON data files, and it's commonly used in coding that you found it very common. It's a...
How to Read And Update Smartsheets With Python 3
Smartsheet is a cloud-based management tool used by over 7000 companies which include Fortune 500 companies like Netflix. This system helps the user share documents, assign tasks, and much more....
How To Read And Update Airtable With APIs In Python 3
Airtable has proven to be a one-stop solution to automate and manage business processes. It provides the usability of a database in a much simpler spreadsheet familiar operations. Airtable has a...
How To Decode And Encode In Base64 In Python 3
Are you working with an application that needs to transmit and store the binary data over to a network that can only handle only textual form of data? Well then encoding your binary data to Base64...