(service_, username_, password_)
| 25 | |
| 26 | |
| 27 | def add_password(service_, username_, password_): |
| 28 | command = ( |
| 29 | 'INSERT INTO STORE (SERVICE,USERNAME,PASSWORD) VALUES("' |
| 30 | + service_ |
| 31 | + '","' |
| 32 | + username_ |
| 33 | + '","' |
| 34 | + password_ |
| 35 | + '");' |
| 36 | ) |
| 37 | conn.execute(command) |
| 38 | conn.commit() |
| 39 | |
| 40 | |
| 41 | def update_password(service_, password_): |