aboutsummaryrefslogtreecommitdiff
path: root/pyfingerd/__init__.py
blob: b6dcfec651ba5337827a43345324256794ee7401 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python3
# *****************************************************************************
# Copyright (C) 2017-2022 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.