Result for B4C8107561A3520449B81D729408CF710DDA48D6

Query result

Key Value
FileNameusr/lib/python3.12/site-packages/rjsmin-1.2.2.dist-info/top_level.txt
FileSize15
MD564041AE5986EFF0925D2B174CA09C853
SHA-1B4C8107561A3520449B81D729408CF710DDA48D6
SHA-2564893A0FCD2573755030AEC91DD636FACEA50C817C59AA1EB74CCA9F16C695754
SHA-51260AE4309DAAD34B6357EBCA5222931848D04FBEA0EF7722C4C79697D162C4636B7FA8D129A657C77FCC76EE4DD3B23441B69B8F2DA3AAB4632AA68D43E73A022
SSDEEP3:JIML/0:bA
TLSH
insert-timestamp1728281352.2390585
mimetypetext/plain
sourcesnap:5E9H1Z60DLeM1oh9Moy9blNppI3e4Ha1_10
tar:gnameroot
tar:unameroot
hashlookup:parent-total125
hashlookup:trust100

Network graph view

Parents (Total: 125)

The searched file hash is included in 125 parent files which include package known and seen by metalookup. A sample is included below:

Key Value
MD594FB28B5FA7307936211822614FFC84A
PackageArchx86_64
PackageDescriptionrJSmin is a Javascript minifier written in Python. The minifier is based on the semantics of jsmin.c by Douglas Crockford. The module is a re-implementation targeting speed, so it can be used at runtime (rather than during a preprocessing step).
PackageNamepython39-rjsmin
PackageRelease20.35
PackageVersion1.1.0
SHA-1002204F5E5DA4136480859651B76E824884D1836
SHA-25609485B5CC3480FB573ED369D5D37A3A188DD9DC7C2AEBFAF655AF4E74354D617
Key Value
MD5D7E64604FB00268245486F418D8E3CF7
PackageArchx86_64
PackageDescriptionrJSmin is a Javascript minifier written in Python. The minifier is based on the semantics of jsmin.c by Douglas Crockford. The module is a re-implementation targeting speed, so it can be used at runtime (rather than during a preprocessing step).
PackageNamepython3-rjsmin
PackageReleasebp151.21.4
PackageVersion1.1.0
SHA-1013B7A7681FCFD508A2380B381C141AA9B735D44
SHA-256E6D48F5AA73BC7D1D426372CC2272F52AD15D996E367810421B4C973B54D1C49
Key Value
MD5CF63CC92C23ABA48AF49262F8CAE1E49
PackageArcharmv7hl
PackageDescriptionrJSmin is a Javascript minifier written in Python. The minifier is based on the semantics of jsmin.c by Douglas Crockford. The module is a re-implementation targeting speed, so it can be used at runtime (rather than during a preprocessing step).
PackageNamepython39-rjsmin
PackageRelease20.35
PackageVersion1.1.0
SHA-10461EEC83C8602A5473BA71D865B0AE091396CC2
SHA-256D09754E3710918F5F48B922A73666D381568B977E895A0332024C1F327E68FB0
Key Value
FileNamehttp://dl-cdn.alpinelinux.org/alpine/latest-stable//community//armhf//py3-rjsmin-1.2.1-r2.apk
MD59E57EC6B14E132124EB73CBE244FEB20
SHA-104C42A310C94A44048A567342A4904892E905C1F
SHA-2564B4D950EB1060D3E7D62BC4B1845A17593AA2614E7137C1524B9332A03234C3E
SSDEEP192:WR7xF0HtI+YOYvkXLsZmK8qrjfkz26f86S90oyL8ddgwwsvlt1VNSWOkErGbyHpd:48HtISYcbsZmuXsFroVr7OJGbyFmWf
TLSHT1B952D058F46CBC1AD4745B6C2793BCAA213015B7B550C2F3A788DC8DB968C05B92FC2E
Key Value
MD5DC6D9FEBD0C82E797FCBA82D82DE5EAE
PackageArchx86_64
PackageDescriptionrJSmin is a Javascript minifier written in Python. The minifier is based on the semantics of jsmin.c by Douglas Crockford. The module is a re-implementation targeting speed, so it can be used at runtime (rather than during a preprocessing step).
PackageNamepython3-rjsmin
PackageReleaselp153.20.7
PackageVersion1.1.0
SHA-105980DDE82ED4543537465F3A3D219E561A1730D
SHA-25666119A4ACCE62BB65A0A798197BBD6C4B32211C7D672CA63810C16865A0FB54D
Key Value
FileNamehttp://dl-cdn.alpinelinux.org/alpine/latest-stable//community//s390x//py3-rjsmin-1.2.1-r2.apk
MD552B9D9D4813B0FA223B67C82E29AA6EE
SHA-10AF340FA4387D2E31A15525B2885591C07571D26
SHA-256C2824B0522DE53B275700DEB967D62676C3E031674FB3218F634FF847AE1E019
SSDEEP384:Yez4zk0lToMRhgQ0QC/S/V8MtxdtBGHohCCsoW2:YenjCaLQMSBtxdtYHok2
TLSHT19D52B0DB4B5832CB23B9556C82D3BDF6544146FC50AF591EDB0EA2BF2F2186C42B09E1
Key Value
FileSize17492
MD5124C41FBDA2BAFB8AEEB5DC8B986E2DD
PackageDescriptionjavascript minifier written in Python - Python 3.x rJSmin is a javascript minifier written in Python. The minifier is based on the semantics of jsmin.c by Douglas Crockford. . The module is a re-implementation aiming for speed, so it can be used at runtime (rather than during a preprocessing step). Usually it produces the same results as the original jsmin.c. It differs in the following ways: . - there is no error detection: unterminated string, regex and comment literals are treated as regular javascript code and minified as such. - Control characters inside string and regex literals are left untouched; they are not converted to spaces (nor to CR) - Newline characters are not allowed inside string and regex literals, except for line continuations in string literals (ECMA-5). - "return /regex/" is recognized correctly. - Line terminators after regex literals are handled more sensibly - "+ +" and "- -" sequences are not collapsed to '++' or '--' - Newlines before ! operators are removed more sensibly - Comments starting with an exclamation mark (!) can be kept optionally - rJSmin does not handle streams, but only complete strings. (However, the module provides a "streamy" interface). . Since most parts of the logic are handled by the regex engine it's way faster than the original Python port of jsmin.c by Baruch Even. The speed factor varies between about 6 and 55 depending on input and Python version (it gets faster the more compressed the input already is). Compared to the speed-refactored Python port by Dave St.Germain the performance gain is less dramatic but still between 3 and 50 (for huge inputs)). See the docs/BENCHMARKS file for details. . This package contains the Python 3.x module.
PackageMaintainerDebian OpenStack <team+openstack@tracker.debian.org>
PackageNamepython3-rjsmin
PackageSectionpython
PackageVersion1.1.0+dfsg1-3+b4
SHA-10B711E416B3CBF1A6D9470C0AA716184E014CC02
SHA-2565912D504B44E7676101E910B328FE21AFF7AB455EDB19010B8E56AEEC1EE7CF3
Key Value
MD52D07441491394E5DEC6E03D7DEBBB42B
PackageArchx86_64
PackageDescriptionrJSmin is a Javascript minifier written in Python. The minifier is based on the semantics of jsmin.c by Douglas Crockford. The module is a re-implementation targeting speed, so it can be used at runtime (rather than during a preprocessing step).
PackageNamepython2-rjsmin
PackageRelease20.8
PackageVersion1.1.0
SHA-10C750A1ACC06A9BF487C6C3A830CD914452C9215
SHA-256DE06A94A5C85C6308D701F00847A22218C3A40B424FC2EF9CBE9E6234A04C2CF
Key Value
MD59F43FF4A9CE41D2DA29DE7D16D967423
PackageArchx86_64
PackageDescriptionrJSmin is a Javascript minifier written in Python. The minifier is based on the semantics of jsmin.c by Douglas Crockford. The module is a re-implementation targeting speed, so it can be used at runtime (rather than during a preprocessing step).
PackageNamepython2-rjsmin
PackageRelease20.16
PackageVersion1.1.0
SHA-10D5085333102BF8AF7863C52A8372FDEB6489DBC
SHA-256A43FDF86645FFA4235DBA0DA98EED7A9BD7360E2FB2CF952DB7822D9DDB5154E
Key Value
MD5264DCFEE03A146B77E13B6182F5251C5
PackageArchx86_64
PackageDescriptionrJSmin is a Javascript minifier written in Python. The minifier is based on the semantics of jsmin.c by Douglas Crockford. The module is a re-implementation targeting speed, so it can be used at runtime (rather than during a preprocessing step).
PackageNamepython3-rjsmin
PackageReleaselp152.6.7
PackageVersion1.1.0
SHA-11105DED64FCDADAF00AF13FEDED922262BDC5E48
SHA-2561885309B8C336D19607CEE7C058F3A7C00D051A0A5CA28F820F31CC64077818B