Python Forum
Made a simple script for android (really simple) but it is not running
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Made a simple script for android (really simple) but it is not running
#1
Hello, people, I'm trying to run a script in Android in qPython3 (root enabled) that reads an integer "inode" and look for files in the "/proc/" folder such that this number appears in the "/proc/$pid/fd" file and gives me all the "PIDs" (an integer that represents the process in linux) found in /proc such that inode is in the /proc/pid/fd The code is fairly simple and gives me no compile errors but i can't even get the "input" to be displayed. Here is the code:

PS: how do i jump from a line to another in python tag?
import os


def getpid():
    inode = input("Insert inode:")
    # get a list of all files and directories in /proc
    procFiles = os.listdir("/proc/")
    # remove the pid of the current python process
    procFiles.remove(str(os.getpid()))  # set up a list object to store valid pids
    pids = []
    for f in procFiles:
        try:  # convert the filename to an integer and back, saving the result to a list
            integer = int(f)
            pids.append(str(integer))
        except ValueError:  # if the filename doesn't convert to an integer, it's not a pid, and we don't care about it
            pass
 
    for pid in pids:  # check the fd directory for socket information
        fds = os.listdir("/proc/%s/fd/" % pid)
        for fd in fds:  # save the pid for sockets matching our inode
            if ('socket:[%d]' % inode) == os.readlink("/proc/%s/fd/%s" % (pid, fd)):
                print("%d," % pid)
                return pid
Reply
#2
I have tried formatting your code, not totally sure if I've got all the indention correct.
it seems you have not called.
getpid()
Reply
#3
Thank you very much! It is running now
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Running script from remote to server invisiblemind 4 496 Mar-28-2025, 07:57 AM
Last Post: buran
  Simple pysnmp example? Calab 1 720 Mar-20-2025, 04:44 PM
Last Post: snippsat
  Simple code not working properly tmv 2 446 Feb-28-2025, 09:27 PM
Last Post: deanhystad
  Detect if another copy of a script is running from within the script gw1500se 4 1,014 Jan-31-2025, 11:30 PM
Last Post: Skaperen
  The solution is probably simple, but I'm stuck, as an amateur is Wookie7602 3 842 Nov-13-2024, 11:16 PM
Last Post: jefsummers
  simple if fail, what am I missing? ajkrueger25 2 724 Nov-13-2024, 04:21 AM
Last Post: ajkrueger25
  This is probably a simple one for this forum duckredbeard 1 447 Aug-24-2024, 03:07 PM
Last Post: duckredbeard
  [pyparsing] How to make my simple parser fault tolerant medihack 0 816 May-14-2024, 04:52 PM
Last Post: medihack
  Very Beginner question on simple variables Harvy 1 922 Apr-12-2024, 12:03 AM
Last Post: deanhystad
  Help with simple code JacobSkinner 1 1,270 Mar-18-2024, 08:08 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

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