-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path__init__.py
39 lines (34 loc) · 1.03 KB
/
__init__.py
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
"""
ctk_components Module
--------------------
This module contains the implementation of various customtkinter components.
These components are designed to provide additional functionality and a modern look to your customtkinter applications.
Classes:
--------
- CTkAlert
- CTkBanner
- CTkNotification
- CTkCard
- CTkCarousel
- CTkInput
- CTkLoader
- CTkPopupMenu
- CTkProgressPopup
- CTkTreeview
Each class corresponds to a unique widget that can be used in your customtkinter application.
Author: rudymohammadbali (https://github.com/rudymohammadbali)
Date: 2024/02/26
Version: 20240226
"""
__version__ = '20240226'
from .ctk_components import CTkAlert
from .ctk_components import CTkBanner
from .ctk_components import CTkNotification
from .ctk_components import CTkCard
from .ctk_components import CTkCarousel
from .ctk_components import CTkInput
from .ctk_components import CTkLoader
from .ctk_components import CTkPopupMenu
from .ctk_components import CTkProgressPopup
from .ctk_components import CTkTreeview
from .ctk_components import do_popup