Browse Source

Update web-search.py

Coder 4 years ago
parent
commit
84952eace5
1 changed files with 4 additions and 0 deletions
  1. 4 0
      web-search.py

+ 4 - 0
web-search.py

@@ -33,6 +33,10 @@ end = time()
 
 
 print('Found %d results from the web in %s' %(int_result_num, end - start) + ' seconds.')
 print('Found %d results from the web in %s' %(int_result_num, end - start) + ' seconds.')
 
 
+#Delete time variables to clear RAM
+del start
+del end
+
 #Ask user if they want to open the links in the web browser with validation
 #Ask user if they want to open the links in the web browser with validation
 open_in_browser = input('Do you want to open the given URLs in your web browser (Y/N)? ')
 open_in_browser = input('Do you want to open the given URLs in your web browser (Y/N)? ')