Skip to main content

Extremely simple helper for the memory-tempfile package

Project description

pytmpfile

Extremely simple helper for memory-tempfile. Intended to use in non-Python programs requiring files (e.g., GCC).

Usage:

from pytmpfile import get_tmp_path
import os


if __name__ == '__main__':
    with get_tmp_path(content='print("hello")\n', suffix='.py') as tmp_path:
        print(f'{tmp_path} exists inside context manager: {os.path.exists(tmp_path)}')
        print('And it has this content:')
        with open(tmp_path, 'r') as f:
            print(f.read())
    print(f'{tmp_path} exists outside context manager: {os.path.exists(tmp_path)}')

Output:

/run/user/1000/tmpemeg9rhm.py exists inside context manager: True
And it has this content:
print("hello")

/run/user/1000/tmpemeg9rhm.py exists outside context manager: False

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

pytmpfile-0.2.1.tar.gz (3.1 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