Skip to main content

file structure generator with onefile script

Project description

filegen
========================================

.. code-block:: python

fg = Filegen()
with fg.dir("foo"):
with fg.file("hello.txt") as wf:
wf.write("hello")

with fg.dir("bar"):
with fg.file("x") as wf:
wf.write("x")

with fg.file("bye.txt") as wf:
wf.write("bye")

fg.to_python_module()


generated files ::

foo/
├── __init__.py
├── bar
│ ├── __init__.py
│ └── x
├── bye.txt
└── hello.txt

making file-structure generating application
----------------------------------------

Using `FilegenApplication` for creating file structure generating command.
Writing a script file such as below.

.. code-block:: python

# myscript.py
if __name__ == "__main__":
from filegen import Filegen, FilegenApplication

fg = Filegen()
with fg.dir("foo"):
with fg.file("bar.py") as wf:
wf.write("# this is comment file")
with fg.file("readme.txt") as wf:
wf.write("# foo")
FilegenApplication().run(fg.to_string)

then.

.. code-block:: shell

$ python myscript.py /tmp
d:/tmp
d:/tmp/foo
f:/tmp/foo/bar.py
# this is comment file
d:/tmp/foo
f:/tmp/foo/readme.txt
# foo

$ python myscript.py /foo/bar
d:/foo/bar
d:/foo/bar/foo
f:/foo/bar/foo/bar.py
# this is comment file
d:/foo/bar/foo
f:/foo/bar/foo/readme.txt
# foo

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

filegen-0.1.tar.gz (3.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page