This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Prompt the user to specify whether they want to remove the downloaded files or not | |
| read -p "Do you want to remove the downloaded files? (y/n): " remove_files | |
| # Loop through a range of numbers from 7422 to 17000 | |
| for i in $(seq 7422 17000); do | |
| # Construct the filename based on the current loop iteration | |
| filename="BoltApp-$i.apk" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| resolvers: | |
| - 1.1.1.1 | |
| - 1.0.0.1 | |
| - 8.8.8.8 | |
| - 8.8.4.4 | |
| - 9.9.9.9 | |
| - 9.9.9.10 | |
| - 77.88.8.8 | |
| - 77.88.8.1 | |
| - 208.67.222.222 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Author: Skyler Reeves | Ardent Growth | July 2020 | |
| location = "Louisville, KY" #@param {type:"string"} | |
| engine = "google" #@param ["google", "google scholar", "bing", "baidu", "yandex", "yahoo", "ebay"] | |
| url = #Insert URL String Here from Github | |
| from serpapi.google_search_results import GoogleSearchResults | |
| import pandas as pd | |
| import csv |
OlderNewer