batplot 1.8.0__tar.gz → 1.8.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of batplot might be problematic. Click here for more details.

Files changed (83) hide show
  1. {batplot-1.8.0/batplot.egg-info → batplot-1.8.2}/PKG-INFO +1 -1
  2. {batplot-1.8.0 → batplot-1.8.2}/batplot/__init__.py +1 -1
  3. {batplot-1.8.0 → batplot-1.8.2}/batplot/args.py +5 -3
  4. batplot-1.8.2/batplot/batplot.py +3629 -0
  5. batplot-1.8.2/batplot/cpc_interactive.py +4419 -0
  6. {batplot-1.8.0 → batplot-1.8.2}/batplot/electrochem_interactive.py +28 -0
  7. batplot-1.8.2/batplot/interactive.py +3904 -0
  8. batplot-1.8.2/batplot/modes.py +799 -0
  9. {batplot-1.8.0 → batplot-1.8.2}/batplot/operando.py +2 -0
  10. batplot-1.8.2/batplot/operando_ec_interactive.py +5487 -0
  11. batplot-1.8.2/batplot/session.py +2968 -0
  12. {batplot-1.8.0 → batplot-1.8.2}/batplot/utils.py +40 -0
  13. batplot-1.8.2/batplot/version_check.py +253 -0
  14. {batplot-1.8.0 → batplot-1.8.2/batplot.egg-info}/PKG-INFO +1 -1
  15. {batplot-1.8.0 → batplot-1.8.2}/batplot.egg-info/SOURCES.txt +24 -1
  16. {batplot-1.8.0 → batplot-1.8.2}/batplot.egg-info/top_level.txt +1 -0
  17. batplot-1.8.2/batplot_backup_20251221_101150/__init__.py +5 -0
  18. batplot-1.8.2/batplot_backup_20251221_101150/args.py +625 -0
  19. batplot-1.8.2/batplot_backup_20251221_101150/batch.py +1176 -0
  20. batplot-1.8.2/batplot_backup_20251221_101150/cif.py +823 -0
  21. batplot-1.8.2/batplot_backup_20251221_101150/cli.py +149 -0
  22. batplot-1.8.2/batplot_backup_20251221_101150/color_utils.py +547 -0
  23. batplot-1.8.2/batplot_backup_20251221_101150/config.py +198 -0
  24. batplot-1.8.2/batplot_backup_20251221_101150/converters.py +204 -0
  25. {batplot-1.8.0/batplot → batplot-1.8.2/batplot_backup_20251221_101150}/cpc_interactive.py +86 -3
  26. batplot-1.8.2/batplot_backup_20251221_101150/electrochem_interactive.py +4520 -0
  27. {batplot-1.8.0/batplot → batplot-1.8.2/batplot_backup_20251221_101150}/interactive.py +8 -2
  28. batplot-1.8.2/batplot_backup_20251221_101150/manual.py +323 -0
  29. batplot-1.8.2/batplot_backup_20251221_101150/operando.py +603 -0
  30. {batplot-1.8.0/batplot → batplot-1.8.2/batplot_backup_20251221_101150}/operando_ec_interactive.py +116 -15
  31. batplot-1.8.2/batplot_backup_20251221_101150/plotting.py +228 -0
  32. batplot-1.8.2/batplot_backup_20251221_101150/readers.py +2607 -0
  33. {batplot-1.8.0/batplot → batplot-1.8.2/batplot_backup_20251221_101150}/session.py +18 -1
  34. batplot-1.8.2/batplot_backup_20251221_101150/style.py +1441 -0
  35. batplot-1.8.2/batplot_backup_20251221_101150/ui.py +790 -0
  36. batplot-1.8.2/batplot_backup_20251221_101150/utils.py +1046 -0
  37. {batplot-1.8.0/batplot → batplot-1.8.2/batplot_backup_20251221_101150}/version_check.py +85 -6
  38. {batplot-1.8.0 → batplot-1.8.2}/pyproject.toml +1 -1
  39. {batplot-1.8.0 → batplot-1.8.2}/LICENSE +0 -0
  40. {batplot-1.8.0 → batplot-1.8.2}/MANIFEST.in +0 -0
  41. {batplot-1.8.0 → batplot-1.8.2}/README.md +0 -0
  42. {batplot-1.8.0 → batplot-1.8.2}/USER_MANUAL.md +0 -0
  43. {batplot-1.8.0 → batplot-1.8.2}/batplot/batch.py +0 -0
  44. {batplot-1.8.0 → batplot-1.8.2}/batplot/cif.py +0 -0
  45. {batplot-1.8.0 → batplot-1.8.2}/batplot/cli.py +0 -0
  46. {batplot-1.8.0 → batplot-1.8.2}/batplot/color_utils.py +0 -0
  47. {batplot-1.8.0 → batplot-1.8.2}/batplot/config.py +0 -0
  48. {batplot-1.8.0 → batplot-1.8.2}/batplot/converters.py +0 -0
  49. {batplot-1.8.0 → batplot-1.8.2}/batplot/data/USER_MANUAL.md +0 -0
  50. {batplot-1.8.0 → batplot-1.8.2}/batplot/manual.py +0 -0
  51. {batplot-1.8.0 → batplot-1.8.2}/batplot/plotting.py +0 -0
  52. {batplot-1.8.0 → batplot-1.8.2}/batplot/readers.py +0 -0
  53. {batplot-1.8.0 → batplot-1.8.2}/batplot/style.py +0 -0
  54. {batplot-1.8.0 → batplot-1.8.2}/batplot/ui.py +0 -0
  55. {batplot-1.8.0 → batplot-1.8.2}/batplot.egg-info/dependency_links.txt +0 -0
  56. {batplot-1.8.0 → batplot-1.8.2}/batplot.egg-info/entry_points.txt +0 -0
  57. {batplot-1.8.0 → batplot-1.8.2}/batplot.egg-info/requires.txt +0 -0
  58. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/__init__.py +0 -0
  59. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/args.py +0 -0
  60. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/batch.py +0 -0
  61. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/batplot.py +0 -0
  62. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/cif.py +0 -0
  63. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/cli.py +0 -0
  64. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/color_utils.py +0 -0
  65. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/config.py +0 -0
  66. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/converters.py +0 -0
  67. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/cpc_interactive.py +0 -0
  68. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/electrochem_interactive.py +0 -0
  69. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/interactive.py +0 -0
  70. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/modes.py +0 -0
  71. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/operando.py +0 -0
  72. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/operando_ec_interactive.py +0 -0
  73. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/plotting.py +0 -0
  74. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/readers.py +0 -0
  75. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/session.py +0 -0
  76. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/style.py +0 -0
  77. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/ui.py +0 -0
  78. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/utils.py +0 -0
  79. {batplot-1.8.0 → batplot-1.8.2}/batplot_backup_20251121_223043/version_check.py +0 -0
  80. {batplot-1.8.0/batplot → batplot-1.8.2/batplot_backup_20251221_101150}/batplot.py +0 -0
  81. {batplot-1.8.0/batplot → batplot-1.8.2/batplot_backup_20251221_101150}/modes.py +0 -0
  82. {batplot-1.8.0 → batplot-1.8.2}/setup.cfg +0 -0
  83. {batplot-1.8.0 → batplot-1.8.2}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: batplot
3
- Version: 1.8.0
3
+ Version: 1.8.2
4
4
  Summary: Interactive plotting tool for material science (1D plot) and electrochemistry (GC, CV, dQ/dV, CPC, operando) with batch processing
5
5
  Author-email: Tian Dai <tianda@uio.no>
6
6
  License: MIT License
@@ -1,5 +1,5 @@
1
1
  """batplot: Interactive plotting for battery data visualization."""
2
2
 
3
- __version__ = "1.8.0"
3
+ __version__ = "1.8.2"
4
4
 
5
5
  __all__ = ["__version__"]
@@ -152,6 +152,8 @@ def _print_general_help() -> None:
152
152
  " batplot --all style.bps # Batch with style: apply style.bps to all files\n"
153
153
  " batplot --all ./Style/style.bps # Batch with style: use relative path to style file\n"
154
154
  " batplot --all config.bpsg # Batch with style+geom: apply to all XY files\n"
155
+ " batplot file1.xy:1.54 file2.qye --stack # Stack mode: stack all files vertically\n"
156
+ " batplot file1.xy:1.54 file2.qye structure.cif --stack --i # Stack mode: stack all files vertically with cif ticks\n"
155
157
  " batplot file1.qye file2.qye style.bps # Apply style to multiple files and export\n"
156
158
  " batplot file1.xy file2.xye ./Style/style.bps # Apply style from relative path\n\n"
157
159
  " [Electrochemistry]\n"
@@ -169,7 +171,7 @@ def _print_general_help() -> None:
169
171
  " batplot --cv FILE.txt # EC CV (cyclic voltammetry) from .txt\n"
170
172
  " batplot --cv --all # Batch: all .mpt/.txt in directory (CV mode)\n\n"
171
173
  " [Operando]\n"
172
- " batplot --operando --i [FOLDER] # Operando contour (with or without .mpt file) with interactive menu\n\n"
174
+ " batplot --operando --i [FOLDER] # Operando contour (with or without .mpt file)\n\n"
173
175
  "Features:\n"
174
176
  " • Quick plotting with sensible defaults, no config files needed\n"
175
177
  " • Supports many common file formats (see -h xy/ec/op)\n"
@@ -183,9 +185,9 @@ def _print_general_help() -> None:
183
185
  " batplot -h xy # XY file plotting guide\n"
184
186
  " batplot -h ec # Electrochemistry (GC/dQdV/CV/CPC) guide\n"
185
187
  " batplot -h op # Operando guide\n"
186
- " batplot -m # Open the illustrated txt manual with highlights\n"
188
+ " batplot -m # Open the illustrated txt manual with highlights\n\n"
187
189
 
188
- "Contact & Updates:\n\n"
190
+ "Contact & Updates:\n"
189
191
  " Subscribe to batplot-lab@kjemi.uio.no for updates\n"
190
192
  " (If you are not from UiO, send an email to sympa@kjemi.uio.no with the subject line \"subscribe batplot-lab@kjemi.uio.no your-name\")\n"
191
193
  " Kindly cite the pypi package page (https://pypi.org/project/batplot/) if the plot is used for publication\n"