design-patterns/query_index_invoiceandbilling.py [29:36]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
if __name__ == "__main__":
    os.system("clear")
    args = sys.argv[1:]
    tablename   =   args[0]
    value       =   args[1]

    begin_time = time.time()
    result = query_InvoiceandBilling(tablename,value)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



design-patterns/query_invoiceandbilling.py [25:32]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
if __name__ == "__main__":
    os.system("clear")
    args = sys.argv[1:]
    tablename   =   args[0]
    value       =   args[1]

    begin_time = time.time()
    result = query_InvoiceandBilling(tablename,value)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



