Scott Wedge 
							
						 
					 
					
						
						
							
						
						080e885fde 
					 
					
						
						
							
							lf_ftp.py: update help output, text and whitespace updates  
						
						 
						
						... 
						
						
						
						Signed-off-by: Scott Wedge <wedges@candelatech.com > 
						
						
					 
					
						2022-07-12 15:44:27 +05:30  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Scott Wedge 
							
						 
					 
					
						
						
							
						
						75e1904f8a 
					 
					
						
						
							
							lf_ftp.py, modify --help output  
						
						 
						
						... 
						
						
						
						Signed-off-by: Scott Wedge <wedges@candelatech.com > 
						
						
					 
					
						2021-12-13 13:58:58 -06:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Scott Wedge 
							
						 
					 
					
						
						
							
						
						daa5a29ba3 
					 
					
						
						
							
							lf_ftp.py: add kpi_csv object  
						
						 
						
						... 
						
						
						
						Signed-off-by: Scott Wedge <wedges@candelatech.com > 
						
						
					 
					
						2021-11-23 18:21:41 -08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Scott Wedge 
							
						 
					 
					
						
						
							
						
						52b6905ffb 
					 
					
						
						
							
							lf_ftp.py: modified generic command in --help  
						
						 
						
						... 
						
						
						
						Signed-off-by: Scott Wedge <wedges@candelatech.com > 
						
						
					 
					
						2021-11-23 14:05:03 -08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Logan Lipke 
							
						 
					 
					
						
						
							
						
						df68373001 
					 
					
						
						
							
							Fixed function calls, renamed cli argument to fit with other arguments, fixed issue with improper type compare  
						
						 
						
						
						
						
					 
					
						2021-10-27 11:08:12 -07:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Logan Lipke 
							
						 
					 
					
						
						
							
						
						261d9cf56a 
					 
					
						
						
							
							Added shebang, fixed issue with datetime.datetime, fixed spelling  
						
						 
						
						
						
						
					 
					
						2021-10-11 11:58:15 -07:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Matthew Stidham 
							
						 
					 
					
						
						
							
						
						4e7e8b9360 
					 
					
						
						
							
							1. Updating argparse commands so they include flags  
						
						 
						
						... 
						
						
						
						2. Create check_argparse which allows us to check which flags are or are not included in argparse statements.
Signed-off-by: Matthew Stidham <stidmatt@gmail.com > 
						
						
					 
					
						2021-09-21 16:13:07 -07:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Matthew Stidham 
							
						 
					 
					
						
						
							
						
						e6cf6b9337 
					 
					
						
						
							
							1. Create pandas_extensions.py  
						
						 
						
						... 
						
						
						
						2. Remove unused imports
Signed-off-by: Matthew Stidham <stidmatt@gmail.com > 
						
						
					 
					
						2021-09-21 11:11:04 -07:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Matthew Stidham 
							
						 
					 
					
						
						
							
						
						b8430794a5 
					 
					
						
						
							
							Fixing some warnings which were popping up by replace is to -- and is not to !=  
						
						 
						
						... 
						
						
						
						Minor help text fixes
Improving regression_test
Signed-off-by: Matthew Stidham <stidmatt@gmail.com > 
						
						
					 
					
						2021-09-20 09:43:36 -07:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Matthew Stidham 
							
						 
					 
					
						
						
							
						
						36400e003d 
					 
					
						
						
							
							Making it so that lanforge-scripts can work if the repository isn't named exactly the same way  
						
						 
						
						... 
						
						
						
						Signed-off-by: Matthew Stidham <stidmatt@gmail.com > 
						
						
					 
					
						2021-09-17 15:29:15 -07:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								erinnerim 
							
						 
					 
					
						
						
							
						
						1d7578251c 
					 
					
						
						
							
							Updates to import statements:  
						
						 
						
						... 
						
						
						
						- Import importlib, os, and sys to each python script.
 - Append "lanforge-scripts" root directory to the system path, allowing each script to be called from an antecedent directory. e.g.
if 'lanforge-scripts' not in sys.path:
    sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../../../")))
 - All statements of the form 'from <module> import <class>' replace with:
<module> = importlib.import_module("lanforge-scripts.<directory>.<module>")
<class> = <module>.<class> 
						
						
					 
					
						2021-09-15 16:17:16 -07:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Chuck SmileyRekiere 
							
						 
					 
					
						
						
							
						
						743b5f56c9 
					 
					
						
						
							
							Revert "Update py_scripts to be in line with pip standards"  
						
						 
						
						... 
						
						
						
						This reverts commit 37df48594e . 
						
						
					 
					
						2021-09-09 05:32:05 -06:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Matthew Stidham 
							
						 
					 
					
						
						
							
						
						37df48594e 
					 
					
						
						
							
							Update py_scripts to be in line with pip standards  
						
						 
						
						... 
						
						
						
						Signed-off-by: Matthew Stidham <stidmatt@gmail.com > 
						
						
					 
					
						2021-09-08 16:57:10 -07:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								jitendracandela 
							
						 
					 
					
						
						
							
						
						09f41769ce 
					 
					
						
						
							
							generic ftp script  
						
						 
						
						
						
						
					 
					
						2021-08-03 01:03:27 +05:30