Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 10 additions & 75 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,77 +1,12 @@
# Ignorant
👋 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!
#### For BTC Donations : 1FHDM49QfZX6pJmhjLE5tB2K6CaTLMZpXZ
### ignorant does not alert the target phone number
ignorant allows you to check if a phone number is used on different sites like snapchat, instagram.

![](https://github.com/megadose/gif-demo/raw/master/ignorant-demo.gif)
## 💡 Prerequisite
[Python 3](https://www.python.org/downloads/release/python-370/)

## 🛠️ Installation
### With PyPI

```pip3 install ignorant```

### With Github

```bash
git clone https://github.com/megadose/ignorant.git
cd ignorant/
python3 setup.py install
```

## 📚 Example

```bash
ignorant 33 644637111
```


### Rate limit, just change your IP

## 📈 Example of use

```python
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 output of the modules
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

## Thank you to :
- [yazeed44](https://github.com/yazeed44)

## 📝 License

[GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.fr.html)

## Modules :
| name | domain | method | frequent_rate_limit |
| ------------------- | -------------------------------------- | ----------------- | ------------------- |
| amazon | amazon.com | login | ✘ |
| instagram | instagram.com | register | ✘ |
| snapchat | snapchat.com | other | ✘ |
from ignorant.modules.shopping.a
async def main ():
phone="5528641207"
country_code="33"
client = httpx.AsyncClient()
out = []
await amazon(phone, country_
print (out)
await client.aclose ()
trio.run (main)