# Command-Line Reference Complete reference for all PyImport command-line options. ## Usage ```bash pyimport [OPTIONS] [FILES...] ``` ## Basic Options ### `--version`, `-v` Display PyImport version and exit. ```bash pyimport --version # Output: pyimport 1.10.0 ``` ### `--help`, `-h` Show help message with all available options. ```bash pyimport --help ``` ### `filenames` One or more CSV files to import. Can be local files or URLs. ```bash # Single file pyimport data.csv # Multiple files pyimport file1.csv file2.csv file3.csv # From URL pyimport https://example.com/data.csv ``` ### `--filelist FILENAME` Read list of files to import from a text file (one file per line). ```bash # Create file list cat > files.txt <