Difference between revisions of "Scan2wiki"

From BITPlan Wiki
Jump to navigation Jump to search
Line 14: Line 14:
 
{{pip|scan2wiki}}
 
{{pip|scan2wiki}}
 
== Prerequisites ==
 
== Prerequisites ==
== Scripts==
 
=== tbmail ===
 
<source lang='bash'>
 
retrieve a thunderbird mail by user and user id
 
usage: tbmail [-h] [-d] [-V] [-u USER] [-i ID]
 
 
script to retrieve thunderbird mail via user and mailid
 
 
  Created by Wolfgang Fahl on 2021-09-23.
 
  Copyright 2020-2021 Wolfgang Fahl. All rights reserved.
 
 
  Licensed under the Apache License 2.0
 
  http://www.apache.org/licenses/LICENSE-2.0
 
 
  Distributed on an "AS IS" basis without warranties
 
  or conditions of any kind, either express or implied.
 
 
USAGE
 
 
optional arguments:
 
  -h, --help            show this help message and exit
 
  -d, --debug          set debug level [default: None]
 
  -V, --version        show program's version number and exit
 
  -u USER, --user USER  id of the user
 
  -i ID, --id ID        id of the mail to retrieve
 
</source>
 

Revision as of 10:45, 21 October 2021

OsProject

OsProject
edit
id  scan2wiki
state  
owner  Wolfgang Fahl
title  scan2wiki
url  https://github.com/WolfgangFahl/scan2wiki
version  0.0.7
description  
date  2021-03-21
since  
until  

Installation

Installation

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

upgrade

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

Prerequisites