mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 00:42:11 +01:00
25 lines
317 B
PHP
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`;
|
|
}
|