Scrapping and transcribing TikTok videos with Python

TikTok has been attracting a lot of attention of OSINT investigators in recent years. In this article, I will show how to implement a Python application which downloads TikTok videos and converts speech to text using OpenAI model.

Scrapping telegram channels with python

In this short tutorial, I want to show how to access telegram using Telethon python library. We will use Python 3.9 to achieve it. First, we will connect to a channel and get all the messages from there. python3 -m pip install –upgrade telethon To connect to a channel, you need to …