binsento42 / Cathy

Cross-platform python implementation of Robert Vasicek's Win-only popular Cathy disk catalog tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cathy-python

Cross-platform python implementation of Robert Vasicek's Win-only popular Cathy disk catalog tool (http://rva.mtg.sk/). Mainly intended for providing osx and linux support, since the original already works for Windows, but Windows is also supported. No GUI, mainly intended for simple cli search of existing .caf files and also automatic scanning of (backup) disks. The code should work for python 2 as well as 3.

For CLI operation only the cathy.py file is needed. The other stuff is for the Flask browser GUI version. The cathy.py file has to be in the directory where the .caf files are located. Generated .caf files are put in the same directory as the python file. To avoid a lot of troublesome dependencies some infoz are gathered via shell commands. In some configurations this might not work at all and it might stop working with new os updates.

Usage:

python cathy.py search keyword(s)

to search for a specific term in all caf files. Keyword(s) can be multiple keywords separated by spaces, but then quotes are necessary (i.e. python cathy.py search "my photos"). Search only shows match if a filename contains all the keywords (logical AND).

python cathy.py scan path

scans the directory tree from path and generates a Cathy compatible file with the volume label name in the cathy.py dir (not sure what happens if the disk has no label). For windows path should be the drive letter (i.e. 'f:'), for linux and osx it is best to use the full mounted path (i.e. /Volumes/NewDisk or /media/usb). Warning: Existing caf files are silently overwritten!

python cathy.py scanarchive path

same as scan, but sets the archive flag. I'm not sure what the original Cathy implementation for the archive flag is, but in this python version archive disks are skipped by search

python cathy.py usage

provides a list of all cataloged disks (caf files) with their free/used/total space.

python cathy.py export caf-file

creates a csv export file with the same name as the caf file but csv format and extension

Browser GUI based on Flask

A first Python Flask browser implementation is now also provided. You'll need flask. Do 'pip install flask'

Then run the server with 'python3 app.py path-to-caf-files'

With your browser go to 'localhost:5000' and browse through your offline disks (caf files) and directories and perform a search. Scan is not implemented in the browser version, you'll have to scan disks using CLI.

About

Cross-platform python implementation of Robert Vasicek's Win-only popular Cathy disk catalog tool

License:Creative Commons Zero v1.0 Universal


Languages

Language:Python 79.8%Language:HTML 13.1%Language:JavaScript 5.8%Language:CSS 1.3%