-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpersonal_assistant.py
More file actions
607 lines (495 loc) · 23.6 KB
/
Copy pathpersonal_assistant.py
File metadata and controls
607 lines (495 loc) · 23.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
# import datetime
# import sqlite3
# # 记录收支情况的类
# class FinanceRecord:
# def __init__(self, amount, category, date=None):
# self.amount = amount
# self.category = category
# self.date = date if date else datetime.datetime.now().strftime(
# "%Y-%m-%d %H:%M:%S") # 转换为字符串
# def __str__(self):
# return f"{self.date}: {self.category} - {self.amount}"
# class LifeEvent:
# def __init__(self, description, date=None):
# self.description = description
# self.date = date if date else datetime.datetime.now().strftime(
# "%Y-%m-%d %H:%M:%S") # 转换为字符串
# def __str__(self):
# return f"{self.date}: {self.description}"
# class HealthRecord:
# def __init__(self, health_data, date=None):
# self.health_data = health_data
# self.date = date if date else datetime.datetime.now().strftime(
# "%Y-%m-%d %H:%M:%S") # 转换为字符串
# def __str__(self):
# return f"{self.date}: {self.health_data}"
# class ContactRecord:
# def __init__(self, name, phone, email, date=None):
# self.name = name
# self.phone = phone
# self.email = email
# self.date = date if date else datetime.datetime.now().strftime(
# "%Y-%m-%d %H:%M:%S") # 转换为字符串
# def __str__(self):
# return f"{self.date}: {self.name} - {self.phone} - {self.email}"
# class PersonalAssistant:
# def __init__(self):
# self.finance_records = []
# self.life_events = []
# self.health_records = []
# self.contact_records = []
# self.conn = sqlite3.connect(':memory:') # 使用内存数据库
# self.create_tables()
# def create_tables(self):
# cursor = self.conn.cursor()
# cursor.execute('''CREATE TABLE finance_records
# (amount REAL, category TEXT, date TEXT)''')
# cursor.execute('''CREATE TABLE life_events
# (description TEXT, date TEXT)''')
# cursor.execute('''CREATE TABLE health_records
# (health_data TEXT, date TEXT)''')
# cursor.execute('''CREATE TABLE contact_records
# (name TEXT, phone TEXT, email TEXT, date TEXT)''')
# self.conn.commit()
# def add_finance_record(self, amount, category):
# record = FinanceRecord(amount, category)
# self.finance_records.append(record)
# cursor = self.conn.cursor()
# cursor.execute("INSERT INTO finance_records (amount, category, date) VALUES (?, ?, ?)",
# (record.amount, record.category, record.date)) # 存储为字符串
# self.conn.commit()
# def delete_finance_record(self, amount, category):
# self.finance_records = [record for record in self.finance_records if not (
# record.amount == amount and record.category == category)]
# cursor = self.conn.cursor()
# cursor.execute(
# "DELETE FROM finance_records WHERE amount=? AND category=?", (amount, category))
# self.conn.commit()
# def update_finance_record(self, old_amount, old_category, new_amount, new_category):
# for record in self.finance_records:
# if record.amount == old_amount and record.category == old_category:
# record.amount = new_amount
# record.category = new_category
# cursor = self.conn.cursor()
# cursor.execute("UPDATE finance_records SET amount=?, category=? WHERE amount=? AND category=?",
# (new_amount, new_category, old_amount, old_category))
# self.conn.commit()
# def get_finance_records(self):
# return self.finance_records
# def get_finance_records_from_db(self):
# cursor = self.conn.cursor()
# cursor.execute("SELECT * FROM finance_records")
# return cursor.fetchall()
# def add_life_event(self, description):
# event = LifeEvent(description)
# self.life_events.append(event)
# cursor = self.conn.cursor()
# cursor.execute("INSERT INTO life_events (description, date) VALUES (?, ?)",
# (event.description, event.date)) # 存储为字符串
# self.conn.commit()
# def delete_life_event(self, description):
# self.life_events = [
# event for event in self.life_events if event.description != description]
# cursor = self.conn.cursor()
# cursor.execute(
# "DELETE FROM life_events WHERE description=?", (description,))
# self.conn.commit()
# def update_life_event(self, old_description, new_description):
# for event in self.life_events:
# if event.description == old_description:
# event.description = new_description
# cursor = self.conn.cursor()
# cursor.execute("UPDATE life_events SET description=? WHERE description=?",
# (new_description, old_description))
# self.conn.commit()
# def get_life_events(self):
# return self.life_events
# def get_life_events_from_db(self):
# cursor = self.conn.cursor()
# cursor.execute("SELECT * FROM life_events")
# return cursor.fetchall()
# def add_health_record(self, health_data):
# record = HealthRecord(health_data)
# self.health_records.append(record)
# cursor = self.conn.cursor()
# cursor.execute("INSERT INTO health_records (health_data, date) VALUES (?, ?)",
# (record.health_data, record.date)) # 存储为字符串
# self.conn.commit()
# def delete_health_record(self, health_data):
# self.health_records = [
# record for record in self.health_records if record.health_data != health_data]
# cursor = self.conn.cursor()
# cursor.execute(
# "DELETE FROM health_records WHERE health_data=?", (health_data,))
# self.conn.commit()
# def update_health_record(self, old_health_data, new_health_data):
# for record in self.health_records:
# if record.health_data == old_health_data:
# record.health_data = new_health_data
# cursor = self.conn.cursor()
# cursor.execute("UPDATE health_records SET health_data=? WHERE health_data=?",
# (new_health_data, old_health_data))
# self.conn.commit()
# def get_health_records(self):
# return self.health_records
# def get_health_records_from_db(self):
# cursor = self.conn.cursor()
# cursor.execute("SELECT * FROM health_records")
# return cursor.fetchall()
# def add_contact_record(self, name, phone, email):
# record = ContactRecord(name, phone, email)
# self.contact_records.append(record)
# cursor = self.conn.cursor()
# cursor.execute("INSERT INTO contact_records (name, phone, email, date) VALUES (?, ?, ?, ?)",
# (record.name, record.phone, record.email, record.date)) # 存储为字符串
# self.conn.commit()
# def delete_contact_record(self, name):
# self.contact_records = [
# record for record in self.contact_records if record.name != name]
# cursor = self.conn.cursor()
# cursor.execute("DELETE FROM contact_records WHERE name=?", (name,))
# self.conn.commit()
# def update_contact_record(self, old_name, new_name, new_phone, new_email):
# for contact in self.contact_records:
# if contact.name == old_name:
# contact.name = new_name
# contact.phone = new_phone
# contact.email = new_email
# cursor = self.conn.cursor()
# cursor.execute("UPDATE contact_records SET name=?, phone=?, email=? WHERE name=?",
# (new_name, new_phone, new_email, old_name))
# self.conn.commit()
# def get_contact_records(self):
# return self.contact_records
# def get_contact_records_from_db(self):
# cursor = self.conn.cursor()
# cursor.execute("SELECT * FROM contact_records")
# return cursor.fetchall()
# # 第二版
# import datetime
# import sqlite3
# # 记录收支情况的类
# class FinanceRecord:
# def __init__(self, amount, category, date=None):
# self.amount = amount
# self.category = category
# self.date = date if date else datetime.datetime.now()
# def __str__(self):
# return f"{self.date}: {self.category} - {self.amount}"
# class LifeEvent:
# def __init__(self, description, date=None):
# self.description = description
# self.date = date if date else datetime.datetime.now()
# def __str__(self):
# return f"{self.date}: {self.description}"
# class HealthRecord:
# def __init__(self, health_data, date=None):
# self.health_data = health_data
# self.date = date if date else datetime.datetime.now()
# def __str__(self):
# return f"{self.date}: {self.health_data}"
# class ContactRecord:
# def __init__(self, name, phone, email, date=None):
# self.name = name
# self.phone = phone
# self.email = email
# self.date = date if date else datetime.datetime.now()
# def __str__(self):
# return f"{self.date}: {self.name} - {self.phone} - {self.email}"
# class PersonalAssistant:
# def __init__(self):
# self.finance_records = []
# self.life_events = []
# self.health_records = []
# self.contact_records = []
# self.conn = sqlite3.connect(':memory:') # 使用内存数据库
# self.create_tables()
# def create_tables(self):
# cursor = self.conn.cursor()
# cursor.execute('''CREATE TABLE finance_records
# (amount REAL, category TEXT, date TEXT)''')
# cursor.execute('''CREATE TABLE life_events
# (description TEXT, date TEXT)''')
# cursor.execute('''CREATE TABLE health_records
# (health_data TEXT, date TEXT)''')
# cursor.execute('''CREATE TABLE contact_records
# (name TEXT, phone TEXT, email TEXT, date TEXT)''')
# self.conn.commit()
# def add_finance_record(self, amount, category):
# record = FinanceRecord(amount, category)
# self.finance_records.append(record)
# cursor = self.conn.cursor()
# cursor.execute("INSERT INTO finance_records (amount, category, date) VALUES (?, ?, ?)",
# (record.amount, record.category, record.date.strftime("%Y.%m.%d %H:%M:%S")))
# self.conn.commit()
# def delete_finance_record(self, amount, category):
# self.finance_records = [record for record in self.finance_records if not (
# record.amount == amount and record.category == category)]
# cursor = self.conn.cursor()
# cursor.execute(
# "DELETE FROM finance_records WHERE amount=? AND category=?", (amount, category))
# self.conn.commit()
# def update_finance_record(self, old_amount, old_category, new_amount, new_category):
# for record in self.finance_records:
# if record.amount == old_amount and record.category == old_category:
# record.amount = new_amount
# record.category = new_category
# cursor = self.conn.cursor()
# cursor.execute("UPDATE finance_records SET amount=?, category=? WHERE amount=? AND category=?",
# (new_amount, new_category, old_amount, old_category))
# self.conn.commit()
# def get_finance_records(self):
# return self.finance_records
# def get_finance_records_from_db(self):
# cursor = self.conn.cursor()
# cursor.execute("SELECT * FROM finance_records")
# return cursor.fetchall()
# def add_life_event(self, description):
# event = LifeEvent(description)
# self.life_events.append(event)
# cursor = self.conn.cursor()
# cursor.execute("INSERT INTO life_events (description, date) VALUES (?, ?)",
# (event.description, event.date.strftime("%Y.%m.%d %H:%M:%S")))
# self.conn.commit()
# def delete_life_event(self, description):
# self.life_events = [
# event for event in self.life_events if event.description != description]
# cursor = self.conn.cursor()
# cursor.execute(
# "DELETE FROM life_events WHERE description=?", (description,))
# self.conn.commit()
# def update_life_event(self, old_description, new_description):
# for event in self.life_events:
# if event.description == old_description:
# event.description = new_description
# cursor = self.conn.cursor()
# cursor.execute("UPDATE life_events SET description=? WHERE description=?",
# (new_description, old_description))
# self.conn.commit()
# def get_life_events(self):
# return self.life_events
# def get_life_events_from_db(self):
# cursor = self.conn.cursor()
# cursor.execute("SELECT * FROM life_events")
# return cursor.fetchall()
# def add_health_record(self, health_data):
# record = HealthRecord(health_data)
# self.health_records.append(record)
# cursor = self.conn.cursor()
# cursor.execute("INSERT INTO health_records (health_data, date) VALUES (?, ?)",
# (record.health_data, record.date.strftime("%Y.%m.%d %H:%M:%S")))
# self.conn.commit()
# def delete_health_record(self, health_data):
# self.health_records = [
# record for record in self.health_records if record.health_data != health_data]
# cursor = self.conn.cursor()
# cursor.execute(
# "DELETE FROM health_records WHERE health_data=?", (health_data,))
# self.conn.commit()
# def update_health_record(self, old_health_data, new_health_data):
# for record in self.health_records:
# if record.health_data == old_health_data:
# record.health_data = new_health_data
# cursor = self.conn.cursor()
# cursor.execute("UPDATE health_records SET health_data=? WHERE health_data=?",
# (new_health_data, old_health_data))
# self.conn.commit()
# def get_health_records(self):
# return self.health_records
# def get_health_records_from_db(self):
# cursor = self.conn.cursor()
# cursor.execute("SELECT * FROM health_records")
# return cursor.fetchall()
# def add_contact_record(self, name, phone, email):
# record = ContactRecord(name, phone, email)
# self.contact_records.append(record)
# cursor = self.conn.cursor()
# cursor.execute("INSERT INTO contact_records (name, phone, email, date) VALUES (?, ?, ?, ?)",
# (record.name, record.phone, record.email, record.date.strftime("%Y.%m.%d %H:%M:%S")))
# self.conn.commit()
# def delete_contact_record(self, name):
# self.contact_records = [
# record for record in self.contact_records if record.name != name]
# cursor = self.conn.cursor()
# cursor.execute("DELETE FROM contact_records WHERE name=?", (name,))
# self.conn.commit()
# def update_contact_record(self, old_name, new_name, new_phone, new_email):
# for contact in self.contact_records:
# if contact.name == old_name:
# contact.name = new_name
# contact.phone = new_phone
# contact.email = new_email
# cursor = self.conn.cursor()
# cursor.execute("UPDATE contact_records SET name=?, phone=?, email=? WHERE name=?",
# (new_name, new_phone, new_email, old_name))
# self.conn.commit()
# def get_contact_records(self):
# return self.contact_records
# def get_contact_records_from_db(self):
# cursor = self.conn.cursor()
# cursor.execute("SELECT * FROM contact_records")
# return cursor.fetchall()
# 第三版
import datetime
import sqlite3
# 记录收支情况的类
class FinanceRecord:
def __init__(self, amount, category, date=None):
self.amount = amount
self.category = category
self.date = date if date else datetime.datetime.now()
def __str__(self):
return f"{self.date}: {self.category} - {self.amount}"
class LifeEvent:
def __init__(self, description, date=None):
self.description = description
self.date = date if date else datetime.datetime.now()
def __str__(self):
return f"{self.date}: {self.description}"
class HealthRecord:
def __init__(self, health_data, date=None):
self.health_data = health_data
self.date = date if date else datetime.datetime.now()
def __str__(self):
return f"{self.date}: {self.health_data}"
class ContactRecord:
def __init__(self, name, phone, email, date=None):
self.name = name
self.phone = phone
self.email = email
self.date = date if date else datetime.datetime.now()
def __str__(self):
return f"{self.date}: {self.name} - {self.phone} - {self.email}"
class PersonalAssistant:
def __init__(self):
self.finance_records = []
self.life_events = []
self.health_records = []
self.contact_records = []
self.conn = sqlite3.connect(':memory:') # 使用内存数据库
self.create_tables()
def create_tables(self):
cursor = self.conn.cursor()
cursor.execute('''CREATE TABLE finance_records
(amount REAL, category TEXT, date TEXT)''')
cursor.execute('''CREATE TABLE life_events
(description TEXT, date TEXT)''')
cursor.execute('''CREATE TABLE health_records
(health_data TEXT, date TEXT)''')
cursor.execute('''CREATE TABLE contact_records
(name TEXT, phone TEXT, email TEXT, date TEXT)''')
self.conn.commit()
def add_finance_record(self, amount, category):
record = FinanceRecord(amount, category)
self.finance_records.append(record)
cursor = self.conn.cursor()
cursor.execute("INSERT INTO finance_records (amount, category, date) VALUES (?, ?, ?)",
(record.amount, record.category, record.date.strftime("%Y-%m-%d %H:%M:%S")))
self.conn.commit()
def delete_finance_record(self, amount, category):
self.finance_records = [record for record in self.finance_records if not (
record.amount == amount and record.category == category)]
cursor = self.conn.cursor()
cursor.execute(
"DELETE FROM finance_records WHERE amount=? AND category=?", (amount, category))
self.conn.commit()
def update_finance_record(self, old_amount, old_category, new_amount, new_category):
for record in self.finance_records:
if record.amount == old_amount and record.category == old_category:
record.amount = new_amount
record.category = new_category
cursor = self.conn.cursor()
cursor.execute("UPDATE finance_records SET amount=?, category=? WHERE amount=? AND category=?",
(new_amount, new_category, old_amount, old_category))
self.conn.commit()
def get_finance_records(self):
return self.finance_records
def get_finance_records_from_db(self):
cursor = self.conn.cursor()
cursor.execute("SELECT * FROM finance_records")
return cursor.fetchall()
def add_life_event(self, description):
event = LifeEvent(description)
self.life_events.append(event)
cursor = self.conn.cursor()
cursor.execute("INSERT INTO life_events (description, date) VALUES (?, ?)",
(event.description, event.date.strftime("%Y-%m-%d %H:%M:%S")))
self.conn.commit()
def delete_life_event(self, description):
self.life_events = [
event for event in self.life_events if event.description != description]
cursor = self.conn.cursor()
cursor.execute(
"DELETE FROM life_events WHERE description=?", (description,))
self.conn.commit()
def update_life_event(self, old_description, new_description):
for event in self.life_events:
if event.description == old_description:
event.description = new_description
cursor = self.conn.cursor()
cursor.execute("UPDATE life_events SET description=? WHERE description=?",
(new_description, old_description))
self.conn.commit()
def get_life_events(self):
return self.life_events
def get_life_events_from_db(self):
cursor = self.conn.cursor()
cursor.execute("SELECT * FROM life_events")
return cursor.fetchall()
def add_health_record(self, health_data):
record = HealthRecord(health_data)
self.health_records.append(record)
cursor = self.conn.cursor()
cursor.execute("INSERT INTO health_records (health_data, date) VALUES (?, ?)",
(record.health_data, record.date.strftime("%Y-%m-%d %H:%M:%S")))
self.conn.commit()
def delete_health_record(self, health_data):
self.health_records = [
record for record in self.health_records if record.health_data != health_data]
cursor = self.conn.cursor()
cursor.execute(
"DELETE FROM health_records WHERE health_data=?", (health_data,))
self.conn.commit()
def update_health_record(self, old_health_data, new_health_data):
for record in self.health_records:
if record.health_data == old_health_data:
record.health_data = new_health_data
cursor = self.conn.cursor()
cursor.execute("UPDATE health_records SET health_data=? WHERE health_data=?",
(new_health_data, old_health_data))
self.conn.commit()
def get_health_records(self):
return self.health_records
def get_health_records_from_db(self):
cursor = self.conn.cursor()
cursor.execute("SELECT * FROM health_records")
return cursor.fetchall()
def add_contact_record(self, name, phone, email):
record = ContactRecord(name, phone, email)
self.contact_records.append(record)
cursor = self.conn.cursor()
cursor.execute("INSERT INTO contact_records (name, phone, email, date) VALUES (?, ?, ?, ?)",
(record.name, record.phone, record.email, record.date.strftime("%Y-%m-%d %H:%M:%S")))
self.conn.commit()
def delete_contact_record(self, name):
self.contact_records = [
record for record in self.contact_records if record.name != name]
cursor = self.conn.cursor()
cursor.execute("DELETE FROM contact_records WHERE name=?", (name,))
self.conn.commit()
def update_contact_record(self, old_name, new_name, new_phone, new_email):
for contact in self.contact_records:
if contact.name == old_name:
contact.name = new_name
contact.phone = new_phone
contact.email = new_email
cursor = self.conn.cursor()
cursor.execute("UPDATE contact_records SET name=?, phone=?, email=? WHERE name=?",
(new_name, new_phone, new_email, old_name))
self.conn.commit()
def get_contact_records(self):
return self.contact_records
def get_contact_records_from_db(self):
cursor = self.conn.cursor()
cursor.execute("SELECT * FROM contact_records")
return cursor.fetchall()