Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ghaztools/tokengranterwrapper
https://github.com/ghaztools/tokengranterwrapper
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ghaztools/tokengranterwrapper
- Owner: GhazTools
- Created: 2024-06-19T03:43:48.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-22T00:39:50.000Z (5 months ago)
- Last Synced: 2024-06-23T12:56:19.093Z (5 months ago)
- Language: C++
- Size: 993 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Token Granter Wrapper
This project generates a dynamic library (dylib), Python bindings, and requires the CURL library.
## Dynamic Library
The project compiles the source code into a dynamic library (dylib). This library can be linked and used by other C++ programs.
## Python Bindings
In addition to the dynamic library, the project also generates Python bindings using Pybind11. This allows the functionality of the library to be used directly in Python programs.
## Dependencies
This project requires the CURL library. Make sure to install the CURL library on your system before building and using this project.
On macOS, you can install CURL using Homebrew:
```bash
brew install curl
```On linux, you can use apt-get
````bash
sudo apt-get update
sudo apt-get install curl libcurl4-openssl-dev```
````