1
0
mirror of https://github.com/ThunderEX/py-kms.git synced 2025-04-18 07:44:00 +03:00

corrections to license and readme

This commit is contained in:
ThunderEX 2018-12-11 10:23:05 +08:00
parent 758e616d6f
commit 34ac3aac71
No known key found for this signature in database
GPG Key ID: CF5EAA08897EE137
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
py-kms itself is unlicensed so far, however, these modules have their own
py-kms itself has no license so far, however, these modules have their own
license:
xmltok.py from micropython-lib is licensed under MIT license.

View File

@ -10,7 +10,7 @@ py-kms is a port of node-kms by [markedsword](http://forums.mydigitallife.info/m
# Dependencies
- Python 2.6 or higher, micropython v1.9 or higher.
- Python 2.6 needs the "argparse" module installed.
- Micropython needs libpcre and libffi, and modules in micropythonlib, check section below.
- Micropython needs libffi, and modules in micropythonlib, check section below.
# Usage
- To start the server, execute `python server.py [listen_address] [port]`. The default listening address is `0.0.0.0` (all interfaces) and the default port is `1688`.
@ -19,6 +19,6 @@ py-kms is a port of node-kms by [markedsword](http://forums.mydigitallife.info/m
# Micropython support (unix port only)
- Micropython v1.9 is necessary since large int support starts here.
- You need libpcre and libffi.
- You need libffi.
- You need some standard library of module. Use `micropython -m upip install -r requirements-micropython.txt` to install.
- Only unix port is supported. Other platforms don't have some stdlib and performance may be a problem.