quick-references
Implicits in Scala
Implicits in Scala are a powerful mechanism for providing additional parameters or conversions to a method or function without explicitly passing them in as arguments. They can be used to make code more concise and easier to read.
Posted April 12, 2023 by Rohith ‐ 2 min read
zip and Unzip in Python
zip is used to compress the file. unzip is used to decompress the compressed file. In this article we will zip and unzip operation in python.
Posted October 18, 2022 by Rohith ‐ 1 min read
Move S3 Files Using Python Boto3
Using python boto3 module, we can move the s3 files from one bucket to another bucket or with in the same bucket. In this article we will explain how to achieve with an example.
Posted October 4, 2022 by Rohith ‐ 1 min read
Using Jinja With Python
In this article we will shows how to create templates in Python with Jinja module.
Posted September 30, 2022 by Rohith ‐ 4 min read
Replace Characters From End of String
Regex module `re` in python can be used to replace characters from end of the string.
Posted September 22, 2022 by Rohith ‐ 1 min read