Metadata-Version: 2.1
Name: temp
Version: 2020.4.16
Summary: temp.tempdir(), temp.tempfile() functions
Home-page: https://github.com/andrewp-as-is/temp.py
License: Unlicense
Description: <!--
        https://pypi.org/project/readme-generator/
        https://pypi.org/project/python-readme-generator/
        -->
        
        [![](https://img.shields.io/pypi/pyversions/temp.svg?longCache=True)](https://pypi.org/project/temp/)
        [![](https://img.shields.io/badge/License-Unlicense-blue.svg?longCache=True)](https://unlicense.org/)
        
        #### Installation
        ```bash
        $ [sudo] pip install temp
        ```
        
        #### Functions
        function|`__doc__`
        -|-
        `temp.tempdir()` |create temp dir and return path
        `temp.tempfile()` |create temp file and return path
        
        #### Examples
        ```python
        >>> import temp
        >>> temp.tempdir() # dir
        '/var/folders/rv/gy6_gnfs1d7_pd1518p27tsr0000gn/T/tmpqlLDxb'
        
        >>> temp.tempfile() # file
        '/var/folders/rv/gy6_gnfs1d7_pd1518p27tsr0000gn/T/tmpsctFHJ'
        
        >>> temp.TMPDIR
        '/var/folders/rv/gy6_gnfs1d7_pd1518p27tsr0000gn/T'
        ```
        
        <p align="center">
            <a href="https://pypi.org/project/python-readme-generator/">python-readme-generator</a>
        </p>
Keywords: temp,tempdir,tempfile
Platform: UNKNOWN
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
