meapi: Unofficial api for โ€˜Me - Caller ID & Spam Blockerโ€™#

PyPI Downloads PyPI Version CodeFactor Docs Telegram

โ˜Ž๏ธ meapi is a Python3 library to identify, discover and get information about phone numbers, indicate and report spam, get and manage socials, profile management and much more.

๐Ÿ” To get started, read the Setup guide.

๐Ÿ“– For a complete documentation of available functions, see the Reference.

>>๏ธ For more information about Meยฎ - Click here.

๐ŸŽ› Installation#

  • Install using pip3:

pip3 install -U meapi
  • Install from source:

git clone https://github.com/david-lev/meapi.git
cd meapi && python3 setup.py install

๐ŸŽ‰ Features#

๐Ÿ”Ž Searching:#

  • ๐Ÿ“ž Search phone numbers

  • ๐Ÿ˜Ž Get full user profile: profile picture, birthday, location, platform, socials and more

  • ๐Ÿšซ Spam indication and report

๐ŸŒ Social:#

  • ๐Ÿ“ฑ Get user social networks: facebook, instagram, twitter, spotify and more

  • โœ๏ธ See how people call you

  • ๐Ÿ™Œ Get mutual contacts

  • ๐Ÿ‘ See who watched your profile

  • ๐Ÿ—‘ See who deleted you from his contacts book

  • ๐Ÿ’ฌ Get, publish and manage comments

  • ๐Ÿ“ Get users location

  • ๐Ÿ”” Read app notifications

โš™๏ธ Settings:#

  • โœ Change profile information

  • ๐Ÿ›ก Configure social settings

  • ๐Ÿ”— Connect social networks (And get verified blue check)

  • โฌ† Upload contacts and calls history

  • โ›” Block profiles and numbers

  • โŒ Delete or suspend your account

๐Ÿ‘จโ€๐Ÿ’ป Usage#

from meapi import Me

# Initialize the client in interactive mode:
me = Me(interactive_mode=True)

# โ˜Ž Get information about any phone number:
res = me.phone_search('+972545416627')
if res:
    print(res.name)

# ๐Ÿ˜Ž Get user full profile:
if res.user:
    user = res.user
    print(f"{user.name=}, {user.email=}, {user.slogan=} {user.profile_picture=}")
    profile = res.get_profile()
    print(f"{profile.date_of_birth=}, {profile.location_name=}, {profile.gender=}, {profile.device_type=}")

    # ๐Ÿ“ฑ Get social media accounts:
    for social in profile.social:
        if social:
            print(f"Social media ({social.name}): {social.profile_url}")
            for post in social.posts:
                print(f"Post from {post.posted_at}:\n{post.text_first}\n{post.text_second}")

# ๐Ÿ’ฌ Watch, approve and like comments:
for comment in me.get_comments():
    print(f"Comment from {comment.author.name}: {comment.message}")
    if comment.status == 'waiting':
        comment.approve()


# โœ๏ธ Change your profile details:
my_profile = me.get_my_profile()
my_profile.first_name = 'David'
my_profile.last_name = 'Lev'

# ๐ŸŽด Get your profile in vCard format:
with open('/home/david/Downloads/my_vcard.vcf', 'w') as f:
    f.write(my_profile.as_vcard(dl_profile_picture=True))

# ๐Ÿ‘ฅ See how people call you:
for group in me.get_groups(sorted_by='count'):
    print(f"People named you '{group.name}' {group.count} times")

# ๐Ÿ‘ who watched your profile:
for watcher in me.who_watched(incognito=True, sorted_by='last_view'):
    print(f"The user '{watcher.user.name}' watched you {watcher.count} times")

# ๐Ÿ—‘ who deleted you:
for deleted in me.who_deleted():
    print(f"The user '{deleted.user.name}' deleted you at {deleted.created_at}")

# โž• And much much more...

๐Ÿ“š For more usage examples, read the Examples page.

๐Ÿ’พ Requirements#

๐Ÿ“– Setup and Usage#

See the Documentation for detailed instructions

โ›” Disclaimer#

This application is intended for educational purposes only. Any use in professional manner or to harm anyone or any organization doesnโ€™t relate to me and can be considered as illegal. Me name, its variations and the logo are registered trademarks of NFO LTD. I have nothing to do with the registered trademark. Iโ€™m also not responsible for blocked accounts or any other damage caused by the use of this library. it is always recommended to use virtual phone numbers for testing purposes.

๐Ÿ”— Contents#