urlSigner

Library to sign a URL


Keywords
url, signer
License
MIT
Install
pip install urlSigner==0.0.3

Documentation

URL Signer

Installation

Install package by using

pip3 install urlSigner

Usage

  1. Set environment variable INPUT_SECRET and OUTPUT_SECRET
  2. Import package:
from urlSigner import signer
  1. Call sign function:
signedURL = signer.sign("https://www.google.com")
print(signedURL)