Assign labels to emails in Google Mail based on their similarity to other emails assigned to the same label.
Project description
Sort your emails automatically
The pygmailsorter is a python module to automate the filtering of emails on the Google mail service using the their API. It assigns
labels to emails based on their similarity to other emails assigned to the same label.
Motivation
Many people struggle with the increasing email volume leading to hundreds of unread emails. As the capabilities of even the best search engine are limited when it comes to large numbers of emails, the only way to keep an overview is filing emails into folders. The manual work of filing emails into folders is tedious, still most people are too lazy to create email filters and keep their email filters up to date. Finally, in the age of mobile computing when most people access their emails from their smartphone, the challenge of sorting emails is more relevant than ever.
The solution to this challenge is to automatically filter emails depending on their similarity to existing emails in a given folder. This solution was already proposed in a couple of research papers ranging from the filtering of spam emails 1 to the specific case of sorting emails into folders 2. Even a couple of open source prototypes were available like 3 and 4.
This is basically a similar approach specific to the Google Mail API. It is a python script, which can be executed periodically for example with a cron task to sort the emails for the user.
Installation
The pygmailsorter is available on the conda-forge or pypi repositories and can be installed using either:
conda install -c conda-forge pygmailsorter
or alternatively:
pip install pygmailsorter
Configuration
The pygmailsorter requires two steps of configuration:
- The user has to create a Google Mail API credentials file
credentials.jsonfollowing the Google Mail API documentation. - Access to an SQL database, this can be provided as
connection string, alternativelypygmailsorteris going to use a local SQLite database namedemail.dblocated in the current directory. This results in the followingconnection string:sqlite:///email.db
Python interface
Import the Gmail class and the function load_client_secrets_file from the pygmailsorter module
from pygmailsorter import Gmail, load_client_secrets_file
Initialize pygmailsorter
Create a gmail object from the Gmail() class:
gmail = Gmail(
client_config=load_client_secrets_file(
client_secrets_file="/absolute/path/to/credentials.json"
),
connection_str="sqlite:////absolute/path/to/email.db",
)
Based on the configuration from the previous section, the function load_client_secrets_file is used to load the
credentials.json file and provide its content as python dictionary to the client_config parameter of the Gmail()
class. In addition to the client_config parameter the Gmail() class also requires a connection to an SQL database
which is provided as connection_str. In addition the email_download_format can be specified as either metadata or
full, where the primary difference is whether the content of the email is stored or not. Finally, as optional
parameter the port can be specified which is used to authenticate the Google Mail API via a web browser, by default
this 8080.
Sync local database with email account
To reduce the communication overhead, the emails are stored locally in an SQLite database.
gmail.update_database(quick=False)
By setting the optional flag quick to True only new emails are downloaded while changes to existing emails are
ignored.
Generate pandas dataframe for emails
Load all emails from the local SQLite database and combine them in a pandas DataFrame for further postprocessing:
df = gmail.get_all_emails_in_database()
Download specific label from email server
Download emails with the label "MyLabel" from the email server:
df = gmail.download_emails_for_label(label="MyLabel")
In this case the emails are not stored in the local SQLite database.
Filter emails using machine learning
Assign new email labels to the emails with the label "MyLabel":
gmail.filter_messages_from_server
label="MyLabel",
recommendation_ratio=0.9,
)
This functionality is based on the download_emails_for_label() function above. It checks the server for new emails for
a selected label "MyLabel". Then reloads the machine learning model from the local SQLite database and trys to predict
the correct labels for these emails. The recommendation_ratio defines the level of certainty required to actually move
the email, with 0.9 equalling a certainty of 90%.
Command Line interface
The command line interface implements the same functionality as the Python interface, it supports the following options:
pygmailsorter -c/--credentialspath to credentials file provided by Google e.g.credentials.json.pygmailsorter -d/--databaseconnection string to connect to database e.g.sqlite:///email.db.pygmailsorter -u/--updateupdate the local email database and retrain the machine learning model.pygmailsorter -l/--label=MyLabelassign new labels to the emails with labelMyLabel.pygmailsorter -p/--portport for authentication webserver to run e.g.8080.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pygmailsorter-0.0.6.tar.gz.
File metadata
- Download URL: pygmailsorter-0.0.6.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dec59f48ae02bfee984c8c9918d921bd8a0a002ce9b03f905ff438ec2a3af5da
|
|
| MD5 |
abfb131ac816de3240c8c357d43b6c55
|
|
| BLAKE2b-256 |
84da8e0cdde005a589a54d8a24c79bec35a1f26f4f7bf870f76ac72f99d5a1d9
|
File details
Details for the file pygmailsorter-0.0.6-py3-none-any.whl.
File metadata
- Download URL: pygmailsorter-0.0.6-py3-none-any.whl
- Upload date:
- Size: 40.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2958c81ddbc97548aaf9f90dff0b1d737614ab09a69a30b97260a7165f1d3bc6
|
|
| MD5 |
156df36fa5841a1c1378e93afa28b139
|
|
| BLAKE2b-256 |
8950fd9f895d1a76bbfa95c973a943e67dd2783a6149d0d8f084beb5ee38f461
|