diff --git a/README.md b/README.md index 144de63..aa7c9d8 100644 --- a/README.md +++ b/README.md @@ -125,24 +125,24 @@ The BURP URL analyzer is optimized for URLs themselves, the IP addresses associa The `analyze()` method returns a dictionary with the following keys: * **tokens**
-(Dictionary) The tokens contained in the URL. This dictionary contains the following keys: - 'subdomain_length': (int) - 'domain': (string) - 'number_subdomains': (int) - 'domain_length': (int) - 'path': (string) - 'subdomain': (string) - 'port': (string) +(Dictionary) The tokens contained in the URL. This dictionary contains the following keys:
+ * 'subdomain_length': (int)
+ * 'domain': (string)
+ * 'number_subdomains': (int)
+ * 'domain_length': (int)
+ * 'path': (string)
+ * 'subdomain': (string)
+ * 'port': (string)
* **ip**
-(String) IP address associated with the URL. +(String) IP address associated with the URL.
* **tokens**
-(Dictionary) The whois information in the URL. This dictionary contains the following keys: - ‘last_updated’ : (Datetime Object) - ‘name’ : (string) - ‘expiration_date’ : (Datetime Object) - ‘creation_date’ : (Datetime Object) - ‘registrar’ : (string) - ‘name_servers’ : (Set of Strings) +(Dictionary) The whois information in the URL. This dictionary contains the following keys:
+ * ‘last_updated’ : (Datetime Object)
+ * ‘name’ : (string)
+ * ‘expiration_date’ : (Datetime Object)
+ * ‘creation_date’ : (Datetime Object)
+ * ‘registrar’ : (string)
+ * ‘name_servers’ : (Set of Strings)
Running the HTML Test Suite ---------------------------