Compare commits

...

4 Commits
0.1.0 ... main

Author SHA1 Message Date
Matúš Námešný 55a1dbdcfa
Update LICENSE 2023-12-17 21:13:05 +01:00
LordMathis 41c56e1d58 Use trusted publishing 2023-12-17 21:12:18 +01:00
LordMathis 74833ba8a2 Add docstrings 2023-12-17 21:11:36 +01:00
LordMathis 2d6473249b Update README 2023-12-17 21:11:24 +01:00
4 changed files with 12 additions and 6 deletions

View File

@ -9,6 +9,8 @@ jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@master
- name: Set up Python 3.10
@ -28,7 +30,5 @@ jobs:
- name: Build a binary wheel
run: >-
python setup.py sdist bdist_wheel
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2023 Mathis
Copyright (c) 2023 Matúš Námešný
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@ -1,6 +1,6 @@
# Mlflow Plugin Proxy Auth
Provides authentication to Mlflow server using [Proxy-Authorization](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Proxy-Authorization).
Provides authentication to Mlflow server using [Proxy-Authorization](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Proxy-Authorization) header.
## Usage

View File

@ -1,3 +1,5 @@
"""Mlflow plugin proxy auth"""
import base64
import os
@ -8,6 +10,8 @@ from requests.auth import AuthBase
class ProxyAuthProvider(RequestAuthProvider):
""""Mlflow plugin class"""
def __init__(self):
self.username = os.getenv("MLFLOW_PROXY_USERNAME")
self.password = os.getenv("MLFLOW_PROXY_PASSWORD")
@ -20,6 +24,8 @@ class ProxyAuthProvider(RequestAuthProvider):
class ProxyAuth(AuthBase):
"""Requests proxy auth class"""
def __init__(self, username, password):
self.username = username
self.password = password