from huggingface_hub import hf_hub_download
import joblib
model, vectorizer = joblib.load(
	hf_hub_download("emresvd/programming_language_classifier", "sklearn_model.joblib")
)
model.predict(vectorizer.transform(["print('hello world')"]))
array(['Python'], dtype=object)