LUCIT Licensing Client Module
Project description
LUCIT Licensing Python (Module)
Description | Installation | Change Log | How To | Wiki | Social | Notifications | Bugs | Contributing | Commercial Support
Python client module of the LUCIT Licensing Service.
Description
This module is used to verify LUCIT software licenses and also provides the developer with a command line interface to interact with the LUCIT Licensing API.
If you have already installed modules of LUCIT like the
UNICORN Binance Suite, which use the lucit-licensing-python
library, you have already installed the commandline tool lucitlicmgr
automatically.
Query contingents of your license
$ lucitlicmgr --quotas --apisecret bf7df011327d09b70fb0c6bfbc8661x33fdb0c58d42629c94ab35188d8d011ba --licensetoken 5e84cbd7-acfa-489f-a84d-z7d1b615af40d
Example output:
{'quotas': {'instances': {'available': 10, 'free': 10, 'used': 0},
'ips': {'available': 3, 'free': 2, 'used': 1},
'resets': {'available': 3, 'free': 3, 'used': 0}},
'signature': 'e762a949cb0987d6b6e11260a203752c1b2cbf1f8315f3eb6873100e528f8258',
'timestamp': '1697880811.9013143'}
The apisecret
and the licensetoken
parameter can also be loaded from an INI file. Simply create the file
lucit_license.ini
in the app root path or in your home directory in the folder .lucit
e.g. C:\Users\Name\.lucit
or
/home/Name/.lucit
. with the following content:
[LUCIT]
api_secret = bf7df011327d09b70fb0c6bfbc8661x33fdb0c58d42629c94ab35188d8d011ba
license_token = 5e84cbd7-acfa-489f-a84d-z7d1b615af40d
Then just use:
$ lucitlicmgr --quotas
Example output:
{'quotas': {'instances': {'available': 10, 'free': 10, 'used': 0},
'ips': {'available': 3, 'free': 2, 'used': 1},
'resets': {'available': 3, 'free': 3, 'used': 0}},
'signature': 'e762a949cb0987d6b6e11260a203752c1b2cbf1f8315f3eb6873100e528f8258',
'timestamp': '1697880811.9013143'}
Query information of your license
$ lucitlicmgr --info --apisecret bf7df011327d09b70fb0c6bfbc8661x33fdb0c58d42629c94ab35188d8d011ba --licensetoken 5e84cbd7-acfa-489f-a84d-z7d1b615af40d
Example output:
{'license': {'license_holder_email': 'johndoe82@gmail.com',
'license_holder_name': 'John Doe',
'licensed_product': 'UNICORN-BINANCE-SUITE',
'paid_till': '2023-10-24 18:39:03.681745+00:00'},
'signature': 'e0f7b631006c3480477f81e127729f2ee1489e2dd5dc0ffd7504fb590c4d515a',
'timestamp': '1697881034.4675057'}
The apisecret
and the licensetoken
parameter can also be loaded from an INI file. Simply create the file
lucit_license.ini
in the app root path or in your home directory in the folder .lucit
e.g. C:\Users\Name\.lucit
or
/home/Name/.lucit
. with the following content:
[LUCIT]
api_secret = bf7df011327d09b70fb0c6bfbc8661x33fdb0c58d42629c94ab35188d8d011ba
license_token = 5e84cbd7-acfa-489f-a84d-z7d1b615af40d
Then just use:
$ lucitlicmgr --info
Example output:
{'license': {'license_holder_email': 'johndoe82@gmail.com',
'license_holder_name': 'John Doe',
'licensed_product': 'UNICORN-BINANCE-SUITE',
'paid_till': '2023-10-24 18:39:03.681745+00:00'},
'signature': 'e0f7b631006c3480477f81e127729f2ee1489e2dd5dc0ffd7504fb590c4d515a',
'timestamp': '1697881034.4675057'}
Release the occupied slots of your quota.
Please note: This will stop ALL active instances. This command can be executed only 3 times every 24 hours.
$ lucitlicmgr --reset --apisecret bf7df011327d09b70fb0c6bfbc8661x33fdb0c58d42629c94ab35188d8d011ba --licensetoken 5e84cbd7-acfa-489f-a84d-z7d1b615af40d
Example output:
{'reset': {'status': 'SUCCESSFUL'},
'signature': '25e8868f963f583f451c0ce1d7bf8daeaaeae4a17db0265adace034232e6f925',
'timestamp': '1697881249.771824'}
The apisecret
and the licensetoken
parameter can also be loaded from an INI file. Simply create the file
lucit_license.ini
in the app root path or in your home directory in the folder .lucit
e.g. C:\Users\Name\.lucit
or
/home/Name/.lucit
. with the following content:
[LUCIT]
api_secret = bf7df011327d09b70fb0c6bfbc8661x33fdb0c58d42629c94ab35188d8d011ba
license_token = 5e84cbd7-acfa-489f-a84d-z7d1b615af40d
Then just use:
$ lucitlicmgr --reset
Example output:
{'reset': {'status': 'SUCCESSFUL'},
'signature': '25e8868f963f583f451c0ce1d7bf8daeaaeae4a17db0265adace034232e6f925',
'timestamp': '1697881249.771824'}
Test the availability of the Licensing API
$ lucitlicmgr --test
Example output:
{'message': 'Hello World!'}
Use multiple licenses (multi tenant) with profiles
Simply create the file
lucit_license.ini
in the app root path or in your home directory in the folder .lucit
e.g. C:\Users\Name\.lucit
or
/home/Name/.lucit
. with the following content:
[LUCIT]
api_secret = bf7df011327d09b70fb0c6bfbc8661x33fdb0c58d42629c94ab35188d8d011ba
license_token = 5e84cbd7-acfa-489f-a84d-z7d1b615af40d
[TENANT_A]
api_secret = 62a9efe20be3d038d3be15ea339495629c096ad22762fa7b72ee2df607f194d3
license_token = f829d452-651b-4c6a-89a0-t742a16d0010e
Then just use:
$ lucitlicmgr --info --licenseprofile TENANT_A
Example output:
{'license': {'license_holder_email': 'tenant_a@gmail.com',
'license_holder_name': 'Tenant A',
'licensed_product': 'UNICORN-BINANCE-SUITE',
'paid_till': '2023-11-02 13:43:22.723258+00:00'},
'signature': 'e0f7b631006c3480477f81e127729f2ee1489e2dd5dc0ffd7504fb590c4d515a',
'timestamp': '1697881034.4675057'}
Note:
All UNICORN Binance Suite modules also support the use of profiles. Please read the documentation of the respective
module regarding the parameter license_profile
.
Discover more options
$ lucitlicmgr --help
Installation and Upgrade
The module requires Python 3.7 or above.
The current dependencies are listed here.
If you run into errors during the installation take a look here.
A Cython binary, PyPy or source code based CPython wheel of the latest version with pip
from PyPI
Our Cython and PyPy Wheels are available on PyPI, these wheels offer significant advantages for Python developers:
-
Performance Boost with Cython Wheels: Cython is a programming language that supplements Python with static typing and C-level performance. By compiling Python code into C, Cython Wheels can significantly enhance the execution speed of Python code, especially in computationally intensive tasks. This means faster runtimes and more efficient processing for users of our package.
-
PyPy Wheels for Enhanced Efficiency: PyPy is an alternative Python interpreter known for its speed and efficiency. It uses Just-In-Time (JIT) compilation, which can dramatically improve the performance of Python code. Our PyPy Wheels are tailored for compatibility with PyPy, allowing users to leverage this speed advantage seamlessly.
Both Cython and PyPy Wheels on PyPI make the installation process simpler and more straightforward. They ensure that you get the optimized version of our package with minimal setup, allowing you to focus on development rather than configuration.
On Raspberry Pi and other architectures for which there are no pre-compiled versions, the package can still be installed with PIP. PIP then compiles the package locally on the target system during installation. Please be patient, this may take some time!
Installation
pip install lucit-licensing-python
Update
pip install lucit-licensing-python --upgrade
A Conda Package of the latest version with conda
from Anaconda
The lucit-licensing-python
package is also available as a Cython version for the linux-64
, osx-64
and win-64
architectures with Conda through the
lucit
channel.
For optimal compatibility and performance, it is recommended to source the necessary dependencies from the
conda-forge
channel.
Installation
conda config --add channels conda-forge
conda config --add channels lucit
conda install -c lucit lucit-licensing-python
Update
conda update -c lucit lucit-licensing-python
From source of the latest release with PIP from GitHub
Linux, macOS, ...
Run in bash:
pip install https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python/archive/$(curl -s https://api.github.com/repos/LUCIT-Systems-and-Development/lucit-licensing-python/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade
Windows
Use the below command with the version (such as 1.8.2) you determined here:
pip install https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python/archive/1.8.2.tar.gz --upgrade
From the latest source (dev-stage) with PIP from GitHub
This is not a release version and can not be considered to be stable!
pip install https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python/tarball/master --upgrade
Conda environment, Virtualenv or plain Python
Download the latest release or the current master branch and use:
- ./environment.yml
- ./meta.yaml
- ./pyproject.toml
- ./requirements.txt
- ./setup.py
Change Log
https://lucit-licensing-python.docs.lucit.tech/changelog.html
Howto
Project Homepage
https://www.lucit.tech/lucit-licensing-python.html
Wiki
https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python/wiki
Social
Receive Notifications
To receive notifications on available updates you can the repository on GitHub.
Follow us on GitHub, Medium, YouTube, LinkedIn, X or Facebook!
How to report Bugs or suggest Improvements?
List of planned features - click if you need one of them or suggest a new feature!
Before you report a bug, try the latest release. If the issue still exists, provide the error trace, OS and Python version and explain how to reproduce the error. A demo script is appreciated.
If you don't find an issue related to your topic, please open a new issue!
Contributing
LUCIT Licensing Python is an open source project which welcomes contributions which can be anything from simple documentation fixes and reporting dead links to new features. To contribute follow this guide.
Contributors
We open source!
Commercial Support
Do you need a developer, operator or consultant? Contact us for a non-binding initial consultation!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Hashes for lucit-licensing-python-1.8.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbef4f8427510bb19192b6ee40fe94cd6b78a64a2e42b4f6d600b73d2db6ac23 |
|
MD5 | 4dac6a3c8cac137b06f55f186f8fe408 |
|
BLAKE2b-256 | 2e7535966d1d99afb223949cfa6e4de64f9d03258a725f31675d2e2f5bb42961 |
Hashes for lucit_licensing_python-1.8.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e6feb1986ba902a7e9ff1accd058e1b76cd19f5b8d659dbb5e74b2e480ffe23 |
|
MD5 | de9be4f97252a8c015f8fe511e3982fe |
|
BLAKE2b-256 | c14474f3be6e224e5a40be0c175bd505490e565f993084f219d1389bea937e77 |
Hashes for lucit_licensing_python-1.8.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 807516e7aedb5356b52bba658b9f39ed982fafc8ef4e414dd394eabb8b904058 |
|
MD5 | 33d73b1585f0f6010f06c4fec7313aae |
|
BLAKE2b-256 | 162d4eea8eefec708149b03b9c05ffa53f94ec0fcdd29017f0ed770d09dccc11 |
Hashes for lucit_licensing_python-1.8.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97bbaa983e534b73f273df0cfb0cfb3ffea1a3cff2a11bc5a0ad85dd4b789556 |
|
MD5 | 562a08137393a4c106f73f2a64cf60f4 |
|
BLAKE2b-256 | c0adbf587b0b638641a870e12be48fbc80e1727db81d2474a8321f71e39f0dec |
Hashes for lucit_licensing_python-1.8.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | be198bc1b6413ca0f587af6c3be21777c80c8985a6b7cc4ae2abd2bdc149e26c |
|
MD5 | 946c84d8d1a204088e064b9ee46a8bee |
|
BLAKE2b-256 | 0646d867655b5135c42dbf3f1c27b4c92de66c5bd8005d0fbcd9bf6466c1efd0 |
Hashes for lucit_licensing_python-1.8.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9bfa93ce2e2ef80a8a59636d36246471054115d278dee8ce147e10181e64de0d |
|
MD5 | ad93cad7922453bcc8df5febba959f29 |
|
BLAKE2b-256 | 2025ec2f110cc3572bda2f4549bf1048e8f5f3ae447874de78aac16560f74be5 |
Hashes for lucit_licensing_python-1.8.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cdf91ff9e3af574d037a19f84373d2036d7cfe8b007f5b49cea3f7b03569f1fa |
|
MD5 | 711bc2b271a5dfcba8682b05d42b6803 |
|
BLAKE2b-256 | 3c6601ece1b51efc89f1e6df3712af963fc18356e5b0d7cb56a2f527bddab435 |
Hashes for lucit_licensing_python-1.8.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0e9ea051212d8277c49f55b88a76a2343d1b8fc5a9d7f17cde912428e456c67 |
|
MD5 | b9692b579de4ec47c3c98938fdb7c059 |
|
BLAKE2b-256 | d50ed35449524108e603e13dc34f11233dfc0419d69838ab182212f82d9699c9 |
Hashes for lucit_licensing_python-1.8.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03b4071dae6d33ef0688fd1e517374fae74a29258e639c528c6ef1607b003653 |
|
MD5 | 97e0b5e57a1b97544968a5b8a4457576 |
|
BLAKE2b-256 | ef18e055b244a7e246980c70edaaf1e43606398a2fcbc9a8838442f56d7b6d6e |
Hashes for lucit_licensing_python-1.8.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e9be0194074be33c434eb6223b2ccdfb54d7180b2d55f1b653ff2fb10d41805 |
|
MD5 | 602f3ca01d474b2460882134b3f3391b |
|
BLAKE2b-256 | 58c7e3c65d0bbee219aba7b3b4606d14acc8fdec8a249ba08e8564c1e311e09a |
Hashes for lucit_licensing_python-1.8.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d986a4c07b90b8c63996349e47b3cf7930148322dff6f5c76aefe5420249ea1 |
|
MD5 | 0e63ee2c2eb3e3ae655e147c7d07ba3a |
|
BLAKE2b-256 | 5b408f9ba1153efbd9f42318a4f0bd9cb77a1b03a913a7d58df44d5b8b22577b |
Hashes for lucit_licensing_python-1.8.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f58bad08bf0c7a783bcec66437606002496dc3e0f2150bd7e63cf098e18da23 |
|
MD5 | 79a1063e4ec3ad333481cfc6b58b8d15 |
|
BLAKE2b-256 | 372f5c4d6d2bf73680d39f8a43d78ff55cf93a79c03cf48ee0dd04e64e273806 |
Hashes for lucit_licensing_python-1.8.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3e3cfaed9be7364f395eb8161ed84b7954cb2f3ec97ee32bba040ecd1a11c13 |
|
MD5 | 79b3660e0d5bf4fd6da421696f0310ed |
|
BLAKE2b-256 | fc1b40acf0990553784542e5d722b0145685792a08fb5a99ee26dd78bdd38165 |
Hashes for lucit_licensing_python-1.8.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5552989a7a7292e433215547e3e55c891527412b5e0b60f4bedbd3e701a68f79 |
|
MD5 | bd887c964afc7473e92b3ab87261d89a |
|
BLAKE2b-256 | 63df259c9608ddebff8e1438c7c9b2274e28f87532ac09bf39099fc400899324 |
Hashes for lucit_licensing_python-1.8.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3a352835480a9ece4d35098b4d7f7a8637e37058a9d5c558560a15af6eb4e78 |
|
MD5 | 1f50735ff9b62a494a5fee8e3de58f57 |
|
BLAKE2b-256 | 77551b49e3c425ab56642bc9ed6a3cd30ea9e6b2cbe2dcafec41ababf49f9c42 |
Hashes for lucit_licensing_python-1.8.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0a405aace92fe8266c3c7d1c74ce6c2ade8e104c123d623960a495c7a734080 |
|
MD5 | f64272f1104ddb1a531e75c2c31cde2a |
|
BLAKE2b-256 | 222b1ace9540dd60a21194eda65e751524e2be63e928b17ead44d7ad7d4d8962 |
Hashes for lucit_licensing_python-1.8.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e342e033d3c946ab825cb7d837a05326b7b40ef1196a74d64684f3c7f4000383 |
|
MD5 | 22459286237c4bf616c07e23989b8d4c |
|
BLAKE2b-256 | f088c4df486de28d123909e767d02f6283fe1388bbad093dd17abf208c378113 |
Hashes for lucit_licensing_python-1.8.2-cp312-cp312-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9517449f2818bcb37fbdcc256e81574d93644b90e0cf4c8f5be8f401f8609c74 |
|
MD5 | 324c55d8025a5245620dcb1a87719280 |
|
BLAKE2b-256 | ba20890634627ba4358dedc2de3adee99143927574a3d6a8a86f1de08ea68e27 |
Hashes for lucit_licensing_python-1.8.2-cp312-cp312-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 799357c0212577225b57ee9b74b9a3a72af793f1f12f22df2a467f60b93629f1 |
|
MD5 | c4f27d71e3121ba72237a9a831dfbb98 |
|
BLAKE2b-256 | 73bbdd233593792189f115146d134c22bed7e2fe93f20fe971e81c7405e429ae |
Hashes for lucit_licensing_python-1.8.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5385a92fa9b938ca422682d523a434354115b328d423592bf5065c48e5896385 |
|
MD5 | 24c3a07c7cf89b1fd0e168df0e2660a3 |
|
BLAKE2b-256 | 5a0269254a46686f69c6ccf4f0a20f4b4caf625fb82e0ca3929b4571aa610cf2 |
Hashes for lucit_licensing_python-1.8.2-cp312-cp312-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f16ca90589ffb2e353b3b1097fa9d12b7b045aefa978b19cb49ab4824e7a789 |
|
MD5 | 51a39f24c0e38f17e6866bf9ada507fe |
|
BLAKE2b-256 | 50b33c71db6639be9052435b06a58991528221ca57c58e8b4d79a019369ac6fc |
Hashes for lucit_licensing_python-1.8.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42be37af42a7172c578d846b71213f51d0e066f1f8968bbb662d06bc51b82c22 |
|
MD5 | af19c2b03486cc7c001930e478f8c8b1 |
|
BLAKE2b-256 | b1b7b4e3ce81c8fe80c2e233798cf871db627fc06fd6a47ad42c650106189683 |
Hashes for lucit_licensing_python-1.8.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a4646b8b521503fa64decb637385dc15e7e74f23950c94749c9672037361968 |
|
MD5 | 11410abd3d16c203a77a923952e6f67c |
|
BLAKE2b-256 | 791d0a3a97ef91b0a7e2ea7d0a2732d9b31fa8e621fbc1e020618ab4927507d6 |
Hashes for lucit_licensing_python-1.8.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c91eb4150d9fd303dc1931c2022835b86d36fef5a9538adcf18110252cbc0b3d |
|
MD5 | 2e888bb4f18986974b8e60ebb7610195 |
|
BLAKE2b-256 | d00f7725ef183f79249b1379fb9170bfb72bc2329f509e616d6496a8dc5797d3 |
Hashes for lucit_licensing_python-1.8.2-cp311-cp311-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81528a0f9b1980f4cbb94f62a6c1752eb8c7578674d91462d4a50b46c85d1d7c |
|
MD5 | 3682bb7562e889b683ef6a508a27aabe |
|
BLAKE2b-256 | 2464710d829639bd15398a63c6185a4754b715ccc959f6d591e06e8cbe0d186f |
Hashes for lucit_licensing_python-1.8.2-cp311-cp311-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c04a3bd590e9c53af22658dd59e37d383d3601d8e16d776bca08b8e18e76308 |
|
MD5 | 0f4846e35dbd54dd24dd718deaf076cf |
|
BLAKE2b-256 | e50e54af1db3dbbb7ad2670342a5e4fc53edcc7c9aa367a8c97b1d7139a685d2 |
Hashes for lucit_licensing_python-1.8.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a2bc6fceaad6dea634800c610c9bdf5b9711292cb2ac2845cbcfab7db3a6c2e |
|
MD5 | 4c8f55ce550b9e987f4b978140c02bd5 |
|
BLAKE2b-256 | 2a4e9b3d2660b0533d13aed02022c798802ec4710cf98d341654536880692f86 |
Hashes for lucit_licensing_python-1.8.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0e756813a80753858d961a28e341a9eba9c64063e490ee03a4a3701e7e5788f |
|
MD5 | a2e7351a85271a4c0b45ff0b4de017b4 |
|
BLAKE2b-256 | 96e7b9deb1231128381e2523f0e19ef33c227ab98b215ef78ba24c98a7938394 |
Hashes for lucit_licensing_python-1.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1c24c47c306c9eb294e7948f36dfc9f6e7dae0dca95ad3d7d4a3bf789241fbd |
|
MD5 | bb7720c9cf14a2333dc4d563ef6fecdb |
|
BLAKE2b-256 | d2117948374cc309a13123fab48bc06b8b89c2fa6ff44ed493a3ac16c1fc86bc |
Hashes for lucit_licensing_python-1.8.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6aa44434150f1240b45fc59454df9e8d989a1396bc1be31a4c4b7d05abb74a20 |
|
MD5 | 50380a4e24741ef34f823f00d23a3e17 |
|
BLAKE2b-256 | 14bf9ebd8ef98d40b5e3988a3d281b7f8e36731da26ace45eed6e56f92d0b85a |
Hashes for lucit_licensing_python-1.8.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 339958f0a2eaf4985cf6f9f4d2fc184067f990297f77319b554d9dd98fb58831 |
|
MD5 | 34bbac625376f3dfd277ab6f4764bfb9 |
|
BLAKE2b-256 | f0bb9def8c5e2af92d5acccb86342eab8bf3e44c47af02049093afd1f9fcadbc |
Hashes for lucit_licensing_python-1.8.2-cp310-cp310-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c4a083e3563a1404f8dd49495fb58f019c25f455ceb4cdf3ad77e8c17e9b79b |
|
MD5 | 0bf014e01d1595c48d75d329af0ec62b |
|
BLAKE2b-256 | f616b13727d47e8cf4e689125c2f3464bb2662a6b959a7bad93567fddcd61ec5 |
Hashes for lucit_licensing_python-1.8.2-cp310-cp310-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54749053623f87985af4db018611ff04b4dd8cf8fc42fd8e98d76954d8e52c4c |
|
MD5 | 2a5e7c701cad9448f8705ec14f812161 |
|
BLAKE2b-256 | fb6fbf5bd5d2542e72b815c818adc6b0d311ab72a1298bd7132c1be6ead0859e |
Hashes for lucit_licensing_python-1.8.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f879cdace41cc9c813c71fc102619cf8dc60ea166dbbd0f1decf19247b1fcfd |
|
MD5 | 605d8ce3faecfb7cd1f89196f58fe0bc |
|
BLAKE2b-256 | bc0a4c0c0166394e596aedd32cdcb4830fbdcd2ee529c6d521eda1822c3d18d8 |
Hashes for lucit_licensing_python-1.8.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e01a741ebae790fbb3bba3c396228ff0b0993ddf7d8cf3fae61ba8d541a784b0 |
|
MD5 | 966728e49a0534d53e281b84461f58f5 |
|
BLAKE2b-256 | b2e2aa27378828c8d7fdb655a5928bfee09473d94edd13a3e901620e25997671 |
Hashes for lucit_licensing_python-1.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8abec77d26f960c8b7696b48d64fdc3882f825279c8883d5e576de2b02a58db0 |
|
MD5 | 2317aeaaacbe141c5278482dd6d4966a |
|
BLAKE2b-256 | 88633c04dd05dce0cb069ed4e429659a9bda57dc8c1f6ac34070efa68bef2bd6 |
Hashes for lucit_licensing_python-1.8.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1fd73280faeb5612cf0060441898f3c4b465ace0f385cf9b688c75846ffd560 |
|
MD5 | 18cfdbca04be8ed7164a3451901f2087 |
|
BLAKE2b-256 | 5eb43fd674e0ddb9d1311047d30d7466208e4451cab21162ac48d66dcc97a8a5 |
Hashes for lucit_licensing_python-1.8.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9955608ed933ed34c231348b104f17098c52bef1ab8342aef9bd5573c5028e05 |
|
MD5 | 904a5ee6a2b08493d17cffc75b7395f4 |
|
BLAKE2b-256 | a25f9c0ed022d542160eb0a3b85d44d9bcd1aee845085759d1bdace6010470ba |
Hashes for lucit_licensing_python-1.8.2-cp39-cp39-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d463eb7d2bcab2075ef690088d70fc0bf7397c6deb2ecf97bf18fb346bb55d77 |
|
MD5 | 957ac34ba9369e218e90b0ce5895e491 |
|
BLAKE2b-256 | fb5148e9b9e94b6e1d2b047846b82763f8f9eb10f89b0343f4aa0bedc3fa96a0 |
Hashes for lucit_licensing_python-1.8.2-cp39-cp39-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05cfb44fdbd979d2b395355691818673d5394165f18d40d5fc4c352cbf6b3590 |
|
MD5 | a37e9347ccff4d7d29be63b33298ba1d |
|
BLAKE2b-256 | 53f730ed330645f9109aaf4ca99806e3241ac1121e023d110d56bc382b9d708a |
Hashes for lucit_licensing_python-1.8.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f71c53ac1e87733dbadb5195a150a4be50ea4e767f6982fe6788254679b6dc22 |
|
MD5 | 872efffdeec95b54a7b69972ea6d099d |
|
BLAKE2b-256 | f16c9202fe36e10db72b2175c61966b89f82a30a2a2f0d2077efd05420f8497e |
Hashes for lucit_licensing_python-1.8.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea1655516254195243c26013056d8b67ae8bc3fd44c6f49f1ef6f16def1c2df9 |
|
MD5 | 1c50b5bdd2d38565ce770949d7a6a3b6 |
|
BLAKE2b-256 | b187536be8c114711abc88dc7be9e96a40c8d7127cf2814bce79080ffcc34ade |
Hashes for lucit_licensing_python-1.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91f7dabccc738b408773d3882a88974b43296a5eb613312ae52b9b6a9c9ff1cd |
|
MD5 | 46bfd2201b22e9225c3d4be9dd231592 |
|
BLAKE2b-256 | 89b26ae0d3097d6567dfa96c59334817cb6d1244467893c929e65cc1c2c6ee8b |
Hashes for lucit_licensing_python-1.8.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e9bce0bf534f607c5191ebedb4d0a784a8194d6d3e1c1d983e22f05327dc7bc |
|
MD5 | 0634bb166c7d89cb3bd2902ceedc03d9 |
|
BLAKE2b-256 | 0d1988dfe9234bf93771cf3700eeaa8470dcc1228ba7754f66002aeceb5c0bcf |
Hashes for lucit_licensing_python-1.8.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 352ed1b2588b9fe6f1b96e05cfdfc9db3c0fd58671eb021b533680fe81953b9c |
|
MD5 | 556e1f15a1b13d7d811c1168e5003755 |
|
BLAKE2b-256 | 3d39bf84cba5ca4b01602fc1863a98a18179a355fed3832038adf74557c65f6f |
Hashes for lucit_licensing_python-1.8.2-cp38-cp38-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 787850f426ceeb848c8d51ff7d4d595e05bb1c58d218fe02a71418d67655c689 |
|
MD5 | 14b6a9c1f6c3b666745d54a1490cf7ba |
|
BLAKE2b-256 | 9c9a42c3022e0cc7342a78a084cc0853db372fdd6cd4ad5922f74372f845275b |
Hashes for lucit_licensing_python-1.8.2-cp38-cp38-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6f190dab52464b7657a97050e2b1701476d21861fab120e363bacc723e2788e |
|
MD5 | 4d789f765c9386a94e581b9fdb2701fb |
|
BLAKE2b-256 | 5da69c117b5f49e5609db955e5014353aef3749624d85c7c45e61fb7ef90317e |
Hashes for lucit_licensing_python-1.8.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c642f98866539b54f668bea7ff85ab833d5f05f8081e9bcc54da798fe8fecd8 |
|
MD5 | cf0cda532acc5a14cecef98fc63fa51f |
|
BLAKE2b-256 | 2f7bda9199e11e4f0906b7569f460e69fe181c5148988c81d4a51368a8cab981 |
Hashes for lucit_licensing_python-1.8.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4490825a21b15dcb5f63943330bbed3b9ba8cdbecaee0e1a4cc302cfafcbc651 |
|
MD5 | a24505ea2e69e6821e8dc5cf983b3f0a |
|
BLAKE2b-256 | 516e18e001e26b1af8fe99f68faf4d1400025bdfe0dfab285d5fb2fe71c6f4ac |
Hashes for lucit_licensing_python-1.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87d6269d9be8c1fe9f25a9e95b73e5ea8f6bf4e01a42e39e11c5e9e16f63986e |
|
MD5 | 8e2be7fee385672ab314f8bb99fce446 |
|
BLAKE2b-256 | 294b233f9ea17d24abfe08c93d27bed0a354d8f853eb7db2b07b5c0b6801b314 |
Hashes for lucit_licensing_python-1.8.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d6dc69e3aeb9839eb1c168a0a69b741a8b5769d4f2191b4dd5cfb2f7cca3ca2 |
|
MD5 | 347ccb1e791497d5e84fcba176942e73 |
|
BLAKE2b-256 | 646862c60ba42d764cb7dd3cbcb9bffa3a8822810e8c3f0d2a3a741d13c8a884 |
Hashes for lucit_licensing_python-1.8.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94e69af05e6045b154a7c68dee636530c1a75a3227cbf37051a5a1458e59e835 |
|
MD5 | 0e8434bc4b0a01b75aaa5774eb78c080 |
|
BLAKE2b-256 | 229585a20db4b4931eeab3ccf36914a1e6505ed7da3b23857c705d0ab015ef2a |
Hashes for lucit_licensing_python-1.8.2-cp37-cp37m-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a768052426d203172a76878bcb34e7bb2164f51c874baa262062a8027029a77f |
|
MD5 | 0006dc8c0fc7bfddef2eed7d6382daf4 |
|
BLAKE2b-256 | caf5f810846db487e04fd15e2a57d7169e7a2333bdfe8d46a9727b9eadbaea76 |
Hashes for lucit_licensing_python-1.8.2-cp37-cp37m-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1600fbc94bfe105babe98abc963717aa906329aeabec9a2e8a9fac6665663fed |
|
MD5 | 2fe38ab6d5d3136e6ec8d80d60512075 |
|
BLAKE2b-256 | f02bb609ae31b6a3354b6c241571a050a0dc770e1a614901ce1ff75135a097eb |
Hashes for lucit_licensing_python-1.8.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2b23f52acb5e3acbdd89ff12b9e29e608b21269a6824ba4477dfb31ecd15455 |
|
MD5 | 9534717015e699a264881b7d9b778439 |
|
BLAKE2b-256 | 9a9c9d3cd3f2bbf460eac87ca9d402708a22b031e51103c78f71516c9a2c880f |
Hashes for lucit_licensing_python-1.8.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e36d92eb6424a87ffb60e92265bbe7979f76ba41db168843516d635a7cd473e0 |
|
MD5 | 7b9d6fdde11f0bb273377ce976fb8d79 |
|
BLAKE2b-256 | 7dca577e267f73c6174fc0aebefa8c261cb04c0600639a08f8540e531fbaa27e |
Hashes for lucit_licensing_python-1.8.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66f610be0c07f47985a7e361a833e41511c8ad509c0213adacf1fc1559283c1e |
|
MD5 | 5de7de0d0868ad7f5c13437ee199e2d4 |
|
BLAKE2b-256 | b8166f5a96f10714bd2263ba6a609213546722ec32447b437459a751bccacea0 |
Hashes for lucit_licensing_python-1.8.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5c18a4ca2b749997761f76faa920426ec762ffea85f1f72c481087319ee5eb9 |
|
MD5 | 7a6710eb23d0cdb81319ed765c9ebeb7 |
|
BLAKE2b-256 | f554213753bdc80aba2e7157f32377cc39fb74a82357646aff93f37fcdc9d17e |
Hashes for lucit_licensing_python-1.8.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7fdcd49dfee9eb13f6a015697ac9cea71f3f31f2de39fbf2b07b8719f7e5a491 |
|
MD5 | 07cf76b6beda25a06af2a21cb04dd3d1 |
|
BLAKE2b-256 | 58c76ce62bf776899807f803c452ef5cda3170b305c2f381145c7fad76a748ca |