summaryrefslogtreecommitdiffstats
path: root/glances/__main__.py
blob: 58cca5512c8a602ca88ef73c296e34bbc910d9f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# Glances - An eye on your system
#
# SPDX-FileCopyrightText: 2022 Nicolas Hennion <nicolas@nicolargo.com>
#
# SPDX-License-Identifier: LGPL-3.0-only
#

"""Allow user to run Glances as a module."""

# Execute with:
# $ python -m glances (2.7+)

import glances

if __name__ == '__main__':
    glances.main()