Metadata-Version: 2.1
Name: fastmask
Version: 0.1.2
Summary: Python library + CLI for Fastmail masked email
Home-page: https://github.com/hdb/fastmask
Author: Hudson Bailey
Author-email: dev@hudsonbailey.org
License: MIT
Description-Content-Type: text/markdown
Requires-Dist: Click
Requires-Dist: requests
Requires-Dist: python-dotenv
Requires-Dist: rich
Requires-Dist: pandas

# fastmask

Python library and command line tool for Fastmail's Masked Email

## Install & Setup

```bash
pip install fastmask

export FM_ME_TOKEN='YOUR-API-TOKEN-HERE'
export FM_USERNAME='user@domain.com'
```

## Usage

```text
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
```

See full CLI and library documentation at https://fastmask.readthedocs.io/
