Metadata-Version: 2.1
Name: withcd
Version: 1.0.2
Summary: Change working directory utility compatible with with statements
Home-page: https://github.com/GabrieleMaurina/withcd
Author: Gabriele Maurina
Author-email: gabrielemaurina95@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# withcd
### Change working directory utility compatible with "with" statement

Changes the working directory while inside the "with" statement, then it changes the working directory back to where it was originally.

### Install

`python -m pip install withcd`

### Usage
```python
from withcd import cd
from os import getcwd

print(getcwd()) #<path>
with(cd('foo')):
    print(getcwd()) #<path>/foo
print(getcwd()) #<path>
```


