Difference between revisions of "PyThunderbird"

From BITPlan Wiki
Jump to navigation Jump to search
Line 13: Line 13:
 
Thunderbird uses mailbox format and an sqlite database for keeping track of the mails.
 
Thunderbird uses mailbox format and an sqlite database for keeping track of the mails.
 
How can this setup be accessed with Python?
 
How can this setup be accessed with Python?
= Installation =
+
{{pip|pyThunderbird}}
<source lang='bash'>
 
pip install pyThunderbird
 
</source>
 
  
 
= Relevant Libraries =
 
= Relevant Libraries =

Revision as of 09:31, 13 October 2021

OsProject

OsProject
edit
id  pyThunderbird
state  
owner  WolfgangFahl
title  pyThunderbird
url  https://github.com/WolfgangFahl/pyThunderbird
version  0.0.1
description  
date  2020/10/24
since  
until  

Motivation

Thunderbird uses mailbox format and an sqlite database for keeping track of the mails. How can this setup be accessed with Python?


Installation

pip install pyThunderbird
# alternatively if your pip is not a python3 pip
pip3 install pyThunderbird 
# local install from source directory of pyThunderbird 
pip install .

upgrade

pip install pyThunderbird  -U
# alternatively if your pip is not a python3 pip
pip3 install pyThunderbird -U


Relevant Libraries

Links