Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sukhbinder/winzy-checkmail
CLI tool for checking outlook email
https://github.com/sukhbinder/winzy-checkmail
Last synced: 2 days ago
JSON representation
CLI tool for checking outlook email
- Host: GitHub
- URL: https://github.com/sukhbinder/winzy-checkmail
- Owner: sukhbinder
- License: apache-2.0
- Created: 2024-08-09T09:28:49.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-10-15T05:27:44.000Z (3 months ago)
- Last Synced: 2024-12-22T00:36:04.660Z (about 1 month ago)
- Language: Python
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# winzy-checkmail
[![PyPI](https://img.shields.io/pypi/v/winzy-checkmail.svg)](https://pypi.org/project/winzy-checkmail/)
[![Changelog](https://img.shields.io/github/v/release/sukhbinder/winzy-checkmail?include_prereleases&label=changelog)](https://github.com/sukhbinder/winzy-checkmail/releases)
[![Tests](https://github.com/sukhbinder/winzy-checkmail/workflows/Test/badge.svg)](https://github.com/sukhbinder/winzy-checkmail/actions?query=workflow%3ATest)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/sukhbinder/winzy-checkmail/blob/main/LICENSE)Access outlook email using cli.
## Installation
First configure your Winzy project [to use Winzy](https://github.com/sukhbinder/winzy).
Then install this plugin in the same environment as your Winzy application.
```bash
pip install winzy-checkmail
```
## UsageUsage instructions go here.
## Development
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
```bash
cd winzy-checkmail
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
python -m pytest
```