| 1 |
"""
|
| 2 |
|
| 3 |
ATT_ExportSTRFromMal
|
| 4 |
|
| 5 |
Created by:
|
| 6 |
Emanuel Borges
|
| 7 |
02.12.2026
|
| 8 |
|
| 9 |
A simple program that will call the method to export an STR from the current MAL
|
| 10 |
|
| 11 |
"""
|
| 12 |
|
| 13 |
import os
|
| 14 |
import MyCode.Active_prgs.Redgrave.ATT_MasterAttorneyList
|
| 15 |
|
| 16 |
|
| 17 |
if __name__ == '__main__':
|
| 18 |
masterAttorneyListFileName = r"C:\Users\eborges\OneDrive - Redgrave LLP\Documents\Cases\AT&T\Cybersecurity FCA Case\_ATT_Current_MAL\RG - ATT Cross-Matter Master Attorney List (20260116)(20260116-0530).xlsx"
|
| 19 |
|
| 20 |
attMal = MyCode.Active_prgs.Redgrave.ATT_MasterAttorneyList.ATT_MasterAttorneyList(masterAttorneyListFileName)
|
| 21 |
|
| 22 |
p = attMal.malPeopleList.search_by_email('bt8053@att.com'.upper())
|
| 23 |
print(p)
|
| 24 |
test = attMal.malPeopleList.return_str_string(p)
|
| 25 |
print(test)
|
| 26 |
# print(nv.malPeopleList.return_person_all_name_variations(p))
|
| 27 |
## if p.similar_names:
|
| 28 |
## p2 = nv.malPeopleList.search_by_id(p.similar_names[0])
|
| 29 |
## print(p2)
|
| 30 |
|
| 31 |
|
| 32 |
## Use this when you have a specific list of accounts to creat STRs for
|
| 33 |
## emailAddressList = ["",""]
|
| 34 |
## for e in emailAddressList:
|
| 35 |
## p = attMal.malPeopleList.search_by_email(e.strip().upper())
|
| 36 |
## test = attMal.malPeopleList.return_str_string(p)
|
| 37 |
## print(test)
|