Hi All,
today I released gretl4py 0.31 for four leading operating systems:
windows (x86 and arm64), macOS (intel and arm64), and linux (x86). To
install the package just call: 'python(.exe) -m pip install gretl4py'.
The most important change (comparing to 0.30) is that all official gretl
addons are now bundled with gretl4py distribution. So, for example, if
one wants to estimate garch model via gig package, here is a snippet:
<python>
import gretl
gretl.include("gig")
OPTS = gretl.gig_setup( params )
res = gretl.gig_estimate(OPTS)
</python>
Marcin