You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					11 lines
				
				354 B
			
		
		
			
		
	
	
					11 lines
				
				354 B
			| 
								 
											5 years ago
										 
									 | 
							
								#!/usr/bin/env python3
							 | 
						||
| 
								 | 
							
								import os
							 | 
						||
| 
								 | 
							
								from common.basedir import BASEDIR
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								with open(os.path.join(BASEDIR, "README.md")) as f:
							 | 
						||
| 
								 | 
							
								  lines = f.readlines()
							 | 
						||
| 
								 | 
							
								  cars = [l for l in lines if l.strip().startswith("|") and l.strip().endswith("|") and
							 | 
						||
| 
								 | 
							
								                              "Make" not in l and any(c.isalpha() for c in l)]
							 | 
						||
| 
								 | 
							
								  print(''.join(cars))
							 | 
						||
| 
								 | 
							
								  print(len(cars))
							 |