Depots.collect_two_char_tops_codes

Depots.collect_two_char_tops_codes(confirmation_required=True, verbose=False)[source]

Collect two-character TOPS codes from source web page.

Parameters
  • confirmation_required (bool) – whether to prompt a message for confirmation to proceed, defaults to True

  • verbose (bool, int) – whether to print relevant information in console as the function runs, defaults to False

Returns

data of two-character TOPS codes and date of when the data was last updated

Return type

dict or None

Example:

>>> from pyrcs.other_assets import Depots

>>> depots = Depots()

>>> tct_codes = depots.collect_two_char_tops_codes()
To collect data of two character TOPS codes? [No]|Yes: yes

>>> type(tct_codes)
dict
>>> list(tct_codes.keys())
['Two character TOPS codes', 'Last updated date']

>>> print(tct_codes['Two character TOPS codes'].head())
  Code click to sort  ...                Notes
0                 AB  ...          Closed 1987
1                 AB  ...
2                 AC  ...  Became WH from 1994
3                 AC  ...
4                 AD  ...
[5 rows x 5 columns]