Main public logs

From Network for Advanced NMR
Jump to navigationJump to search

Combined display of all available logs of Network for Advanced NMR. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 17:31, 7 October 2025 Mmaciejewski talk contribs created page USNAN Python SDK/Examples (Created page with "= '''Examples''' = == '''Example 1: Facility Summary''' == <syntaxhighlight lang="python"> import usnan client = usnan.USNANClient() for fac in client.facilities.list(): print(f"Facility: {fac.long_name}") for spec in fac.spectrometers: print(f" - {spec.name} ({spec.field_strength_mhz} MHz)") </syntaxhighlight> == '''Example 2: Search for 2D KnowledgeBase Datasets''' == <syntaxhighlight lang="python"> search = ( usnan.models.SearchConfig(records=2...")