Skip to content
  • This project
    • Loading...
  • Sign in

juan / auditor_laika

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • auditor_laika
  • sop
  • config.py
  • Juan's avatar
    Funciona busqueda de cliente · a2183523
    Juan committed 2022-08-02 14:17:57 -0300
    a2183523
config.py 316 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
DevHost = "transcontrol.hgtsa.com.ar"
DevUser = "jpdure"
DevPass = "1234"
Dev = "Auditor cmd"
debug = True

def dprint(*kw):
    if debug:
        text = ""
        for ele in kw:
            text = f"{text} {str(ele)}"
        print(text)

def cls():
    import os
    os.system('cls' if os.name=='nt' else 'clear')