https://github.com/alecloudenback/keyring.jl
https://github.com/alecloudenback/keyring.jl
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/alecloudenback/keyring.jl
- Owner: alecloudenback
- License: mit
- Created: 2024-05-01T04:03:41.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-06T10:39:13.000Z (about 2 years ago)
- Last Synced: 2025-03-05T17:57:58.948Z (over 1 year ago)
- Language: Julia
- Size: 104 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Keyring
[](https://alecloudenback.github.io/Keyring.jl/stable/)
[](https://alecloudenback.github.io/Keyring.jl/dev/)
[](https://github.com/alecloudenback/Keyring.jl/actions/workflows/CI.yml?query=branch%3Amain)
Provides access to system keystores.
## Quickstart
```julia
using Keyring
set_credential("my_target", "my_username", "my_secret")
c = get_credential("my_target")
c.target # "my_target"
c.username # "my_username"
c.secret # "my_secret"
```
## Supported platforms:
- Windows
## Inspired by
[keyring (Python)](https://github.com/jaraco/keyring)