A package for recording directory and file information.
Project description
treerec
treerec is a Python module which allows the user to record information about a directory tree and its contents. It provides a command-line interface for creating, navigating, updating, and saving "Trees", which record the file structure and metadata of files on the system.
The primary use case is when there are many different devices whose files are being backed up to a single archive. By recording the files present on the devices, and linking the file in their Trees to the archive's Tree, you can keep track of where each file came from, where copies of it are being held, and which one is the most up-to-date.
Installation
pip install treerec
Usage
treerec can be executed from the command line,
python3 -m treerec
or in a Python interactive session through the TreeObj_Cursor class:
from treerec import TreeObj_Cursor
C = TreeObj_Cursor()
C.execute('type command to be executed')
C.mainloop() # starts interactive session
For a better introduction to using treerec, see Getting Started.
While running an interactive session, type help to get a list of the most useful commands. Help is also available for each command individually with the cmd -h flag.
When you have a Tree loaded, you will be given an interactive prompt:
|TreeName>
By default, a Tree name of $ represents the host system. You have access to basic directory commands, such as cd, ls, and pwd.
The Tree behaves like a directory tree. The contents of the Tree's files mirror the system's, but the Tree can be traversed independently of the system. By using ls on the current tree, you see the contents of the Tree's current directory:
|TreeName> ls
x [] testdir
x a.txt
x b.txt
x c.txt
Directories are marked with [], and unrecorded entries are marked with x.
To record files to a Tree, a few variables must be set:
- Session: every action to a Tree is associated with a named Session, to help keep track of when the changes occurred.
- On-system: the Tree must be declared "on system"--meaning that the Tree is on the system that it is intended for--so we can be sure that the Tree's directory structure mirrors the system's.
- Active: the Tree must be active for any changes to take place. This is to prevent any modification to a Tree that is only meant to be viewed.
The "on-system" and "active" properties are indicated next to the Tree name prompt:
ao|TreeName>
To record an entry, use:
ao|TreeName> rec a.txt
The Tree now has unsaved data, indicated next to the Tree name prompt:
uao|TreeName>
We can now view the file's metadata, including an SHA256 hash:
Name: a.txt
Type: file
Owner: User
Device: TestSystem
- Tree Path: O:/a.txt
- Nickname Path: (Root)/f.txt
- OS Type: nt
- Created: Sat Dec 30 15:07:41 2023
- Modified: Sat Dec 30 15:07:41 2023
- Accessed: Sun Jan 7 16:18:12 2024
- Hash: 08618b41f001901ae45cba77aaa50ada1b1b7d28368f8af45560af4675388f37
> Notes: 0
> Ties: 0
> History: 1
> Recorded: Session "TreeName Session" @ Sun Jan 28 16:24:42 2024
> Last modified: Session "TreeName Session" @ Sun Jan 28 16:24:42 2024
We can also "tie" two files together, to indicate that they should be thought of as the same file, on two different systems:
a |TreeName> tie a.txt SecondTree a.txt
|TreeName> ties a.txt
>> a.txt <SecondSystem>
P:/a.txt
(Root)/a.txt
Session: Tying Session
---------------
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file treerec-1.0.4.tar.gz.
File metadata
- Download URL: treerec-1.0.4.tar.gz
- Upload date:
- Size: 46.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fcc9444deb78f32c2bd6843ddbb0362d346b327b4236e030b9cd1d58afe1b31
|
|
| MD5 |
0fb4eb09ff5ade68a88ecce04de4db5a
|
|
| BLAKE2b-256 |
c7f5c06887a5e94a031a4dc86c18f2e9dc1f516e1e7b3ecf56ab352f21091141
|
File details
Details for the file treerec-1.0.4-py3-none-any.whl.
File metadata
- Download URL: treerec-1.0.4-py3-none-any.whl
- Upload date:
- Size: 50.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
736de18e9eb479dcb38f486cb0c3441820e4fff09d93ec5831c9bdb02d3d3fa8
|
|
| MD5 |
6b9d8745a0d5573c8e64ec643e9121f4
|
|
| BLAKE2b-256 |
e97df659374e3e8f57a01de5b0254dcb3697098ca7ac4c247197db0955b9e961
|