Python Forum
Receiving this error in my "response" and causes script to return wrong status
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Receiving this error in my "response" and causes script to return wrong status
#8
So im trying the last suggestions and having some odd results in the output.. As seen below, that is the format the results are output.
#1 - not sure why or where the newline character is coming from in the dataframe
#2 - not sure why all except for the last site is considered down.. No matter how many sites i have on my list to process, the last one is always UP an everything before it is down.
#

Here is what i see when i write it to a dataframe:

            address  state
0  www.google.com\n      1
1   www.abc13.com\n      1
2   www.yahoo.com\n      1
3     www.cnn.com\n      1
4   www.walmart.com      0
0.17187809944152832
This is what i get when i use the example before dataframe:

www.google.com
,down
www.abc13.com
,down
www.yahoo.com
,down
www.cnn.com
,down
www.walmart.com,up
Here is the code used to produce the newline for each row in the 2nd example:

import time
import subprocess
from concurrent.futures import ThreadPoolExecutor
import pandas as pd

def ping(ip):
    return (
        ip,
        subprocess.run(
            f"ping {ip} -n 1", stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL
        ).returncode,
    )

start = time.time()

with open("ip_list.txt") as file:
    park = file.readlines()
    with ThreadPoolExecutor(4) as executor:
        for result in executor.map(ping, park):
            if result[1] == 0:
           	    f = open("ip_output.txt","a")
           	    f.write(str(result[0]) + ',up' + '\n')
           	    f.close() 
            else:
           	    f = open("ip_output.txt","a")
           	    f.write(str(result[0] + ',down' +'\n'))
           	    f.close()   
This is the dataframe code:

import time
import subprocess
from concurrent.futures import ThreadPoolExecutor
import pandas as pd

def ping(ip):
    return (
        ip,
        subprocess.run(
            f"ping {ip} -n 1", stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL
        ).returncode,
    )

start = time.time()

with open("ip_list.txt") as file:
    park = file.readlines()
 
    executor = ThreadPoolExecutor(4)
    df = pd.DataFrame(executor.map(ping, park), columns=["address", "state"])
    print(df)
If i manually ping the above sites from the command prompt, they are all up and online.
Reply


Messages In This Thread
RE: Receiving this error in my "response" and causes script to return wrong status - by cubangt - Aug-12-2023, 01:59 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Listening on receiving Interface (using scapy) CodyTheCodeNoob 1 1,578 Dec-22-2024, 10:51 PM
Last Post: PolandoFaker
  Handling receiving updates from user in Telebot mohsenamiri 0 1,194 Aug-26-2024, 09:25 AM
Last Post: mohsenamiri
  Wrong type error rowan_bradley 6 2,646 Aug-07-2023, 10:44 AM
Last Post: rowan_bradley
  Compiles Python code with no error but giving out no output - what's wrong with it? pythonflea 6 3,096 Mar-27-2023, 07:38 AM
Last Post: buran
  Am I wrong or is Udemy wrong? String Slicing! Mavoz 3 4,992 Nov-05-2022, 11:33 AM
Last Post: Mavoz
  SMA (simple moving avg) Not receiving Data (stock prices). gdbengo 2 2,083 Jul-31-2022, 08:20 PM
Last Post: paulyan
  Receiving snmp traps with more than one Community String ilknurg 0 3,605 Jan-19-2022, 09:02 AM
Last Post: ilknurg
  return out of loops syntax error felixf 7 4,993 Nov-03-2020, 01:00 PM
Last Post: perfringo
  ERROR: Command errored out with exit status 1 calesii 3 8,687 Oct-23-2020, 05:39 PM
Last Post: snippsat
  SystemError: error return without exception set!!! faryad13 3 5,043 Oct-23-2020, 02:32 PM
Last Post: ATARI_LIVE

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020