(service_)
| 16 | |
| 17 | |
| 18 | def get_password(service_): |
| 19 | command = 'SELECT * from STORE WHERE SERVICE = "' + service_ + '"' |
| 20 | cursor = conn.execute(command) |
| 21 | for row in cursor: |
| 22 | username_ = row[1] |
| 23 | password_ = row[2] |
| 24 | return [username_, password_] |
| 25 | |
| 26 | |
| 27 | def add_password(service_, username_, password_): |