REPUTILS
Project description
reputils
Small Python utilities packaged as a library. Currently includes helpers for assembling and sending emails (headers, MIME parts, attachments) with sane defaults, plus a small script used in CI to update a GitHub clones badge via a Gist.
Overview
This package exposes functionality under the reputils module. The main user‑facing component at present is reputils.MailReport providing:
EmailAddressdataclass for parsing/formatting email addressesSMTPServerInfoconfiguration for SMTP host/port/TLS/etc.MRSendmailto compose and send text/HTML emails with optional attachments and headers
There is also a maintenance script scripts/update_badge.py that is run in GitHub Actions to update a Shields.io JSON endpoint with cumulative repository clone statistics.
Stack
- Language: Python (requires Python >= 3.12; CI uses Python 3.14)
- Packaging/build: Hatchling (
pyproject.toml) - Testing: pytest
- Lint/format: black, isort, mypy
- CI: GitHub Actions (tests/mypy workflow badge shown above) and a scheduled workflow to update a clones badge
Requirements
Runtime dependencies (see pyproject.toml / requirements.txt):
loguru>=0.7.3pytz>=2025.2(packaged aspytz==2025.2inrequirements.txt)python-dateutil==2.9.*
Development dependencies (see requirements-dev.txt):
pytest,mypy,black,isort,pre-commit, and typing stubs for dateutil and pytz
Python version: >=3.12. The repo’s Makefile and CI use Python 3.14 locally/in CI.
Installation
Install from PyPI:
pip install reputils
From source (recommended for development):
git clone https://github.com/vroomfondel/reputils
cd reputils
make install
The make install target creates/uses a local .venv and installs dev requirements.
Usage
Example: compose and send an email using MRSendmail.
from reputils.MailReport import EmailAddress, SMTPServerInfo, MRSendmail
server = SMTPServerInfo(
smtp_server="smtp.example.com",
smtp_port=587,
smtp_user="user@example.com",
smtp_pass="app-password",
useStartTLS=True,
)
mailer = MRSendmail(
serverinfo=server,
returnpath=EmailAddress(email="bounce@example.com", name="Mailer"),
senderfrom=EmailAddress(email="noreply@example.com", name="No Reply"),
subject="Hello from reputils",
)
mailer.addTo(EmailAddress.fromSTR("Alice <alice@example.com>"))
message_id = mailer.send(
txt="Plain text body",
html="<p>HTML body</p>",
)
print("Sent with Message-ID:", message_id)
Note: See reputils/MailReport.py for more details (Cc/Bcc, attachments, additional headers).
Scripts and Automation
scripts/update_badge.py: Updates a Gist with clone history and a Shields.io JSON for a “Cumulative Clones” badge. This is executed by.github/workflows/update-clone-badge.ymlon a schedule or manual dispatch.
Environment variables required by the script/CI workflow:
GIST_TOKEN: GitHub token with permission to update the target GistGIST_ID: ID of the Gist storing history and badge JSONREPO_TOKEN: GitHub token to read repository traffic statsGITHUB_REPOSITORY: full repo slug, e.g.owner/repository
Local ad‑hoc run:
GIST_TOKEN=... GIST_ID=... REPO_TOKEN=... GITHUB_REPOSITORY=vroomfondel/reputils \
python scripts/update_badge.py
Makefile Targets
Convenience tasks are provided via Makefile:
make install– create.venvand install dev requirementsmake tests– run pytestmake tcheck– run mypy type checksmake lint– run blackmake isort– fix import ordermake prepare– run tests and pre‑commit checksmake pypibuild– build distribution withhatchling/buildmake pypipush– upload to PyPI viahatch
Note: The Makefile activates .venv automatically for these targets when not running in GitHub Actions.
Running Tests
make tests
Pytest is configured via pytest.ini. Current tests are minimal (see tests/test_base.py).
Project Structure
reputils/
├─ reputils/
│ ├─ __init__.py
│ └─ MailReport.py # Email utilities
├─ scripts/
│ └─ update_badge.py # CI helper for clone badge
├─ tests/
│ ├─ __init__.py
│ ├─ conftest.py
│ └─ test_base.py
├─ pyproject.toml # Hatchling project config
├─ requirements.txt # Runtime deps
├─ requirements-dev.txt # Dev/test tools
├─ requirements-build.txt # Build/upload tools
├─ Makefile # Dev tasks and packaging
├─ pytest.ini
├─ LICENSE
└─ README.md
Environment Variables
- For CI badge update:
GIST_TOKEN,GIST_ID,REPO_TOKEN,GITHUB_REPOSITORY(see Scripts section). - TODO: Document any runtime configuration for
reputilsif/when added. At present, logging for thereputilslogger is disabled by default in code.
Build and Publish
Build wheels/sdist:
make pypibuild
Upload to PyPI (requires credentials configured for hatch resp. ${HOME}/.pypirc properly filled):
make pypipush
Artifacts are produced in the dist/ directory. The version is managed in pyproject.toml.
Entry Points / CLI
No console scripts/entry points are currently defined in pyproject.toml.
License
MIT License. See the LICENSE file.
Changelog / Roadmap
- TODO: Add a CHANGELOG or release notes.
- TODO: Document additional modules if added in the future.
⚠️ Disclaimer
This is a development/experimental project. For production use, review security settings, customize configurations, and test thoroughly in your environment. Provided "as is" without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software. Use at your own risk.
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 Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file reputils-0.0.14.tar.gz.
File metadata
- Download URL: reputils-0.0.14.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.2 cpython/3.14.2 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
959a8be3d7eb74f16822273e67520b8c8d7dfeb76d82706e207f488a46cc3821
|
|
| MD5 |
ebc58c784fa10a52f04cfd034adf5c4d
|
|
| BLAKE2b-256 |
0300d604de1876ed0153a32d389cebd72a5a37aeac571a2d50f4b5ff31dac766
|
File details
Details for the file reputils-0.0.14-py3-none-any.whl.
File metadata
- Download URL: reputils-0.0.14-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.2 cpython/3.14.2 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0210b09bd4d32d25df033040d05c3948eef0e838d89fe5785cadb328c38f9ca5
|
|
| MD5 |
9801c387f919006584b5bbe350b2df42
|
|
| BLAKE2b-256 |
25c803b48c375477053ba3ba3e6ea2d45384090072cacd9fbb018b2d9dc47e02
|