Skip to main content

Tools to manipulate the IDSPy Dictionaries

Project description

This module contains a serie of function to help mange and manipulate IDSPy dataclasses

  • fill_missing_values

  • ids_to_hdf5

  • hdf5_to_ids

  • get_ids_value_from_string

  • set_ids_value_from_string

  • list_ids_members

  • copy_ids

Please note that this work is still under progress/heavy development and as experimental status. This means that functions arguments/signatures as long as HDF5 structure might be totally redesigned in the next updates.

## Quick example

 1  import pprint
 2  import dataclasses
 3 
 4  import idspy_toolkit
 5  from idspy_dictionaries import ids_gyrokinetics
 6 
 7  pp = pprint.PrettyPrinter(indent=2)
 8 
 9  ids_test = ids_gyrokinetics.Gyrokinetics()
10  # you can directly print the class to see what it looks like  :
11  pp.pprint(ids_test)
12 
13  # if you want to see all the available classes in the current module :
14  ids_dict = idspy_toolkit.list_ids_members(gkids)
15  pp.pprint(ids_dict)
16 
17  #to fill an IDS with default values
18  idspy_toolkit.fill_missing_values(ids_test)
19 
20  # you can use the . to access ids members :
21  pp.pprint(ids_test.ids_properties)
22 
23  # and to set a value :
24  ids_test.ids_properties.comment="a comment"
25 
26  # if in a script you want to reach a "deeper" value, you can use the function *get_ids_value_from_string*
27  idspy_toolkit.get_ids_value_from_string(ids_test, "ids_properties/comment")
28  # and for list element, put the element index after an #
29  idspy_toolkit.get_ids_value_from_string(ids_test, "tag#0/name")
30 
31  # same kind of function exist to set a value :
32  idspy_toolkit.set_ids_value_from_string(ids_test, "tag#0/name", "a new tag name")
33 
34  # pour afficher la classe sous forme de dictionnaire (conseil mettez l'ecran en vertical ;)):
35  ids_dict = dataclasses.asdict(ids_test)
36  pp.pprint(ids_dict)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

idspy_toolkit-0.5.0.tar.gz (27.3 kB view details)

Uploaded Source

Built Distribution

idspy_toolkit-0.5.0-py3-none-any.whl (21.4 kB view details)

Uploaded Python 3

File details

Details for the file idspy_toolkit-0.5.0.tar.gz.

File metadata

  • Download URL: idspy_toolkit-0.5.0.tar.gz
  • Upload date:
  • Size: 27.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for idspy_toolkit-0.5.0.tar.gz
Algorithm Hash digest
SHA256 e9326a7d21f6a0b21f2e803293243261a60367a60930e7cfa349dcd8c71553f6
MD5 5c6164294dd370f70803934e4bc39475
BLAKE2b-256 007e892316a74a24cc07848eaedfe40e424b22640e7fd5c32832b151a914965d

See more details on using hashes here.

File details

Details for the file idspy_toolkit-0.5.0-py3-none-any.whl.

File metadata

File hashes

Hashes for idspy_toolkit-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3f9b53121468e12c22b6ae70679d7c866edb80318458360077e837c85cb7463d
MD5 ece63b4038625b938b00763cc7924121
BLAKE2b-256 817cda163d7114376158360f651c159d5f0fb62ae7bd48db1b6f7b5d4f6b8649

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page