mirror of
https://github.com/leon-ai/leon.git
synced 2024-12-21 07:41:39 +03:00
12 lines
314 B
Python
12 lines
314 B
Python
#!/usr/bin/env python
|
|
# -*- coding:utf-8 -*-
|
|
|
|
from os import path
|
|
from json import loads
|
|
|
|
packagejsonfile = open(path.dirname(path.realpath(__file__)) + '/../../package.json', 'r', encoding = 'utf8')
|
|
packagejson = loads(packagejsonfile.read())
|
|
packagejsonfile.close()
|
|
|
|
useragent = 'Leon/' + packagejson['version']
|