Compare commits
4 Commits
Author | SHA1 | Date |
---|---|---|
|
55a1dbdcfa | |
|
41c56e1d58 | |
|
74833ba8a2 | |
|
2d6473249b |
|
@ -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
|
2
LICENSE
2
LICENSE
|
@ -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:
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue