1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765
|
# Copyright (C) 2005-2011 Francois Meyer (dulle at free.fr)
# Copyright (C) 2012-2025 team free-astro (see more in AUTHORS file)
# Reference site is https://siril.org
# SPDX-License-Identifier: GPL-3.0-or-later
"""
Utility module for Siril Python interface providing helper functions for file operations,
package management, and standard I/O control to support Siril's scripting capabilities.
"""
import os
import sys
import io
import re
import time
import platform
import threading
import subprocess
from importlib import metadata, util
from typing import Union, List, Optional, TYPE_CHECKING, Tuple, Dict
import requests
from packaging import version as pkg_version
from packaging.specifiers import SpecifierSet
from packaging.requirements import Requirement
from .exceptions import SirilError
if TYPE_CHECKING:
from .connection import SirilInterface
def _maybe_flatpak_prefix(command):
"""
Internal method used by safe_subprocess_Popen and safe_subprocess_run to check whether we are
in a flatpak environment.
Introduced in sirilpy version 1.0.3
"""
if isinstance(command, str):
command = command.split()
if os.environ.get("container") == "flatpak":
command = ["flatpak-spawn", "--host"] + command
print(f"[Flatpak detected] Executing via host: {' '.join(command)}")
return command
def safe_subprocess_Popen(command, **kwargs):
"""
Provides a safe alternative to subprocess.Popen, accounting for the fact that a subprocess
command line may be run from a flatpak environment and require use of flatpak-spawn to ensure
it runs outside the sandbox, avoiding issues with subprocesses that rely on environment
variables and so on. safe_subprocess_Popen is a drop-in replacement for subprocess.Popen
for use in Siril scripts.
Introduced in sirilpy version 1.0.3
"""
command = _maybe_flatpak_prefix(command)
return subprocess.Popen(command, **kwargs)
def safe_subprocess_run(command, **kwargs):
"""
Provides a safe alternative to subprocess.Popen, accounting for the fact that a subprocess
command line may be run from a flatpak environment and require use of flatpak-spawn to ensure
it runs outside the sandbox, avoiding issues with subprocesses that rely on environment
variables and so on. safe_subprocess_run is a drop-in replacement for subprocess.run
for use in Siril scripts.
Introduced in sirilpy version 1.0.3
"""
command = _maybe_flatpak_prefix(command)
return subprocess.run(command, **kwargs)
def truncate_utf8(data, max_bytes):
"""
Truncates utf8 input. Accepts either bytes or str as input and
returns data in the same format as the input.
Args:
data (bytes or str): The data to be truncated
Returns:
bytes or str: The truncated data
Raises:
TypeError: if the input was not bytes or str
"""
if isinstance(data, bytes):
# Truncate raw bytes without breaking UTF-8
truncated = data[:max_bytes]
# Try decoding, backtrack if needed to avoid decoding errors
while True:
try:
truncated.decode('utf-8')
return truncated
except UnicodeDecodeError:
truncated = truncated[:-1]
if not truncated:
return b''
elif isinstance(data, str):
encoded = data.encode('utf-8')
if len(encoded) <= max_bytes:
return data
# Truncate the string by character until it encodes within the limit
for i in range(len(data) - 1, -1, -1):
sub = data[:i]
if len(sub.encode('utf-8')) <= max_bytes:
return sub
return ''
else:
raise TypeError("Expected str or bytes, got " + type(data).__name__)
def human_readable_size(bytes_size: int) -> str:
"""
Convert bytes to human-readable format.
Args:
bytes_size (int): Size in bytes
Returns:
str: Formatted size with appropriate unit (B, KB, MB, GB, TB)
Raises:
TypeError: on incorrect input type
"""
if not isinstance(bytes_size, int):
raise TypeError("bytes_size must be an int")
units = [' B', ' KB', ' MB', ' GB', ' TB']
size = float(bytes_size)
unit_index = 0
while size >= 1024 and unit_index < len(units) - 1:
size /= 1024
unit_index += 1
# Round to 2 decimal places, remove trailing zeros
return f"{size:.2f}".rstrip('0').rstrip('.') + units[unit_index]
def download_with_progress(
siril: 'SirilInterface',
url: str,
file_path: str,
max_retries: int = 3,
retry_delay: int = 5,
resume: bool = True
) -> bool:
"""
Robust file download method with native Siril progress tracking
and error handling using retries and a resume mechanism.
Args:
siril (SirilInterface): SirilInterface to use to update the progress bar
url (str): URL of the file to download
file_path (str): Local path to save the downloaded file
max_retries (int): Number of download retry attempts
retry_delay (int): Delay between retry attempts in seconds
resume (bool): Whether or not to resume a partially downloaded file or start again
Returns:
bool: True if download successful, False otherwise
Raises:
SirilError: On unhandled errors
"""
temp_file_path = file_path + '.part'
# If resume is False and the temporary file exists, delete it
if not resume and os.path.exists(temp_file_path):
os.remove(temp_file_path)
def get_file_size_and_resume_point() -> Tuple[int, int]:
"""Determine the current file size for resuming download."""
if os.path.exists(temp_file_path):
return os.path.getsize(temp_file_path), 1
return 0, 0
for attempt in range(max_retries):
try:
# Get initial file size and determine if resuming
initial_size, resume_attempt = get_file_size_and_resume_point()
# Prepare headers for partial content
headers = {}
if initial_size > 0:
headers['Range'] = f'bytes={initial_size}-'
# Establish connection with timeout
response = requests.get(url, stream=True, headers=headers, timeout=(10, 30))
response.raise_for_status()
# Determine total file size and content range
total_size = int(response.headers.get('content-length', 0))
if headers.get('Range'):
# If resuming, adjust total size
content_range = response.headers.get('Content-Range', '')
if content_range:
total_size = int(content_range.split('/')[-1])
downloaded_size = initial_size
# Progress update rate limiting
max_update_frequency = 5.0
last_update_time = 0
min_update_interval = 1 / max_update_frequency
# Open file in append mode or write mode
mode = 'ab' if initial_size > 0 else 'wb'
with open(temp_file_path, mode) as f:
for chunk in response.iter_content(chunk_size=8192):
if not chunk:
continue
f.write(chunk)
downloaded_size += len(chunk)
current_time = time.time()
# Update progress
if total_size > 0 and current_time - last_update_time >= min_update_interval:
progress = downloaded_size / total_size
# Line shortened to comply with line length limit
status = (f"Downloading... (Attempt {resume_attempt}, "
f"{human_readable_size(downloaded_size)}/{human_readable_size(total_size)})")
siril.update_progress(status, progress)
last_update_time = current_time
# Verify download completeness
if downloaded_size >= total_size:
# Rename temp file to final file
os.replace(temp_file_path, file_path)
return True
# If download is incomplete, will retry
time.sleep(retry_delay)
except requests.exceptions.RequestException as e:
# Comprehensive error handling for network-related issues
error_message = f"Download error (Attempt {attempt + 1}/{max_retries}): {str(e)}"
# Log or print error
print(error_message)
# Provide progress update for error state
siril.update_progress(error_message, 0.0)
# Wait before retrying, with exponential backoff
time.sleep(retry_delay * (attempt + 1))
except Exception as e:
# Catch any unexpected errors
error_message = f"Unexpected error during download: {str(e)}"
print(error_message)
siril.update_progress(error_message, 0.0)
raise SirilError(error_message) from e
# All retry attempts failed
raise SirilError(f"Failed to download file from {url} after {max_retries} attempts")
def ensure_installed(*packages: Union[str, List[str]],
version_constraints: Optional[Union[str, List[str]]] = None,
reinstall: Optional[bool] = False):
"""
Ensures that the specified package(s) are installed and meet optional version constraints.
Args:
*packages (str or List[str]): Name(s) of the package(s) to ensure are installed.
version_constraints (str or List[str], optional): Version constraint string(s)
(e.g. ">=1.5", "==2.0"). Can be a single constraint or a list matching packages.
reinstall (bool, optional): Forces reinstallation. Defaults to False.
Returns:
bool: True if all packages are successfully installed or already meet constraints.
Raises:
SirilError: If package installation fails,
ValueError: If a different number of constraints is provided to the number
of packages to be installed.
TimeoutError: If pip fails with an apparent timeout.
"""
# Normalize inputs to lists
if isinstance(packages[0], list):
packages = packages[0]
# Handle version constraints
if version_constraints is None:
version_constraints = [None] * len(packages)
elif isinstance(version_constraints, str):
version_constraints = [version_constraints] * len(packages)
# Ensure length consistency
if len(version_constraints) != len(packages):
raise ValueError("Number of packages must match number of version constraints")
# Track installation results
all_installed = True
for package, constraint in zip(packages, version_constraints):
# Special handling for core/builtin modules
if util.find_spec(package) is not None:
continue
try:
# Check if package is installed and meets version constraint
if _check_package_installed(package, constraint):
print(f"{package} {'is installed' if constraint is None else f'meets version {constraint}'}")
continue
# Attempt installation
_install_package(package, constraint, reinstall=reinstall)
except TimeoutError as e:
all_installed = False
print(f"Timeout error processing {package}: {e}")
raise
except Exception as e:
all_installed = False
print(f"Error processing {package}: {e}")
raise SirilError(f"Failed to install or verify package {package}") from e
return all_installed
def _check_package_installed(package_name: str, version_constraint: Optional[str] = None) -> bool:
"""
Check if a package is installed and meets version constraint.
Args:
package_name (str): Name of the package to check.
version_constraint (str, optional): Version constraint to validate.
Returns:
bool: True if package is installed and meets version constraint.
"""
try:
# Check package existence
installed_version = metadata.version(package_name)
# If no version constraint, any version is fine
if version_constraint is None:
return True
# Validate version constraint
try:
req_string = f"{package_name}{version_constraint}"
requirement = Requirement(req_string)
return pkg_version.parse(installed_version) in requirement.specifier
except ImportError:
# Fallback if packaging is not available
print("Warning: packaging library not found. Skipping precise version check.")
return True
except metadata.PackageNotFoundError:
return False
def _stream_output(process):
"""
Helper function to stream subprocess output to stdout
"""
for line in io.TextIOWrapper(process.stdout, encoding='utf-8', errors='replace'):
print(line.rstrip())
def _install_package(package_name: str, version_constraint: Optional[str] = None, from_url: Optional[str] = None,
index_url: Optional[str] = None, reinstall: Optional[bool] = False, nodeps: Optional[bool] = False):
"""
Install a package with optional version constraint, streaming pip output to stdout.
Args:
package_name (str): Name of the package to install.
version_constraint (str, optional): Version constraint for installation.
from_url (str, optional): URL to find packages at, passed as "-f URL" to pip.
index_url (str, optional): repository URL, passed as "--index-url URL" to pip.
reinstall (bool optional): whether to force reinstallation. Defaults to False.
nodeps (bool, optional): whether to install without dependencies. Defaults to
False, but occasionally useful together with reinstall=True for problematic
packages such as torch.
Note: the from_url and index_url parameters are not for general use and are only
required for certain very specific circustances.
Raises:
subprocess.CalledProcessError: If pip installation fails.
TimeoutError: if pip appears to have encountered a TimeOutError internally
"""
print(f"Installing {package_name}. This may take a few seconds...")
# Construct installation target
install_target = f"{package_name}{version_constraint}" if version_constraint else package_name
try:
# Build pip command
pip_command = [sys.executable, "-m", "pip", "install"]
# Add index-url option if index_url is provided
if index_url:
pip_command.extend(["--index-url", index_url])
# Add find-links option if from_url is provided
if from_url:
pip_command.extend(["-f", from_url])
# If required, add the --force-reinstall flag
if reinstall:
pip_command.append("--force-reinstall")
# If required, add the --no-deps flag
if nodeps:
pip_command.append("--no-deps")
# Add the package to install
pip_command.append(install_target)
# Start pip install process with pipe for stdout
with subprocess.Popen(
pip_command,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
bufsize=-1,
universal_newlines=False
) as process:
# Create and start output streaming thread
output_thread = threading.Thread(target=_stream_output, args=(process,))
output_thread.start()
# Wait for process to complete
return_code = process.wait()
output_thread.join()
if return_code == 0:
print(f"Successfully installed {install_target}")
else:
raise subprocess.CalledProcessError(return_code, process.args)
except subprocess.CalledProcessError as e:
print(f"Failed to install {install_target}")
if e.stderr and "timed out" in e.stderr.lower():
raise TimeoutError(f"Likely timeout error in pip: {e}") from e
raise
def check_module_version(requires=None):
"""
Check the version of the Siril module is sufficient to support the
script. This is not mandatory if you are only using classes,
methods etc. that are provided in the initial public release, but
if you rely on methods that are noted int he API documentation as
having been added at a particular version of the module then you
must check the running sirilpy module supports your script by
calling this function.
Siril will not show scripts with unsatisfied check_module_version()
calls in the repository list in 'Get Scripts', so if you want a
function that enables different code paths for different versions
you should use `needs_module_version()` instead.
Args:
requires (str): A version format specifier string following the
same format used by pip, i.e. it may contain
'==1.2', '!=3.4', '>5.6', '>=7.8', or a
combination such as '>=1.2,<3.4'
Returns:
True if requires = None or if the available sirilpy module version
satisfies the version specifier, otherwise False
Raises:
ValueError: if requires is an invalid version specifier.
"""
import sirilpy # pylint: disable=import-outside-toplevel
if requires is None:
return True # No version requirement
try:
# Create a SpecifierSet from the `requires` string
specifiers = SpecifierSet(requires)
# Use pkg_version from top-level import
return pkg_version.parse(sirilpy.__version__) in specifiers
except (pkg_version.InvalidVersion, ValueError) as exc:
raise ValueError(f"Invalid version specifier: {requires}") from exc
def needs_module_version(requires=None):
"""
Check the version of the Siril module is sufficient to support a
feature. This allows writing optional code paths for different sirilpy
API levels. The function works the same as check_module_version() but
the presence of an unsatisfied needs_module_version() call will not
prevent a script from showing up in the list in 'Get Scripts'
Args:
requires (str): A version format specifier string following the
same format used by pip, i.e. it may contain
'==1.2', '!=3.4', '>5.6', '>=7.8', or a
combination such as '>=1.2,<3.4'
Returns:
True if requires = None or if the available sirilpy module version
satisfies the version specifier, otherwise False
Raises:
ValueError: if requires is an invalid version specifier.
"""
import sirilpy # pylint: disable=import-outside-toplevel
if requires is None:
return True # No version requirement
try:
# Create a SpecifierSet from the `requires` string
specifiers = SpecifierSet(requires)
# Use pkg_version from top-level import
return pkg_version.parse(sirilpy.__version__) in specifiers
except (pkg_version.InvalidVersion, ValueError) as exc:
raise ValueError(f"Invalid version specifier: {requires}") from exc
class SuppressedStdout:
"""
This context manager allows suppression of the script's stdout,
which can be useful to avoid flooding the log with stdout messages
from an excessively verbose module used in the script.
Example:
.. code-block:: python
import sirilpy as s
siril = s.SirilInterface()
print("This message will appear in the Siril log")
with s.SuppressedStdout():
print("This message will not appear")
print("This message will appear again")
"""
def __init__(self):
"""Initialize attributes that will be used in context management."""
self.devnull = None
self.original_stdout_fd = None
self.original_stdout = None
def __enter__(self):
self.devnull = open(os.devnull, 'w', encoding='utf-8')
self.original_stdout_fd = os.dup(1) # Duplicate stdout (fd 1)
os.dup2(self.devnull.fileno(), 1) # Redirect stdout to devnull
self.original_stdout = sys.stdout
sys.stdout = self.devnull # Also redirect Python stdout
return self
def __exit__(self, exc_type, exc_value, traceback):
os.dup2(self.original_stdout_fd, 1) # Restore stdout
os.close(self.original_stdout_fd)
sys.stdout = self.original_stdout # Restore Python stdout
self.devnull.close()
class SuppressedStderr:
"""
This context manager allows suppression of the script's stderr, which
can be useful if you are using module functions that are known to
produce warnings that you want to avoid distracting the user with,
such as FutureWarnings of features that have become deprecated but
are in a dependency rather than your own code. The class should
be used sparingly and should **not** be used to hide evidence of
bad code.
"""
def __init__(self):
"""Initialize attributes that will be used in context management."""
self.devnull = None
self.original_stderr_fd = None
self.original_stderr = None
def __enter__(self):
self.devnull = open(os.devnull, 'w', encoding='utf-8')
self.original_stderr_fd = os.dup(2) # Duplicate stderr (fd 2)
os.dup2(self.devnull.fileno(), 2) # Redirect stderr to devnull
self.original_stderr = sys.stderr
sys.stderr = self.devnull # Also redirect Python stderr
return self
def __exit__(self, exc_type, exc_value, traceback):
os.dup2(self.original_stderr_fd, 2) # Restore stderr
os.close(self.original_stderr_fd)
sys.stderr = self.original_stderr # Restore Python stderr
self.devnull.close()
def parse_fits_header(header_text: str, include_comments: bool = False) -> Dict[str, Union[str, int, float, bool]]:
"""
Parse FITS header from text content into a dictionary with support for HIERARCH and CONTINUE keywords.
Handles Siril's newline-separated FITS header format and converts it to a dictionary
compatible with astropy.wcs.WCS. Supports extended FITS keywords via HIERARCH and
long string values via CONTINUE.
Args:
header_text: Raw header string with header cards separated by newlines.
Expected format: "KEYWORD = value / comment"
include_comments: If True, includes COMMENT and HISTORY cards in the output.
If False (default), these cards are skipped.
Returns:
Dictionary mapping FITS header keywords (str) to their parsed values.
Values are converted to appropriate Python types:
- 'T'/'F' -> bool
- Quoted strings -> str (quotes removed, with CONTINUE support for long strings)
- Numeric strings -> int or float
- Everything else -> str
- COMMENT/HISTORY cards -> str (content after keyword, if include_comments=True)
- HIERARCH keywords -> str (full hierarchical keyword preserved)
Notes:
- Filters out warning messages, tracebacks, and other non-header content
- By default ignores COMMENT and HISTORY cards (set include_comments=True to include)
- Skips malformed cards or invalid keywords
- Standard keywords must be ≤8 characters and alphanumeric (plus underscore/hyphen)
- HIERARCH keywords can be longer and contain spaces/dots
- CONTINUE cards are automatically merged with the previous string value
- Comments after '/' are ignored for regular cards
Example:
>>> header_str = '''SIMPLE = T / file conforms to FITS standard
... BITPIX = -32 / bits per pixel
... HIERARCH ESO DET CHIP1 NAME = 'CCD #1' / detector name
... LONGSTR = 'This is a very long string that needs to be '
... CONTINUE 'continued on the next line'
... COMMENT Test comment'''
>>> result = parse_fits_header(header_str)
>>> result['SIMPLE']
True
>>> result['BITPIX']
-32
>>> result['HIERARCH ESO DET CHIP1 NAME']
'CCD #1'
>>> result['LONGSTR']
'This is a very long string that needs to be continued on the next line'
"""
from typing import Dict, Union
header_dict: Dict[str, Union[str, int, float, bool]] = {}
lines = header_text.strip().split('\n')
i = 0
while i < len(lines):
line = lines[i].strip()
# Skip problematic lines
if (not line or
line.startswith(('WARNING', 'Traceback', 'ValueError', 'File ', 'During',
'Python')) or line.strip() == 'END'):
i += 1
continue
# Handle COMMENT and HISTORY cards
if line.startswith(('COMMENT', 'HISTORY')):
if include_comments:
keyword = line.split()[0]
content = line[len(keyword):].strip()
# Handle multiple COMMENT/HISTORY cards by creating a list
if keyword in header_dict:
if isinstance(header_dict[keyword], list):
header_dict[keyword].append(content)
else:
header_dict[keyword] = [header_dict[keyword], content]
else:
header_dict[keyword] = content
i += 1
continue
# Handle CONTINUE cards (must follow a string value)
if line.startswith('CONTINUE'):
if i > 0: # Make sure there's a previous card
# Find the last added string value to continue
last_key = None
for key in reversed(list(header_dict.keys())):
if isinstance(header_dict[key], str):
last_key = key
break
if last_key:
# Extract the continuation string
continue_part = line[8:].strip() # Skip 'CONTINUE'
if '/' in continue_part:
continue_part = continue_part.split('/')[0].strip()
# Remove quotes if present
if continue_part.startswith("'") and continue_part.endswith("'"):
continue_part = continue_part[1:-1]
# Append to the previous string value
header_dict[last_key] += continue_part
i += 1
continue
# Handle HIERARCH cards
if line.startswith('HIERARCH'):
if '=' in line:
try:
# For HIERARCH, the keyword can contain spaces and extends until '='
equals_pos = line.find('=')
key = line[8:equals_pos].strip() # Skip 'HIERARCH' prefix
rest = line[equals_pos + 1:]
# Use the actual keyword (without HIERARCH prefix) as the key
# Extract value (ignore comment for simplicity)
value_str = rest.split('/')[0].strip()
# Parse value
value = _parse_fits_value(value_str)
header_dict[key] = value
except Exception:
pass
i += 1
continue
# Handle regular FITS cards
if '=' in line:
try:
key, rest = line.split('=', 1)
key = key.strip()
# Validate standard FITS keyword (not HIERARCH)
if len(key) <= 8 and key.replace('_', '').replace('-', '').isalnum():
# Extract value (ignore comment for simplicity)
value_str = rest.split('/')[0].strip()
# Parse value
value = _parse_fits_value(value_str)
header_dict[key] = value
except Exception:
pass
i += 1
return header_dict
def _parse_fits_value(value_str: str) -> Union[str, int, float, bool]:
"""
Helper function to parse a FITS value string into the appropriate Python type.
Args:
value_str: The value portion of a FITS header card
Returns:
Parsed value as bool, int, float, or str
"""
value_str = value_str.strip()
# Handle boolean values
if value_str == 'T':
return True
elif value_str == 'F':
return False
# Handle quoted strings
elif value_str.startswith("'") and value_str.endswith("'"):
return value_str[1:-1]
# Handle numeric values
else:
try:
# Check if it's a float (contains decimal point or scientific notation)
if '.' in value_str or 'E' in value_str.upper() or 'D' in value_str.upper():
return float(value_str.replace('D', 'E')) # Handle Fortran double precision
else:
return int(value_str)
except ValueError:
# If conversion fails, return as string
return value_str
|