diff --git a/README.md b/README.md index f77e88c..6f239c9 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- +

--- @@ -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 @@ -26,17 +26,19 @@ $ pip install -r requirements.txt $ python setup.py build $ python setup.py install ``` +

- +

### Using Pip + - You can install `espionage` by using pip command. + ```shell $ pip install espionage ``` - # 🔗 Modules Currently Supported - [x] 👁️‍🗨️ Domain Availability @@ -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 @@ -70,7 +72,9 @@ Current module support following in code } } ``` + #### *Domain Registrant Info* + ```json { "registrant_info": { @@ -89,9 +93,10 @@ Current module support following in code ``` #### *Name server records* + ```json { - "name_server": { + "name_server": { "MX": [ [ "MX", @@ -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" ] + ] } ``` +

- +

diff --git a/espionage/constants.py b/espionage/constants.py index 1cc1050..2024cd9 100644 --- a/espionage/constants.py +++ b/espionage/constants.py @@ -1,7 +1,7 @@ class Constants: _author = "muhammad abdullah" _email = "iamabdullahmughal@gmail.com" - _version = "0.0.1" + _version = "0.0.3" @property def author(self): diff --git a/others/console_espoinage.gif b/others/console_espoinage.gif deleted file mode 100644 index 08f2d65..0000000 Binary files a/others/console_espoinage.gif and /dev/null differ diff --git a/others/espionage.png b/others/espionage.png deleted file mode 100644 index edb1bbd..0000000 Binary files a/others/espionage.png and /dev/null differ diff --git a/others/installed_espionage.gif b/others/installed_espionage.gif deleted file mode 100644 index 1ef44cf..0000000 Binary files a/others/installed_espionage.gif and /dev/null differ diff --git a/setup.py b/setup.py index 938b69d..ef4888f 100644 --- a/setup.py +++ b/setup.py @@ -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",