Python library + CLI for Fastmail masked email
Project description
fastmask
Python library and command line tool for Fastmail's Masked Email
Install & Setup
pip install fastmask
export FM_ME_TOKEN='YOUR-API-TOKEN-HERE'
export FM_USERNAME='user@domain.com'
Usage
fastmask [OPTIONS] COMMAND [ARGS]...
Manage Fastmail masked email from the command line
Options:
--username TEXT [default: (FM_USERNAME)]
--token TEXT [default: (FM_ME_TOKEN)]
--help Show this message and exit.
Commands:
activate Set state of masked email to Active
block Set state of masked email to Blocked
delete Delete masked email
edit Edit information associated with a masked email
list List masked emails associated with account
new Create a new masked email
search Search for masked emails
Authentication
You will need to provide an API token for fastmask to authenticate calls to the Fastmail API:
- In the Fastmail web client, go to
Settings
>Account
>Password & Security
>API Tokens
>Manage
>New API token
- Set name to "fastmask" or whatever you'd like, check only the
Masked Email
scope and hitGenerate API token
- Copy the API token. You can authenticate either by providing your credentials as arguments, or by using the
FM_ME_TOKEN
andFM_USERNAME
environment variables / providing these variables via.env
file:
You can skip parsing .env
with python-dotenv
by setting the environment variable SKIP_PYTHONDOTENV=1
.
Example:
export FM_ME_TOKEN='YOUR-TOKEN-HERE'
export FM_USERNAME='username@fastmail.com'
fastmask list --limit 5
# alternatively, you can provide your credentials as arguments
fastmask --username username@fastmail.com --token 'YOUR-TOKEN-HERE' \
list --limit 5
Create a masked email
Use fastmask new
to create a new masked email address. Optionally specifiy the description, URL or domain.
Example:
fastmask new twitter --url twitter.com
> Successfully added email fake.email1234@fastmail.com (id: masked-12345678)
List
fastmask list
will return a Rich table of masked emails, optionally filtering results by active/blocked state, recent, used/unused status, etc.
Usage:
fastmask list [OPTIONS]
List masked emails associated with account
Options:
--limit INTEGER Limit number of results
--active Show only active addresses.
--blocked Show only blocked addresses.
--unused Show only active + unused addresses.
--used Show only used addresses.
--deleted Show only deleted addresses.
--sort Field to sort by
--desc / --asc Sort order
--recent INTEGER Only show items from the past X days
-o, --out TEXT Output to csv
--help Show this message and exit.
Activate / Block / Delete
You can change the state of a masked email with fastmask activate
, fastmask block
or fastmask delete
. Email IDs accepted are:
- email address
- description (case-insensitive)
- the id of the address, with or without the "masked-" prefix
Examples:
fastmask activate new.mail0412@fastmail.com
fastmask block masked-12312345
fastmask delete facebook.com
Edit
fastmask edit
can be used to change the description, url or domain associated with masked email address.
Example:
fastmask edit some.user1231@fastmail.com --description x.com --url x.com
Search
fastmask search
is a case-insensitive search defaulting to matching email addresses and descriptions. You can set the fields searches using the --field
flag.
Examples:
fastmask search reddit
fastmask search --field email fastmail.com
fastmask search --field createdAt 2022-10-31
fastmask search --field createdBy fastmask -o out.csv
See full CLI and library documentation at https://fastmask.readthedocs.io/
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
File details
Details for the file fastmask-0.1.5.tar.gz
.
File metadata
- Download URL: fastmask-0.1.5.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53a84951952d4fc1accbc61c35f2341bd002ba2a5fb354da4d75e0917d5c0a27 |
|
MD5 | ae3191e297796d4fbe1c3150e4e954d6 |
|
BLAKE2b-256 | 00731d3bb5e5e816dfc91cdc897b41bbd15fa9111efce378c4321492c3e15c3f |
File details
Details for the file fastmask-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: fastmask-0.1.5-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23528224e661143e50e429e85ab8bb07dec023baf0117dc2a9a0f8792daf48be |
|
MD5 | c6f81e8cf8603b4f1a2733d2cd6d009f |
|
BLAKE2b-256 | 92edda7c611d7f6f9e104bb7ac96f0ac34c2e6fcf45ce416687e71047ad8e319 |