-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
117955e
commit 93fd14f
Showing
12 changed files
with
1,199 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[[source]] | ||
url = "https://pypi.python.org/simple" | ||
verify_ssl = true | ||
name = "pypi" | ||
|
||
[dev-packages] | ||
|
||
[packages] | ||
|
||
scandir = "*" | ||
pyyaml = "*" | ||
nose = "*" | ||
fstrings = "*" | ||
click = "*" | ||
scrim = "*" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
fsfs | ||
==== | ||
Tag and store metadata on your filesystem. | ||
|
||
|
||
How it looks | ||
============ | ||
|
||
Command line:: | ||
|
||
> fsfs tag project --root=tmp/project_dir | ||
> fsfs search project | ||
.../tmp/project_dir | ||
> fsfs write -k start_frame 100 -k end_frame 200 --root=tmp/project_dir | ||
> fsfs read --root=tmp/project_dir | ||
{ | ||
'start_frame': 100, | ||
'end_frame': 200 | ||
} | ||
|
||
Python:: | ||
|
||
>>> import fsfs | ||
>>> fsfs.tag('tmp/project_dir', 'project') | ||
>>> fsfs.search('.', 'project') | ||
.../tmp/project_dir | ||
>>> fsfs.write('tmp/project_dir', start_frame=100, end_frame=100) | ||
>>> fsfs.read('tmp/project_dir') | ||
{ | ||
'start_frame': 100, | ||
'end_frame': 200 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import absolute_import | ||
__author__ = 'Dan Bradham' | ||
__title__ = 'fsfs' | ||
__author__ = 'Dan Bradham' | ||
__email__ = '[email protected]' | ||
__url__ = 'http://github.com/fsfs.git' | ||
__version__ = '0.0.3' | ||
__license__ = 'NO LICENSE' | ||
__description__ = 'tag filesystem locations and store metadata' | ||
|
||
from fsfs.api import * | ||
from fsfs.models import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import absolute_import | ||
from fsfs.cli import cli | ||
|
||
if __name__ == '__main__': | ||
cli() |
Oops, something went wrong.