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 frequently used. To deal with resource limits a queue is used from which, when full, the least frequent file is closed.
## 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 Handle and Queue classes. 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 Handle, Queue >>> >>> queue = Queue() >>> used = Handle("used.txt", queue) >>> unused = Handle("unused.txt", queue) >>> >>> 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
File details
Details for the file jit-open-0.0.3.tar.gz.
File metadata
- Download URL: jit-open-0.0.3.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb622ad0884653f490151aa84d42e613224627e313e19a59168198b41aaea431
|
|
| MD5 |
bbc1672d8f5dc306b2e4bdb7e56db08e
|
|
| BLAKE2b-256 |
57e3021d274a674cc507f8debe31f0e4e006d48195ea738f7d4b30247aadd07a
|