mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-21 23:20:23 +00:00
10 lines
179 B
Python
10 lines
179 B
Python
import model,re
|
|
|
|
env = {}
|
|
fileop=model.FileOp()
|
|
env = fileop.fileToJson('c2/.env')
|
|
|
|
for key,value in env.items():
|
|
if re.match(pattern,key,re.I) != None:
|
|
print(value)
|
|
|