Skip to main content

Python binding for CRF++

Project description

Python binding for CRF++

pip install pycrfpp
from pycrfpp import Tagger

# -v 3: access deep information like alpha,beta,prob
# -nN: enable nbest output. N should be >= 2
tagger = Tagger("-m ../model -v 3 -n2")

# clear internal context
tagger.clear()

# add context
tagger.add("Confidence NN")
tagger.add("in IN")
tagger.add("the DT")
tagger.add("pound NN")
tagger.add("is VBZ")
tagger.add("widely RB")
tagger.add("expected VBN")
tagger.add("to TO")
tagger.add("take VB")
tagger.add("another DT")
tagger.add("sharp JJ")
tagger.add("dive NN")
tagger.add("if IN")
tagger.add("trade NN")
tagger.add("figures NNS")
tagger.add("for IN")
tagger.add("September NNP")

print(f"column size: {tagger.xsize()}")
print(f"token size: {tagger.size()}")
print(f"tag size: {tagger.ysize()}")

print("tagset information:")

ysize = tagger.ysize()

for i in range(0, ysize - 1):
  print("tag {i} {tagger.yname(i)}")

tagger.parse()

print(f"conditional prob={tagger.prob()} log(Z)={tagger.Z()}")
size = tagger.size()
xsize = tagger.xsize()
for i in range(0, (size - 1)):
  for j in range(0, (xsize-1)):
    print(tagger.x(i, j) , "\t")
  
  print(tagger.y2(i) , "\t")
  print("Details")

  for j in range(0, (ysize-1)):
    print("\t" , tagger.yname(j) , "/prob=" , tagger.prob(i,j),"/alpha=" , tagger.alpha(i, j),"/beta=" , tagger.beta(i, j))
  print("\n"),

print("nbest outputs:")
for n in range(0, 9):
  if not tagger.next():
      continue
  print("nbest n=" , n , "\tconditional prob=" , tagger.prob())
  # you can access any information using tagger.y()...

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pycrfpp-0.1.0.tar.gz (8.1 kB view details)

Uploaded Source

Built Distributions

pycrfpp-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (136.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pycrfpp-0.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (97.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pycrfpp-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (136.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pycrfpp-0.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (97.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pycrfpp-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (136.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pycrfpp-0.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (97.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pycrfpp-0.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (135.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pycrfpp-0.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (97.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pycrfpp-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl (651.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pycrfpp-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (136.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pycrfpp-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl (98.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pycrfpp-0.1.0-cp312-cp312-macosx_10_9_universal2.whl (180.1 kB view details)

Uploaded CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)

pycrfpp-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl (652.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pycrfpp-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (137.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pycrfpp-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl (99.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pycrfpp-0.1.0-cp311-cp311-macosx_10_9_universal2.whl (181.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

pycrfpp-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (651.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pycrfpp-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (135.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pycrfpp-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl (97.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pycrfpp-0.1.0-cp310-cp310-macosx_10_9_universal2.whl (178.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

pycrfpp-0.1.0-cp39-cp39-musllinux_1_1_x86_64.whl (651.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pycrfpp-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (135.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pycrfpp-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl (97.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pycrfpp-0.1.0-cp39-cp39-macosx_10_9_universal2.whl (178.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

pycrfpp-0.1.0-cp38-cp38-musllinux_1_1_x86_64.whl (651.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pycrfpp-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (135.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pycrfpp-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl (97.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pycrfpp-0.1.0-cp38-cp38-macosx_10_9_universal2.whl (178.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

pycrfpp-0.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl (656.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

pycrfpp-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (137.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pycrfpp-0.1.0-cp37-cp37m-macosx_10_9_x86_64.whl (97.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file pycrfpp-0.1.0.tar.gz.

File metadata

  • Download URL: pycrfpp-0.1.0.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pycrfpp-0.1.0.tar.gz
Algorithm Hash digest
SHA256 8e13f55baaaf79cf54c1b420f3297c0471b100c9471c539575d9cf02111b9e08
MD5 c9df287b03d33f9918d46ca20fd6defa
BLAKE2b-256 4e080d2c5554fb4e01f5a223913902ef7ff82c102f6462bd467475b80459c78c

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14ed9f8bcdf67989cf21e95ec6919ee7ca0e978234449f6d16bb08a24636c635
MD5 e2dceabd4129a931ac18f4d575cca4b7
BLAKE2b-256 82c3bc6809c784a131c69bd07dc536b368331c569e4b10a7cdd19ac9fb752e14

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c2ad9014df8405521a9555b02e77825ab4b5d6417243b35ee81737428a3713e
MD5 941f9e7c6c0bf3668601088824e5bc43
BLAKE2b-256 3a1fbd855de1ba35e483f36a010722fa675ad7cb3c3d985e3e175af0f9b6f02c

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc35a56c2f0f7cae70d2e8c4fb4b436f5e27cb43ec47ea5e79d03094b9b20a91
MD5 6c991a0506594f07bbca0ff2093521a5
BLAKE2b-256 fe4c0a98c1f307ad1c0ea5103577708640914c0038a04e47200466650e3b4d25

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c01b801d6afa32717c12299d4ff277d0b269ad7fe61b1008f06b669f0fce5d3b
MD5 0bca630802fa87447d626b4a800379e4
BLAKE2b-256 40a24e8c3920bc85f177adc5c3f336f8bb8197b3fa7040e72c4c8449119912b9

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b64b30c6d2314b280568dbe9ab9b3d8c4a59a9d64d723331008fdf6af160e029
MD5 113af89cbc17cc96fb4d9a883973ba72
BLAKE2b-256 5290c0e2da28f9df8c3c8e78d1768679c5526e0efaa146c6f4e128ac11aea423

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cdf5789786e70e4df2fe2adbc064be53273e4128cef2a813836a356d1ed53d4d
MD5 477501f487116e4b9b1d5f1834d84c1b
BLAKE2b-256 e2b2a33d87f4de1d84e1a3bdb6949e9490ee37e25acbad004240a53e35661898

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9033d0642268c2a5e0ec53f99839c28457b8dfdfaeef26cfc04df6c4d9059c4e
MD5 415bf0816065846be4230b6855309d56
BLAKE2b-256 04bcd80f3a01a1592859df8c094aa0d31f958a49ac7eabcd9d5b956fc4e8d534

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 821dc064508ecf66f0a19771e5d037e748129572d8280c302ee6c5510600afc5
MD5 20166b0b96f5203dad16bd5e2594fd6e
BLAKE2b-256 b431032357c64a6ae6338de8b0c450118b7ab3c12f98002c0a3ec991ab3eb390

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 21802158a4671fcb1f21f64917405ac3fa59a07131f1507710ea0fb6f0f6df4d
MD5 07369b2900ab3a01ab56cec98cfb0047
BLAKE2b-256 5285e4b48deaead986e8a60e3e974311554ba39a72d110e338e23044360fe23a

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 400f46e0ee6523c33f821ae85308db806bf67b416bdf9d848e8344734fc9285c
MD5 83efeb9bc4a20819d80d46cb1baf7456
BLAKE2b-256 4ae628db1193d1fa73ec55f1cf94466ff309b776c72325aec3de67b445bca83b

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09c81d9d9bffc3deeef7aae0a466cc0cced783b6157b0e9770784e2d61ba5683
MD5 92b28bf7e2e7266b72e69a9a22547fc4
BLAKE2b-256 6a15aa7564039f552ff16fb00fd7b3453d78ee06caeaa80109223eee96cb7535

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 89449223afcb58d61f65f5b86244d10756f9988952ebb0dfaf6eb7bcc62b035a
MD5 8c21c241522e20762c96cdda70f1518b
BLAKE2b-256 e4a3fea69e0d72e91f7702d9444599ea143481d648a973a3e29d6c7c4ced4555

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9eb66bfc6cff4b8366a51fd6c27ad1375104614764b610813103eca7a93e26bf
MD5 084aba5288d2ca76b1c70c98f92be3df
BLAKE2b-256 780d0e507516c0970d28c54d41bff276e932c70d8e1ee0ae4416b6c25b5a4a9b

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2aa2cd9928586cec771194948f4f9fbb8d24a49d892b9889af12b822e1074dc0
MD5 c2320fec074c4e05e2e1209e4096e921
BLAKE2b-256 131fc9dc5972047b58bf08d416487dd84269c9540ae9fe66d8d894823fbab942

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 984309979803047309194b5bf82480fe431b85d9c8512540d829dc9675b864d4
MD5 8a15403ecd3b08f7866c0b944c9dfe41
BLAKE2b-256 e51c93726b97d35db6b446753c24ba289b12554f933e9370da5f925768195a05

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 941b54c08271f69cf25776235a7487f6075587a7c986e0af2d6a0152687c29c2
MD5 543610a20ccc18f30473680f318acef0
BLAKE2b-256 fb6ec364a1b6533bb17511e160b7987ed116393502de11f1cb0803faed2f5a7f

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8c21fad22cbb76e95cd00e188f2e29b9708d4f8fce4f14f911b7534f447180ee
MD5 9ca5b8690fea60be4efb4962550f3fed
BLAKE2b-256 c3bd62c488edfcd428f31cb78b4f8914725884a09794d0354d13363a42b1232c

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d319a699d33e6a0c993db9ba54fd01016bff8a9e65e928da3b3b357dd9e2750
MD5 7b47d95bc2e5c28bcbad1c11349e87d4
BLAKE2b-256 cc543aa61ef1a531acfd3519028105122207512f2f327d6bc47646d8c073b308

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af98260ec2b2e64385fcca9230bbbb1393940f0e5e1d33f60c0483e34c8fdc6c
MD5 64a46dc29b51927544ecdeeedb4a0180
BLAKE2b-256 febf365b0cedc94f7e14cf45455adca4a7b268ab1ae224b88ab68e7f95aeee0a

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8f879ba8cfc2141a2f2a3850082f90b5d1c604c239ca9cbb96b419e28138dde5
MD5 b3a5f237627d24c10133cc65c34e09ef
BLAKE2b-256 c6c72165a328e8a4ff680057dc6ad57b6cdf6bd326c9aec5d91320c468045eed

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f094f105174b4cb1cfdd66d1ee354125eb26ebf517b6b83125c632b1ad17f4c9
MD5 1c68571c1c56e30add5f403b855d9f09
BLAKE2b-256 e96b7e057d87236424c38dac2f154a9f17c57cc354b055a7d79b616b2386a606

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 176937976786d3e19d072b2a5fcd7eb2ca92cab3a7e69fdff92dfef6c3a756ac
MD5 e3ebc0568789ae3533727d958dc255c6
BLAKE2b-256 3e38a90d987c49cf74624f2193a9aa9ce3568f0d07b1557eb45bea6eef359fb7

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 718678b631a7a38812e88c7ec784a09b3c918af608aa5ce23f0395883aa0cc3e
MD5 4904ebd8bd66ee5d423657c7122c68ff
BLAKE2b-256 4a5e9e9ff6f091aa2b4727b97b9776db790e80ac457b1135c8ae8b18ec413192

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 237068ab8948b81a023aba3814e4a28daab0c061500ee72f2f0d4fcaa11e4459
MD5 b09955489457ca06b6c64d4709634cfa
BLAKE2b-256 47b46323c577ddfac1b6fa4445e40d522db5f71ef0bb76e6adac82163d0fd308

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8bd85a2261d15ea26b71df09682d6646f29243c01dc86b5e36d76036d451e651
MD5 053233fc3dbecc1f3bf0faa2f90edc5c
BLAKE2b-256 0a1c192b26efd1457d6f3fac539b553d5e9fc8d0c6245d206992be4b2d68a23b

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ad742917d07c6975d782ee1b7220e49c61243f0f6c8b0354c97b357ed48bcde
MD5 ceb7c9de9a01fb6d77e15ea086b98f01
BLAKE2b-256 7fbe7fc393d4d621558e38a5fa8be3fdb0520e88b03d571c5a2252e73ea1bdfc

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9317be775e189b8c4fbe0dc2d17ac908e41c4f2081a0ba829ac3c738fc343b1
MD5 a15c7379b77da88094675ef58c8c9d35
BLAKE2b-256 046b166d8b2855d34e5513fb502fd065dd41d069762c0eeb57cd0a168e1c71d9

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0e543b5a826b6236e34d47b7e02d6874e8ccc6a50e169c128e8512d965e448a8
MD5 cc23a0ce806251b7720d38dddde0aa9b
BLAKE2b-256 2e32af5e784e9c746139155cfdd6af9713023543fd51d73f29fc95da3518b7bf

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4a501d418e039c2de68cd2a58b3595e16a69667f86d9115ae0a778dbbcc50f07
MD5 439e71bb51753c8aae8e065e3dd5ac53
BLAKE2b-256 adbb7adae26750fadaa8c2a718b3820fe70b4386c0847fc395c8108f216e5d8b

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a430c1050391bfaa11f2ac6d014d900bb9c0e562cf13da02d622bfb29a1e2c67
MD5 51f91c37063f80d9ae8e6e078b12ea23
BLAKE2b-256 bb3204eeeab36efab8eadf1f328480c49dc0be422814468f15da8bc9bf2cd911

See more details on using hashes here.

File details

Details for the file pycrfpp-0.1.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycrfpp-0.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb50be33320f22691052ffc398f8872bd5fb52562b21a6e5d5c0428a231ceea5
MD5 8e7a52b3810bc8bf7a9d6bf442ace00a
BLAKE2b-256 8eb0ec77addd6ae4f1f54055fef31159ae41c842df4941581a6fa686d965ffdb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page