Sponsored Content
Top Forums Shell Programming and Scripting Python etree.ElementTree findall function Post 303013951 by timj123 on Friday 2nd of March 2018 11:02:08 AM
Old 03-02-2018
Python etree.ElementTree findall function

Hi everyone.
I'm trying to learn python as it relates to parsing xml, and I thought I would start by trying to create an easy (or I thought would be easy) function
to match on a certain attribute in an xml file and print out it's related attribute.

Here's an example to hopeful make sense of what I'm trying to produce.

I want to convert the following working function from:
Code:
def getAttribute():
    for man in e.findall("{raml50.xsd}Data/{raml50.xsd}managedObject[@class='hark']"):
       print (man.get('distName'))

To something where I can subsitute 'hark' with whatever class attribute I want to search on, to
something like the NON-WORKING function:
Code:
def tstAttribute(get):
    for man in e.findall("{raml50.xsd}Data/{raml50.xsd}managedObject[ @class= \'%s\' ]" %(get)):
       print (man.get('distName'))

I've tried several different ways into subsituing the class attribute, but I can't seem to get this figured out.

Here are some of the ways I tried:
Code:
for man in e.findall("{raml50.xsd}Data/{raml50.xsd}managedObject[ @class= \'%s\' ]" %(get)):
for man in e.findall("{raml50.xsd}Data/{raml50.xsd}managedObject[ @class= {0}".format(get)):
for man in e.findall("{raml50.xsd}Data/{raml50.xsd}managedObject[ @class= {}".format(get)):
for man in e.findall("{raml50.xsd}Data/{raml50.xsd}managedObject[ @class= \'%s\'" %(get)):
for man in e.findall("{raml50.xsd}Data/{raml50.xsd}managedObject[ @class=  \'{}\'".format(get)):
for man in e.findall("{raml50.xsd}Data/{raml50.xsd}managedObject[ @class=  \'{0}\'".format(get)):

I thought it would be easy, but I'm stumped.
Any ideas on how to get this working?

- Thanks
 

9 More Discussions You Might Find Interesting

1. SuSE

"ssh suse-server 'python -V' > python-version.out" not redirecting

Okay, so I have had this problem on openSUSE, and Debian systems now and I am hoping for a little help. I think it has something to do with Python but I couldn't find a proper Python area here. I am trying to redirect the output of "ssh suse-server 'python -V'" to a file. It seems that no matter... (3 Replies)
Discussion started by: Druonysus
3 Replies

2. Shell Programming and Scripting

**python** unable to read the background color in python

I am working on requirement on spreadsheet in python scripting. I have a spreadsheet containing cell values and with background color. I am able to read the value value but unable to get the background color of that particular cell. Actually my requirement is to read the cell value along... (1 Reply)
Discussion started by: giridhar276
1 Replies

3. Programming

A Function To Create A 1 Second Sinewave WAVE Beep File In Python.

sinebeep.py Creating an audio WAVE file called... beep.wav ...that can be played using almost ANY audio player available. This simple DEMO snippet of code generates a 1 second sinewave WAVE file. It IS saved inside the CURRENT drawer so that you can find it... ;o) Note that the... (1 Reply)
Discussion started by: wisecracker
1 Replies

4. Shell Programming and Scripting

Python - Function print vs return - whats wrong

All, I have a basic buzz program written in python with return function. If i change return with print,it works fine but i want to know whats wrong with return statement.Can anyone help me whats wrong with this #!/usr/bin/python def div4and6(s,e): for i in range(s,e+1): if... (5 Replies)
Discussion started by: oky
5 Replies

5. Programming

Python re.findall inverse Match

I ask of you but yet another simplistic question that I hope can be answered. Its better explained showing my code. Here is my list(tmp_pkglist), which contains a list of all Debian (Jessie) packages: snippet 'zssh (1.5c.debian.1-3.2+b1 , 1.5c.debian.1-3.2 )', 'zsync (0.6.2-1)', 'ztex-bmp... (2 Replies)
Discussion started by: metallica1973
2 Replies

6. Shell Programming and Scripting

Will files, creaetd in one function of the same script will be recognized in another function?

Dear All. I have a script, which process files one by one. In the script I have two functions. one sftp files to different server the other from existing file create file with different name. My question is: Will sftp function recognize files names , which are created in another... (1 Reply)
Discussion started by: digioleg54
1 Replies

7. Windows & DOS: Issues & Discussions

How to execute python script on remote with python way..?

Hi all, I am trying to run below python code for connecting remote windows machine from unix to run an python file exist on that remote windows machine.. Below is the code I am trying: #!/usr/bin/env python import wmi c = wmi.WMI("xxxxx", user="xxxx", password="xxxxxxx")... (1 Reply)
Discussion started by: onenessboy
1 Replies

8. Programming

Create a C source and compile inside Python 1.4.0 to 3.7.0 in Python for ALL? platforms...

Hi all... As you know I like making code backwards compatible for as many platforms as possible. This Python script was in fact dedicated for the AMIGA A1200 using Pythons 1.4.0, 1.5.2, 1.6.0, 2.0.1, and 2.4.6 as that is all we have for varying levels of upgrades from a HDD and 4MB FastRam... (1 Reply)
Discussion started by: wisecracker
1 Replies

9. Shell Programming and Scripting

Function - Make your function return an exit status

Hi All, Good Day, seeking for your assistance on how to not perform my 2nd, 3rd,4th etc.. function if my 1st function is in else condition. #Body function1() { if then echo "exist" else echo "not exist" } #if not exist in function1 my all other function will not proceed.... (4 Replies)
Discussion started by: meister29
4 Replies
ctypeslib(1)							   User Commands						      ctypeslib(1)

NAME
h2xml - convert header files to XML intermediates xml2py - convert XML intermediates to Python ctypes interface SYNOPSIS
h2xml includefile ... [options] -o outputxmlfile xml2py xmlfile ... [options] -o outputpyfile DESCRIPTION
ctypeslib is a Python code generator capable of converting C header files into xml files (using gccxml), and then converting the xmlfiles into Python modules which define a ctypes interface to the corresponding C library. Ctypeslib is not ctypes. Ctypes is included in Python 2.5+ and as an add-on for lower versions, while ctypeslib is a lesser known add-on written by the ctypes author. If you use ctypes a lot and are tired of setting argtypes and restype of the called functions, you should look into ctypeslib. Ctypeslib can also set up data types and structures from C header files automatically. h2xml and xml2py are the user interface scripts to ctypeslib. h2xml converts C header files into xml intermediates (using gccxml) and xml2py converts these intermediates to Python files. At the minimum, you can get automatic construction of the C types (structures, etc) in ctypes definitions. With extra options, macro definitions can be expanded and the output Python file can be automatically linked (using ctypes) to the corresponding C library. The briefest example is: h2xml header.h -o out_c.xml xml2py out_c.xml -o out_c.py To obtain preprocessor symbols, you must use the -c flag to h2xml. To automatically link to C libraries via ctypes, you muss pass the rel- evant libraries to xml2py with -l library.so. OPTIONS
h2xml options: -h, --help show brief help message -q, --quiet -D NAME[=VALUE] macros to define -U NAME macros to undefine -I DIRECTORY additional include directories -o XMLFILE XML output filename -c, --cpp-symbols try to find #define symbols - this may give compiler errors, so it's off by default. -k don't delete the temporary files created (useful for finding problems) xml2py options: -h, --help show this help message and exit -c include source file location in comments -d include docstrings containing C prototype and source file location -k TYPEKIND kind of type descriptions to include: d = #defines, e = enumerations, f = functions, s = structures, t = typedefs -l DLLS libraries to search for exported functions -o OUTPUT output filename (if not specified, standard output will be used) -r EXPRESSION regular expression for symbols to include (if neither symbols nor expressions are specified,everything will be included) -s SYMBOL symbol to include (if neither symbols nor expressions are specified,everything will be included) -v verbose output -w add all standard windows dlls to the searched dlls list -m module Python module(s) containing symbols which will be imported instead of generated --preload=DLL dlls to be loaded before all others (to resolve symbols) EXAMPLES
Please see /usr/share/doc/python-ctypeslib/examples.Debian for examples and explanation. SEE ALSO
/usr/share/doc/python-ctypeslib/examples.Debian contains a brief tutorial on some key features Python docstrings (pydoc ctypeslib) Ctypeslib upstream is http://python.net/crew/theller/ctypes/ (see "Related Projects"). For ctypes information, see http://docs.python.org/library/ctypes.html AUTHOR
ctypeslib was written by Thomas Heller <theller@ctypes.org>. This manual page was written by Richard Darst <rkd@zgib.net>, for the Debian project (and may be used by others). ctypeslib March 2010 ctypeslib(1)
All times are GMT -4. The time now is 08:34 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy