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
USE [master] | |
GO | |
/****** Object: Database [NSDB] Script Date: 22/05/2025 12:46:24 ******/ | |
CREATE DATABASE [NSDB] | |
CONTAINMENT = NONE | |
GO | |
ALTER DATABASE [NSDB] SET COMPATIBILITY_LEVEL = 160 | |
GO | |
IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled')) |
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
from telethon import TelegramClient, events, sync,functions, types | |
import asyncio | |
import time | |
import re | |
import requests , json | |
from lxml import html | |
api_id = 922976 | |
api_hash = '39f163482b277156e2c81a1e50145787' | |
client = TelegramClient('newsession', api_id, api_hash) |