Python CFFI bindings for the ‘C’ Language Integrated Production System CLIPS 6.42.
- Source:
- Documentation:
- Download:
Initially developed at NASA’s Johnson Space Center, CLIPS is a rule-based programming language useful for creating expert and production systems where a heuristic solution is easier to implement and maintain than an imperative one. CLIPS is designed to facilitate the development of software to model human knowledge or expertise.
CLIPSPy brings CLIPS capabilities within the Python ecosystem.
Installation
Linux
On Linux CLIPSPy is packaged for x86_64 and aarch64 architectures as a wheel according to PEP-513 guidelines. PEP-656 is supported solely for x86_64 at the moment. Minimum Python version is 3.9.
$ pip install clipspy
macOS
Apple Intel and Silicon are supported for Python versions starting from 3.9.
$ pip install clipspy
Windows
CLIPSPy comes as a wheel for Python versions starting from 3.9.
> pip install clipspy
Building from sources
The provided Makefiles take care of retrieving the CLIPS source code and compiling the Python bindings together with it.
$ make
# make install
Please check the documentation for more information regarding building CLIPSPy from sources.
Example
import clips
DEFTEMPLATE_STRING = """
(deftemplate person
(slot name (type STRING))
(slot surname (type STRING))
(slot birthdate (type SYMBOL)))
"""
DEFRULE_STRING = """
(defrule hello-world
"Greet a new person."
(person (name ?name) (surname ?surname))
=>
(println "Hello " ?name " " ?surname))
"""
environment = clips.Environment()
# define constructs
environment.build(DEFTEMPLATE_STRING)
environment.build(DEFRULE_STRING)
# retrieve the fact template
template = environment.find_template('person')
# assert a new fact through its template
fact = template.assert_fact(name='John',
surname='Doe',
birthdate=clips.Symbol('01/01/1970'))
# fact slots can be accessed as dictionary elements
assert fact['name'] == 'John'
# execute the activations in the agenda
environment.run()
Release files for clipspy 1.0.6
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| clipspy-1.0.6.tar.gz | 28.5 kB | Details |
Built distributions (wheels)
Total release size: 26.6 MB
Release files / clipspy-1.0.6.tar.gz
| Download URL | clipspy-1.0.6.tar.gz |
|---|---|
| Size | 28.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
3d39ee319d84189156a7c6659c52d0a04e96ad0026ce32cd29daaf9013ac6ff9
|
|
BLAKE2b-256 checksum How to use checksums |
2d54bcc1f5c88345379fd6ff2362e10727fd330e7729d07cecfc602d217bcefa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp314-cp314-win_amd64.whl
| Download URL | clipspy-1.0.6-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 745.5 kB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
c8f0c4a1112ea6399b15ce1cd231f015157ac583788458cfe7a1141158c5393d
|
|
BLAKE2b-256 checksum How to use checksums |
339e72db6fa2597fde6019e420d93cf29b22db1865a495d0b659b609b5047c22
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | clipspy-1.0.6-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 905.0 kB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
0624e94ee18b611634bf14d1bc5755defca6a7bfdacb2c491988b5c0577ec7fc
|
|
BLAKE2b-256 checksum How to use checksums |
c043930427c742594a0f3caaf99d045844ba68c6fa060836bc5ba5cb2e79f7bb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | clipspy-1.0.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 899.9 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
2816aa34833390df633e9f572ee96b9a4ddcdd7cdec03513233fefac83fd2847
|
|
BLAKE2b-256 checksum How to use checksums |
d2e512f686fd22ae5ad58a738504b93ea3d6f0c5e6e8006f11b6f22b9e648ae9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | clipspy-1.0.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 871.8 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
c60e581cdd66076ee183b43b18657045f60ec7265f8b723fe8485ff24f63f772
|
|
BLAKE2b-256 checksum How to use checksums |
74fbf8068b413c2a39a3745ad0704bac541d75097fe10d67e47a06c37706b158
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp314-cp314-macosx_11_0_universal2.whl
| Download URL | clipspy-1.0.6-cp314-cp314-macosx_11_0_universal2.whl |
|---|---|
| Size | 1.0 MB |
| Tags | CPython 3.14 macOS 11.0+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
d43931ba28c9b377cd8faff2376562f5c89f3e96e1773ddae8e09575fa34c2ea
|
|
BLAKE2b-256 checksum How to use checksums |
eee2d351ab8eee9cc4781bdf0b186fb06b23c168d4ceeb1b814b505c05e27f40
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp313-cp313-win_amd64.whl
| Download URL | clipspy-1.0.6-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 726.3 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f2b79352f252e32734cf7b5b310bcafe45fc93171dafd917904b66a41b708db9
|
|
BLAKE2b-256 checksum How to use checksums |
e4936fff7a87ae0b6f70894065bd4fb5ffff14e19cd8a859746941bcd13b4dc4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | clipspy-1.0.6-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 905.1 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
f7233e42ea1a0151a09f052b5e4ab0660af294bd5a7ee84d6f18655b48df3940
|
|
BLAKE2b-256 checksum How to use checksums |
97e3d74318267875d0b077ae01eab256a101c09c67908d25d3bd7619aa51c5a9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | clipspy-1.0.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 901.2 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
14837601d1598bd8c9ad00df17e837b4809d0bef5d709af664f3b53f88495135
|
|
BLAKE2b-256 checksum How to use checksums |
ca923f8cf4b181bce30046475de575a979cf48e514b1dd361a0d9a2dfbba638e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | clipspy-1.0.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 872.6 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
b32b2abe715a12a88150e63218472d22a117568aeb049617e83fadd0371eb1dc
|
|
BLAKE2b-256 checksum How to use checksums |
88474837aac4898f85fe020f144ea75796a78eadba532bcfe968bdb284bd6bb8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp313-cp313-macosx_11_0_universal2.whl
| Download URL | clipspy-1.0.6-cp313-cp313-macosx_11_0_universal2.whl |
|---|---|
| Size | 1.0 MB |
| Tags | CPython 3.13 macOS 11.0+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
953edf55e613e2fdddd7b3090a432e5a6369810f547cbf1b186a34687be406e4
|
|
BLAKE2b-256 checksum How to use checksums |
ec399e59603a5ae0a0fe13f8accf376aa903adae39763a4308264b9bc73d3898
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp312-cp312-win_amd64.whl
| Download URL | clipspy-1.0.6-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 726.3 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
c8a65f14dab8ce95fc9ce811b661ee82a3152519b4908b7d75382ec60828f7eb
|
|
BLAKE2b-256 checksum How to use checksums |
a2266dee151cf2225c061a5090b3d967b359a15fdcd0d37edaf17ecee3befed0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | clipspy-1.0.6-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 905.2 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
3d976975fba81df2e559837ea86a0d98ef30b225776bcf401e32a03c0e7049e2
|
|
BLAKE2b-256 checksum How to use checksums |
97ffed3935c538fb29103b64ca1f85d9d45275b3d6574ceb9a0480d7966be723
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | clipspy-1.0.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 901.2 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
22390d285a2ec8fd09dba98c1e237b5593cc63cb5426149d717699bc54389c58
|
|
BLAKE2b-256 checksum How to use checksums |
542a24545131ee557c27ec26b3a13dcf77e124960f5745fee797a0edc315ed0c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | clipspy-1.0.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 872.6 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
e2dc0236be4db8807fc076d25ed352acfa6673b5cee5832f5e0375f8d8e15688
|
|
BLAKE2b-256 checksum How to use checksums |
ad7f2ea0787e9c2a7ece8505406116c92b0b9aa8ff7305c818ad1106d96a6017
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp312-cp312-macosx_11_0_universal2.whl
| Download URL | clipspy-1.0.6-cp312-cp312-macosx_11_0_universal2.whl |
|---|---|
| Size | 1.0 MB |
| Tags | CPython 3.12 macOS 11.0+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
34d9f8e190894e5077d7d8c1db9bcaa8ca11885c48c7df5db9389fb9e8c96a92
|
|
BLAKE2b-256 checksum How to use checksums |
04e92156f7d339b2fc09590e0ed25343bf3900edae066972e0ee0a027bc06130
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp311-cp311-win_amd64.whl
| Download URL | clipspy-1.0.6-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 726.2 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
431e14cc1344cef4ae217d85fdfc156ac1c9ef59747a9a956c11dad2800ea0d1
|
|
BLAKE2b-256 checksum How to use checksums |
0aaae5a9a89895c96461a1c6998f4ffe9aa6d590861f33fe6e4dc837c3fe1355
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | clipspy-1.0.6-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 901.9 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
9abff4816bc5e805e3b11a8c6ffa8bbd230e8c60d77c3f1259a4251850008307
|
|
BLAKE2b-256 checksum How to use checksums |
697f1b484693d9638b3263f6d65e4eaa54123c2cca528615104c8804644a47ec
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | clipspy-1.0.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 898.3 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
9802d207f54b65e3d7cb17b11cb790e231a48a8d3ca5fa23e6652807485fbbaf
|
|
BLAKE2b-256 checksum How to use checksums |
491e033b0fddee93fb77dcdb11a26dccf1200ac5b606cac49a7865329b079c50
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | clipspy-1.0.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 871.0 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
800edf2c4bb2eee7e22301c6ad18ccc10b6bd894549a62ee527e241bbc9115ab
|
|
BLAKE2b-256 checksum How to use checksums |
7cd81ffd1c3ae1772b7a3fa0cd046472b4d91014e4352f29790ecb8cf7d9eae9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp311-cp311-macosx_11_0_universal2.whl
| Download URL | clipspy-1.0.6-cp311-cp311-macosx_11_0_universal2.whl |
|---|---|
| Size | 1.0 MB |
| Tags | CPython 3.11 macOS 11.0+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
ef58be96eb8dcfdb351df9b1717bca9fc66ee72c321f2fbddf241a3b305d003f
|
|
BLAKE2b-256 checksum How to use checksums |
62450944060644ff5b7ea9150443d206caa1fed65a7d262d8a3b08d6b6600da4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp310-cp310-win_amd64.whl
| Download URL | clipspy-1.0.6-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 726.2 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
c77bdcfd7c963d9e9417b711d35a7d02beba1a6367a5e97787b99ab3334379d0
|
|
BLAKE2b-256 checksum How to use checksums |
06020c61bed2e62305887fc1beb25d00aa91e4534c2248d536baaf8fe95b0494
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | clipspy-1.0.6-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 901.9 kB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
159e33885eb2b20b115e3240a7de9606b970d1e04d5e6c374533a10aa538a5c2
|
|
BLAKE2b-256 checksum How to use checksums |
4e6ecc35fffff5f225141294d90f1207417932b8d1a63a459c44cfdd9a4670eb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | clipspy-1.0.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 898.3 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
35e8a011930994d920c47e2229870aa2fb741391fd94d1a6dda8d917144bfbdd
|
|
BLAKE2b-256 checksum How to use checksums |
3f2169cb39727b7fa097b7b7b15eb4e3682d3ecb6b1ff3b4922e2e279c8fa430
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | clipspy-1.0.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 871.0 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
43b4243dc0c1fbdd12b526a1664a09640f6abb6e25a141fef0ee5329cc576192
|
|
BLAKE2b-256 checksum How to use checksums |
cc523c4940485ce659c359569214a30a9f87292f246acd0ae35b1c39ed9a2a60
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp310-cp310-macosx_11_0_universal2.whl
| Download URL | clipspy-1.0.6-cp310-cp310-macosx_11_0_universal2.whl |
|---|---|
| Size | 1.0 MB |
| Tags | CPython 3.10 macOS 11.0+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
60e0e57cb49e5ac639382cdb5aa01729f109c2a74e9e03bbedb518b4967ca215
|
|
BLAKE2b-256 checksum How to use checksums |
acef77bb84f28f3e464780b4b85c37e68672475b0779888872e6021406643b2a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp39-cp39-win_amd64.whl
| Download URL | clipspy-1.0.6-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 726.2 kB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
2b9277b767a4c6d66719a55f4cbfc3cf44fc95df87a70d94d510e5213d475193
|
|
BLAKE2b-256 checksum How to use checksums |
7abe1735b84a6663b9aba339a2dbf44f5cad827d164d3d475fe29b2d8ef584ee
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp39-cp39-musllinux_1_2_x86_64.whl
| Download URL | clipspy-1.0.6-cp39-cp39-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 901.9 kB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
853b0e818a9aa9a55d02809b173cf80be98cdbf319febc3b12c0e0fcb84b4a6c
|
|
BLAKE2b-256 checksum How to use checksums |
9c85d48a1fdac9a67772fbb247e7bd694d7fdf2b858ffaada570539f8ddd624e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | clipspy-1.0.6-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 898.3 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
c391c4533c55ab733509524b93b42629c7ef0a0826b0f6828332106d23bc88ef
|
|
BLAKE2b-256 checksum How to use checksums |
864e3e2d5617141c7e2ef08003361eab77ce452646abd92c101227d2783de701
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | clipspy-1.0.6-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 870.9 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
9d4b8aeccf6b9d2aafb455f9e26faa4ceeb919f9d95cc3d3f61a650a70e5c5d0
|
|
BLAKE2b-256 checksum How to use checksums |
68716d1c67f10f31d5a300a961bdd856f7c656d31c8195ac365a395e27cb045e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / clipspy-1.0.6-cp39-cp39-macosx_11_0_universal2.whl
| Download URL | clipspy-1.0.6-cp39-cp39-macosx_11_0_universal2.whl |
|---|---|
| Size | 1.0 MB |
| Tags | CPython 3.9 macOS 11.0+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
be7fc686bf28213039503272c993fd5cf0bee2188730322f259271e684c182dc
|
|
BLAKE2b-256 checksum How to use checksums |
2b9d5d1e79fbf074080c853aefe53c11b949d7721289ae2c1757627074d7e3f7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|