👋 Hi there! For any professional inquiries or collaborations, please reach out to me at: megadose@protonmail.com
📧 Preferably, use your professional email for correspondence. Let's keep it short and sweet, and all in English!
ignorant allows you to check if a phone number is used on different sites like snapchat, instagram.
pip3 install ignorant
git clone https://github.com/megadose/ignorant.git
cd ignorant/
python3 setup.py install
ignorant 33 644637111
import trio
import httpx
from ignorant.modules.shopping.amazon import amazon
async def main():
phone="644637111"
country_code="33"
client = httpx.AsyncClient()
out = []
await amazon(phone, country_code, client, out)
print(out)
await client.aclose()
trio.run(main)
The result of the modules is in this form : {"name": "instagram","domain":"instagram.com","method":"orther","frequent_rate_limit":"False","rateLimit": False,"exists": False}
- rateLitmit : is to find out if you've been rate-limited
- exists : know an account is associated with the mail
GNU General Public License v3.0
name | domain | method | frequent_rate_limit |
---|---|---|---|
amazon | amazon.com | login | ✘ |
instagram.com | register | ✘ | |
snapchat | snapchat.com | other | ✘ |