email-to-calendar 20250826010803.dev0__py3-none-any.whl → 20251210163203.dev0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- __init__.py +10 -12
- db.py +7 -8
- email_to_calendar-20251210163203.dev0.dist-info/METADATA +41 -0
- email_to_calendar-20251210163203.dev0.dist-info/RECORD +20 -0
- events/caldav.py +13 -3
- mail/mail_idle.py +187 -0
- main.py +120 -39
- model/email.py +61 -30
- model/event.py +63 -102
- util/ai.py +163 -0
- util/env.py +97 -0
- util/notifications.py +20 -0
- email_to_calendar-20250826010803.dev0.dist-info/METADATA +0 -25
- email_to_calendar-20250826010803.dev0.dist-info/RECORD +0 -17
- util/text.py +0 -856
- {email_to_calendar-20250826010803.dev0.dist-info → email_to_calendar-20251210163203.dev0.dist-info}/WHEEL +0 -0
- {email_to_calendar-20250826010803.dev0.dist-info → email_to_calendar-20251210163203.dev0.dist-info}/licenses/LICENSE +0 -0
- {email_to_calendar-20250826010803.dev0.dist-info → email_to_calendar-20251210163203.dev0.dist-info}/top_level.txt +0 -0
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: email-to-calendar
|
|
3
|
-
Version: 20250826010803.dev0
|
|
4
|
-
Summary: Takes emails from an IMAP server, parses the body, and creates event(s) in a CalDAV calendar
|
|
5
|
-
Requires-Python: <4.0,>=3.13
|
|
6
|
-
Description-Content-Type: text/markdown
|
|
7
|
-
License-File: LICENSE
|
|
8
|
-
Requires-Dist: caldav>=2.0.1
|
|
9
|
-
Requires-Dist: sqlalchemy>=2.0.43
|
|
10
|
-
Requires-Dist: tzlocal>=5.3.1
|
|
11
|
-
Requires-Dist: beautifulsoup4>=4.12.0
|
|
12
|
-
Requires-Dist: python-dateutil>=2.8.0
|
|
13
|
-
Requires-Dist: html2text>=2020.1.16
|
|
14
|
-
Dynamic: license-file
|
|
15
|
-
|
|
16
|
-
# E-Mail to calendar Converter
|
|
17
|
-
The point of this application is to search an IMAP account, look for emails based on certain criteria(s), and parse
|
|
18
|
-
the content, using regex, and automatically create calendar events in an iCal account.
|
|
19
|
-
|
|
20
|
-
## TO-DO
|
|
21
|
-
- [ ] Get e-mails, and save ID to sqlite db to avoid duplicates
|
|
22
|
-
- [ ] Save calendar events to sqlite db to avoid duplicates
|
|
23
|
-
- [ ] Parse e-mail using user defined regex
|
|
24
|
-
- [ ] Add config to backfill (check all emails from an optional certain date), or use most recent email
|
|
25
|
-
- [ ] If using most recent, when new email arrives, remove events not present, and add new ones
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
__init__.py,sha256=_q4_C_j2SVDpSObgvEsY-32HvvN0do8IpcPx9Zb8EfI,1614
|
|
2
|
-
db.py,sha256=1RDVWTDbgYXcATiwAE1V1sWW3duDIOBdxswPT3ADSZ8,409
|
|
3
|
-
main.py,sha256=2OZK51rctR0wJ5V30x_rZAwQJT-xVC5-avGTGii99jc,3424
|
|
4
|
-
email_to_calendar-20250826010803.dev0.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
5
|
-
events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
events/caldav.py,sha256=NzegleP5xRzvhI2e8ao8fys_FseASIwUvN4CaCqwg7g,1437
|
|
7
|
-
mail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
mail/mail.py,sha256=Kq50o2kpkovvfNcSnDQZTnOZ6TV7ZSR8KOIRvdXkGao,5825
|
|
9
|
-
model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
model/email.py,sha256=g6-QbUy_xrwEtWfw0KIfVpLXcLZtH-PbC7oH8rrH-jI,2707
|
|
11
|
-
model/event.py,sha256=MMCJ16SZAPxLH2lAjWCMR9fKYsvnnRKx93GeuPjTqVM,6197
|
|
12
|
-
util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
-
util/text.py,sha256=xKLw9Ap5KMVPb5aj3_1pRbDFDMTpmDx_my6r9J9-TLw,34454
|
|
14
|
-
email_to_calendar-20250826010803.dev0.dist-info/METADATA,sha256=m9KmPH0FdXaoQX27V0FfcWzKmJJm_ESUHLVT_eMXCns,1111
|
|
15
|
-
email_to_calendar-20250826010803.dev0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
16
|
-
email_to_calendar-20250826010803.dev0.dist-info/top_level.txt,sha256=635ZTCyzc_2xtdJz_2Q50A96mBoIUrfORy5SdfGYabo,40
|
|
17
|
-
email_to_calendar-20250826010803.dev0.dist-info/RECORD,,
|