Files
phpy/tools/gen-all-lib.php
2023-12-12 16:31:36 +08:00

25 lines
317 B
PHP

#!/usr/bin/env php
<?php
$list = [
'ast',
'base64',
'calendar',
'json',
'matplotlib.pyplot',
'os',
'pickle',
'random',
'string',
'subprocess',
'sys',
'threading',
'tkinter',
'torch',
'uuid'
];
foreach ($list as $module) {
`php gen-lib.php $module`;
}