Metadata-Version: 2.1
Name: mcred
Version: 1.0.0
Summary: manage credentials from remote server
Author: Moses Dastmard
Description-Content-Type: text/markdown
License-File: LICENSE

```python
from mcred import CredManager
```


```python
credmanager = CredManager(host="host eg. 10.12.31.12", port=22, username="someusername", password="somepassword", remote_credentials_file_path="/path/to/credentials.json")
credmanager.pull()
Credentials = credmanager.get()
```
