├── .gitignore ├── LICENSE ├── README.md ├── _config_ └── __init__.py ├── _dbms_ └── __init__.py ├── _google_ ├── __init__.py ├── auth │ └── __init__.py └── gmail │ └── __init__.py ├── _logging_ └── __init__.py ├── apply-filter.py ├── config-yamls ├── apply-filters-config.yaml ├── delete-mails-config.yaml ├── get-filters-config.yaml └── get-labels-config.yaml ├── data └── .keep ├── delete-mails.py ├── get-filters.py ├── get-labels.py ├── gmail-helper-results.png ├── tasks.sh └── wiki ├── filter-create.md └── gmail-credentials.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/README.md -------------------------------------------------------------------------------- /_config_/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/_config_/__init__.py -------------------------------------------------------------------------------- /_dbms_/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/_dbms_/__init__.py -------------------------------------------------------------------------------- /_google_/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /_google_/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/_google_/auth/__init__.py -------------------------------------------------------------------------------- /_google_/gmail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/_google_/gmail/__init__.py -------------------------------------------------------------------------------- /_logging_/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/_logging_/__init__.py -------------------------------------------------------------------------------- /apply-filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/apply-filter.py -------------------------------------------------------------------------------- /config-yamls/apply-filters-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/config-yamls/apply-filters-config.yaml -------------------------------------------------------------------------------- /config-yamls/delete-mails-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/config-yamls/delete-mails-config.yaml -------------------------------------------------------------------------------- /config-yamls/get-filters-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/config-yamls/get-filters-config.yaml -------------------------------------------------------------------------------- /config-yamls/get-labels-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/config-yamls/get-labels-config.yaml -------------------------------------------------------------------------------- /data/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /delete-mails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/delete-mails.py -------------------------------------------------------------------------------- /get-filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/get-filters.py -------------------------------------------------------------------------------- /get-labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/get-labels.py -------------------------------------------------------------------------------- /gmail-helper-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/gmail-helper-results.png -------------------------------------------------------------------------------- /tasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/tasks.sh -------------------------------------------------------------------------------- /wiki/filter-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/wiki/filter-create.md -------------------------------------------------------------------------------- /wiki/gmail-credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkr/gmail-helper/HEAD/wiki/gmail-credentials.md --------------------------------------------------------------------------------