Hi Mike, Thank you for your response.
I resolved this by following steps. 1. I quoted the arguments passed with the command like python /home/vagrant/setup/configs/update_installed_app.py "*['django-allauth', 'test']*" 2. In python script I can access it as a string. Then using python 'ast' module i'm converted it into python list. On Thursday, December 10, 2015 at 12:00:49 PM UTC+5:30, [email protected] wrote: > > Hi, > > I'm calling a python script by passing an ansible list as an argument. > > command: "python /home/vagrant/setup/configs/update_installed_app.py > ['django-allauth', 'test']" > > > But when i print this list in my python script its printing with misplaced > quotes, so i couldnt process it with python. > > ['[django-allauth,', 'test]'] > > > > "rc": 0, > "start": "2015-12-10 06:22:12.327672", > "stderr": "", > "stdout": "['[django-allauth,', 'test]']", > "stdout_lines": [ > "['[django-allauth,', 'test]']" > > Could someone please help me out here. > -- ============================= DISCLAIMER: The information in this message is confidential and may be legally privileged. It is intended solely for the addressee. Access to this message by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, or distribution of the message, or any action or omission taken by you in reliance on it, is prohibited and may be unlawful. Please immediately contact the sender if you have received this message in error. Further, this e-mail may contain viruses and all reasonable precaution to minimize the risk arising there from is taken by Tarams. Tarams is not liable for any damage sustained by you as a result of any virus in this e-mail. All applicable virus checks should be carried out by you before opening this e-mail or any attachment thereto. Thank you - Tarams Software Technologies Pvt.Ltd. ============================= -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/97cf7c88-d751-4e75-9e1e-b03cc33cafcb%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
