Skip to content

Commit

Permalink
Updating readme file
Browse files Browse the repository at this point in the history
Images and folder is removed from others folder, images were not showing on pip source
Updating version in setup and project version
  • Loading branch information
iAbdullahMughal committed Dec 26, 2021
1 parent 89245ce commit 14fe5f1
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 19 deletions.
41 changes: 24 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="./others/espionage.png" />
<img src="https://lh3.googleusercontent.com/NfYrnpBuMyqZGwGqBZ9HR7j0NmuZWaEIOdWq-ZBxoylsWHhVaTXKD_8VJPhZk_-QFyUoJZFRxAYeYM5iphN2A0UeyqD_Hd8w-rpRhzlYQWv01o9GK9Q9mWnTPulNkedLjlZMdkz9" />
</p>

---
Expand All @@ -16,7 +16,7 @@
### Cloning Repo

- Download & install `python 3.6` or above
- Download or clone the repo.
- Download or clone the repo.
- Create a virtual environment execute followings

```shell
Expand All @@ -26,17 +26,19 @@ $ pip install -r requirements.txt
$ python setup.py build
$ python setup.py install
```

<p align="center">
<img src="./others/installed_espionage.gif" />
<img src="https://lh3.googleusercontent.com/q7y3lieNJ4wTPXHr2nzmsgW_Qj4beP4d1ECDxMreOBFLTcGcl5g6q1E6PEw8RhFTmIiuVYKdFTohfd5YNdb9I3HIU6WQ091Qe_bco3LzDZ2ruA6JEhdJdt0Uyrtu4ycu6frhAYck" />
</p>

### Using Pip

- You can install `espionage` by using pip command.

```shell
$ pip install espionage
```


# 🔗 Modules Currently Supported

- [x] 👁️‍🗨️ Domain Availability
Expand All @@ -52,7 +54,7 @@ $ pip install espionage

- This module check if a domain is available or taken already.

*A domain name locates an organization or other entity on the Internet.*
*A domain name locates an organization or other entity on the Internet.*

### 📖 Whois Check

Expand All @@ -70,7 +72,9 @@ Current module support following in code
}
}
```

#### *Domain Registrant Info*

```json
{
"registrant_info": {
Expand All @@ -89,9 +93,10 @@ Current module support following in code
```

#### *Name server records*

```json
{
"name_server": {
"name_server": {
"MX": [
[
"MX",
Expand All @@ -107,26 +112,28 @@ Current module support following in code
```

#### *History Records*

```json
{
"History": [
[
"Date",
"Status",
"Name Server"
],
[
"2014-10-09",
"Transferred to",
"consolidated.net"
]
[
"Date",
"Status",
"Name Server"
],
[
"2014-10-09",
"Transferred to",
"consolidated.net"
]
]
}


```

<p align="center">
<img src="./others/console_espoinage.gif" />
<img src="https://lh5.googleusercontent.com/k4aYijBl_3uZByKt019ALda93wNcnLSPuKUt1I8I8A4wahMrAHtekyUzu8gvi3qSoB_4Y6e78El9JGOLy4aLdC23vm-dDuqRjhBfliEKMorA2kokG0ED5drQnC25HdHXkN825t1a" />
</p>


Expand Down
2 changes: 1 addition & 1 deletion espionage/constants.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class Constants:
_author = "muhammad abdullah"
_email = "[email protected]"
_version = "0.0.1"
_version = "0.0.3"

@property
def author(self):
Expand Down
Binary file removed others/console_espoinage.gif
Binary file not shown.
Binary file removed others/espionage.png
Binary file not shown.
Binary file removed others/installed_espionage.gif
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
version = "0.0.1"
version = "0.0.3"

packages = [
"espionage",
Expand Down

0 comments on commit 14fe5f1

Please sign in to comment.