Use Python to:
- send a plain text email
- send an email with attachment
- receive and filter emails according to some criteria
| # Setup Ubuntu | |
| sudo apt update --yes | |
| sudo apt upgrade --yes | |
| # Get Miniconda and make it the main Python interpreter | |
| wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh | |
| bash ~/miniconda.sh -b -p ~/miniconda | |
| rm ~/miniconda.sh | |
| export PATH=~/miniconda/bin:$PATH |
| import multiprocessing | |
| import time | |
| import sys | |
| process_identifier = 'main' | |
| class Collectible: | |
| def __init__(self, identifier): | |
| self.identifier = identifier |
Use Python to:
| from __future__ import with_statement | |
| from alembic import context | |
| from sqlalchemy import engine_from_config, pool, MetaData, Table, ForeignKeyConstraint | |
| from logging.config import fileConfig | |
| # this is the Alembic Config object, which provides | |
| # access to the values within the .ini file in use. | |
| config = context.config | |
| # Interpret the config file for Python logging. |