1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-21 07:41:39 +03:00
leon/bridges/python/vars.py
2019-02-10 20:26:50 +08:00

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']