Spaces:
Sleeping
Sleeping
File size: 1,166 Bytes
f16bb9f 599fb2e f16bb9f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
"""
File: requirements_app.py
Author: Dmitry Ryumin, Maxim Markitantov, Elena Ryumina, Anastasia Dvoynikova, and Alexey Karpov
Description: Project requirements for the Gradio app.
License: MIT License
"""
import polars as pl
# Importing necessary components for the Gradio app
from app.config import config_data
def read_requirements(file_path="requirements.txt"):
with open(file_path, "r") as file:
lines = file.readlines()
data = []
def pypi(x: str) -> str:
return (
f"<a href='https://pypi.org/project/{x}' target='_blank'>"
f"<img src='https://img.shields.io/pypi/v/{x}' alt='PyPI' /></a>"
)
for line in lines:
split_line = line.strip().split("==")
if len(split_line) == 2:
library, recommended_version = split_line
data.append(
{
config_data.Requirements_LIBRARY: library,
config_data.Requirements_RECOMMENDED_VERSION: recommended_version,
config_data.Requirements_CURRENT_VERSION: pypi(library),
}
)
df = pl.DataFrame(data)
return df
|