psf


Namepsf JSON
Version 2025.1.1 PyPI version JSON
download
home_pagehttps://www.cgohlke.com
SummaryPoint Spread Function calculations for fluorescence microscopy
upload_time2025-01-02 19:30:56
maintainerNone
docs_urlNone
authorChristoph Gohlke
requires_python>=3.10
licenseBSD
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Point Spread Function calculations for fluorescence microscopy
==============================================================

Psf is a Python library to calculate Point Spread Functions (PSF) for
fluorescence microscopy.

The psf library is no longer actively developed.

:Author: `Christoph Gohlke <https://www.cgohlke.com>`_
:License: BSD 3-Clause
:Version: 2025.1.1

Quickstart
----------

Install the psf package and all dependencies from the
`Python Package Index <https://pypi.org/project/psf/>`_::

    python -m pip install -U "psf[all]"

See `Examples`_ for using the programming interface.

Source code and support are available on
`GitHub <https://github.com/cgohlke/psf>`_.

Requirements
------------

This revision was tested with the following requirements and dependencies
(other versions may work):

- `CPython <https://www.python.org>`_ 3.10.11, 3.11.9, 3.12.8, 3.13.1 64-bit
- `NumPy <https://pypi.org/project/numpy/>`_ 2.1.3
- `Matplotlib <https://pypi.org/project/matplotlib/>`_  3.10.0
  (optional for plotting)

Revisions
---------

2025.1.1

- Improve type hints.
- Drop support for Python 3.9, support Python 3.13.

2024.5.24

- Fix docstring examples not correctly rendered on GitHub.

2024.4.24

- Support NumPy 2.

2024.1.6

- Change PSF.TYPES from dict to set (breaking).

2023.4.26

- Use enums.
- Derive Dimensions from UserDict.
- Add type hints.
- Convert to Google style docstrings.
- Drop support for Python 3.8 and numpy < 1.21 (NEP29).

2022.9.26

- Fix setup.py.

2022.9.12

- Drop support for Python 3.7 (NEP 29).
- Update metadata.

2021.6.6

- Drop support for Python 3.6 (NEP 29).

2020.1.1

- Drop support for Python 2.7 and 3.5.
- Update copyright.

2019.10.14

- Support Python 3.8.

2019.4.22

- Fix setup requirements.
- Fix compiler warning.

References
----------

1. Electromagnetic diffraction in optical systems. II. Structure of the
   image field in an aplanatic system.
   B Richards and E Wolf. Proc R Soc Lond A, 253 (1274), 358-379, 1959.
2. Focal volume optics and experimental artifacts in confocal fluorescence
   correlation spectroscopy.
   S T Hess, W W Webb. Biophys J (83) 2300-17, 2002.
3. Electromagnetic description of image formation in confocal fluorescence
   microscopy.
   T D Viser, S H Wiersma. J Opt Soc Am A (11) 599-608, 1994.
4. Photon counting histogram: one-photon excitation.
   B Huang, T D Perroud, R N Zare. Chem Phys Chem (5), 1523-31, 2004.
   Supporting information: Calculation of the observation volume profile.
5. Gaussian approximations of fluorescence microscope point-spread function
   models.
   B Zhang, J Zerubia, J C Olivo-Marin. Appl. Optics (46) 1819-29, 2007.
6. The SVI-wiki on 3D microscopy, deconvolution, visualization and analysis.
   https://svi.nl/NyquistRate

Examples
--------

>>> import psf
>>> args = dict(
...     shape=(32, 32),
...     dims=(4, 4),
...     ex_wavelen=488,
...     em_wavelen=520,
...     num_aperture=1.2,
...     refr_index=1.333,
...     pinhole_radius=0.55,
...     pinhole_shape='round',
... )
>>> obsvol = psf.PSF(psf.GAUSSIAN | psf.CONFOCAL, **args)
>>> obsvol.sigma.ou
(2.588..., 1.370...)
>>> obsvol = psf.PSF(psf.ISOTROPIC | psf.CONFOCAL, **args)
>>> print(obsvol, end='')
PSF
 ISOTROPIC|CONFOCAL
 shape: (32, 32) pixel
 dimensions: (4.00, 4.00) um, (55.64, 61.80) ou, (8.06, 8.06) au
 excitation wavelength: 488.0 nm
 emission wavelength: 520.0 nm
 numeric aperture: 1.20
 refractive index: 1.33
 half cone angle: 64.19 deg
 magnification: 1.00
 underfilling: 1.00
 pinhole radius: 0.550 um, 8.498 ou, 1.1086 au, 4.40 px
 computing time: ... ms
>>> obsvol[0, :3]
array([1.     , 0.51071, 0.04397])
>>> # write the image plane to file
>>> obsvol.slice(0).tofile('_test_slice.bin')
>>> # write a full 3D PSF volume to file
>>> obsvol.volume().tofile('_test_volume.bin')

Refer to `psf_example.py` in the source distribution for more examples.

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.cgohlke.com",
    "name": "psf",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": null,
    "author": "Christoph Gohlke",
    "author_email": "cgohlke@cgohlke.com",
    "download_url": "https://files.pythonhosted.org/packages/b5/fc/6d495aae701884462adb13bcc1fcd9b3d29ec755f113d316f2a1830c445c/psf-2025.1.1.tar.gz",
    "platform": "any",
    "description": "Point Spread Function calculations for fluorescence microscopy\n==============================================================\n\nPsf is a Python library to calculate Point Spread Functions (PSF) for\nfluorescence microscopy.\n\nThe psf library is no longer actively developed.\n\n:Author: `Christoph Gohlke <https://www.cgohlke.com>`_\n:License: BSD 3-Clause\n:Version: 2025.1.1\n\nQuickstart\n----------\n\nInstall the psf package and all dependencies from the\n`Python Package Index <https://pypi.org/project/psf/>`_::\n\n    python -m pip install -U \"psf[all]\"\n\nSee `Examples`_ for using the programming interface.\n\nSource code and support are available on\n`GitHub <https://github.com/cgohlke/psf>`_.\n\nRequirements\n------------\n\nThis revision was tested with the following requirements and dependencies\n(other versions may work):\n\n- `CPython <https://www.python.org>`_ 3.10.11, 3.11.9, 3.12.8, 3.13.1 64-bit\n- `NumPy <https://pypi.org/project/numpy/>`_ 2.1.3\n- `Matplotlib <https://pypi.org/project/matplotlib/>`_  3.10.0\n  (optional for plotting)\n\nRevisions\n---------\n\n2025.1.1\n\n- Improve type hints.\n- Drop support for Python 3.9, support Python 3.13.\n\n2024.5.24\n\n- Fix docstring examples not correctly rendered on GitHub.\n\n2024.4.24\n\n- Support NumPy 2.\n\n2024.1.6\n\n- Change PSF.TYPES from dict to set (breaking).\n\n2023.4.26\n\n- Use enums.\n- Derive Dimensions from UserDict.\n- Add type hints.\n- Convert to Google style docstrings.\n- Drop support for Python 3.8 and numpy < 1.21 (NEP29).\n\n2022.9.26\n\n- Fix setup.py.\n\n2022.9.12\n\n- Drop support for Python 3.7 (NEP 29).\n- Update metadata.\n\n2021.6.6\n\n- Drop support for Python 3.6 (NEP 29).\n\n2020.1.1\n\n- Drop support for Python 2.7 and 3.5.\n- Update copyright.\n\n2019.10.14\n\n- Support Python 3.8.\n\n2019.4.22\n\n- Fix setup requirements.\n- Fix compiler warning.\n\nReferences\n----------\n\n1. Electromagnetic diffraction in optical systems. II. Structure of the\n   image field in an aplanatic system.\n   B Richards and E Wolf. Proc R Soc Lond A, 253 (1274), 358-379, 1959.\n2. Focal volume optics and experimental artifacts in confocal fluorescence\n   correlation spectroscopy.\n   S T Hess, W W Webb. Biophys J (83) 2300-17, 2002.\n3. Electromagnetic description of image formation in confocal fluorescence\n   microscopy.\n   T D Viser, S H Wiersma. J Opt Soc Am A (11) 599-608, 1994.\n4. Photon counting histogram: one-photon excitation.\n   B Huang, T D Perroud, R N Zare. Chem Phys Chem (5), 1523-31, 2004.\n   Supporting information: Calculation of the observation volume profile.\n5. Gaussian approximations of fluorescence microscope point-spread function\n   models.\n   B Zhang, J Zerubia, J C Olivo-Marin. Appl. Optics (46) 1819-29, 2007.\n6. The SVI-wiki on 3D microscopy, deconvolution, visualization and analysis.\n   https://svi.nl/NyquistRate\n\nExamples\n--------\n\n>>> import psf\n>>> args = dict(\n...     shape=(32, 32),\n...     dims=(4, 4),\n...     ex_wavelen=488,\n...     em_wavelen=520,\n...     num_aperture=1.2,\n...     refr_index=1.333,\n...     pinhole_radius=0.55,\n...     pinhole_shape='round',\n... )\n>>> obsvol = psf.PSF(psf.GAUSSIAN | psf.CONFOCAL, **args)\n>>> obsvol.sigma.ou\n(2.588..., 1.370...)\n>>> obsvol = psf.PSF(psf.ISOTROPIC | psf.CONFOCAL, **args)\n>>> print(obsvol, end='')\nPSF\n ISOTROPIC|CONFOCAL\n shape: (32, 32) pixel\n dimensions: (4.00, 4.00) um, (55.64, 61.80) ou, (8.06, 8.06) au\n excitation wavelength: 488.0 nm\n emission wavelength: 520.0 nm\n numeric aperture: 1.20\n refractive index: 1.33\n half cone angle: 64.19 deg\n magnification: 1.00\n underfilling: 1.00\n pinhole radius: 0.550 um, 8.498 ou, 1.1086 au, 4.40 px\n computing time: ... ms\n>>> obsvol[0, :3]\narray([1.     , 0.51071, 0.04397])\n>>> # write the image plane to file\n>>> obsvol.slice(0).tofile('_test_slice.bin')\n>>> # write a full 3D PSF volume to file\n>>> obsvol.volume().tofile('_test_volume.bin')\n\nRefer to `psf_example.py` in the source distribution for more examples.\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Point Spread Function calculations for fluorescence microscopy",
    "version": "2025.1.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/cgohlke/psf/issues",
        "Homepage": "https://www.cgohlke.com",
        "Source Code": "https://github.com/cgohlke/psf"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5708fed641e5897fa2c5d7e8389662e96797a14cf234134dd3d12ea2e00c9ef8",
                "md5": "30c92bccb3cfb45021dc49fc4e3e3bdd",
                "sha256": "a5a6c3086afdd6c098b3fdfd9f44094d059b815d9199cd6174a4e49d60aadd1f"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30c92bccb3cfb45021dc49fc4e3e3bdd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 32090,
            "upload_time": "2025-01-02T19:29:33",
            "upload_time_iso_8601": "2025-01-02T19:29:33.275743Z",
            "url": "https://files.pythonhosted.org/packages/57/08/fed641e5897fa2c5d7e8389662e96797a14cf234134dd3d12ea2e00c9ef8/psf-2025.1.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ddfc7329eb90c5457c84aa1bc5c8630da357e14a9ad24c330d97de04c959f527",
                "md5": "8e7462585eb88f2ed5d834daac454ef9",
                "sha256": "ce70937940ba9d67c4872bf30c2827cade8806c2080aa2791a4a3f1571357894"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8e7462585eb88f2ed5d834daac454ef9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 30982,
            "upload_time": "2025-01-02T19:29:35",
            "upload_time_iso_8601": "2025-01-02T19:29:35.367106Z",
            "url": "https://files.pythonhosted.org/packages/dd/fc/7329eb90c5457c84aa1bc5c8630da357e14a9ad24c330d97de04c959f527/psf-2025.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "658375cd1c53ec52bc84cb0813df109d6c7e91dc211ac348655ed5a9ad862d64",
                "md5": "6c4931e8748eae52e5ffe59d9ad4c510",
                "sha256": "b0d02e0d2a4bde2a86adb963c24e4e30b6395831f09bc4d9b68a7095746a5f64"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6c4931e8748eae52e5ffe59d9ad4c510",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 63910,
            "upload_time": "2025-01-02T19:29:36",
            "upload_time_iso_8601": "2025-01-02T19:29:36.323259Z",
            "url": "https://files.pythonhosted.org/packages/65/83/75cd1c53ec52bc84cb0813df109d6c7e91dc211ac348655ed5a9ad862d64/psf-2025.1.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8321f69953ca4074ed1ca75a76407859d3c7560981f0409ab7effd2dc7a2ffc7",
                "md5": "f88d81a611fb12224198c3f768c3f49f",
                "sha256": "aaca9072e9c665fc1d6049b7289be96d2772690301e3f94a0d4aed438386e991"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "f88d81a611fb12224198c3f768c3f49f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 30325,
            "upload_time": "2025-01-02T19:29:37",
            "upload_time_iso_8601": "2025-01-02T19:29:37.345876Z",
            "url": "https://files.pythonhosted.org/packages/83/21/f69953ca4074ed1ca75a76407859d3c7560981f0409ab7effd2dc7a2ffc7/psf-2025.1.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1543a064321b991a429fb9a3664dd06644d40f8d93ccd194b6be4c4babab8d8a",
                "md5": "7104c4595354f468e3b02a725d23f9d9",
                "sha256": "5ea60307111472a944abd48cac79ae719294d3abd9c00556c9a308eb321e3203"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7104c4595354f468e3b02a725d23f9d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 33422,
            "upload_time": "2025-01-02T19:29:38",
            "upload_time_iso_8601": "2025-01-02T19:29:38.349343Z",
            "url": "https://files.pythonhosted.org/packages/15/43/a064321b991a429fb9a3664dd06644d40f8d93ccd194b6be4c4babab8d8a/psf-2025.1.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce54b087e00273f98fc7af536c9d18b6684f22ef8e147fc29fbcca2b08725c99",
                "md5": "68f7ba0ff3366f22aca5da33292e50cd",
                "sha256": "a0c80aabb891f52174263cf58e4ba781968e530f08ee3a145d30675d0682dd7f"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "68f7ba0ff3366f22aca5da33292e50cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 32091,
            "upload_time": "2025-01-02T19:29:39",
            "upload_time_iso_8601": "2025-01-02T19:29:39.253336Z",
            "url": "https://files.pythonhosted.org/packages/ce/54/b087e00273f98fc7af536c9d18b6684f22ef8e147fc29fbcca2b08725c99/psf-2025.1.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2f86e84aaacf8ea40612228fb868b766af32780e5c40bac28fd097341761beb",
                "md5": "382f4c22fe9e6647ea993d5667cd3f14",
                "sha256": "4a6b9453445603d307d47876c6690caa787718bf86e297288759eb946229f65c"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "382f4c22fe9e6647ea993d5667cd3f14",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 30984,
            "upload_time": "2025-01-02T19:29:40",
            "upload_time_iso_8601": "2025-01-02T19:29:40.943182Z",
            "url": "https://files.pythonhosted.org/packages/f2/f8/6e84aaacf8ea40612228fb868b766af32780e5c40bac28fd097341761beb/psf-2025.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a55971dbd0b74cb7fe4185a74735b252ac2b397ce72da8c4aa24fc4415ac195a",
                "md5": "4a2dae12ee49f3f0bc22189b6706ae18",
                "sha256": "04cdc2279d9834b66e239fb71dd03767586f975ea97631e006676a15ae692780"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a2dae12ee49f3f0bc22189b6706ae18",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 64820,
            "upload_time": "2025-01-02T19:29:41",
            "upload_time_iso_8601": "2025-01-02T19:29:41.901793Z",
            "url": "https://files.pythonhosted.org/packages/a5/59/71dbd0b74cb7fe4185a74735b252ac2b397ce72da8c4aa24fc4415ac195a/psf-2025.1.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae6257af2310f318bc8e9d8b085829ad46b5d346d6640eacfb5a302ebb487022",
                "md5": "2e7c1fb8f102ebbd571058e0d4161fd0",
                "sha256": "9184a96837e9a50ece638fef1df6c966f73bc03a19d6c1b9a6ba580edf8a6349"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "2e7c1fb8f102ebbd571058e0d4161fd0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 30326,
            "upload_time": "2025-01-02T19:29:44",
            "upload_time_iso_8601": "2025-01-02T19:29:44.058859Z",
            "url": "https://files.pythonhosted.org/packages/ae/62/57af2310f318bc8e9d8b085829ad46b5d346d6640eacfb5a302ebb487022/psf-2025.1.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66cc5f0216703f708e04464ebff9f69fd85e59e574872c3cd7ea66679817f9b1",
                "md5": "c3994169f952c3185c9e6a774d21167f",
                "sha256": "a1473bdf40bdc1a557e9fb85e1c1106bcce2ad231425115c5ce2cf020b24c49a"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c3994169f952c3185c9e6a774d21167f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 33422,
            "upload_time": "2025-01-02T19:29:44",
            "upload_time_iso_8601": "2025-01-02T19:29:44.972989Z",
            "url": "https://files.pythonhosted.org/packages/66/cc/5f0216703f708e04464ebff9f69fd85e59e574872c3cd7ea66679817f9b1/psf-2025.1.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d3e5e3e09463b8087093c49ad82001e8f73421d70ce756e08ec4105d75c4c5b",
                "md5": "6c4d254f27fb723a35bed4a68bd6c88d",
                "sha256": "e839fe4c51b33fe5157235ba5a3ca01bbec0d9e364de70016041bf858ec2d344"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "6c4d254f27fb723a35bed4a68bd6c88d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 29316,
            "upload_time": "2025-01-02T19:29:46",
            "upload_time_iso_8601": "2025-01-02T19:29:46.171099Z",
            "url": "https://files.pythonhosted.org/packages/5d/3e/5e3e09463b8087093c49ad82001e8f73421d70ce756e08ec4105d75c4c5b/psf-2025.1.1-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9030d62e7c7d02c289c6bcb84577af81545b0af876f6af803e9a1417eee8dfa2",
                "md5": "d755ecc55f1c47ddc8950d8604bd2aaf",
                "sha256": "86a4d3f883afb8c70b55c9e83d8e82b261cd7e550ded32e3f2f17477e5cc847f"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d755ecc55f1c47ddc8950d8604bd2aaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 31747,
            "upload_time": "2025-01-02T19:29:47",
            "upload_time_iso_8601": "2025-01-02T19:29:47.966751Z",
            "url": "https://files.pythonhosted.org/packages/90/30/d62e7c7d02c289c6bcb84577af81545b0af876f6af803e9a1417eee8dfa2/psf-2025.1.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a03a6236640a881a96fd16b54bee444e477233b24f0e28363cd84d08dd430f6f",
                "md5": "d52c3bdff7aa66a65e908c2033a58cca",
                "sha256": "688a2a0dbb18cda088f0cbf8c86ceffa32eccbca86fc1f0665ed1edd61777051"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d52c3bdff7aa66a65e908c2033a58cca",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 31122,
            "upload_time": "2025-01-02T19:29:48",
            "upload_time_iso_8601": "2025-01-02T19:29:48.872886Z",
            "url": "https://files.pythonhosted.org/packages/a0/3a/6236640a881a96fd16b54bee444e477233b24f0e28363cd84d08dd430f6f/psf-2025.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2641e3caa18c7821aec8b496894c2737d372c8c7f2fe3d7a1f81bd8919cf9c68",
                "md5": "0f530d5149ae00c86329841a07539b08",
                "sha256": "39c4da0391eda99d80f02673733924cbfde221a710f5c94813db784c39d80e58"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f530d5149ae00c86329841a07539b08",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 65497,
            "upload_time": "2025-01-02T19:29:50",
            "upload_time_iso_8601": "2025-01-02T19:29:50.789282Z",
            "url": "https://files.pythonhosted.org/packages/26/41/e3caa18c7821aec8b496894c2737d372c8c7f2fe3d7a1f81bd8919cf9c68/psf-2025.1.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d401a08a9818f47f9654cc6f91b0ffb22a7ab688ce4ebc705ee49346adf7c2f3",
                "md5": "bc60caf1bb9740680728fc76ac8b3980",
                "sha256": "9ac71f122727bdfdf935f5f261fc11a0bc28d130b78696893c4f58e94c42ed6a"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "bc60caf1bb9740680728fc76ac8b3980",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 30410,
            "upload_time": "2025-01-02T19:29:52",
            "upload_time_iso_8601": "2025-01-02T19:29:52.233309Z",
            "url": "https://files.pythonhosted.org/packages/d4/01/a08a9818f47f9654cc6f91b0ffb22a7ab688ce4ebc705ee49346adf7c2f3/psf-2025.1.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab4f82d047af621eb893448abfabd1ca6fb8cc7656aaea1e7b633a16a4ae66d0",
                "md5": "0689ba55e98c521ca047f3ca65c662e2",
                "sha256": "4b7b46aab6fa4650ef8ef181923573edf9a77dada45130d1793bfb38dc8985d4"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0689ba55e98c521ca047f3ca65c662e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 33437,
            "upload_time": "2025-01-02T19:29:55",
            "upload_time_iso_8601": "2025-01-02T19:29:55.030576Z",
            "url": "https://files.pythonhosted.org/packages/ab/4f/82d047af621eb893448abfabd1ca6fb8cc7656aaea1e7b633a16a4ae66d0/psf-2025.1.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8675efc069ba50cde95a8cb5594ff45bb120de213e0e871dda345a659826386b",
                "md5": "499eee728257757ab2e57d3b37912d4b",
                "sha256": "922eee3a4ca8d7a29cfc96352548c3da12f024e5ae41826df40686d0e28ad25b"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "499eee728257757ab2e57d3b37912d4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 29397,
            "upload_time": "2025-01-02T19:29:57",
            "upload_time_iso_8601": "2025-01-02T19:29:57.284902Z",
            "url": "https://files.pythonhosted.org/packages/86/75/efc069ba50cde95a8cb5594ff45bb120de213e0e871dda345a659826386b/psf-2025.1.1-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3af0deab6a59972d0db88581ae7ea1637806bfdadeeb1bdd7ecfaa79b8169ea",
                "md5": "95aaed5b3b024e3f6596e5419b155fa0",
                "sha256": "cc82dfc4a8c422ef43767fa4ef34263028d98273ac50e3e76c57b5e26e733fa5"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "95aaed5b3b024e3f6596e5419b155fa0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 31751,
            "upload_time": "2025-01-02T19:29:58",
            "upload_time_iso_8601": "2025-01-02T19:29:58.181203Z",
            "url": "https://files.pythonhosted.org/packages/c3/af/0deab6a59972d0db88581ae7ea1637806bfdadeeb1bdd7ecfaa79b8169ea/psf-2025.1.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5971cd044678090b4a042e70bb9f96b5ea185fd228b00f8f37ef79460a612112",
                "md5": "3ec83f11e78a3a56ed613765a1963fc3",
                "sha256": "a5346284738817d91a4d9b8303854da13f2dd7bc4b1f1a36500f484defba80e6"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3ec83f11e78a3a56ed613765a1963fc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 31128,
            "upload_time": "2025-01-02T19:29:59",
            "upload_time_iso_8601": "2025-01-02T19:29:59.243474Z",
            "url": "https://files.pythonhosted.org/packages/59/71/cd044678090b4a042e70bb9f96b5ea185fd228b00f8f37ef79460a612112/psf-2025.1.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ea02d02fbcf45b1cf807ffdca4c40761b3eb85f803da81b8158d4b3b4f32a3f",
                "md5": "b3969b5d6cb8536f37188da871a0f1f5",
                "sha256": "233f809c37883bc3d9b59f7668e079bd7fe92968b9649bb24d1fd52b03278fc3"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3969b5d6cb8536f37188da871a0f1f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 65465,
            "upload_time": "2025-01-02T19:30:00",
            "upload_time_iso_8601": "2025-01-02T19:30:00.200686Z",
            "url": "https://files.pythonhosted.org/packages/0e/a0/2d02fbcf45b1cf807ffdca4c40761b3eb85f803da81b8158d4b3b4f32a3f/psf-2025.1.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6beb27df3d7ed48348e423b8aa1bc782df8d65f8740bb46c1f5945416f2f4c90",
                "md5": "abf65b64f6c1931d9cc43be53fd0874f",
                "sha256": "60be272f1f7a959a2af7b8d82e2dc7c0c68bd6d16e7dcf3abc24be58436b5032"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "abf65b64f6c1931d9cc43be53fd0874f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 30410,
            "upload_time": "2025-01-02T19:30:01",
            "upload_time_iso_8601": "2025-01-02T19:30:01.189550Z",
            "url": "https://files.pythonhosted.org/packages/6b/eb/27df3d7ed48348e423b8aa1bc782df8d65f8740bb46c1f5945416f2f4c90/psf-2025.1.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dee40735274d6955d31c18a7bab3f5a7dcfc801245ecc0c52b3a9891b87dc3ca",
                "md5": "33f45398962019ae827b2fe016e0a51f",
                "sha256": "db69b67537cd46b08b7cb305d5bc5f1abaffc2117a17d286be81fca5b8a11de5"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "33f45398962019ae827b2fe016e0a51f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 33440,
            "upload_time": "2025-01-02T19:30:02",
            "upload_time_iso_8601": "2025-01-02T19:30:02.138792Z",
            "url": "https://files.pythonhosted.org/packages/de/e4/0735274d6955d31c18a7bab3f5a7dcfc801245ecc0c52b3a9891b87dc3ca/psf-2025.1.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be5bd988859a0996d83791a8b149f512bf60f95300911ab4ff5ecf757334d8e6",
                "md5": "6d44cfc9af3e1e51bbe7c68c495c58e6",
                "sha256": "b6540a6a389ac2c9f596b48451ae95b8a4b756384daed2d8fdc192bd6c91c672"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "6d44cfc9af3e1e51bbe7c68c495c58e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 29400,
            "upload_time": "2025-01-02T19:30:03",
            "upload_time_iso_8601": "2025-01-02T19:30:03.738679Z",
            "url": "https://files.pythonhosted.org/packages/be/5b/d988859a0996d83791a8b149f512bf60f95300911ab4ff5ecf757334d8e6/psf-2025.1.1-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5fc6d495aae701884462adb13bcc1fcd9b3d29ec755f113d316f2a1830c445c",
                "md5": "f6d8268c723f944e23a48ee9614fd1f7",
                "sha256": "dbbefddcd4df8cae6e166d835f136a55dfaf929247c90afa35ff7f1eb0e242f5"
            },
            "downloads": -1,
            "filename": "psf-2025.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "f6d8268c723f944e23a48ee9614fd1f7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 27828,
            "upload_time": "2025-01-02T19:30:56",
            "upload_time_iso_8601": "2025-01-02T19:30:56.786508Z",
            "url": "https://files.pythonhosted.org/packages/b5/fc/6d495aae701884462adb13bcc1fcd9b3d29ec755f113d316f2a1830c445c/psf-2025.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-02 19:30:56",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cgohlke",
    "github_project": "psf",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "psf"
}
        
Elapsed time: 3.95850s