PERSONAL

I have Joined SerpApi

I joined SerpApi last week as Python Developer Advocate. SerpApi helps developers access search engine data programmatically across Google, Bing, DuckDuckGo,...
1 min read
serpapi devrel
PYTHON

Thread Local Data in Python

Since threads in Python share the memory space of their parent process, we might need to define thread-specific variables for specific use cases to avoid...
8 min read
python threading
PYTHON

Partition method of Python strings

The partition method of str covers a niche use case - It is useful when a string needs to be split into exactly two parts based on a separator. It returns a...
2 min read
python str