-1
votes
0answers
17 views

Generic xml data extractor [closed]

This is my Python code for parsing XML responses, with the help of xml.etree module. ...
1
vote
1answer
232 views

Opening a list of URLs and splitting the queries into different files

I recently made a program in Python to open a list of URLs and split the queries into different files. I want to make this code more generic and simple. I am open to suggestions. ...
2
votes
1answer
66 views

Generic pass_many(vals, pass_one) to unroll and call pass_one(val)?

I'm trying to create a generic function that takes a data-structure as input and then sends each non-empty item—e.g.: str, int—individually: ...