Metadata-Version: 2.1
Name: withcd
Version: 1.0.0
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

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

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

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


