Quickly make files and directory structures.
Project description
treeshape allows you to quickly make file and directory structures on disk.
For example:
from treeshape import ( CONTENT, make_tree, PERMISSIONS, ) make_tree('.', { 'logs/': None, 'README': {CONTENT: "A simple directory layout\n"}, 'data/input': {CONTENT: "All of our input data\n"}, 'bin/script': {CONTENT: "#!/bin/sh\necho 'Hello'\n", PERMISSIONS: 0755}, })
Will create a directory structure that looks like this:
$ find . . ./logs ./data ./data/input ./README $ cat README A simple directory layout $ cat data/input All of our input data
This is particularly useful for tests that touch the disk.
If being explicit isn’t really your thing, you can also create the same directory structure from a rough specification:
from treeshape import ( from_rough_spec, make_tree, ) make_tree('.', from_rough_spec([ 'logs/', ('README', "A simple directory layout\n"), ('data/input', "All of our input data\n"), ('bin/script', "#!/bin/sh\necho 'Hello'\n", 0755), ]))
This is also provided as a Fixture (see python-fixtures). Thus, if you are using testtools, then you can also do this during your tests:
def test_a_thing(self): self.useFixture(FileTree(from_rough_spec([ 'logs/', ('README', "A simple directory layout\n"), ('data/input', "All of our input data\n"), ]))) # your test here
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
treeshape-0.2.1.tar.gz
(9.5 kB
view details)
File details
Details for the file treeshape-0.2.1.tar.gz
.
File metadata
- Download URL: treeshape-0.2.1.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5afaf99c277e35e1f18d75af8f6d35c089353302dada35de51d9a1869377a0e8 |
|
MD5 | 950872f6a062bb07e7fa58abbf93f6c4 |
|
BLAKE2b-256 | b5449d3b3a60c7e65b062ab58927bd0a20faf038888783e94bd77992304cede2 |