45

I want to run a mysql command and set the output of that to be a variable in my python script.

Here is the shell command I'm trying to run:

$ mysql my_database --html -e "select * from limbs" | ./script.py

Here is the python script:

#!/usr/bin/env python

import sys

def hello(variable):
    print variable

How would I accept the variable in the python script and have it print the output?

David542
  • 101,766
  • 154
  • 423
  • 727

7 Answers7

51

You need to read from stdin to retrieve the data in the python script e.g.

#!/usr/bin/env python

import sys

def hello(variable):
    print variable

data = sys.stdin.read()
hello(data)

If all you want to do here is grab some data from a mysql database and then manipulate it with Python I would skip piping it into the script and just use the Python MySql module to do the SQL query.

Jon Cage
  • 34,978
  • 34
  • 128
  • 209
34

If you want your script to behave like many unix command line tools and accept a pipe or a filename as first argument, you can use the following:

#!/usr/bin/env python
import sys

# use stdin if it's full                                                        
if not sys.stdin.isatty():
    input_stream = sys.stdin

# otherwise, read the given filename                                            
else:
    try:
        input_filename = sys.argv[1]
    except IndexError:
        message = 'need filename as first argument if stdin is not full'
        raise IndexError(message)
    else:
        input_stream = open(input_filename, 'rU')

for line in input_stream:
    print(line) # do something useful with each line
mstringer
  • 2,091
  • 3
  • 23
  • 34
15

When you pipe the output of one command to a pytho script, it goes to sys.stdin. You can read from sys.stdin just like a file. Example:

import sys

print sys.stdin.read()

This program literally outputs its input.

C0deH4cker
  • 3,827
  • 1
  • 22
  • 34
  • 2
    +1 for mentioning "just like a file", which will hopefully lead the OP to realize he can also do things like "for line in sys.stdin:", etc. – abarnert Jun 19 '12 at 23:07
9

Since this answer pops up on Google at the top when searching for piping data to a python script, I'd like to add another method, which I have found in J. Beazley's Python Cookbook after searching for a less 'gritty' aproach than using sys. IMO, more pythonic and self-explanatory even to new users.

import fileinput
with fileinput.input() as f_input:
    for line in f_input:
        print(line, end='')

This approach also works for commands structured like this:

$ ls | ./filein.py          # Prints a directory listing to stdout.
$ ./filein.py /etc/passwd   # Reads /etc/passwd to stdout.
$ ./filein.py < /etc/passwd # Reads /etc/passwd to stdout.

If you require more complex solutions, you can compine argparse and fileinput as shown in this gist by martinth:

import argpase
import fileinput

if __name__ == '__main__':
    parser = ArgumentParser()
    parser.add_argument('--dummy', help='dummy argument')
    parser.add_argument('files', metavar='FILE', nargs='*', help='files to read, if empty, stdin is used')
    args = parser.parse_args()

    # If you would call fileinput.input() without files it would try to process all arguments.
    # We pass '-' as only file when argparse got no files which will cause fileinput to read from stdin
    for line in fileinput.input(files=args.files if len(args.files) > 0 else ('-', )):
        print(line)

```

deepbrook
  • 2,324
  • 3
  • 27
  • 45
  • Getting an error with this method (using python 2.7) Traceback (most recent call last): File "./pipetome.py", line 4, in with fileinput.input() as f_input: AttributeError: FileInput instance has no attribute '__exit__' – G.A. Dec 20 '17 at 14:48
  • The above was only tested in Python3 - perhaps instead of `with` try `f_input = fileinput.input()` ? – deepbrook Dec 20 '17 at 15:36
  • but how to differentiate args and stdin, e.g send_mail -to xxx@xxx.com -subject 'passwd' < /etc/passwd – zhuguowei May 28 '18 at 14:20
  • I've updated the answer with an example solving your stated problem. – deepbrook May 31 '18 at 09:41
  • I had to `line.strip()` before using it for reading the piped in file. – Shoan May 03 '22 at 07:12
6

You can use the command line tool xargs

echo 'arg1' | xargs python script.py

arg1 is now accessible from sys.argv[1] in script.py

dxgarnish
  • 327
  • 4
  • 9
0

I stumbled on this trying to pipe a bash command to a python script that I did not write (and didn't want to modify to accept sys.stdin). I found process substitution mentioned here (https://superuser.com/questions/461946/can-i-use-pipe-output-as-a-shell-script-argument) to work fine.

Ex. some_script.py -arg1 <(bash command)

Alex Thomas
  • 974
  • 10
  • 13
0

The one-liner that also works for Windows and on Python 3.10.3 is using sys.stdin.read(), like this:

echo 'Hello!' | python -c "import sys;d=sys.stdin.read(); print('{}\n'.format(d))"
not2qubit
  • 11,992
  • 7
  • 83
  • 112