aboutsummaryrefslogtreecommitdiff
path: root/pyfingerd/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyfingerd/__init__.py')
-rwxr-xr-xpyfingerd/__init__.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/pyfingerd/__init__.py b/pyfingerd/__init__.py
new file mode 100755
index 0000000..aad1d8a
--- /dev/null
+++ b/pyfingerd/__init__.py
@@ -0,0 +1,19 @@
+#!/usr/bin/env python3
+# *****************************************************************************
+# Copyright (C) 2017-2021 Thomas Touhey <thomas@touhey.fr>
+# This file is part of the pyfingerd project, which is MIT-licensed.
+# *****************************************************************************
+""" Pure Python finger protocol implementation.
+
+ finger is both a protocol and a utility to get the information and
+ status from a user on a distant machine. It was standardized in RFC 742
+ in 1977, then in RFC 1288 in 1991, and has been abandoned by most
+ people since.
+
+ This Python module is a finger server implementation that allows you
+ to give out real information as well as fictional information.
+"""
+
+# Empty module; please import from submodules directly.
+
+# End of file.