#1
|
||||
|
||||
Example: Python - Lookup Data from CSV File Using CSV Reader
There are a number of examples showing how SecureCRT with VBScript can be used to read data from an Excel spreadsheet. However, all of these examples make use of Excel's COM API which isn't available to SecureCRT when scripting with python.
This example (CSVReaderExample.py.txt) shows how to use the native python csv reader to read data from a CSV file and perform a lookup of related data coming from the same row in the file. Given a CSV file that looks like this... Code:
number,name,ip-address 1,LVS,192.168.232.101 2,PRF,10.0.0.230 3,UTK,10.0.0.138 4,NIM,10.0.0.10 5,RCH,10.0.0.20 Whether the user enters data from column #1 or column #2, the script will search for that data. As examples: The return value will come from column #3 if a match was found in either column #1 or column #2 within the CSV file. If a supplied input does not match any data, a different message will be displayed.
Enjoy! --Jake
__________________
Jake Devenport VanDyke Software Technical Support YouTube Channel: https://www.youtube.com/vandykesoftware Email: support@vandyke.com Web: https://www.vandyke.com/support Last edited by jdev; 01-24-2020 at 04:17 PM. |
![]() |
Tags |
csv , example script , python , securecrt |
Thread Tools | |
Display Modes | Rate This Thread |
|
|