-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLibrariesCode.html
54 lines (51 loc) · 1.74 KB
/
LibrariesCode.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<head>
<title>
Necessary Libraries Interface's Python Code
</title>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.0.3/styles/default.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.0.3/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</head>
<body>
<h1>Necessary libraries for the application:</h1>
<pre><code class="python">
#Import necessary libraries
import tkinter as tk
import tkinter.ttk as ttk
import datetime as dt
import time
import numpy as np
import matplotlib.pylab as plt
import webbrowser
import json
import asyncio
import configparser
import PIL.Image
import os
from PIL import ImageTk, Image
from collections import Counter
from datetime import date, datetime
from telethon import TelegramClient
from telethon.errors import SessionPasswordNeededError
from telethon.tl.functions.channels import GetParticipantsRequest
from telethon.tl.functions.messages import (GetHistoryRequest)
from telethon.tl.types import ChannelParticipantsSearch
from telethon.tl.types import (PeerChannel)
from tkinter import Tk, Canvas, Frame, BOTH
from tkinter import *
from tkinter.ttk import *
from time import strftime
</code></pre>
<footer>
<style>
/* Styling Footer */
footer {
text-align: center;
color: rgb(0, 0, 0);
padding-top: 0px;
}
</style>
<p> Tashfeen Engineering Solutions 2022<br> <a href="https://www.tashfeen.tech"> Powered by Tashfeen</a></p>
</footer>
</body>