Job 1788150225003

Command: python -c "from pathlib import Path; import re; root=Path(r'C:\Users\ash\Documents\ShopeeApi'); pats=re.compile(r'list_ready_to_ship_for_arrange|arrange.*shipment|ship_order|READY_TO_SHIP|Instant Delivery|instant_delivery',re.I); for p in root.rglob('*.py'): try: lines=p.read_text(encoding='utf-8',errors='replace').splitlines() except: continue hits=[i for i,x in enumerate(lines) if pats.search(x)] if hits: print('===',p.relative_to(root),'===') shown=set() for i in hits: a=max(0,i-8); b=min(len(lines),i+18) key=(a,b) if key in shown: continue shown.add(key) for j in range(a,b): print(f'{j+1}: {lines[j][:500]}') print('---') "
Directory: projects
Status: SUCCESS
Exit code: 0

Cancel Job Rerun Command Refresh