Update wrapper.py

This commit is contained in:
Akash
2020-07-21 10:43:51 +05:30
committed by GitHub
parent a418a4e464
commit 1375fcd9f1

View File

@@ -149,3 +149,9 @@ class Url():
req = Request(request_url, headers=hdr) # nosec
response = self.get_response(req)
return str(response.read()).count(",") # Most efficient method to count number of archives (yet)
def command_line():
pass
if __name__ == "__main__":
command_line()