arvi 0.2.2__py3-none-any.whl → 0.2.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of arvi might be problematic. Click here for more details.

arvi/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- __all__ = ['RV']
1
+ __all__ = ['RV', 'config', 'simbad', 'gaia']
2
2
 
3
3
  from importlib.metadata import version, PackageNotFoundError
4
4
  try:
@@ -8,17 +8,15 @@ except PackageNotFoundError:
8
8
  pass
9
9
 
10
10
  from .config import config
11
- from .timeseries import RV
12
-
13
11
  from .simbad_wrapper import simbad
12
+ from .gaia_wrapper import gaia
14
13
 
15
-
16
- ## OLD
17
- # # the __getattr__ function is always called twice, so we need this
18
- # # to only build and return the RV object on the second time
19
- # _ran_once = False
14
+ from .timeseries import RV
20
15
 
21
16
  def __getattr__(name: str):
17
+ if not config.fancy_import:
18
+ raise AttributeError
19
+
22
20
  if name in (
23
21
  '_ipython_canary_method_should_not_exist_',
24
22
  '_ipython_display_',
@@ -31,15 +29,5 @@ def __getattr__(name: str):
31
29
  globals()[name] = RV(name)
32
30
  return globals()[name]
33
31
  except ValueError as e:
34
- raise ImportError(e) from None
35
- # raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
36
-
37
- ## OLD
38
- # # can't do it any other way :(
39
- # global _ran_once
32
+ raise AttributeError(e)
40
33
 
41
- # if _ran_once:
42
- # _ran_once = False
43
- # return RV(name)
44
- # else:
45
- # _ran_once = True
arvi/binning.py CHANGED
@@ -1,6 +1,6 @@
1
1
  import numpy as np
2
2
 
3
- from .setup_logger import logger
3
+ from .setup_logger import setup_logger
4
4
 
5
5
  ###############################################################################
6
6
  # the following is mostly a copy of the scipy implementation of
@@ -390,6 +390,7 @@ def binRV(time, rv, err=None, stat='wmean', tstat='wmean', estat='addquad',
390
390
 
391
391
 
392
392
  def bin_ccf_mask(time, ccf_mask):
393
+ logger = setup_logger()
393
394
  indices = binRV(time, None, binning_indices=True)
394
395
  indices = np.r_[indices, time.size]
395
396
  bmask = []
arvi/config.py CHANGED
@@ -8,6 +8,7 @@ def get_config_path():
8
8
 
9
9
  def get_config():
10
10
  config = configparser.ConfigParser()
11
+ config.add_section('config')
11
12
  if (path := get_config_path()).exists():
12
13
  config.read(path)
13
14
  return config
@@ -31,6 +32,10 @@ class config:
31
32
  'check_internet': False,
32
33
  # make all DACE requests without using a .dacerc file
33
34
  'request_as_public': False,
35
+ # enable from arvi import star_name
36
+ 'fancy_import': True,
37
+ # use the 'dark_background' matplotlib theme
38
+ 'dark_plots': False,
34
39
  # debug
35
40
  'debug': False,
36
41
  }
@@ -43,10 +48,16 @@ class config:
43
48
  # return {'return_self': 'help!'}
44
49
  return {}
45
50
 
46
- if self.__user_config.has_option('config', name):
47
- self.__conf[name] = self.__user_config.get('config', name)
51
+ try:
52
+ if self.__user_config.has_option('config', name):
53
+ value = self.__user_config.get('config', name)
54
+ value = True if value == 'True' else value
55
+ value = False if value == 'False' else value
56
+ self.__conf[name] = value
48
57
 
49
- return self.__conf[name]
58
+ return self.__conf[name]
59
+ except KeyError:
60
+ raise KeyError(f"unknown config option '{name}'")
50
61
 
51
62
  def __setattr__(self, name, value):
52
63
  if name in config.__setters:
@@ -54,7 +65,7 @@ class config:
54
65
  else:
55
66
  if 'config' not in self.__user_config:
56
67
  self.__user_config.add_section('config')
57
- self.__user_config.set('config', name, value)
68
+ self.__user_config.set('config', name, str(value))
58
69
  save_config(self.__user_config)
59
70
  # raise NameError(f"unknown configuration name '{name}'")
60
71
 
arvi/dace_wrapper.py CHANGED
@@ -5,11 +5,13 @@ import collections
5
5
  from functools import lru_cache
6
6
  from itertools import islice
7
7
  import numpy as np
8
- from .setup_logger import logger
8
+
9
+ from .setup_logger import setup_logger
9
10
  from .utils import create_directory, all_logging_disabled, stdout_disabled, tqdm
10
11
 
11
12
 
12
13
  def load_spectroscopy(user=None):
14
+ logger = setup_logger()
13
15
  with all_logging_disabled():
14
16
  from dace_query.spectroscopy import SpectroscopyClass, Spectroscopy as default_Spectroscopy
15
17
  from dace_query import DaceClass
@@ -45,8 +47,10 @@ def load_spectroscopy(user=None):
45
47
  logger.warning('requesting DACE data as public (no .dacerc file found)')
46
48
  return default_Spectroscopy
47
49
 
48
- @lru_cache()
49
- def get_dace_id(star, verbose=True):
50
+
51
+ @lru_cache(maxsize=1024)
52
+ def get_dace_id(star, verbose=True, raise_error=False):
53
+ logger = setup_logger()
50
54
  filters = {"obj_id_catname": {"equal": [star]}}
51
55
  try:
52
56
  with all_logging_disabled():
@@ -55,9 +59,13 @@ def get_dace_id(star, verbose=True):
55
59
  except KeyError:
56
60
  if verbose:
57
61
  logger.error(f"Could not find DACE ID for {star}")
62
+ if not raise_error:
63
+ return None
58
64
  raise ValueError from None
59
65
 
66
+
60
67
  def get_arrays(result, latest_pipeline=True, ESPRESSO_mode='HR11', NIRPS_mode='HE', verbose=True):
68
+ logger = setup_logger()
61
69
  arrays = []
62
70
  instruments = [str(i) for i in result.keys()]
63
71
 
@@ -66,7 +74,6 @@ def get_arrays(result, latest_pipeline=True, ESPRESSO_mode='HR11', NIRPS_mode='H
66
74
 
67
75
  # select ESPRESSO mode, which is defined at the level of the pipeline
68
76
  if 'ESPRESSO' in inst:
69
-
70
77
  find_mode = [ESPRESSO_mode in pipe for pipe in pipelines]
71
78
  # the mode was not found
72
79
  if not any(find_mode):
@@ -160,12 +167,12 @@ def get_observations_from_instrument(star, instrument, user=None, main_id=None,
160
167
 
161
168
  found_dace_id = False
162
169
  try:
163
- dace_id = get_dace_id(star, verbose=verbose)
170
+ dace_id = get_dace_id(star, verbose=verbose, raise_error=True)
164
171
  found_dace_id = True
165
172
  except ValueError as e:
166
173
  if main_id is not None:
167
174
  try:
168
- dace_id = get_dace_id(main_id, verbose=verbose)
175
+ dace_id = get_dace_id(main_id, verbose=verbose, raise_error=True)
169
176
  found_dace_id = True
170
177
  except ValueError:
171
178
  pass
@@ -259,6 +266,7 @@ def get_observations_from_instrument(star, instrument, user=None, main_id=None,
259
266
  return r
260
267
 
261
268
  def get_observations(star, instrument=None, user=None, main_id=None, verbose=True):
269
+ logger = setup_logger()
262
270
  if instrument is None:
263
271
  Spectroscopy = load_spectroscopy(user)
264
272
 
@@ -444,6 +452,7 @@ def extract_fits(output_directory, filename=None):
444
452
 
445
453
 
446
454
  def do_symlink_filetype(type, raw_files, output_directory, clobber=False, top_level=None, verbose=True):
455
+ logger = setup_logger()
447
456
  terminations = {
448
457
  'CCF': '_CCF_A.fits',
449
458
  'S1D': '_S1D_A.fits',
@@ -489,6 +498,7 @@ def do_symlink_filetype(type, raw_files, output_directory, clobber=False, top_le
489
498
  def do_download_filetype(type, raw_files, output_directory, clobber=False, user=None,
490
499
  verbose=True, chunk_size=20, parallel_limit=30):
491
500
  """ Download CCFs / S1Ds / S2Ds from DACE """
501
+ logger = setup_logger()
492
502
  raw_files = np.atleast_1d(raw_files)
493
503
 
494
504
  create_directory(output_directory)
arvi/exofop_wrapper.py CHANGED
@@ -4,9 +4,10 @@ import time
4
4
  import importlib.resources as resources
5
5
  import numpy as np
6
6
 
7
- from .setup_logger import logger
7
+ from .setup_logger import setup_logger
8
8
 
9
9
  def get_toi_list(verbose=True):
10
+ logger = setup_logger()
10
11
  toi_list = resources.files('arvi') / 'data' / 'exofop_toi_list.csv'
11
12
  now = time.time()
12
13
  download = not toi_list.exists() or toi_list.stat().st_mtime < now - 48 * 60 * 60
arvi/extra_data.py CHANGED
@@ -3,8 +3,7 @@ from glob import glob
3
3
  import json
4
4
 
5
5
  from numpy import full
6
- from .setup_logger import logger
7
- from . import timeseries
6
+ from .setup_logger import setup_logger
8
7
 
9
8
  refs = {
10
9
  'HD86226': 'Teske et al. 2020 (AJ, 160, 2)'
@@ -12,7 +11,8 @@ refs = {
12
11
 
13
12
  def get_extra_data(star, instrument=None, path=None, verbose=True,
14
13
  check_for_kms=True):
15
-
14
+ from . import timeseries
15
+ logger = setup_logger()
16
16
  if path is None:
17
17
  path = os.path.dirname(__file__)
18
18
  path = os.path.join(path, 'data', 'extra')
@@ -1,7 +1,7 @@
1
1
  import os, sys
2
2
  import numpy as np
3
3
 
4
- from .setup_logger import logger
4
+ from .setup_logger import setup_logger
5
5
  from .utils import ESPRESSO_ADC_issues, ESPRESSO_cryostat_issues
6
6
 
7
7
 
@@ -27,6 +27,7 @@ ESPRESSO_technical_intervention = 58665
27
27
 
28
28
  def divide_ESPRESSO(self):
29
29
  """ Split ESPRESSO data into separate sub ESP18 and ESP19 subsets """
30
+ logger = setup_logger()
30
31
  if self._check_instrument('ESPRESSO', strict=False) is None:
31
32
  return
32
33
  if 'ESPRESSO18' in self.instruments and 'ESPRESSO19' in self.instruments:
@@ -64,6 +65,7 @@ def divide_ESPRESSO(self):
64
65
 
65
66
  def divide_HARPS(self):
66
67
  """ Split HARPS data into separate sub HARPS03 and HARPS15 subsets """
68
+ logger = setup_logger()
67
69
  if self._check_instrument('HARPS', strict=False) is None:
68
70
  return
69
71
  if 'HARPS03' in self.instruments and 'HARPS15' in self.instruments:
@@ -100,6 +102,7 @@ def divide_HARPS(self):
100
102
 
101
103
 
102
104
  def check(self, instrument):
105
+ logger = setup_logger()
103
106
  instruments = self._check_instrument(instrument)
104
107
  if instruments is None:
105
108
  if self.verbose:
@@ -118,6 +121,7 @@ def HARPS_commissioning(self, mask=True, plot=True):
118
121
  plot (bool, optional):
119
122
  Whether to plot the masked points.
120
123
  """
124
+ logger = setup_logger()
121
125
  if check(self, 'HARPS') is None:
122
126
  return
123
127
 
@@ -149,6 +153,7 @@ def HARPS_fiber_commissioning(self, mask=True, plot=True):
149
153
  plot (bool, optional):
150
154
  Whether to plot the masked points.
151
155
  """
156
+ logger = setup_logger()
152
157
  if check(self, 'HARPS') is None:
153
158
  return
154
159
 
@@ -182,6 +187,7 @@ def ADC_issues(self, mask=True, plot=True, check_headers=False):
182
187
  check_headers (bool, optional):
183
188
  Whether to (double-)check the headers for missing/zero keywords.
184
189
  """
190
+ logger = setup_logger()
185
191
  instruments = self._check_instrument('ESPRESSO')
186
192
 
187
193
  if instruments is None:
@@ -225,6 +231,7 @@ def blue_cryostat_issues(self, mask=True, plot=True):
225
231
  mask (bool, optional): Whether to mask out the points.
226
232
  plot (bool, optional): Whether to plot the masked points.
227
233
  """
234
+ logger = setup_logger()
228
235
  instruments = self._check_instrument('ESPRESSO')
229
236
 
230
237
  if instruments is None:
@@ -259,6 +266,7 @@ def qc_scired_issues(self, plot=False, **kwargs):
259
266
  Args:
260
267
  plot (bool, optional): Whether to plot the masked points.
261
268
  """
269
+ logger = setup_logger()
262
270
  from .headers import get_headers
263
271
 
264
272
  instruments = self._check_instrument('ESPRESSO')
@@ -299,38 +307,40 @@ def qc_scired_issues(self, plot=False, **kwargs):
299
307
  return affected
300
308
 
301
309
 
302
- def known_issues(self, mask=True, plot=False, **kwargs):
303
- """ Identify and optionally mask known instrumental issues.
304
-
305
- Args:
306
- mask (bool, optional): Whether to mask out the points.
307
- plot (bool, optional): Whether to plot the masked points.
308
- """
309
- try:
310
- adc = ADC_issues(self, mask, plot, **kwargs)
311
- except IndexError:
312
- logger.error('are the data binned? cannot proceed to mask these points...')
313
-
314
- try:
315
- cryostat = blue_cryostat_issues(self, mask, plot)
316
- except IndexError:
317
- logger.error('are the data binned? cannot proceed to mask these points...')
318
-
319
- try:
320
- harps_comm = HARPS_commissioning(self, mask, plot)
321
- except IndexError:
322
- logger.error('are the data binned? cannot proceed to mask these points...')
323
-
324
- try:
325
- harps_fibers = HARPS_fiber_commissioning(self, mask, plot)
326
- except IndexError:
327
- logger.error('are the data binned? cannot proceed to mask these points...')
328
-
329
- # if None in (adc, cryostat, harps_comm, harps_fibers):
330
- # return
331
-
332
- try:
333
- # return adc | cryostat
334
- return np.logical_or.reduce((adc, cryostat, harps_comm, harps_fibers))
335
- except UnboundLocalError:
336
- return
310
+ class ISSUES:
311
+ def known_issues(self, mask=True, plot=False, **kwargs):
312
+ """ Identify and optionally mask known instrumental issues.
313
+
314
+ Args:
315
+ mask (bool, optional): Whether to mask out the points.
316
+ plot (bool, optional): Whether to plot the masked points.
317
+ """
318
+ logger = setup_logger()
319
+ try:
320
+ adc = ADC_issues(self, mask, plot, **kwargs)
321
+ except IndexError:
322
+ logger.error('are the data binned? cannot proceed to mask these points...')
323
+
324
+ try:
325
+ cryostat = blue_cryostat_issues(self, mask, plot)
326
+ except IndexError:
327
+ logger.error('are the data binned? cannot proceed to mask these points...')
328
+
329
+ try:
330
+ harps_comm = HARPS_commissioning(self, mask, plot)
331
+ except IndexError:
332
+ logger.error('are the data binned? cannot proceed to mask these points...')
333
+
334
+ try:
335
+ harps_fibers = HARPS_fiber_commissioning(self, mask, plot)
336
+ except IndexError:
337
+ logger.error('are the data binned? cannot proceed to mask these points...')
338
+
339
+ # if None in (adc, cryostat, harps_comm, harps_fibers):
340
+ # return
341
+
342
+ try:
343
+ # return adc | cryostat
344
+ return np.logical_or.reduce((adc, cryostat, harps_comm, harps_fibers))
345
+ except UnboundLocalError:
346
+ return
arvi/plots.py CHANGED
@@ -5,7 +5,7 @@ import numpy as np
5
5
 
6
6
  from astropy.timeseries import LombScargle
7
7
 
8
- from .setup_logger import logger
8
+ from .setup_logger import setup_logger
9
9
  from .config import config
10
10
  from .stats import wmean
11
11
 
@@ -13,10 +13,12 @@ from .utils import lazy_import
13
13
  plt = lazy_import('matplotlib.pyplot')
14
14
 
15
15
 
16
- def plot_fast(func):
16
+ def plot_settings(func):
17
17
  @wraps(func)
18
18
  def wrapper(*args, **kwargs):
19
- with plt.style.context('fast'):
19
+ # with plt.style.context('fast'):
20
+ theme = 'dark_background' if config.dark_plots else 'fast'
21
+ with plt.style.context(theme):
20
22
  return func(*args, **kwargs)
21
23
  return wrapper
22
24
 
@@ -135,7 +137,7 @@ def clickable_legend(fig, ax, leg):
135
137
  pass
136
138
  return on_pick_legend
137
139
 
138
- # @plot_fast
140
+ @plot_settings
139
141
  def plot(self, ax=None, show_masked=False, instrument=None, time_offset=0,
140
142
  remove_50000=False, tooltips=True, show_title=False, show_legend=True, label=None,
141
143
  jitter=None, N_in_label=False, versus_n=False, show_histogram=False, bw=False, **kwargs):
@@ -172,6 +174,7 @@ def plot(self, ax=None, show_masked=False, instrument=None, time_offset=0,
172
174
  Figure: the figure
173
175
  Axes: the axis
174
176
  """
177
+ logger = setup_logger()
175
178
  if self.N == 0:
176
179
  if self.verbose:
177
180
  logger.error('no data to plot')
@@ -402,10 +405,11 @@ def plot(self, ax=None, show_masked=False, instrument=None, time_offset=0,
402
405
  return fig, ax
403
406
 
404
407
 
405
- @plot_fast
408
+ # @plot_fast
406
409
  def plot_quantity(self, quantity, ax=None, show_masked=False, instrument=None,
407
410
  time_offset=0, remove_50000=False, tooltips=False, show_legend=True,
408
411
  N_in_label=False, **kwargs):
412
+ logger = setup_logger()
409
413
  if self.N == 0:
410
414
  if self.verbose:
411
415
  logger.error('no data to plot')
@@ -504,7 +508,88 @@ plot_rhk = partialmethod(plot_quantity, quantity='rhk')
504
508
  plot_berv = partialmethod(plot_quantity, quantity='berv')
505
509
 
506
510
 
507
- @plot_fast
511
+ def plot_xy(self, x, y, ax=None, instrument=None, show_legend=True, **kwargs):
512
+ logger = setup_logger()
513
+ if self.N == 0:
514
+ if self.verbose:
515
+ logger.error('no data to plot')
516
+ return
517
+
518
+ if ax is None:
519
+ fig, ax = plt.subplots(1, 1, constrained_layout=True)
520
+ else:
521
+ fig = ax.figure
522
+
523
+ kwargs.setdefault('marker', 'o')
524
+ kwargs.setdefault('ls', '')
525
+ kwargs.setdefault('capsize', 0)
526
+ kwargs.setdefault('ms', 4)
527
+
528
+ instruments = self._check_instrument(instrument)
529
+
530
+ for inst in instruments:
531
+ s = self if self._child else getattr(self, inst)
532
+ label = inst
533
+
534
+ missing = False
535
+ try:
536
+ xdata = getattr(s, x).copy()
537
+ except AttributeError:
538
+ missing = True
539
+ try:
540
+ e_xdata = getattr(s, x + '_err').copy()
541
+ except AttributeError:
542
+ e_xdata = np.zeros_like(xdata)
543
+
544
+ try:
545
+ ydata = getattr(s, y).copy()
546
+ except AttributeError:
547
+ missing = True
548
+ try:
549
+ e_ydata = getattr(s, y + '_err').copy()
550
+ except AttributeError:
551
+ e_ydata = np.zeros_like(ydata)
552
+
553
+ if missing:
554
+ lines, *_ = ax.errorbar([], [], [],
555
+ label=label, picker=True, **kwargs)
556
+ continue
557
+
558
+ ax.errorbar(xdata[s.mask], ydata[s.mask], e_xdata[s.mask], e_ydata[s.mask],
559
+ label=label, **kwargs)
560
+
561
+ # if show_masked:
562
+ # ax.errorbar(self.time[~self.mask] - time_offset,
563
+ # getattr(self, quantity)[~self.mask],
564
+ # getattr(self, quantity + '_err')[~self.mask],
565
+ # label='masked', fmt='x', ms=10, color='k', zorder=-2)
566
+
567
+ if show_legend:
568
+ leg = ax.legend()
569
+ on_pick_legend = clickable_legend(fig, ax, leg)
570
+ plt.connect('pick_event', on_pick_legend)
571
+
572
+ ax.minorticks_on()
573
+
574
+ delta = 'Δ' if self._did_adjust_means else ''
575
+
576
+ # ylabel = {
577
+ # quantity.lower(): quantity,
578
+ # 'fwhm': f'{delta}FWHM [{self.units}]',
579
+ # 'bispan': f'{delta}BIS [{self.units}]',
580
+ # 'rhk': r"$\log$ R'$_{HK}$",
581
+ # 'berv': 'BERV [km/s]',
582
+ # }
583
+
584
+ # ax.set_ylabel(ylabel[quantity.lower()])
585
+
586
+ if config.return_self:
587
+ return self
588
+ else:
589
+ return fig, ax
590
+
591
+
592
+ # @plot_fast
508
593
  def gls(self, ax=None, label=None, instrument=None,
509
594
  fap=True, fap_method='baluev', adjust_means=config.adjust_means_gls,
510
595
  picker=True, **kwargs):
@@ -531,6 +616,7 @@ def gls(self, ax=None, label=None, instrument=None,
531
616
  Whether to adjust (subtract) the weighted means of each instrument.
532
617
  Default is `config.adjust_means_gls`.
533
618
  """
619
+ logger = setup_logger()
534
620
  if self.N == 0:
535
621
  if self.verbose:
536
622
  logger.error('no data to compute gls')
@@ -692,7 +778,7 @@ def gls_quantity(self, quantity, ax=None, instrument=None,
692
778
  Whether to adjust (subtract) the weighted means of each instrument.
693
779
  Default is `config.adjust_means_gls`.
694
780
  """
695
-
781
+ logger = setup_logger()
696
782
  if not hasattr(self, quantity):
697
783
  if self.verbose:
698
784
  logger.error(f"cannot find '{quantity}' attribute")
@@ -812,6 +898,8 @@ def window_function(self, ax1=None, ax2=None, instrument=None, crosshair=False,
812
898
  crosshair (bool):
813
899
  If True, a crosshair will be drawn on the plot.
814
900
  """
901
+ logger = setup_logger()
902
+
815
903
  if self.N == 0:
816
904
  if self.verbose:
817
905
  logger.error('no data to compute window function')
arvi/reports.py CHANGED
@@ -2,7 +2,7 @@ from functools import partial
2
2
  import numpy as np
3
3
  from astropy.timeseries import LombScargle
4
4
 
5
- from .setup_logger import logger
5
+ from .setup_logger import setup_logger
6
6
 
7
7
 
8
8
  sine_line = None
@@ -27,104 +27,178 @@ def sine_picker(event, self, fig, ax, ax1):
27
27
  fig.canvas.draw_idle()
28
28
 
29
29
 
30
- def summary(self, add_ccf_mask=True, add_prog_id=False):
31
- from .utils import pretty_print_table
32
- rows = []
33
- rows.append([self.star] + [''] * len(self.instruments))
34
- rows.append([''] + self.instruments)
35
- rows.append(['N'] + list(self.NN.values()))
36
-
37
- if add_ccf_mask:
38
- row = ['CCF mask']
39
- for inst in self.instruments:
40
- row.append(', '.join(np.unique(getattr(self, inst).ccf_mask)))
41
- rows.append(row)
42
-
43
- if add_prog_id:
44
- row = ['prog ID']
45
- for inst in self.instruments:
46
- p = ', '.join(np.unique(getattr(self, inst).prog_id))
47
- row.append(p)
48
- rows.append(row)
49
-
50
- pretty_print_table(rows)
51
-
52
-
53
- def report(self, save=None):
54
- import matplotlib.pyplot as plt
55
- import matplotlib.gridspec as gridspec
56
- from matplotlib.backends.backend_pdf import PdfPages
57
-
58
- # size = A4
59
- size = 8.27, 11.69
60
- fig = plt.figure(figsize=size, constrained_layout=True)
61
- gs = gridspec.GridSpec(5, 3, figure=fig, height_ratios=[2, 2, 1, 1, 0.1])
62
-
63
- # first row, all columns
64
- ax1 = plt.subplot(gs[0, :])
65
-
66
- title = f'{self.star}'
67
- ax1.set_title(title, loc='left', fontsize=14)
68
- # ax1.set_title(r"\href{http://www.google.com}{link}", color='blue',
69
- # loc='center')
70
-
71
- if self._did_adjust_means:
72
- title = '(instrument means subtracted) '
73
- else:
74
- title = ''
75
- title += f'V={self.simbad.V}, {self.simbad.sp_type}'
76
- ax1.set_title(title, loc='right', fontsize=12)
77
-
78
- self.plot(ax=ax1, N_in_label=True, tooltips=False, remove_50000=True)
79
-
80
-
81
- ax1.legend().remove()
82
- legend_ax = plt.subplot(gs[1, -1])
83
- legend_ax.axis('off')
84
- leg = plt.legend(*ax1.get_legend_handles_labels(),
85
- prop={'family': 'monospace'})
86
- legend_ax.add_artist(leg)
87
- second_legend = f'rms : {self.rms:.2f} {self.units}\n'
88
- second_legend += f'error: {self.error:.2f} {self.units}'
89
- legend_ax.legend([],
90
- title=second_legend,
91
- loc='lower right', frameon=False,
92
- prop={'family': 'monospace'})
93
-
94
- ax2 = plt.subplot(gs[1, :-1])
95
- self.gls(ax=ax2, picker=True)
96
-
97
- ax3 = plt.subplot(gs[2, :-1])
98
- self.plot_fwhm(ax=ax3, tooltips=False, remove_50000=True)
99
- ax3.legend().remove()
100
- ax3p = plt.subplot(gs[2, -1])
101
- self.gls_fwhm(ax=ax3p, picker=False)
102
-
103
- ax4 = plt.subplot(gs[3, :-1])
104
- self.plot_bis(ax=ax4, tooltips=False, remove_50000=True)
105
- ax4.legend().remove()
106
- ax4p = plt.subplot(gs[3, -1])
107
- self.gls_bis(ax=ax4p, picker=False)
108
-
109
-
110
- if save is None:
111
- fig.canvas.mpl_connect(
112
- 'pick_event',
113
- partial(sine_picker, self=self, fig=fig, ax=ax2, ax1=ax1))
114
-
115
- if save is not None:
116
- if save is True:
117
- save = f'report_{"".join(self.star.split())}.pdf'
118
-
119
- if save.endswith('.png'):
120
- fig.savefig(save)
30
+ class REPORTS:
31
+ def summary(self, add_ccf_mask=True, add_prog_id=False, **kwargs):
32
+ from .utils import pretty_print_table
33
+ if isinstance(self, list):
34
+ selfs = self
121
35
  else:
122
- with PdfPages(save) as pdf:
123
- #pdf.attach_note('hello', positionRect=[5, 15, 20, 30])
124
-
125
- if self.verbose:
126
- logger.info(f'saving to {save}')
127
- pdf.savefig(fig)
128
- # os.system(f'evince {save} &')
129
-
130
- return fig
36
+ selfs = [self]
37
+
38
+ rows = []
39
+ for self in selfs:
40
+ rows.append([self.star] + [''] * len(self.instruments) + [''])
41
+ rows.append([''] + self.instruments + ['full'])
42
+ rows.append(['N'] + list(self.NN.values()) + [self.N])
43
+ rows.append(['RV span'] + [np.ptp(s.mvrad).round(3) for s in self] + [np.ptp(self.mvrad).round(3)])
44
+ rows.append(['RV std'] + [s.mvrad.std().round(3) for s in self] + [self.mvrad.std().round(3)])
45
+ rows.append(['eRV mean'] + [s.msvrad.mean().round(3) for s in self] + [self.msvrad.mean().round(3)])
46
+
47
+ if add_ccf_mask:
48
+ if hasattr(self, 'ccf_mask'):
49
+ row = ['CCF mask']
50
+ for inst in self.instruments:
51
+ row.append(', '.join(np.unique(getattr(self, inst).ccf_mask)))
52
+ row.append('')
53
+ rows.append(row)
54
+
55
+ if add_prog_id:
56
+ row = ['prog ID']
57
+ for inst in self.instruments:
58
+ p = ', '.join(np.unique(getattr(self, inst).prog_id))
59
+ row.append(p)
60
+ rows.append(row)
61
+
62
+ return pretty_print_table(rows, **kwargs)
63
+
64
+
65
+ def summary_one_instrument(self):
66
+ from .utils import pretty_print_table
67
+ if isinstance(self, list):
68
+ selfs = self
69
+ else:
70
+ selfs = [self]
71
+
72
+ rows = []
73
+ rows.append(['', 'N', 'Δt', 'RV std', 'median σRV'])
74
+ for self in selfs:
75
+ rows.append([
76
+ self.star,
77
+ self.N,
78
+ int(np.ptp(self.mtime).round(0)),
79
+ np.std(self.mvrad).round(1),
80
+ np.median(self.msvrad).round(1),
81
+ ])
82
+
83
+ pretty_print_table(rows)
84
+
85
+
86
+ def summary_stellar(self, show_ra_dec=True, show_pm=True, **kwargs):
87
+ from .utils import pretty_print_table, get_ra_sexagesimal, get_dec_sexagesimal
88
+ if isinstance(self, list):
89
+ selfs = self
90
+ else:
91
+ selfs = [self]
92
+
93
+
94
+
95
+ rows = []
96
+ rows.append(['star'] + [self.star for self in selfs])
97
+ if show_ra_dec:
98
+ rows.append(['RA'] + [get_ra_sexagesimal(self.simbad.ra) for self in selfs])
99
+ rows.append(['DEC'] + [get_dec_sexagesimal(self.simbad.dec) for self in selfs])
100
+
101
+ if show_pm:
102
+ rows.append(['pm ra'] + [(self.gaia or self.simbad).pmra for self in selfs])
103
+ rows.append(['pm dec'] + [(self.gaia or self.simbad).pmdec for self in selfs])
104
+
105
+ rows.append(['π (mas)'] + [(self.gaia or self.simbad).plx for self in selfs])
106
+ #
107
+ rows.append(['B (mag)'] + [self.simbad._B for self in selfs])
108
+ rows.append(['V (mag)'] + [self.simbad._V for self in selfs])
109
+ rows.append(['B-V'] + [self.simbad._B - self.simbad._V for self in selfs])
110
+ rows.append(["log R'HK"] + [np.nanmean(self.rhk).round(2) for self in selfs])
111
+ # rows.append([''] + self.instruments + ['full'])
112
+ # rows.append(['N'] + list(self.NN.values()) + [self.N])
113
+ # rows.append(['RV span'] + [np.ptp(s.mvrad).round(3) for s in self] + [np.ptp(self.mvrad).round(3)])
114
+ # rows.append(['RV std'] + [s.mvrad.std().round(3) for s in self] + [self.mvrad.std().round(3)])
115
+ # rows.append(['eRV mean'] + [s.msvrad.mean().round(3) for s in self] + [self.msvrad.mean().round(3)])
116
+
117
+ return pretty_print_table(rows, **kwargs)
118
+
119
+
120
+
121
+
122
+ def report(self, save=None):
123
+ import matplotlib.pyplot as plt
124
+ import matplotlib.gridspec as gridspec
125
+ from matplotlib.backends.backend_pdf import PdfPages
126
+ logger = setup_logger()
127
+
128
+ # size = A4
129
+ size = 8.27, 11.69
130
+ fig = plt.figure(figsize=size, constrained_layout=True)
131
+ gs = gridspec.GridSpec(5, 3, figure=fig, height_ratios=[2, 2, 1, 1, 0.1])
132
+
133
+ # first row, all columns
134
+ ax1 = plt.subplot(gs[0, :])
135
+
136
+ title = f'{self.star}'
137
+ ax1.set_title(title, loc='left', fontsize=14)
138
+ # ax1.set_title(r"\href{http://www.google.com}{link}", color='blue',
139
+ # loc='center')
140
+
141
+ if self._did_adjust_means:
142
+ title = '(instrument means subtracted) '
143
+ else:
144
+ title = ''
145
+ title += f'V={self.simbad.V}, {self.simbad.sp_type}'
146
+ ax1.set_title(title, loc='right', fontsize=12)
147
+
148
+ self.plot(ax=ax1, N_in_label=True, tooltips=False, remove_50000=True)
149
+
150
+
151
+ ax1.legend().remove()
152
+ legend_ax = plt.subplot(gs[1, -1])
153
+ legend_ax.axis('off')
154
+ leg = plt.legend(*ax1.get_legend_handles_labels(),
155
+ prop={'family': 'monospace'})
156
+ legend_ax.add_artist(leg)
157
+
158
+ second_legend = f'rms : {self.rms:.2f} {self.units}'
159
+ second_legend += f'\nerror: {self.error:.2f} {self.units}'
160
+
161
+ second_legend += f'\n\nCCF masks: {np.unique(self.ccf_mask)}'
162
+
163
+ legend_ax.legend([],
164
+ title=second_legend,
165
+ loc='lower right', frameon=False,
166
+ prop={'family': 'monospace'})
167
+
168
+ ax2 = plt.subplot(gs[1, :-1])
169
+ self.gls(ax=ax2, picker=True)
170
+
171
+ ax3 = plt.subplot(gs[2, :-1])
172
+ self.plot_fwhm(ax=ax3, tooltips=False, remove_50000=True)
173
+ ax3.legend().remove()
174
+ ax3p = plt.subplot(gs[2, -1])
175
+ self.gls_fwhm(ax=ax3p, picker=False)
176
+
177
+ ax4 = plt.subplot(gs[3, :-1])
178
+ self.plot_rhk(ax=ax4, tooltips=False, remove_50000=True)
179
+ ax4.legend().remove()
180
+ ax4p = plt.subplot(gs[3, -1])
181
+ self.gls_rhk(ax=ax4p, picker=False)
182
+
183
+
184
+ if save is None:
185
+ fig.canvas.mpl_connect(
186
+ 'pick_event',
187
+ partial(sine_picker, self=self, fig=fig, ax=ax2, ax1=ax1))
188
+
189
+ if save is not None:
190
+ if save is True:
191
+ save = f'report_{"".join(self.star.split())}.pdf'
192
+
193
+ if save.endswith('.png'):
194
+ fig.savefig(save)
195
+ else:
196
+ with PdfPages(save) as pdf:
197
+ #pdf.attach_note('hello', positionRect=[5, 15, 20, 30])
198
+
199
+ if self.verbose:
200
+ logger.info(f'saving to {save}')
201
+ pdf.savefig(fig)
202
+ # os.system(f'evince {save} &')
203
+
204
+ return fig
arvi/setup_logger.py CHANGED
@@ -1,20 +1,24 @@
1
1
  import sys
2
- from loguru import logger
3
2
 
4
- try:
5
- import marimo as mo
6
- if mo.running_in_notebook():
7
- raise ImportError
8
- except (ImportError, ModuleNotFoundError):
9
- pass
10
- else:
11
- logger.remove()
3
+ def setup_logger():
4
+ from loguru import logger
5
+ try:
6
+ import marimo as mo
7
+ if mo.running_in_notebook():
8
+ raise NotImplementedError
9
+ except (NotImplementedError, AttributeError):
10
+ pass
11
+ except (ImportError, ModuleNotFoundError):
12
+ logger.remove()
13
+ else:
14
+ logger.remove()
12
15
 
16
+ logger.configure(extra={"indent": ""})
17
+ logger.add(
18
+ sys.stdout,
19
+ colorize=True,
20
+ # format="<green>{time:YYYY-MM-DDTHH:mm:ss}</green> <level>{message}</level>",
21
+ format="{extra[indent]}<level>{message}</level>",
22
+ )
13
23
 
14
- logger.configure(extra={"indent": ""})
15
- logger.add(
16
- sys.stdout,
17
- colorize=True,
18
- # format="<green>{time:YYYY-MM-DDTHH:mm:ss}</green> <level>{message}</level>",
19
- format="{extra[indent]}<level>{message}</level>",
20
- )
24
+ return logger
arvi/simbad_wrapper.py CHANGED
@@ -1,9 +1,8 @@
1
1
  import os
2
- import numpy as np
3
2
  import requests
4
3
  from dataclasses import dataclass
5
4
 
6
- import pysweetcat
5
+ import numpy as np
7
6
 
8
7
  try:
9
8
  from uncertainties import ufloat
@@ -12,7 +11,6 @@ except ImportError:
12
11
 
13
12
  from .stellar import EFFECTIVE_TEMPERATURES, teff_to_sptype
14
13
  from .translations import translate
15
- from .setup_logger import logger
16
14
 
17
15
  DATA_PATH = os.path.dirname(__file__)
18
16
  DATA_PATH = os.path.join(DATA_PATH, 'data')
@@ -146,6 +144,7 @@ class simbad:
146
144
  star (str): The name of the star to query simbad
147
145
  """
148
146
  from astropy.coordinates import SkyCoord
147
+ import pysweetcat
149
148
 
150
149
  self.star = translate(star, ngc=True, ic=True)
151
150
 
arvi/timeseries.py CHANGED
@@ -1,14 +1,16 @@
1
1
  import os
2
2
  from dataclasses import dataclass, field
3
3
  from typing import Union
4
- from functools import lru_cache, partial, partialmethod
4
+ from functools import partial, partialmethod
5
5
  from glob import glob
6
6
  import warnings
7
7
  from copy import deepcopy
8
8
  from datetime import datetime, timezone
9
9
  import numpy as np
10
10
 
11
- from .setup_logger import logger
11
+ from .setup_logger import setup_logger
12
+ logger = setup_logger()
13
+
12
14
  from .config import config
13
15
  from .translations import translate
14
16
  from .dace_wrapper import do_download_filetype, do_symlink_filetype, get_observations, get_arrays
@@ -19,6 +21,8 @@ from .extra_data import get_extra_data
19
21
  from .stats import wmean, wrms
20
22
  from .binning import bin_ccf_mask, binRV
21
23
  from .HZ import getHZ_period
24
+ from .instrument_specific import ISSUES
25
+ from .reports import REPORTS
22
26
  from .utils import sanitize_path, strtobool, there_is_internet, timer, chdir
23
27
  from .utils import lazy_import
24
28
 
@@ -31,8 +35,8 @@ class ExtraFields:
31
35
  return list(self.__dict__.keys())
32
36
 
33
37
 
34
- @dataclass
35
- class RV:
38
+ @dataclass(order=False)
39
+ class RV(ISSUES, REPORTS):
36
40
  """
37
41
  A class holding RV observations
38
42
 
@@ -1245,9 +1249,9 @@ class RV:
1245
1249
 
1246
1250
  from .plots import plot, plot_fwhm, plot_bispan, plot_contrast, plot_rhk, plot_berv, plot_quantity
1247
1251
  from .plots import gls, gls_fwhm, gls_bispan, gls_rhk, gls_quantity, window_function
1248
- from .reports import report
1249
1252
 
1250
- from .instrument_specific import known_issues
1253
+ # from .reports import report
1254
+ # from .instrument_specific import known_issues
1251
1255
 
1252
1256
  def change_instrument_name(self, old_name, new_name, strict=False):
1253
1257
  """ Change the name of an instrument
arvi/utils.py CHANGED
@@ -21,7 +21,7 @@ except ImportError:
21
21
  tqdm = lambda x, *args, **kwargs: x
22
22
  trange = lambda *args, **kwargs: range(*args, **kwargs)
23
23
 
24
- from .setup_logger import logger
24
+ from .setup_logger import setup_logger
25
25
  from .config import config
26
26
 
27
27
 
@@ -70,6 +70,8 @@ def all_logging_disabled():
70
70
  @contextmanager
71
71
  def timer(name=None):
72
72
  """ A simple context manager to time a block of code """
73
+ logger = setup_logger()
74
+
73
75
  if not config.debug:
74
76
  yield
75
77
  return
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: arvi
3
- Version: 0.2.2
3
+ Version: 0.2.4
4
4
  Summary: The Automated RV Inspector
5
5
  Author-email: João Faria <joao.faria@unige.ch>
6
6
  License: MIT
@@ -23,7 +23,7 @@ Requires-Dist: kepmodel
23
23
  Dynamic: license-file
24
24
 
25
25
  <p align="center">
26
- <img width = "140" src="https://github.com/j-faria/arvi/blob/main/docs/logo/logo.png?raw=true"/>
26
+ <img width = "140" src="https://raw.githubusercontent.com/j-faria/arvi/refs/heads/main/docs/logo/logo.png"/>
27
27
  </p>
28
28
 
29
29
  This package sits alongside [DACE](https://dace.unige.ch/) to help with the
@@ -1,37 +1,37 @@
1
1
  arvi/HZ.py,sha256=u7rguhlILRBW-LOczlY3dkIB4LM8p8W7Xfg4FnNaYG0,2850
2
- arvi/__init__.py,sha256=sgl66ujggmM6wUh1Og65MAXfL0YqcrjY6o7E6iQOSsI,1048
2
+ arvi/__init__.py,sha256=8IeHbu8LR1H3MxVi9aJHNpBU6SDbmzj9FZGKsiF0AKE,740
3
3
  arvi/ariadne_wrapper.py,sha256=YvilopJa9T4NwPcj3Nah_U8smSeSAU5-HYZMb_GJ-BQ,2232
4
4
  arvi/berv.py,sha256=eKnpuPC1w45UrUEyFRbs9F9j3bXz3kxYzNXbnRgvFQM,17596
5
- arvi/binning.py,sha256=jbemJ-bM3aqoOsqMo_OhWt_co-JAQ0nhdG_GpTsrRsw,15403
6
- arvi/config.py,sha256=W-v8NNhRd_PROu0wCMilXmOhYcju4xbUalugd5u7SRU,1881
7
- arvi/dace_wrapper.py,sha256=b0uBw2Or8ElsRky25iYP2uFkOb9I3BUo7lC-UwajcFg,23341
8
- arvi/exofop_wrapper.py,sha256=ceBLff_8TWqUKWsYMsTESI2dPGE4upAHAJjwWzmRj4o,2380
9
- arvi/extra_data.py,sha256=bInAgiZNuw5vkxcCYf1Ns4w72PoxpqwV48RFBIZ3rGE,3364
5
+ arvi/binning.py,sha256=NK9y9bUrdyWCbh79LkcRABHG-n5MtlETMHMvLj1z-OM,15437
6
+ arvi/config.py,sha256=JkHSwF-EEqwwbcc8thGgbFc9udDZPjQH-9XFjqDepBY,2337
7
+ arvi/dace_wrapper.py,sha256=uUiHHqyU8T74cmgGtVVoJKbVnTGLjNYYIUkR2BeAtvk,23636
8
+ arvi/exofop_wrapper.py,sha256=8S7UEcrBAgANIweMV0-CvaWaVTPgGVo8vQQk_KRa0nU,2414
9
+ arvi/extra_data.py,sha256=Xi65pI5kkzqlMmHGl9xFoumtH699611pJJ5PV-a_IfU,3397
10
10
  arvi/gaia_wrapper.py,sha256=jfBdK9N9ZOqHIzE5MRFmXNyN3PAOT_uzXM23MIy0POY,4371
11
11
  arvi/headers.py,sha256=uvdJebw1M5YkGjE3vJJwYBOnLikib75uuZE9FXB5JJM,1673
12
- arvi/instrument_specific.py,sha256=ORjlw79EumEiGugmGn_2WBOuEPhsfgDNryEMBDe9RgM,10733
12
+ arvi/instrument_specific.py,sha256=StRcHVDszm2a4yMWkO1pYYCsEWvXsS2ZtYTrSGD9JHM,11125
13
13
  arvi/kima_wrapper.py,sha256=BvNTVqzM4lMNhLCyBFVh3T84hHfGKAFpgiYiOi4lh0g,2731
14
14
  arvi/lbl_wrapper.py,sha256=_ViGVkpakvuBR_xhu9XJRV5EKHpj5Go6jBZGJZMIS2Y,11850
15
15
  arvi/nasaexo_wrapper.py,sha256=mWt7eHgSZe4MBKCmUvMPTyUPGuiwGTqKugNBvmjOg9s,7306
16
- arvi/plots.py,sha256=EheFTUldVaslO5GDpgCKl9jgyc_5ipluDTfmah05-5w,32693
16
+ arvi/plots.py,sha256=fHc6ScATCzvM4KQ77TYfHYmY6HSZ4N4oMYsLEUvxJpU,35279
17
17
  arvi/programs.py,sha256=BW7xBNKLei7NVLLW3_lsVskwzkaIoNRiHK2jn9Tn2ZM,8879
18
- arvi/reports.py,sha256=ayPdZ4HZO9iCDdnADQ18gQPJh79o-1UYG7TYkvm9Lrc,4051
19
- arvi/setup_logger.py,sha256=26Z0uyzlOJCYOT_pJixJZWQfWEND_DZl5358RadMD8Y,431
20
- arvi/simbad_wrapper.py,sha256=vDSsxwCsqiasjxOPJRUw3lC870qbIixLGQOaQOM8tgI,8654
18
+ arvi/reports.py,sha256=CKmtg5rewMyT26gbWeoZDYrL0z5Sbb6cTJry0HWk_rs,7445
19
+ arvi/setup_logger.py,sha256=dHzO2gPjw6CaKWpYZd2f83z09tmxgi--qpp7k1jROjI,615
20
+ arvi/simbad_wrapper.py,sha256=U1XmOR7bg_mq4KSutTgEsusjBph8BfEqHh-8YuHNMog,8629
21
21
  arvi/spectra.py,sha256=ebF1ocodTastLx0CyqLSpE8EZNDXBF8riyfxMr3L6H0,7491
22
22
  arvi/stats.py,sha256=ilzzGL9ew-SyVa9eEdrYCpD3DliOAwhoNUg9LIlHjzU,2583
23
23
  arvi/stellar.py,sha256=GQ7yweuBRnfkJ0M5eWjvLd8uvGq_by81PbXfidBvWis,4918
24
- arvi/timeseries.py,sha256=_p4Ovv_xGQkLxCCCyaU-KkdtcoK21RdBq58bBEpNPd0,90751
24
+ arvi/timeseries.py,sha256=CCTcuA9vk3KUiXygsSgP9_pA0EeNdqh-tHHZUUuF4tA,90874
25
25
  arvi/translations.py,sha256=PUSrn4zvYO2MqGzUxlFGwev_tBkgJaJrIYs6NKHzbWo,951
26
- arvi/utils.py,sha256=V4uSpr75YVjE0NP3T5PxnfVQQ06nd-O8X679BfVyD30,7068
26
+ arvi/utils.py,sha256=BZoafVF1TWCI44GSMi1o66kJ1wqihjaqpf3y1Q3XGlk,7103
27
27
  arvi/data/info.svg,sha256=0IMI6W-eFoTD8acnury79WJJakpBwLa4qKS4JWpsXiI,489
28
28
  arvi/data/obs_affected_ADC_issues.dat,sha256=tn93uOL0eCTYhireqp1wG-_c3CbxPA7C-Rf-pejVY8M,10853
29
29
  arvi/data/obs_affected_blue_cryostat_issues.dat,sha256=z4AK17xfz8tGTDv1FjRvQFnio4XA6PNNfDXuicewHk4,1771
30
30
  arvi/data/extra/HD86226_PFS1.rdb,sha256=vfAozbrKHM_j8dYkCBJsuHyD01KEM1asghe2KInwVao,3475
31
31
  arvi/data/extra/HD86226_PFS2.rdb,sha256=F2P7dB6gVyzCglUjNheB0hIHVClC5RmARrGwbrY1cfo,4114
32
32
  arvi/data/extra/metadata.json,sha256=C69hIw6CohyES6BI9vDWjxwSz7N4VOYX0PCgjXtYFmU,178
33
- arvi-0.2.2.dist-info/licenses/LICENSE,sha256=6JfQgl7SpM55t0EHMFNMnNh-AdkpGW25MwMiTnhdWQg,1068
34
- arvi-0.2.2.dist-info/METADATA,sha256=29i7G2YPkMftx3Mhk9UvitLbiWoiIqjWDPUshqrOK4Y,1920
35
- arvi-0.2.2.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
36
- arvi-0.2.2.dist-info/top_level.txt,sha256=4EeiKDVLD45ztuflTGfQ3TU8GVjJg5Y95xS5XjI-utU,5
37
- arvi-0.2.2.dist-info/RECORD,,
33
+ arvi-0.2.4.dist-info/licenses/LICENSE,sha256=6JfQgl7SpM55t0EHMFNMnNh-AdkpGW25MwMiTnhdWQg,1068
34
+ arvi-0.2.4.dist-info/METADATA,sha256=LCnkFQigSAvVBAB-5yy53uPgFSw13sdbGYX_qreIf9s,1932
35
+ arvi-0.2.4.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
36
+ arvi-0.2.4.dist-info/top_level.txt,sha256=4EeiKDVLD45ztuflTGfQ3TU8GVjJg5Y95xS5XjI-utU,5
37
+ arvi-0.2.4.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (79.0.1)
2
+ Generator: setuptools (80.7.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5