Email clients for grader and other services of fless.pro
Project description
# Email client
This repo consist email client for [grader](https://github.com/Flesspro/grader) and other services and packages.
## Installing and run
You need python3.7, pytest5.0.1 and make4.1.
Installation: pip install email-client
You can see also [PyPi](https://pypi.org/project/email-client/1.3.0/).
We use makefile for run and environment variables for configuration.
You can find smtp-client and imap-client. If you want, you can customize parsing email into smtp-client, you can implement custom strategy and use them. For default, we use strategy for grader.
To clean email (all emails are deleted):
ENV_FILE=./.envs/my_envfile.env CLEAN=YES make clean
## Examples
Creating IMAPClient:
from email_client import client_pkg
client = client_pkg.IMAPClient( imap_host=os.getenv(‘IMAP_HOST’), imap_port=os.getenv(‘IMAP_PORT’), login=os.getenv(‘EMAIL_LOGIN’), password=os.getenv(‘EMAIL_PASSWORD’), extract_strategy=strategy, )
You can log in:
client.login()
And logout:
client.logout()
After some minutes you must login again. A lot of servers logout automatically by a time. Also, you can clean emails:
client.clean_emails()
You can set specify folder:
client.clean_emails(‘inbox’)
Another case, you can get all emails:
emails, statuses = client.get_imails(folder=’inbox’)
For each emails, you get specify status. If take zip(emails, statuses), you got pairs. You can set EmailType, for example UNSEEN:
emails, statuses = client.get_imails(email_typeEmailsTypes.UNSEEN, folder=’inbox’)
The same way, you can make SMTP client.
## Testing
If we integration-test, we have some stages:
Data generation
Create objects
Testing
Validation
Clean
If we unit-test, we have some stages:
Create objects
Testing
Validation
In this way unit-test is partial case of integration test. We use unit-test for testing logic in context one object, function (method). For example, we have function:
- def plus(a, b):
return a + b
This is unit-test. We want to test simple object. This situation is not always possible. If we want communication some systems and modules, we deal with integration tests. For example, we test connect to data base and collect data from there. This is integration-tests.
All tests lay down into folder:
tests/
If you want to run tests, you can do this (all emails are deleted):
ENV_FILE=.envs/my_envfile.env make test
Example test.env:
EMAIL_TIMEOUT_TEST=1.5 # Timeout for waiting between reading and writing of emails
IMAP_HOST=imap.mail.ru IMAP_PORT=993 SMTP_HOST=smtp.mail.ru SMTP_PORT=587
EMAIL_LOGIN=my@email.ru EMAIL_PASSWORD=my_password
### Emails (integration)
We have some clients for email:
SMTP-client sends emails
IMAP-client receives emails
For emails client we have not best way. We test SMTP-client over IMAP-client and IMAP-client over SMTP-client.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file email_client-1.5.2-py3-none-any.whl
.
File metadata
- Download URL: email_client-1.5.2-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b3533087a8a298c22ac5ea3156d7e62df086e5db2255d977525b631ca378906 |
|
MD5 | 416425379205ec88e15fd6217dfc517a |
|
BLAKE2b-256 | 97e80e3befae4cfbf6b6c58743cfb8c77bbecfe83ef19bcf5c437665571a5dab |