Recent Posts

MySQL: Triggers

3 minute read

Triggers in SQL Triggers in SQL is a way to invoke something as a response to the events on the table in which Trigger is attached. The example of the event ...

Pyscript: Running Python in Webpages

2 minute read

Pyscript is a JS library that allows us to write and run Python code on HTML web pages. In this blog, we will explore PyScript for running Python codes insi...

Python Asyncio: Concurrent Programming

5 minute read

Introduction Async IO means Asynchronous I/O and it has been there since the Python 3.4. The main purpose of asyncio is to achieve Concurrency and Multiproce...