# cfv – Command-line File Verify
cfv is a utility to test and create a wide range of checksum verification files.
It currently supports testing and creating sfv, sfvmd5, csv, csv2, csv4, md5, bsdmd5, sha1, sha224,
sha256, sha384, sha512, torrent and crc files.
Test-only support is available for par, par2.
cfv was originally written by Matthew Mueller ([original project home](http://cfv.sourceforge.net/)).
This is a [friendly fork of cfv](https://github.com/cfv-project/cfv) maintained by Lisa Gnedt.
[](https://github.com/cfv-project/cfv/actions/workflows/ci-python3.yml?query=branch%3Apython3)
[](https://github.com/cfv-project/cfv/actions/workflows/ci-python3-freebsd.yml?query=branch%3Apython3)
[](https://pypi.org/project/cfv/)
[](https://pypi.org/project/cfv/)
[](https://pypi.org/project/cfv/)
[](https://pypi.org/project/cfv/)
## Requirements
Python ≥ 3.7 – older versions might work, but are unsupported.
For Python 2 support, see the [python2 branch](https://github.com/cfv-project/cfv/tree/python2).
### Optional
* [Python Imaging Library (PIL)](https://www.pythonware.com/products/pil/) or
[Pillow](https://python-pillow.org/) – only needed if you want to create the
dimensions column of .crc files.
## Install
You can get the latest releases via the [Python Package Index (PyPI)](https://pypi.org/project/cfv/)
or from the [Github releases page](https://github.com/cfv-project/cfv/releases).
Other distribution ways are work-in-progress, see [issue #4](https://github.com/cfv-project/cfv/issues/4).
### From PyPI
If you have a working Python installation with pip, you can install via PyPI:
```sh
pip install cfv
```
### From Source
Download a snapshot from the [Github releases page](https://github.com/cfv-project/cfv/releases)
or checkout the development version via Git.
```sh
pip install .
# optional: run tests to verify correct operation
cd test; ./test.py
```
### From OS-specific Repositories
#### Arch Linux
To install the development version from [AUR](https://aur.archlinux.org/packages/cfv-git) (maintained by @vestingz):
```sh
yay -S cfv-git
```
#### FreeBSD
A FreeBSD port is available (maintained by @Terry-Kennedy).
To install the pre-built package (updated quarterly, so may be out-of-date):
```sh
pkg install cfv
```
To build from source (make sure your source tree is up-to-date via any of the usual methods):
```sh
cd /usr/ports/security/cfv
make; make install; make clean
```
To update the pre-built package:
```sh
pkg upgrade cfv
```
To update from source (again, make sure your source tree is up-to-date):
```sh
portupgrade cfv
```
#### NixOS
To use the latest version included in [nixpkgs](https://search.nixos.org/packages?channel=unstable&show=cfv) (maintained by @jjtt):
```sh
nix-shell -p cfv
```
## Usage
Please read the man page `man cfv` or the usage `cfv -h` and have fun ☺️
## Contributions
Contributions are welcome, just open a pull request ☺️
## Alternative Tools
Here is a community-compiled list of alternative tools that cover some of cfv's functionality (without warranty):
* GNU coreutils \*sum: md5sum, sha1sum, sha224sum, sha256sum, sha384sum, sha512sum, ...
* cksfv
* [rhash](https://github.com/rhash/RHash) (with `-rc` does more or less the same thing as cfv, performance is good and it supports most hash formats including bittorrent. It lacks cfv's `-m` though.)
* aria2c (to verify torrent checksums)
* bsdsfv (limited to 1024 files for some reason)
* pure-sfv (doesn't seem to display progress information, even with `-v`)
* [bcfv](https://github.com/jarppiko/bcfv) (a Bash frontend to checksum programs (SHA, Blake3, MD5))
## Copying
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
See the file `COPYING` for more information.
Raw data
{
"_id": null,
"home_page": null,
"name": "cfv",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": null,
"keywords": "cfv, checksum, verify, sfv, csv, crc, bsdmd5, md5sum, sha1sum, sha224sum, sha256sum, sha384sum, sha512sum, torrent, par, par2",
"author": "Lisa Gnedt (Current Maintainer)",
"author_email": "cfv-project@davizone.at",
"download_url": "https://files.pythonhosted.org/packages/90/e2/4982f414f04c47c5344739ecc6dfd70fe75139d0672e0b080929aea309f9/cfv-3.2.0.tar.gz",
"platform": null,
"description": "# cfv \u2013 Command-line File Verify\n\ncfv is a utility to test and create a wide range of checksum verification files.\nIt currently supports testing and creating sfv, sfvmd5, csv, csv2, csv4, md5, bsdmd5, sha1, sha224,\nsha256, sha384, sha512, torrent and crc files.\nTest-only support is available for par, par2.\n\ncfv was originally written by Matthew Mueller ([original project home](http://cfv.sourceforge.net/)).\nThis is a [friendly fork of cfv](https://github.com/cfv-project/cfv) maintained by Lisa Gnedt.\n\n[](https://github.com/cfv-project/cfv/actions/workflows/ci-python3.yml?query=branch%3Apython3)\n[](https://github.com/cfv-project/cfv/actions/workflows/ci-python3-freebsd.yml?query=branch%3Apython3)\n[](https://pypi.org/project/cfv/)\n[](https://pypi.org/project/cfv/)\n[](https://pypi.org/project/cfv/)\n[](https://pypi.org/project/cfv/)\n\n## Requirements\n\nPython \u2265 3.7 \u2013 older versions might work, but are unsupported.\nFor Python 2 support, see the [python2 branch](https://github.com/cfv-project/cfv/tree/python2).\n\n### Optional\n\n* [Python Imaging Library (PIL)](https://www.pythonware.com/products/pil/) or\n [Pillow](https://python-pillow.org/) \u2013 only needed if you want to create the\n dimensions column of .crc files.\n\n## Install\n\nYou can get the latest releases via the [Python Package Index (PyPI)](https://pypi.org/project/cfv/)\nor from the [Github releases page](https://github.com/cfv-project/cfv/releases).\nOther distribution ways are work-in-progress, see [issue #4](https://github.com/cfv-project/cfv/issues/4).\n\n### From PyPI\n\nIf you have a working Python installation with pip, you can install via PyPI:\n\n```sh\npip install cfv\n```\n\n### From Source\n\nDownload a snapshot from the [Github releases page](https://github.com/cfv-project/cfv/releases)\nor checkout the development version via Git.\n\n```sh\npip install .\n# optional: run tests to verify correct operation\ncd test; ./test.py\n```\n\n### From OS-specific Repositories\n\n#### Arch Linux\n\nTo install the development version from [AUR](https://aur.archlinux.org/packages/cfv-git) (maintained by @vestingz):\n\n```sh\nyay -S cfv-git\n```\n\n#### FreeBSD\n\nA FreeBSD port is available (maintained by @Terry-Kennedy).\n\nTo install the pre-built package (updated quarterly, so may be out-of-date):\n\n```sh\npkg install cfv\n```\n\nTo build from source (make sure your source tree is up-to-date via any of the usual methods):\n\n```sh\ncd /usr/ports/security/cfv\nmake; make install; make clean\n```\n\nTo update the pre-built package:\n\n```sh\npkg upgrade cfv\n```\n\nTo update from source (again, make sure your source tree is up-to-date):\n\n```sh\nportupgrade cfv\n```\n\n#### NixOS\n\nTo use the latest version included in [nixpkgs](https://search.nixos.org/packages?channel=unstable&show=cfv) (maintained by @jjtt):\n\n```sh\nnix-shell -p cfv\n```\n\n## Usage\n\nPlease read the man page `man cfv` or the usage `cfv -h` and have fun \u263a\ufe0f\n\n## Contributions\n\nContributions are welcome, just open a pull request \u263a\ufe0f\n\n## Alternative Tools\n\nHere is a community-compiled list of alternative tools that cover some of cfv's functionality (without warranty):\n\n* GNU coreutils \\*sum: md5sum, sha1sum, sha224sum, sha256sum, sha384sum, sha512sum, ...\n* cksfv\n* [rhash](https://github.com/rhash/RHash) (with `-rc` does more or less the same thing as cfv, performance is good and it supports most hash formats including bittorrent. It lacks cfv's `-m` though.)\n* aria2c (to verify torrent checksums)\n* bsdsfv (limited to 1024 files for some reason)\n* pure-sfv (doesn't seem to display progress information, even with `-v`)\n* [bcfv](https://github.com/jarppiko/bcfv) (a Bash frontend to checksum programs (SHA, Blake3, MD5))\n\n## Copying\n\nThis program is free software; you can redistribute it and/or modify it under\nthe terms of the GNU General Public License as published by the Free Software\nFoundation; either version 2 of the License, or (at your option) any later\nversion.\nSee the file `COPYING` for more information.\n",
"bugtrack_url": null,
"license": null,
"summary": "Command-line File Verify - versatile file checksum creator and verifier",
"version": "3.2.0",
"project_urls": {
"Bug Tracker": "https://github.com/cfv-project/cfv/issues",
"Changelog": "https://github.com/cfv-project/cfv/blob/python3/Changelog",
"Homepage": "https://github.com/cfv-project/cfv",
"Original Project": "http://cfv.sourceforge.net/",
"Source Code": "https://github.com/cfv-project/cfv"
},
"split_keywords": [
"cfv",
" checksum",
" verify",
" sfv",
" csv",
" crc",
" bsdmd5",
" md5sum",
" sha1sum",
" sha224sum",
" sha256sum",
" sha384sum",
" sha512sum",
" torrent",
" par",
" par2"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "002b7b9f31254e3231ce6f2cab16a04fee2779c3c40a1cdced51b4e26191b353",
"md5": "f0265dae88caf3c419bb2d9039dff804",
"sha256": "024ea0342f96a6374e42c5f98a0f4f41a325aa9e58d005423e854bc62a62a989"
},
"downloads": -1,
"filename": "cfv-3.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f0265dae88caf3c419bb2d9039dff804",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 50428,
"upload_time": "2025-11-02T17:07:05",
"upload_time_iso_8601": "2025-11-02T17:07:05.684701Z",
"url": "https://files.pythonhosted.org/packages/00/2b/7b9f31254e3231ce6f2cab16a04fee2779c3c40a1cdced51b4e26191b353/cfv-3.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "90e24982f414f04c47c5344739ecc6dfd70fe75139d0672e0b080929aea309f9",
"md5": "f7778a4b53c81fbf91bcb3b4615a2922",
"sha256": "090d453fc9beeb9cf37ae8edf7ebae3d9686ac9382d4bea5df9191b429e6403c"
},
"downloads": -1,
"filename": "cfv-3.2.0.tar.gz",
"has_sig": false,
"md5_digest": "f7778a4b53c81fbf91bcb3b4615a2922",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 53550,
"upload_time": "2025-11-02T17:07:07",
"upload_time_iso_8601": "2025-11-02T17:07:07.298404Z",
"url": "https://files.pythonhosted.org/packages/90/e2/4982f414f04c47c5344739ecc6dfd70fe75139d0672e0b080929aea309f9/cfv-3.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-11-02 17:07:07",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "cfv-project",
"github_project": "cfv",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "cfv"
}