2020-03-21 14:43:32 +00:00
|
|
|
# Pyrogram - Telegram MTProto API Client Library for Python
|
|
|
|
# Copyright (C) 2017-2020 Dan <https://github.com/delivrance>
|
2018-01-23 14:34:36 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# This file is part of Pyrogram.
|
2018-01-23 14:34:36 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# Pyrogram is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License as published
|
|
|
|
# by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
2018-01-23 14:34:36 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# Pyrogram is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License for more details.
|
2018-01-23 14:34:36 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
2018-01-23 14:34:36 +00:00
|
|
|
|
2019-06-17 12:34:49 +00:00
|
|
|
from .block_user import BlockUser
|
2019-05-30 22:20:09 +00:00
|
|
|
from .delete_profile_photos import DeleteProfilePhotos
|
2019-08-16 20:33:06 +00:00
|
|
|
from .get_common_chats import GetCommonChats
|
2018-05-07 12:30:55 +00:00
|
|
|
from .get_me import GetMe
|
2019-05-30 22:20:09 +00:00
|
|
|
from .get_profile_photos import GetProfilePhotos
|
|
|
|
from .get_profile_photos_count import GetProfilePhotosCount
|
2018-05-07 12:30:55 +00:00
|
|
|
from .get_users import GetUsers
|
2019-05-30 22:20:09 +00:00
|
|
|
from .iter_profile_photos import IterProfilePhotos
|
|
|
|
from .set_profile_photo import SetProfilePhoto
|
2019-06-17 12:34:49 +00:00
|
|
|
from .unblock_user import UnblockUser
|
2020-05-02 19:16:52 +00:00
|
|
|
from .update_profile import UpdateProfile
|
2019-03-01 17:06:17 +00:00
|
|
|
from .update_username import UpdateUsername
|
2018-01-23 14:34:36 +00:00
|
|
|
|
|
|
|
|
2018-05-07 12:30:55 +00:00
|
|
|
class Users(
|
2019-06-17 12:34:49 +00:00
|
|
|
BlockUser,
|
2019-08-16 20:33:06 +00:00
|
|
|
GetCommonChats,
|
2019-05-30 22:20:09 +00:00
|
|
|
GetProfilePhotos,
|
|
|
|
SetProfilePhoto,
|
|
|
|
DeleteProfilePhotos,
|
2018-05-07 12:30:55 +00:00
|
|
|
GetUsers,
|
2019-03-01 17:06:17 +00:00
|
|
|
GetMe,
|
2019-05-06 15:07:41 +00:00
|
|
|
UpdateUsername,
|
2019-05-30 22:20:09 +00:00
|
|
|
GetProfilePhotosCount,
|
2019-06-17 12:34:49 +00:00
|
|
|
IterProfilePhotos,
|
2020-05-02 19:16:52 +00:00
|
|
|
UnblockUser,
|
2020-07-26 21:18:52 +00:00
|
|
|
UpdateProfile,
|
2018-05-07 12:30:55 +00:00
|
|
|
):
|
|
|
|
pass
|