Skip to main content

jit-open: Just in time open files..

Project description

# Just in time open files. This package provides a way to delay opening files until the something is written to the file handle. This can be convenient when opening a large number of files of which most of them will not be used.

## Installation Via [pypi](https://pypi.python.org/pypi/jit-open):

pip install jit_open

From source:

git clone https://git.lumc.nl/j.f.j.laros/jit-open.git cd jit_open pip install .

## Library The library provides the JITOpen class. Full documentation can be found [here](https://git.lumc.nl/j.f.j.laros/jit-open).

### Usage In the following example, only the file used.txt is created.

`python >>> from jit_open import JITOpen >>> >>> used = JITOpen("used.txt", "w") >>> unused = JITOpen("unused.txt", "w") >>> >>> used.write("line 1\n") >>> used.write("line 2\n") `

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

jit-open-0.0.2.tar.gz (2.5 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