(service_)
| 72 | |
| 73 | |
| 74 | def is_service_present(service_): |
| 75 | cursor_.execute("SELECT SERVICE from STORE where SERVICE = ?", (service_,)) |
| 76 | data = cursor_.fetchall() |
| 77 | if len(data) == 0: |
| 78 | print("There is no service named %s" % service_) |
| 79 | return False |
| 80 | else: |
| 81 | return True |
| 82 | |
| 83 | |
| 84 | if connect == ADMIN_PASSWORD: |