Preparing search index...
    • Hook to check if the Python scraper is ready.

      Use this to conditionally enable/disable web parsing features while Python is still loading.

      Returns boolean

      function WebParsingButton() {
      const isPythonReady = usePythonReady();

      return (
      <Button
      disabled={!isPythonReady}
      onPress={handleParse}
      >
      {isPythonReady ? 'Parse Recipe' : 'Loading...'}
      </Button>
      );
      }