Add your description here
Project description
pytdo
Description
pytdo provides a Python API to read and analyse tunnel diode oscillator experiments on samples exposed to a high magnetic field. It is bundled with a graphical user interface written with PyQt.
Installation
Method 1 : As an app
If you plan to just use the graphical user interface, consider installing pytdo as a tool managed by uv, a modern Python package manager.
To do so, install uv (see the official installation instructions : https://docs.astral.sh/uv/getting-started/installation/) :
- On Windows, enter the following command in PowerShell :
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
- On Linux and MacOS, enter the following in a terminal :
curl -LsSf https://astral.sh/uv/install.sh | sh
Once uv is installed, from the command line (PowerShell in Windows), install pytdo with uv :
uv tool install pytdo
pytdo will be installed along its dependencies in an isolated environment with no risks to mess up with your current tools and Python versions.
Then, launch the GUI by running pytdo from the command line.
To update, run : uv tool upgrade pytdo.
Method 2 : As a library
Installing pytdo as a library will allow you to use the graphical user interface but also use the backend library from scripts and Jupyter notebooks (e.g. you will be able to import it with import pytdo).
Note that you can use the same environment than the one for pyuson.
-
Create a Python environment with Python 3.12 :
You can use your favorite Python environment manager. With conda, this would be :
conda create -n pytdo-env -c conda-forge python=3.12You may replace the environment name
pytdo-envwith whatever you want.Activate the environment with :
conda activate pytdo-env -
Install the
pytdopackage :With
pip, with thepytdo-envactivated :pip install pytdo
Updates
To upgrade pytdo to the latest version, simply run from the activated environment :
pip install pytdo --upgrade
Manual download
- Download the repository and extract it on your computer (or clone it).
- Create and activate a conda environment as shown above.
- Install the extracted repository with
pip:
pip install "/path/to/pytdo-main"
Alternatively, if you wish to make modification to the source code so that your change is reflected immediately, use the editable mode :
pip install -e /path/to/pytdo-main
Usage
You can use this package through the graphical user interface, or directly from the Python shell, script or Jupyter notebook using the TDOProcessor class. All this methods rely on a TOML configuration file that specifies the experiment parameters and analysis settings.
A template configuration file is provided in the configs folder. Copy-paste and edit it according to your need. Each entry of the file is commented so it should be somewhat straightforward to configure. Then :
- Run the graphical interface with
python -m pytdofrom a terminal with thepyuson-envenvironment activated. Drag & drop the configuration file in the window, load the data, extract the TDO signal and interactively choose the field-window in which the signal is detrended. - Write your own script using the library :
import pytdo cfg_filename = "/path/to/your/config.toml" r = pytdo.TDOProcessor(cfg_filename) r.extract_tdo().remove_background().fft_inverse() r.save_results_csv()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytdo-0.2.11.tar.gz.
File metadata
- Download URL: pytdo-0.2.11.tar.gz
- Upload date:
- Size: 23.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"CachyOS Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
567ad3cc9ff601116596bd69e02379f823a3a38ed1d089d50712918680e6c1a3
|
|
| MD5 |
c1ce73b8b9412ea915aad298de04703c
|
|
| BLAKE2b-256 |
cf24c4f89431bc6ba563cb0cc33bc86c2c8af68e50b81ec8c1cc9be00854670c
|
File details
Details for the file pytdo-0.2.11-py3-none-any.whl.
File metadata
- Download URL: pytdo-0.2.11-py3-none-any.whl
- Upload date:
- Size: 29.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"CachyOS Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b787d55a972ceb33beba5610fd928b46607dde34cc2d96e6e3363fb49390a388
|
|
| MD5 |
5ffc1e6d7d4375bd264744dec1070e55
|
|
| BLAKE2b-256 |
feda878eb3b41ecd425b8c29a891f002b78178d2d6f5e4acfaf4fd19a1000d39
|