aboutsummaryrefslogtreecommitdiff
path: root/pyfingerd/__init__.py
blob: 7cc405f69523f0bb29f1632a2e37be24e760a495 (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.
"""

__version__ = '0.4.3'

# End of file.