File: symbols.py

package info (click to toggle)
python-log-symbols 0.0.14-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 172 kB
  • sloc: python: 91; makefile: 3
file content (10 lines) | stat: -rw-r--r-- 241 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
from __future__ import print_function

from os import sys, path

sys.path.append(path.dirname(path.dirname(path.abspath(__file__))))

from log_symbols import LogSymbols

for symbol in LogSymbols:
    print(symbol.value, symbol.name.lower())