TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Kousik
NA
56
13k
How to make a black list in this case.
Apr 3 2021 5:40 PM
Please tell me. How to make a black list in this case. To receive only unique email values. So that the same value is not sent several times @client.on(events.NewMessage()) async def normal_handler(event): text = event.message.to_dict()['message'] if re.search(r'[^\s]+@[^\s]+', text): m = re.search(r'[^\s]+@[^\s]+', text) await client.send_message('@LOGIN', m.group(0)) print(m.group(0))
Reply
Answers (
2
)
While importing a CSV file to a python dataframe why it is showing --P
Why am I getting AttributeError?