Skip to content

Instantly share code, notes, and snippets.

@mandatoryprogrammer
Created September 24, 2019 23:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mandatoryprogrammer/4f38cec093a40b53e7abadfd4175ec7e to your computer and use it in GitHub Desktop.
Save mandatoryprogrammer/4f38cec093a40b53e7abadfd4175ec7e to your computer and use it in GitHub Desktop.
def main(block_input, backpack):
example_ip_array = [
"132.139.7.159",
"249.9.17.16",
"190.49.112.102",
"38.32.0.91",
"245.138.248.145",
"54.35.108.11",
"15.4.41.18",
"213.70.65.146",
"204.62.226.118",
"21.144.113.200"
]
return_array = []
for example_ip in example_ip_array:
return_array.append({
"ip": example_ip,
"port": 443
})
return return_array
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment