Equivalent of hyp2f1 in Julia

I am translating some Python code to Julia that uses the SciPy function hyp2f1.
What would be the equivalent function in Julia?

https://docs.scipy.org/doc/scipy/reference/generated/scipy.special.hyp2f1.html

HyperGeometricFunctions.jl

Thank you. I will try:

using HyperGeometricFunctions
_₂F₁(a, b; c; z)
1 Like