bagit-python icon indicating copy to clipboard operation
bagit-python copied to clipboard

Work with BagIt packages from Python.

Results 69 bagit-python issues
Sort by recently updated
recently updated
newest added

If I'm understanding correctly the [spec](https://datatracker.ietf.org/doc/html/draft-kunze-bagit-08#section-5.2) fetch items are listed in 'manifest-.txt'. However, if I try to a file there (with the checksum) and have it also in fetch.txt, the...

As mentioned in issue #166, `self.path` shouldn't be None. This removes the default value of None and removes the check for None. `os.path.abspath` will remove any trailing slash (except for...

From `bagit.py`: ```python class Bag(object): # [...] def __init__(self, path=None): # [...] self.path = abspath(path) if path: # if path ends in a path separator, strip it off if path[-1]...

Sorry if this is already a topic and I missed it, but I'm having an issue where bagit sporadically does not create manifests for files in the payload. It moves...

Related to https://github.com/LibraryOfCongress/bagit-python/issues/137 It seems there is an indentation error / bug causing validation to _always_ default to fast validation — meaning checksums are not being checked — only the...

The last release of this software ( on [PyPi](https://pypi.org/project/bagit/) ) was `1.8.1` in Feb 2021. The GitHub release page is even older showing `1.7.0`. @acdha What are your thoughts on...

Thank you for developing bagit! Would it be possible to help users determine the security of the bagit repo by looking into some of the practices in the [openssf scorecard](https://scorecard.dev/)...

This could use some more testing, but it seems to work perfectly. I added new arguments, "destination" and "name." If destination is used, the contents of the source directory will...

## Summary This PR adds an automated transfer tool that helps users batch-process multiple folders using the BagIt format. The tool addresses common use cases where users need to transfer...

We recently began bagging on domain-joined Windows workstations as opposed to 'Forensic Workstations' which are off the network. We have noticed on Windows that the 'data' folder is only accessible...