This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Type classes are useful to: | |
* * enhance capabilities | |
* * add type constraints | |
* | |
* @see https://www.youtube.com/watch?v=bupBZKJT0EA | |
*/ | |
object TypeClassDemo { | |
trait Summable[T] { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
test interaction with S3 through boto3 libraray in python | |
""" | |
from pathlib import Path | |
import logging | |
import boto3 | |
from botocore.exceptions import ClientError | |
import os |