radboy 0.0.821__py3-none-any.whl → 0.0.823__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of radboy might be problematic. Click here for more details.
- radboy/DB/Prompt.py +7 -1
- radboy/DB/__pycache__/Prompt.cpython-313.pyc +0 -0
- radboy/DB/__pycache__/db.cpython-313.pyc +0 -0
- radboy/DB/db.py +96 -3
- radboy/TasksMode/SetEntryNEU.py +3 -0
- radboy/TasksMode/__pycache__/SetEntryNEU.cpython-313.pyc +0 -0
- radboy/__init__.py +1 -1
- radboy/__pycache__/__init__.cpython-313.pyc +0 -0
- radboy/preloader/preloader.py +15 -0
- radboy/preloader/preloader_func.py +94 -1
- {radboy-0.0.821.dist-info → radboy-0.0.823.dist-info}/METADATA +1 -1
- {radboy-0.0.821.dist-info → radboy-0.0.823.dist-info}/RECORD +14 -14
- {radboy-0.0.821.dist-info → radboy-0.0.823.dist-info}/WHEEL +0 -0
- {radboy-0.0.821.dist-info → radboy-0.0.823.dist-info}/top_level.txt +0 -0
radboy/DB/Prompt.py
CHANGED
|
@@ -2109,6 +2109,11 @@ class Prompt(object):
|
|
|
2109
2109
|
continue
|
|
2110
2110
|
elif cmd.lower() == 'obf msg':
|
|
2111
2111
|
Obfuscate()
|
|
2112
|
+
elif cmd.lower() in generate_cmds(startcmd=['dt','datetime',],endCmd=['of entry','oe']):
|
|
2113
|
+
dtoe=Control(func=FormBuilderMkText,ptext="Date String",helpText="a datestring",data="datetime")
|
|
2114
|
+
if dtoe in [None,"NaN"]:
|
|
2115
|
+
continue
|
|
2116
|
+
return func(dtoe,data)
|
|
2112
2117
|
elif cmd.startswith("c2cb#"):
|
|
2113
2118
|
with db.Session(db.ENGINE) as session:
|
|
2114
2119
|
ncb_text=cmd.split('c2cb#')[-1]
|
|
@@ -2495,7 +2500,8 @@ Use an App Like Google Keep, or Notion, to Store a note with the Title as the Na
|
|
|
2495
2500
|
{Fore.grey_85}** {Fore.light_steel_blue}'fbht','fmbh','formbuilder help','form helptext'{Fore.light_green}FormBuilderHelpText; extra keywords when asked for time and date{Style.reset}
|
|
2496
2501
|
{Fore.grey_70}{llo_modes} Modes ONLY **{Fore.light_green}'rllo','reverse list lookup order'{Fore.light_green}Reverse the ordering used by the List Maker's listing modes for Entry Lookup, i.e. set Shelf,mksl,qsl{Style.reset}
|
|
2497
2502
|
{Fore.grey_70}{llo_modes} Modes ONLY **{Fore.light_green}'vllo','view list lookup order'{Fore.light_green}View the ordering used by the List Maker's listing modes for Entry Lookup, i.e. set Shelf,mksl,qsl{Style.reset}
|
|
2498
|
-
|
|
2503
|
+
[Date Generation]
|
|
2504
|
+
{Fore.grey_70}{generate_cmds(startcmd=['dt','datetime',],endCmd=['of entry','oe'])}{Fore.light_green} Generate a datetime for a field that needs a datetime{Style.reset}
|
|
2499
2505
|
[List Making]
|
|
2500
2506
|
{Fore.grey_70}**{Fore.light_green}'mksl','make shopping list','p-slq','prompt slq','set list qty','slqp','slq-p'{Fore.light_steel_blue} make a list using {Fore.green_3a}slq{Fore.light_steel_blue} from {Fore.orange_red_1}Tasks.{Fore.light_red}TasksMode{Style.reset}
|
|
2501
2507
|
{Fore.grey_70}**{Fore.light_green}'cslf','clear selected location field'{Fore.light_steel_blue} set Entry's with selected field's to Zero, but do not do change InList==False{Style.reset}
|
|
Binary file
|
|
Binary file
|
radboy/DB/db.py
CHANGED
|
@@ -1187,6 +1187,37 @@ For hot food, one of the notable exceptions is "Hot Baked Goods," like pretzels
|
|
|
1187
1187
|
ShelfCount=Column(Integer,default=0)
|
|
1188
1188
|
#LoadCount=1,PalletCount=1,ShelfCount=1
|
|
1189
1189
|
|
|
1190
|
+
Expiry=Column(DateTime,default=None)
|
|
1191
|
+
BestBy=Column(DateTime,default=None)
|
|
1192
|
+
AquisitionDate=Column(DateTime,default=None)
|
|
1193
|
+
'''
|
|
1194
|
+
#__init__ def #AquisitionDate=None,BestBy=None,Expiry=None
|
|
1195
|
+
|
|
1196
|
+
#inside __init__
|
|
1197
|
+
self.AquisitionDate=AquisitionDate
|
|
1198
|
+
self.Expiry=Expiry
|
|
1199
|
+
self.BestBy=BestBy
|
|
1200
|
+
|
|
1201
|
+
#in def saveListExtended(self,num):
|
|
1202
|
+
Expiry = {self.Expiry}
|
|
1203
|
+
BestBy = {self.BestBy}
|
|
1204
|
+
AquisitionDate = {self.AquisitionDate}
|
|
1205
|
+
|
|
1206
|
+
#in def listdisplay_extended(self,num):
|
|
1207
|
+
------------- Dates -----------------------------------
|
|
1208
|
+
{Fore.light_cyan}Expiry = {Fore.light_green}{self.Expiry}{Style.reset}
|
|
1209
|
+
{Fore.light_cyan}BestBy = {Fore.light_green}{self.BestBy}{Style.reset}
|
|
1210
|
+
{Fore.light_cyan}AquisitionDate = {Fore.light_green}{self.AquisitionDate}{Style.reset}
|
|
1211
|
+
|
|
1212
|
+
#in def __repr__
|
|
1213
|
+
------------- Dates -----------------------------------
|
|
1214
|
+
{Fore.light_cyan}Expiry{Fore.grey_70}{types['Expiry']}{Fore.light_cyan}={Fore.light_green}{self.Expiry}{Style.reset}
|
|
1215
|
+
{Fore.light_cyan}BestBy{Fore.grey_70}{types['BestBy']}{Fore.light_cyan}={Fore.light_green}{self.BestBy}{Style.reset}
|
|
1216
|
+
{Fore.light_cyan}AquisitionDate{Fore.grey_70}{types['AquisitionDate']}{Fore.light_cyan}={Fore.light_green}{self.AquisitionDate}{Style.reset}
|
|
1217
|
+
|
|
1218
|
+
|
|
1219
|
+
'''
|
|
1220
|
+
|
|
1190
1221
|
def csv_headers(self):
|
|
1191
1222
|
headers=[]
|
|
1192
1223
|
for i in self.__table__.columns:
|
|
@@ -1273,7 +1304,7 @@ For hot food, one of the notable exceptions is "Hot Baked Goods," like pretzels
|
|
|
1273
1304
|
if k in [s.name for s in self.__table__.columns]:
|
|
1274
1305
|
setattr(self,k,kwargs.get(k))
|
|
1275
1306
|
|
|
1276
|
-
def __init__(self,Barcode,Code,upce2upca='',Name='',InList=True,Price=0.0,Note='',Size='',CaseCount=1,Shelf=0,BackRoom=0,Display_1=0,Display_2=0,Display_3=0,Display_4=0,Display_5=0,Display_6=0,Stock_Total=0,Timestamp=datetime.now().timestamp(),EntryId=None,Location='///',ListQty=0.0,Image='',CHKSTND_SPLY=0,WD_DSPLY=0,FLRL_CHP_DSPLY=0,FLRL_WTR_DSPLY=0,SBX_WTR_KLR=0,SBX_CHP_DSPLY=0,SBX_WTR_DSPLY=0,Facings=0,Tags='',CaseID_6W='',CaseID_BR='',CaseID_LD='',ALT_Barcode='',DUP_Barcode='',CRV=0.0,Tax=0.0,TaxNote='',userUpdated=False,LoadCount=1,PalletCount=1,ShelfCount=1,Description='',Distress=0,UnitsDeep=1,UnitsHigh=1):
|
|
1307
|
+
def __init__(self,Barcode,Code,upce2upca='',Name='',InList=True,Price=0.0,Note='',Size='',CaseCount=1,Shelf=0,BackRoom=0,Display_1=0,Display_2=0,Display_3=0,Display_4=0,Display_5=0,Display_6=0,Stock_Total=0,Timestamp=datetime.now().timestamp(),EntryId=None,Location='///',ListQty=0.0,Image='',CHKSTND_SPLY=0,WD_DSPLY=0,FLRL_CHP_DSPLY=0,FLRL_WTR_DSPLY=0,SBX_WTR_KLR=0,SBX_CHP_DSPLY=0,SBX_WTR_DSPLY=0,Facings=0,Tags='',CaseID_6W='',CaseID_BR='',CaseID_LD='',ALT_Barcode='',DUP_Barcode='',CRV=0.0,Tax=0.0,TaxNote='',userUpdated=False,LoadCount=1,PalletCount=1,ShelfCount=1,Description='',Distress=0,UnitsDeep=1,UnitsHigh=1,AquisitionDate=None,BestBy=None,Expiry=None):
|
|
1277
1308
|
if EntryId:
|
|
1278
1309
|
self.EntryId=EntryId
|
|
1279
1310
|
self.CRV=CRV
|
|
@@ -1311,6 +1342,10 @@ For hot food, one of the notable exceptions is "Hot Baked Goods," like pretzels
|
|
|
1311
1342
|
InList=True
|
|
1312
1343
|
self.UnitsHigh=UnitsHigh
|
|
1313
1344
|
self.UnitsDeep=UnitsDeep
|
|
1345
|
+
|
|
1346
|
+
self.AquisitionDate=AquisitionDate
|
|
1347
|
+
self.Expiry=Expiry
|
|
1348
|
+
self.BestBy=BestBy
|
|
1314
1349
|
if isinstance(userUpdated,str):
|
|
1315
1350
|
try:
|
|
1316
1351
|
self.InList=eval(InList)
|
|
@@ -1611,6 +1646,9 @@ CHKSTND_SPLY={self.CHKSTND_SPLY}
|
|
|
1611
1646
|
Distress={self.Distress} #not added to total
|
|
1612
1647
|
Total = {total}
|
|
1613
1648
|
Total(w/o BR+) - Backroom = {(total-self.BackRoom)-self.BackRoom}
|
|
1649
|
+
Expiry = {self.Expiry}
|
|
1650
|
+
BestBy = {self.BestBy}
|
|
1651
|
+
AquisitionDate = {self.AquisitionDate}
|
|
1614
1652
|
-------------{num}-------------
|
|
1615
1653
|
"""
|
|
1616
1654
|
|
|
@@ -1728,6 +1766,10 @@ deducted from Total as remainder is to be filled from LOAD{Style.reset}
|
|
|
1728
1766
|
{Fore.medium_violet_red}Total Product Handled/To Be Handled Value: {Fore.spring_green_3a}{total_value}{Style.reset}
|
|
1729
1767
|
{Fore.medium_violet_red}Total Product Handled/To Be Handled Value*CaseCount: {Fore.spring_green_3a}{total_value_case}{Style.reset}
|
|
1730
1768
|
{Fore.orange_3}Distressed Product:{Fore.light_red}{self.Distress}{Style.reset}
|
|
1769
|
+
------------- Dates ----------------------
|
|
1770
|
+
{Fore.light_cyan}Expiry = {Fore.light_green}{self.Expiry}{Style.reset}
|
|
1771
|
+
{Fore.light_cyan}BestBy = {Fore.light_green}{self.BestBy}{Style.reset}
|
|
1772
|
+
{Fore.light_cyan}AquisitionDate = {Fore.light_green}{self.AquisitionDate}{Style.reset}
|
|
1731
1773
|
-------------{Style.bold+Style.underline+Fore.orange_red_1}{num}{Style.reset}-------------
|
|
1732
1774
|
"""
|
|
1733
1775
|
print(msg)
|
|
@@ -1875,6 +1917,12 @@ deducted from Total as remainder is to be filled from LOAD{Style.reset}
|
|
|
1875
1917
|
{Fore.light_steel_blue}PalletCount{Style.reset}:{Fore.grey_70}{types['PalletCount']}{Style.reset}={self.PalletCount},
|
|
1876
1918
|
{Fore.light_steel_blue}LoadCount{Style.reset}:{Fore.grey_70}{types['LoadCount']}{Style.reset}={self.LoadCount},
|
|
1877
1919
|
|
|
1920
|
+
{Fore.orange_3}Distressed Product:{Fore.light_red}{self.Distress}{Style.reset}
|
|
1921
|
+
------------- Dates -----------------
|
|
1922
|
+
{Fore.light_cyan}Expiry{Fore.grey_70}[{types['Expiry']}{Fore.light_cyan}]={Fore.light_green}{self.Expiry}{Style.reset}
|
|
1923
|
+
{Fore.light_cyan}BestBy{Fore.grey_70}[{types['BestBy']}{Fore.light_cyan}]={Fore.light_green}{self.BestBy}{Style.reset}
|
|
1924
|
+
{Fore.light_cyan}AquisitionDate{Fore.grey_70}[{types['AquisitionDate']}{Fore.light_cyan}]={Fore.light_green}{self.AquisitionDate}{Style.reset}
|
|
1925
|
+
|
|
1878
1926
|
{Fore.sky_blue_2}Size{Style.reset}:{Fore.grey_70}{types['Size']}{Style.reset}={self.Size}
|
|
1879
1927
|
{Fore.tan}Image[{Fore.dark_goldenrod}Exists:{Fore.deep_pink_3b}{self.imageExists()}{Style.reset}{Fore.tan}]{Style.reset}:{Fore.grey_70}{types['Image']}{Style.reset}={self.Image}
|
|
1880
1928
|
{Fore.slate_blue_1}{Style.underline}{'-'*5}{Style.reset}{Style.bold} Short Data {Style.reset}{Fore.slate_blue_1}{Style.underline}{'-'*5}{Style.reset}
|
|
@@ -2043,6 +2091,37 @@ class DayLog(BASE,EntryExtras):
|
|
|
2043
2091
|
WD_DSPLY=WD_DSPLY=Column(Integer)
|
|
2044
2092
|
CHKSTND_SPLY=CHKSTND_SPLY=Column(Integer)
|
|
2045
2093
|
|
|
2094
|
+
Expiry=Column(DateTime,default=None)
|
|
2095
|
+
BestBy=Column(DateTime,default=None)
|
|
2096
|
+
AquisitionDate=Column(DateTime,default=None)
|
|
2097
|
+
'''
|
|
2098
|
+
#__init__ def #AquisitionDate=None,BestBy=None,Expiry=None
|
|
2099
|
+
|
|
2100
|
+
#inside __init__
|
|
2101
|
+
self.AquisitionDate=AquisitionDate
|
|
2102
|
+
self.Expiry=Expiry
|
|
2103
|
+
self.BestBy=BestBy
|
|
2104
|
+
|
|
2105
|
+
#in def saveListExtended(self,num):
|
|
2106
|
+
Expiry = {self.Expiry}
|
|
2107
|
+
BestBy = {self.BestBy}
|
|
2108
|
+
AquisitionDate = {self.AquisitionDate}
|
|
2109
|
+
|
|
2110
|
+
#in def listdisplay_extended(self,num):
|
|
2111
|
+
------------- Dates ----------------------------------------------------------------------
|
|
2112
|
+
{Fore.light_cyan}Expiry = {Fore.light_green}{self.Expiry}{Style.reset}
|
|
2113
|
+
{Fore.light_cyan}BestBy = {Fore.light_green}{self.BestBy}{Style.reset}
|
|
2114
|
+
{Fore.light_cyan}AquisitionDate = {Fore.light_green}{self.AquisitionDate}{Style.reset}
|
|
2115
|
+
|
|
2116
|
+
#in def __repr__
|
|
2117
|
+
------------- Dates ----------------------------------------------------------------------
|
|
2118
|
+
{Fore.light_cyan}Expiry{Fore.grey_70}{types['Expiry']}{Fore.light_cyan}={Fore.light_green}{self.Expiry}{Style.reset}
|
|
2119
|
+
{Fore.light_cyan}BestBy{Fore.grey_70}{types['BestBy']}{Fore.light_cyan}={Fore.light_green}{self.BestBy}{Style.reset}
|
|
2120
|
+
{Fore.light_cyan}AquisitionDate{Fore.grey_70}{types['AquisitionDate']}{Fore.light_cyan}={Fore.light_green}{self.AquisitionDate}{Style.reset}
|
|
2121
|
+
|
|
2122
|
+
|
|
2123
|
+
'''
|
|
2124
|
+
|
|
2046
2125
|
def csv_headers(self):
|
|
2047
2126
|
headers=[]
|
|
2048
2127
|
for i in self.__table__.columns:
|
|
@@ -2116,9 +2195,12 @@ class DayLog(BASE,EntryExtras):
|
|
|
2116
2195
|
{Fore.light_yellow}Name({Fore.pale_green_1b}{self.Name}{Fore.light_yellow}) {Fore.light_magenta}Price Per Unit({Fore.slate_blue_1}prc={self.Price}{Fore.light_magenta},crv={self.CRV},tax={self.Tax},ttl={formula}){Style.reset} {Fore.misty_rose_3}EID({Fore.pale_green_1b}{self.EntryId}{Fore.light_yellow}) {Fore.spring_green_3a}[BCD/UPC[A/E]/EAN[8/13]/GTIN](cd={Fore.light_magenta}{rebar},{Fore.chartreuse_1}no_sep={self.rebar(skip_sep=True)}{Fore.spring_green_3a}){Style.reset}{Fore.slate_blue_1} -{Fore.cyan}> {Fore.orange_red_1}[SHELF/TAG/CIC/STR_CD]({Fore.light_red}cd={self.cfmt(self.Code)}{Fore.orange_red_1},{Fore.light_steel_blue}DayLogId={self.DayLogId},{Fore.pale_green_1b}EntryId={self.EntryId}){Style.reset}'''
|
|
2117
2196
|
return msg
|
|
2118
2197
|
|
|
2119
|
-
def __init__(self,Barcode,Code,upce2upca='',Name='',InList=False,Price=0.0,Note='',Size='',CaseCount=0,Shelf=0,BackRoom=0,Display_1=0,Display_2=0,Display_3=0,Display_4=0,Display_5=0,Display_6=0,Stock_Total=0,Timestamp=datetime.now().timestamp(),EntryId=None,Location='///',ListQty=0.0,Image='',CHKSTND_SPLY=0,WD_DSPLY=0,FLRL_CHP_DSPLY=0,FLRL_WTR_DSPLY=0,SBX_WTR_KLR=0,SBX_CHP_DSPLY=0,SBX_WTR_DSPLY=0,Facings=0,Tags='',CaseID_6W='',CaseID_BR='',CaseID_LD='',ALT_Barcode='',DUP_Barcode='',DayLogDate=datetime.now(),DayLogId=None,CRV=0.0,Tax=0.0,TaxNote='',userUpdated=False,LoadCount=1,PalletCount=1,ShelfCount=1,Description='',Distress=0,UnitsDeep=1,UnitsHigh=1):
|
|
2198
|
+
def __init__(self,Barcode,Code,upce2upca='',Name='',InList=False,Price=0.0,Note='',Size='',CaseCount=0,Shelf=0,BackRoom=0,Display_1=0,Display_2=0,Display_3=0,Display_4=0,Display_5=0,Display_6=0,Stock_Total=0,Timestamp=datetime.now().timestamp(),EntryId=None,Location='///',ListQty=0.0,Image='',CHKSTND_SPLY=0,WD_DSPLY=0,FLRL_CHP_DSPLY=0,FLRL_WTR_DSPLY=0,SBX_WTR_KLR=0,SBX_CHP_DSPLY=0,SBX_WTR_DSPLY=0,Facings=0,Tags='',CaseID_6W='',CaseID_BR='',CaseID_LD='',ALT_Barcode='',DUP_Barcode='',DayLogDate=datetime.now(),DayLogId=None,CRV=0.0,Tax=0.0,TaxNote='',userUpdated=False,LoadCount=1,PalletCount=1,ShelfCount=1,Description='',Distress=0,UnitsDeep=1,UnitsHigh=1,AquisitionDate=None,BestBy=None,Expiry=None):
|
|
2120
2199
|
if EntryId:
|
|
2121
2200
|
self.EntryId=EntryId
|
|
2201
|
+
self.AquisitionDate=AquisitionDate
|
|
2202
|
+
self.Expiry=Expiry
|
|
2203
|
+
self.BestBy=BestBy
|
|
2122
2204
|
self.userUpdated=userUpdated
|
|
2123
2205
|
self.Distress=Distress
|
|
2124
2206
|
self.UnitsHigh=UnitsHigh
|
|
@@ -2419,6 +2501,9 @@ CHKSTND_SPLY={self.CHKSTND_SPLY}
|
|
|
2419
2501
|
Total = {total}
|
|
2420
2502
|
Distressed={self.Distress} #not included in total
|
|
2421
2503
|
Total(w/o BR+) - Backroom = {(total-self.BackRoom)-self.BackRoom}
|
|
2504
|
+
Expiry = {self.Expiry}
|
|
2505
|
+
BestBy = {self.BestBy}
|
|
2506
|
+
AquisitionDate = {self.AquisitionDate}
|
|
2422
2507
|
-------------{num}-------------
|
|
2423
2508
|
"""
|
|
2424
2509
|
|
|
@@ -2494,6 +2579,10 @@ Facings={self.Facings}
|
|
|
2494
2579
|
{Fore.yellow_4b}{Style.underline}If Product was Pulled From BR to Fill Shelf, and needs to be
|
|
2495
2580
|
deducted from Total as remainder is to be filled from LOAD{Style.reset}
|
|
2496
2581
|
{Fore.cyan}{Style.bold}2->{Style.reset}{Fore.hot_pink_2}Total(w/o BR+) - Backroom{Style.reset} = {Fore.light_yellow}{(total-self.BackRoom)-self.BackRoom}{Style.reset}
|
|
2582
|
+
------------- Dates ------------------
|
|
2583
|
+
{Fore.light_cyan}Expiry = {Fore.light_green}{self.Expiry}{Style.reset}
|
|
2584
|
+
{Fore.light_cyan}BestBy = {Fore.light_green}{self.BestBy}{Style.reset}
|
|
2585
|
+
{Fore.light_cyan}AquisitionDate = {Fore.light_green}{self.AquisitionDate}{Style.reset}
|
|
2497
2586
|
-------------{Style.bold+Style.underline+Fore.orange_red_1}{num}{Style.reset}-------------
|
|
2498
2587
|
"""
|
|
2499
2588
|
print(msg)
|
|
@@ -2577,7 +2666,11 @@ deducted from Total as remainder is to be filled from LOAD{Style.reset}
|
|
|
2577
2666
|
{Fore.light_steel_blue}ShelfCount{Style.reset}:{Fore.grey_70}{types['ShelfCount']}{Style.reset}={self.ShelfCount},
|
|
2578
2667
|
{Fore.light_steel_blue}PalletCount{Style.reset}:{Fore.grey_70}{types['PalletCount']}{Style.reset}={self.PalletCount},
|
|
2579
2668
|
{Fore.light_steel_blue}LoadCount{Style.reset}:{Fore.grey_70}{types['LoadCount']}{Style.reset}={self.LoadCount},
|
|
2580
|
-
|
|
2669
|
+
------------- Dates ---------------
|
|
2670
|
+
{Fore.light_cyan}Expiry{Fore.grey_70}[{types['Expiry']}] = {Fore.light_green}{self.Expiry}{Style.reset}
|
|
2671
|
+
{Fore.light_cyan}BestBy{Fore.grey_70}[{types['BestBy']}] = {Fore.light_green}{self.BestBy}{Style.reset}
|
|
2672
|
+
{Fore.light_cyan}AquisitionDate{Fore.grey_70}[{types['AquisitionDate']}] = {Fore.light_green}{self.AquisitionDate}{Style.reset}
|
|
2673
|
+
|
|
2581
2674
|
{Fore.sky_blue_2}Size{Style.reset}:{Fore.grey_70}{types['Size']}{Style.reset}={self.Size}
|
|
2582
2675
|
{Fore.tan}Image[{Fore.dark_goldenrod}Exists:{Fore.deep_pink_3b}{self.imageExists()}{Style.reset}{Fore.tan}]{Style.reset}:{Fore.grey_70}{types['Image']}{Style.reset}={self.Image}
|
|
2583
2676
|
{Fore.orange_red_1}(Estimated/Inverted Shelf Qty) Shelf=ShelfCount - Qty {Fore.light_yellow}[{Fore.cyan}{self.ShelfCount}{Fore.light_yellow} -{Fore.cyan}{self.Shelf}{Fore.light_yellow}]={Fore.pale_green_1b}{self.ShelfCount-self.Shelf}{Style.reset}"""
|
radboy/TasksMode/SetEntryNEU.py
CHANGED
|
Binary file
|
radboy/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION='0.0.
|
|
1
|
+
VERSION='0.0.823'
|
|
Binary file
|
radboy/preloader/preloader.py
CHANGED
|
@@ -7,6 +7,21 @@ preloader={
|
|
|
7
7
|
'desc':f'find the volume of height*width*length without dimensions',
|
|
8
8
|
'exec':volume
|
|
9
9
|
},
|
|
10
|
+
f'{uuid1()}':{
|
|
11
|
+
'cmds':['value from total mass','vftm'],
|
|
12
|
+
'desc':f'give an estimated total value for mass of currency ((1/unitMass)*ValueOfUnit)*TotalMassOfUnitToBeCounted',
|
|
13
|
+
'exec':TotalCurrencyFromMass
|
|
14
|
+
},
|
|
15
|
+
f'{uuid1()}':{
|
|
16
|
+
'cmds':['base value from mass','bvfm'],
|
|
17
|
+
'desc':f'get base value for each coin to use as the price so qty may be the gram value (1/unitMass)*ValueOfUnit',
|
|
18
|
+
'exec':BaseCurrencyValueFromMass
|
|
19
|
+
},
|
|
20
|
+
f'{uuid1()}':{
|
|
21
|
+
'cmds':['us currency mass','us cnc'],
|
|
22
|
+
'desc':f'get us currency mass values',
|
|
23
|
+
'exec':USCurrencyMassValues
|
|
24
|
+
},
|
|
10
25
|
f'{uuid1()}':{
|
|
11
26
|
'cmds':['drgs','drugs','drug-select','drug select'],
|
|
12
27
|
'desc':f'return a selected drug text',
|
|
@@ -1612,7 +1612,7 @@ def ndtp():
|
|
|
1612
1612
|
}
|
|
1613
1613
|
fd=FormBuilder(data=fields,passThruText=msg)
|
|
1614
1614
|
if fd is None:
|
|
1615
|
-
|
|
1615
|
+
return
|
|
1616
1616
|
|
|
1617
1617
|
mph=fd['speed']
|
|
1618
1618
|
distance=fd['distance']
|
|
@@ -1693,4 +1693,97 @@ def drug_text():
|
|
|
1693
1693
|
print(e)
|
|
1694
1694
|
continue
|
|
1695
1695
|
|
|
1696
|
+
def TotalCurrencyFromMass():
|
|
1697
|
+
msg=''
|
|
1698
|
+
while True:
|
|
1699
|
+
try:
|
|
1700
|
+
fields={
|
|
1701
|
+
'1 Unit Mass(Grams)':{
|
|
1702
|
+
'type':'dec.dec',
|
|
1703
|
+
'default':2.50,
|
|
1704
|
+
},
|
|
1705
|
+
'1 Unit Value($)':{
|
|
1706
|
+
'type':'dec.dec',
|
|
1707
|
+
'default':0.01
|
|
1708
|
+
},
|
|
1709
|
+
'Total Unit Mass (Total Coin/Bill Mass)':{
|
|
1710
|
+
'type':'dec.dec',
|
|
1711
|
+
'default':0.0
|
|
1712
|
+
}
|
|
1713
|
+
}
|
|
1714
|
+
fd=FormBuilder(data=fields,passThruText=msg)
|
|
1715
|
+
if fd is None:
|
|
1716
|
+
return
|
|
1717
|
+
value=(decc(1/fd['1 Unit Mass(Grams)'])*decc(fd['1 Unit Value($)']))*decc(fd['Total Unit Mass (Total Coin/Bill Mass)'])
|
|
1718
|
+
return value
|
|
1719
|
+
except Exception as e:
|
|
1720
|
+
print(e)
|
|
1721
|
+
|
|
1722
|
+
def BaseCurrencyValueFromMass():
|
|
1723
|
+
msg=''
|
|
1724
|
+
while True:
|
|
1725
|
+
try:
|
|
1726
|
+
fields={
|
|
1727
|
+
'1 Unit Mass(Grams)':{
|
|
1728
|
+
'type':'dec.dec',
|
|
1729
|
+
'default':2.50,
|
|
1730
|
+
},
|
|
1731
|
+
'1 Unit Value($)':{
|
|
1732
|
+
'type':'dec.dec',
|
|
1733
|
+
'default':0.01
|
|
1734
|
+
}
|
|
1735
|
+
}
|
|
1736
|
+
fd=FormBuilder(data=fields,passThruText=msg)
|
|
1737
|
+
if fd is None:
|
|
1738
|
+
return
|
|
1739
|
+
value=(decc(1/fd['1 Unit Mass(Grams)'])*decc(fd['1 Unit Value($)']))
|
|
1740
|
+
return value
|
|
1741
|
+
except Exception as e:
|
|
1742
|
+
print(e)
|
|
1743
|
+
|
|
1744
|
+
|
|
1745
|
+
def USCurrencyMassValues():
|
|
1746
|
+
while True:
|
|
1747
|
+
try:
|
|
1748
|
+
drug_names={
|
|
1749
|
+
'Mass(Grams) - 1 Dollar Coin/1.0':decc(8.1),
|
|
1750
|
+
'Mass(Grams) - Half Dollar/0.50':decc(11.340),
|
|
1751
|
+
'Mass(Grams) - Quarter/0.25':decc(5.670),
|
|
1752
|
+
'Mass(Grams) - Nickel/0.05':decc(5.0),
|
|
1753
|
+
'Mass(Grams) - Dime/0.10':decc(2.268),
|
|
1754
|
+
'Mass(Grams) - Penny/0.01':decc(2.5),
|
|
1755
|
+
'Mass(Grams) - Bill($1/$2/$5/$10/$20/$50/$100':decc(1),
|
|
1756
|
+
|
|
1757
|
+
'Value for Mass(Grams) - 1 Dollar Coin/8.1 Grams':1.00,
|
|
1758
|
+
'Value for Mass(Grams) - Half Dollar/11.340 Grams':0.50,
|
|
1759
|
+
'Value for Mass(Grams) - Quarter/5.670 Grams':0.25,
|
|
1760
|
+
'Value for Mass(Grams) - Nickel/5 Grams':0.05,
|
|
1761
|
+
'Value for Mass(Grams) - Dime/2.268 Grams':0.10,
|
|
1762
|
+
'Value for Mass(Grams) - Penny/2.5 Grams':0.01,
|
|
1763
|
+
'Value for Mass(Grams) - 1$ Bill/1 Grams':1,
|
|
1764
|
+
'Value for Mass(Grams) - 2$ Bill/1 Grams':2,
|
|
1765
|
+
'Value for Mass(Grams) - 5$ Bill/1 Grams':5,
|
|
1766
|
+
'Value for Mass(Grams) - 10$ Bill/1 Grams':10,
|
|
1767
|
+
'Value for Mass(Grams) - 20$ Bill/1 Grams':20,
|
|
1768
|
+
'Value for Mass(Grams) - 50$ Bill/1 Grams':50,
|
|
1769
|
+
'Value for Mass(Grams) - 100$ Bill/1 Grams':100,
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1696
1772
|
|
|
1773
|
+
keys=[]
|
|
1774
|
+
htext=[]
|
|
1775
|
+
cta=len(drug_names)
|
|
1776
|
+
for num,i in enumerate(drug_names):
|
|
1777
|
+
msg=f'{i} -> {drug_names[i]}'
|
|
1778
|
+
htext.append(std_colorize(msg,num,cta))
|
|
1779
|
+
keys.append(i)
|
|
1780
|
+
htext='\n'.join(htext)
|
|
1781
|
+
print(htext)
|
|
1782
|
+
which=Control(func=FormBuilderMkText,ptext="which index?",helpText=htext,data="integer")
|
|
1783
|
+
if which in [None,'NaN']:
|
|
1784
|
+
return
|
|
1785
|
+
return drug_names[keys[which]]
|
|
1786
|
+
|
|
1787
|
+
except Exception as e:
|
|
1788
|
+
print(e)
|
|
1789
|
+
continue
|
|
@@ -5,7 +5,7 @@ radboy/Holidays.txt,sha256=y-JZPihh5iaWKxMIHNXD39yVuVmf1vMs4FdNDcg0f1Y,3114
|
|
|
5
5
|
radboy/InventoryGlossary.txt,sha256=018-Yqca6DFb10jPdkUY-5qhkRlQN1k3rxoTaERQ-LA,91008
|
|
6
6
|
radboy/RecordMyCodes.py,sha256=h30zoTqt-XLt_afDPlxMxBiKKwmKi3N-yAuldNCqXUo,41476
|
|
7
7
|
radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
|
|
8
|
-
radboy/__init__.py,sha256=
|
|
8
|
+
radboy/__init__.py,sha256=8JUuWlWQaS_peRabTwbvhLx1QARsO5d1U47dS1W-zHk,17
|
|
9
9
|
radboy/api_key,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
radboy/case-export-2024-05-14-13-10-00.672971.xlsx,sha256=Wd592d_VLFmfUI9KKKSVjNwjV91euc1T7ATyvwvUhlg,5431
|
|
11
11
|
radboy/case-export-2024-05-14-13-13-22.540614.xlsx,sha256=OnGrhmScHfGp_mVaWW-LNMsqrQgyZDpiU3wV-2s3U5Q,5556
|
|
@@ -89,14 +89,14 @@ radboy/DB/OrderedAndRxd.py,sha256=v_vrTOiTDhKqT5KErK6MOG_u4Nt7ug2MoLTHvAnm88M,19
|
|
|
89
89
|
radboy/DB/PayDay.py,sha256=H2kPGvBCDkMOz7lbxQhYtUt_oAInpxi37Q6MFrah98I,8710
|
|
90
90
|
radboy/DB/PayModels.py,sha256=hjwWxP7PL33hmfzQl5YTf0HqzaMxXJxFknPdxFJXJc8,3499
|
|
91
91
|
radboy/DB/PrintLogging.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
92
|
-
radboy/DB/Prompt.py,sha256=
|
|
92
|
+
radboy/DB/Prompt.py,sha256=5XIejX6OE6VTzumjvdmLY0h315i_Exd_V4bpzmajbHo,194870
|
|
93
93
|
radboy/DB/RandomStringUtil.py,sha256=eZCpR907WStgfbk4Evcghjv9hOkUDXH-iMXIq0-kXq8,24386
|
|
94
94
|
radboy/DB/ResetTools.py,sha256=RbI-Ua7UlsN0S9qLqtEkTWvzyTZ6R-hHR3CW4NHlUPE,6660
|
|
95
95
|
radboy/DB/SMLabelImporter.py,sha256=eUoBDxVUUEKGL2g_PwkASM67ZB7FmXtSnn4bCagskhY,4013
|
|
96
96
|
radboy/DB/__init__.py,sha256=JiigA9B7GalP7YuRdcwyGDu5PDSBahoi0lLjtScxlN8,49
|
|
97
97
|
radboy/DB/blankDataFile.py,sha256=YX_05Usi71UpDkZN9UTMYwUipbTndTAtEgqzBEga0kE,9285
|
|
98
98
|
radboy/DB/config.py,sha256=bvu43dUl1_yO3Zq3gsLuenGUgJSiS3S9Cs6ppFEvZbg,239
|
|
99
|
-
radboy/DB/db.py,sha256=
|
|
99
|
+
radboy/DB/db.py,sha256=vXy1lPXebP-jjP2FJyjXIlKSCoaFxcB89zNHzyBux8M,268306
|
|
100
100
|
radboy/DB/glossary_db.py,sha256=1_qxeEpjjEtpWB_eDjsgJisimLv7OBm75MuqM-Lt6zg,28218
|
|
101
101
|
radboy/DB/jobnotes.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
102
|
radboy/DB/lsToday.py,sha256=Pevus6GBHLM2xudBEx8u36Q-jYvatOI-y5o72BmFnzA,9435
|
|
@@ -120,7 +120,7 @@ radboy/DB/__pycache__/FormBuilder.cpython-312.pyc,sha256=p1o-5SMRL8OXP_XQ5liUpf-
|
|
|
120
120
|
radboy/DB/__pycache__/PrintLogging.cpython-312.pyc,sha256=pIAFqTi6OiQQORSc-oMH1zAbsdH7sY1TifxrN_QOvnU,148
|
|
121
121
|
radboy/DB/__pycache__/Prompt.cpython-311.pyc,sha256=P2uPRpeqfLFtxieZ0JHBG3X_HZzWUCsFSLb_fpRqky0,6407
|
|
122
122
|
radboy/DB/__pycache__/Prompt.cpython-312.pyc,sha256=6CcQ1gE2hcz3cKPjo4f6d7xNM2PTDnl8NzQG0Pme5BE,142886
|
|
123
|
-
radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=
|
|
123
|
+
radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=JOTVfql3xxF4CQUD_7BiXaINqRZRgHos7nrfIrO9sBo,276651
|
|
124
124
|
radboy/DB/__pycache__/RandomStringUtil.cpython-312.pyc,sha256=TrbEY89MuLmNlvoo5d8vOE6Dyshh5_EMlTZvk8MDVN4,48597
|
|
125
125
|
radboy/DB/__pycache__/RandomStringUtil.cpython-313.pyc,sha256=MCcgVwV2Y-9rAY2FVaJZCKcou3HDX70EZudoiCigT0o,49217
|
|
126
126
|
radboy/DB/__pycache__/ResetTools.cpython-311.pyc,sha256=4Vyc57iAAF0yRPjjglnVKovnTn8OoFIi6Zok3Wpj_YM,9292
|
|
@@ -138,7 +138,7 @@ radboy/DB/__pycache__/config.cpython-312.pyc,sha256=Qo7E6MHrF6yqvKgepNFyCoekZXiv
|
|
|
138
138
|
radboy/DB/__pycache__/config.cpython-313.pyc,sha256=_8wCIg_3jhyJjxnExD2Sm6aY-uZTw036p7Ki5znL7dc,376
|
|
139
139
|
radboy/DB/__pycache__/db.cpython-311.pyc,sha256=rNgigyBd0D-cg1JxKAS8t0B_k0IEJivgVlRaZE10Xis,210105
|
|
140
140
|
radboy/DB/__pycache__/db.cpython-312.pyc,sha256=ANDJPC0RoavbmSKFxG15vC7B4rEGyVt7xRJt7XGY3OA,334609
|
|
141
|
-
radboy/DB/__pycache__/db.cpython-313.pyc,sha256=
|
|
141
|
+
radboy/DB/__pycache__/db.cpython-313.pyc,sha256=yFPKlVTBAewsWdUp1FtmZ9UcoeINIRGRnIM3SqfLyOk,420348
|
|
142
142
|
radboy/DB/__pycache__/glossary_db.cpython-312.pyc,sha256=8UL-29cKqtKovx0BANm6kzKKteef1BW_2qF3wumzst4,36023
|
|
143
143
|
radboy/DB/__pycache__/glossary_db.cpython-313.pyc,sha256=Ke9bkvllGv5CK0JdT9DRvQ3MOdrXxoYv7TVLNkqLux0,36582
|
|
144
144
|
radboy/DB/__pycache__/masterLookup.cpython-312.pyc,sha256=bQiOkmMwwHgcO18tYSWGQ-YUff4GQlKVhBMp1GoWAqY,6324
|
|
@@ -356,14 +356,14 @@ radboy/SystemSettings/__pycache__/SystemSettings.cpython-313.pyc,sha256=ddGbkpJe
|
|
|
356
356
|
radboy/SystemSettings/__pycache__/__init__.cpython-312.pyc,sha256=aIzp4Po0t8EhSAE8ytO-tJlNuKnEzAWPi1fzEIoGesI,277
|
|
357
357
|
radboy/SystemSettings/__pycache__/__init__.cpython-313.pyc,sha256=QFDuoidxMWsGVLsy5lN-rDs6TP8nKJ4yyCyiamNOhwo,156
|
|
358
358
|
radboy/TasksMode/ReFormula.py,sha256=REDRJYub-OEOE6g14oRQOLOQwv8pHqVJy4NQk3CCM90,2255
|
|
359
|
-
radboy/TasksMode/SetEntryNEU.py,sha256=
|
|
359
|
+
radboy/TasksMode/SetEntryNEU.py,sha256=d-Aya8yxdVmcMNDcp0UBMQQm4IAbJv6vhYKeh9r0Kmg,20694
|
|
360
360
|
radboy/TasksMode/Tasks.py,sha256=4j3OGM-s-Vg63HbEX2CnAarzKcFv475_hljXBZA_El4,381079
|
|
361
361
|
radboy/TasksMode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
362
|
radboy/TasksMode/__pycache__/ReFormula.cpython-311.pyc,sha256=QEG3PwVw-8HTd_Mf9XbVcxU56F1fC9yBqWXYPLC39DU,4865
|
|
363
363
|
radboy/TasksMode/__pycache__/ReFormula.cpython-312.pyc,sha256=aX7BWm2PPjCTnxsbGUitR-2h9hq4AjaBiHMrUXvIl0Y,3967
|
|
364
364
|
radboy/TasksMode/__pycache__/ReFormula.cpython-313.pyc,sha256=BfNrg6vlQn5f2asq3gT7JVYC0sOLmYqQyuBPTGJXPNk,3901
|
|
365
365
|
radboy/TasksMode/__pycache__/SetEntryNEU.cpython-312.pyc,sha256=pCdFj61aPKkHL6SvZZ4jUfWJulvDbKue4HGFTIeteOU,17671
|
|
366
|
-
radboy/TasksMode/__pycache__/SetEntryNEU.cpython-313.pyc,sha256=
|
|
366
|
+
radboy/TasksMode/__pycache__/SetEntryNEU.cpython-313.pyc,sha256=aXhwkDb2JQXRyJpxYBScWk6Wfsze9uM7vdx9lo-u57Q,24632
|
|
367
367
|
radboy/TasksMode/__pycache__/Tasks.cpython-311.pyc,sha256=6QOTJnLiXSKdF81hkhy3vyrz49PPhS20s5_0X52g3Hw,131120
|
|
368
368
|
radboy/TasksMode/__pycache__/Tasks.cpython-312.pyc,sha256=hyJwdaYaaRLdcrNxgg36diJ5iijX5_3I0UAORsj-6LU,310295
|
|
369
369
|
radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=ShffoWWR3FLC79G1NhUHzhA2HD2F63NnByNEf0n5Nz4,454684
|
|
@@ -413,7 +413,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
|
|
|
413
413
|
radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
|
|
414
414
|
radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
|
|
415
415
|
radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
|
|
416
|
-
radboy/__pycache__/__init__.cpython-313.pyc,sha256=
|
|
416
|
+
radboy/__pycache__/__init__.cpython-313.pyc,sha256=ILiU88jL57Rny6iH46de0vzULly3xSaB6d1DOCmFABs,165
|
|
417
417
|
radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
|
|
418
418
|
radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
|
|
419
419
|
radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
|
|
@@ -423,8 +423,8 @@ radboy/__pycache__/t.cpython-311.pyc,sha256=bVszNkmfiyoNLd0WUc8aBJc2geGseW4O28cq
|
|
|
423
423
|
radboy/__pycache__/te.cpython-311.pyc,sha256=vI8eNUE5VVrfCQvnrJ7WuWpoKcLz-vVK3ifdUZ4UNhk,592
|
|
424
424
|
radboy/__pycache__/x.cpython-311.pyc,sha256=3jIvWoO5y5WqrL_hRmXNK8O0vO7DwJ4gufjm2b0V7VI,1963
|
|
425
425
|
radboy/preloader/__init__.py,sha256=lrGR0JF0dkDM8N9ORGUKH_MucUFx1-PI38YsvqS-wgA,926
|
|
426
|
-
radboy/preloader/preloader.py,sha256=
|
|
427
|
-
radboy/preloader/preloader_func.py,sha256=
|
|
426
|
+
radboy/preloader/preloader.py,sha256=137c5pW-NRhskZeNsQYV6KAbINkmysrAk7OPKbEnKTo,8910
|
|
427
|
+
radboy/preloader/preloader_func.py,sha256=zcjgsVH9CKQzZ6eoQuJifF6ZTL4hQI3cRTs0-d0EhiE,63530
|
|
428
428
|
radboy/setCode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
429
429
|
radboy/setCode/setCode.py,sha256=8UOf4okbx-Zane99odeoLAS_lfIt8pIaFomN7EtnnVA,5202
|
|
430
430
|
radboy/setCode/__pycache__/__init__.cpython-311.pyc,sha256=cJuP5rve6Wn7ZO789tixyOlyrHZQWsBxDn9oZGoG5WE,232
|
|
@@ -441,7 +441,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
|
|
|
441
441
|
radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
|
|
442
442
|
radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
|
|
443
443
|
radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
|
|
444
|
-
radboy-0.0.
|
|
445
|
-
radboy-0.0.
|
|
446
|
-
radboy-0.0.
|
|
447
|
-
radboy-0.0.
|
|
444
|
+
radboy-0.0.823.dist-info/METADATA,sha256=ZDKvAmWzYRdVphQGGX-OCTaG9uOeaWFCvto52tGjUDs,1920
|
|
445
|
+
radboy-0.0.823.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
446
|
+
radboy-0.0.823.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
|
|
447
|
+
radboy-0.0.823.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|