__init__.py 722 B

12345678910111213141516171819202122232425262728
  1. """
  2. Downloading and reading GHG data from the UNFCCC
  3. Downloading and reading country greenhouse gas data submitted to the United Nations
  4. Framework Convention on Climate Change (UNFCCC)in different submissions and
  5. formats and providing it in a standadized nc and csv format compatible with primap2.
  6. Data are read using different methods from APIs, xlsx and csv files as well as pdf
  7. files.
  8. """
  9. import importlib.metadata
  10. from . import (
  11. helper,
  12. unfccc_crf_reader,
  13. unfccc_di_reader,
  14. unfccc_downloader,
  15. unfccc_reader,
  16. )
  17. __all__ = [
  18. "helper",
  19. "unfccc_reader",
  20. "unfccc_crf_reader",
  21. "unfccc_di_reader",
  22. "unfccc_downloader",
  23. ]
  24. __version__ = importlib.metadata.version("unfccc_ghg_data")