Authorize access to AWS using boto3
Amazon Web Services provides a Python SDK called boto3 to programmatically perform actions to our AWS cloud resources such as EC2 instances and S3 buckets. This means that we can build an external front-end application that users interact with (instead of giving access to AWS), and then build the back-end integration with AWS using theContinue reading “Authorize access to AWS using boto3”
Two ways to implement Binary Search in Python
Next to linear search, binary search is arguably the simplest to implement among the many search algorithms. Binary search can be summarized with the following rules: The list in which we are performing the search should be sorted beforehand. If the value being searched is less than the value in the middle of the list,Continue reading “Two ways to implement Binary Search in Python”
Why Python?
Because Python is easy to read and write, and most of the resources we can find online about data science and machine learning are written in Python. Coming from a Java and C# background in college, I was happy to find that with Python, it’s much quicker to get started writing code and the simpler syntax lets me write more things much quicker.
Subscribe to My Blog
Get new content delivered directly to your inbox.