tilmedia


Nametilmedia JSON
Version 3.16.0 PyPI version JSON
download
home_pagehttps://www.tlk-thermo.com/index.php/en/tilmedia-suite
SummarySubstance properties for incompressible liquids, ideal gases, real fluids and mixtures
upload_time2024-04-26 19:13:36
maintainerNone
docs_urlNone
authorTLK Thermo GmbH
requires_pythonNone
licenseBSD
keywords thermophysical thermodynamic fluid properties gas liquid mixtures substances media
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            TILMedia Suite
==============

TILMedia Suite provides methods of calculation, which express the thermophysical properties of
incompressible liquids, ideal gases and real fluids containing a vapor liquid equilibrium (VLEFluid). Methods
for calculating the properties of mixtures are also included. TILMedia provides a comprehensive
range of different substances, including our own highly efficient and accurate real-time substance
property implementations.

(https://www.tlk-thermo.com/index.php/en/software/tilmedia-suite)

Example for a gas::

    >>> import tilmedia
    >>> gas = tilmedia.Gas('VDI4670.DryAir')
    >>> gas.set_pTxi(1e5, 300)
    >>> round(gas.d, 6)
    1.161034
    >>> gas.set_Txi(300)
    >>> round(gas.cp, 6)
    1004.990552
    >>> gas.set(p=1e5, T=300)
    >>> round(gas.d, 6)
    1.161034
    >>> gas.set_Txi([300, 350, 400])
    >>> gas.cp.round(6)
    array([1004.990552, 1008.342171, 1013.626381])

Example for a liquid::

    >>> import tilmedia
    >>> liquid = tilmedia.Liquid('TILMedia.Water')
    >>> liquid.set_Txi(300)
    >>> round(liquid.d, 6)
    996.425346
    >>> liquid.set_pTxi(1e5, 300)
    >>> round(liquid.s, 6)
    394.977757
    >>> liquid.set(p=liquid.p, T=300)
    >>> round(liquid.s, 6)
    394.977757
    >>> liquid.set_Txi([300, 310, 320])
    >>> liquid.cp.round(6)
    array([4180.308149, 4177.312533, 4177.805418])

Example for a VLEFluid::

    >>> import tilmedia
    >>> vleFluid = tilmedia.VLEFluid('TILMedia.R134a')
    >>> vleFluid.set_pTxi(1e5, 300)
    >>> round(vleFluid.d, 6)
    4.173095
    >>> round(vleFluid.vle.T_l, 6)
    246.788812
    >>> vleFluid.set_pxi(2e5)
    >>> round(vleFluid.vle.T_l, 6)
    263.073728
    >>> vleFluid.set(T=vleFluid.sat.T_dew)
    >>> round(vleFluid.sat.p_dew, 1)
    200000.0
    >>> vleFluid.set_phxi(1e5, [350e3, 360e3, 370e3])
    >>> vleFluid.d.round(6)
    array([6.106462, 5.79392 , 5.511813])

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.tlk-thermo.com/index.php/en/tilmedia-suite",
    "name": "tilmedia",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "thermophysical thermodynamic fluid properties gas liquid mixtures substances media",
    "author": "TLK Thermo GmbH",
    "author_email": "tilmedia@tlk-thermo.com",
    "download_url": null,
    "platform": null,
    "description": "TILMedia Suite\n==============\n\nTILMedia Suite provides methods of calculation, which express the thermophysical properties of\nincompressible liquids, ideal gases and real fluids containing a vapor liquid equilibrium (VLEFluid). Methods\nfor calculating the properties of mixtures are also included. TILMedia provides a comprehensive\nrange of different substances, including our own highly efficient and accurate real-time substance\nproperty implementations.\n\n(https://www.tlk-thermo.com/index.php/en/software/tilmedia-suite)\n\nExample for a gas::\n\n    >>> import tilmedia\n    >>> gas = tilmedia.Gas('VDI4670.DryAir')\n    >>> gas.set_pTxi(1e5, 300)\n    >>> round(gas.d, 6)\n    1.161034\n    >>> gas.set_Txi(300)\n    >>> round(gas.cp, 6)\n    1004.990552\n    >>> gas.set(p=1e5, T=300)\n    >>> round(gas.d, 6)\n    1.161034\n    >>> gas.set_Txi([300, 350, 400])\n    >>> gas.cp.round(6)\n    array([1004.990552, 1008.342171, 1013.626381])\n\nExample for a liquid::\n\n    >>> import tilmedia\n    >>> liquid = tilmedia.Liquid('TILMedia.Water')\n    >>> liquid.set_Txi(300)\n    >>> round(liquid.d, 6)\n    996.425346\n    >>> liquid.set_pTxi(1e5, 300)\n    >>> round(liquid.s, 6)\n    394.977757\n    >>> liquid.set(p=liquid.p, T=300)\n    >>> round(liquid.s, 6)\n    394.977757\n    >>> liquid.set_Txi([300, 310, 320])\n    >>> liquid.cp.round(6)\n    array([4180.308149, 4177.312533, 4177.805418])\n\nExample for a VLEFluid::\n\n    >>> import tilmedia\n    >>> vleFluid = tilmedia.VLEFluid('TILMedia.R134a')\n    >>> vleFluid.set_pTxi(1e5, 300)\n    >>> round(vleFluid.d, 6)\n    4.173095\n    >>> round(vleFluid.vle.T_l, 6)\n    246.788812\n    >>> vleFluid.set_pxi(2e5)\n    >>> round(vleFluid.vle.T_l, 6)\n    263.073728\n    >>> vleFluid.set(T=vleFluid.sat.T_dew)\n    >>> round(vleFluid.sat.p_dew, 1)\n    200000.0\n    >>> vleFluid.set_phxi(1e5, [350e3, 360e3, 370e3])\n    >>> vleFluid.d.round(6)\n    array([6.106462, 5.79392 , 5.511813])\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Substance properties for incompressible liquids, ideal gases, real fluids and mixtures",
    "version": "3.16.0",
    "project_urls": {
        "Homepage": "https://www.tlk-thermo.com/index.php/en/tilmedia-suite"
    },
    "split_keywords": [
        "thermophysical",
        "thermodynamic",
        "fluid",
        "properties",
        "gas",
        "liquid",
        "mixtures",
        "substances",
        "media"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59e1c917d7b83e90fdb86791c92b54b5eebcb9f3f95ecc814d3f29039f613550",
                "md5": "e1300e3532ed6d0456032acfcde27947",
                "sha256": "744180d4cc82f0e303e04a95c011f847603cbf123b77aa36bae6129a9a710a7b"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e1300e3532ed6d0456032acfcde27947",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 11453420,
            "upload_time": "2024-04-26T19:13:36",
            "upload_time_iso_8601": "2024-04-26T19:13:36.730862Z",
            "url": "https://files.pythonhosted.org/packages/59/e1/c917d7b83e90fdb86791c92b54b5eebcb9f3f95ecc814d3f29039f613550/tilmedia-3.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c735a9dc9fd84c169b835d017e1542e7ca45f369c38f95ea6860384b09d28cb",
                "md5": "d1405c683b55e07b0c6ce48cb629908b",
                "sha256": "249eeee43ae463cf654144a76522ba3152ea3e3540feefd925c21df6ff80c4ad"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d1405c683b55e07b0c6ce48cb629908b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 10904285,
            "upload_time": "2024-04-26T19:13:40",
            "upload_time_iso_8601": "2024-04-26T19:13:40.873120Z",
            "url": "https://files.pythonhosted.org/packages/8c/73/5a9dc9fd84c169b835d017e1542e7ca45f369c38f95ea6860384b09d28cb/tilmedia-3.16.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4709870216a5a6a01f865fe2d758e68cc804c27adb4268edb1455469d2004e8",
                "md5": "9e8b81c26d502670e9c533fbd55109b3",
                "sha256": "5938f255f4e71ce0697e9dfb69504a38670836d66344551263b7df2a62319b69"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e8b81c26d502670e9c533fbd55109b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 11701258,
            "upload_time": "2024-04-26T19:13:44",
            "upload_time_iso_8601": "2024-04-26T19:13:44.979079Z",
            "url": "https://files.pythonhosted.org/packages/c4/70/9870216a5a6a01f865fe2d758e68cc804c27adb4268edb1455469d2004e8/tilmedia-3.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33d1701074e83218a9fe81d9a45ab245c2f9192ebea86d2fbeace4b1c70c172b",
                "md5": "645a792310aead74aca764b1ea53a089",
                "sha256": "3f21ebb3c9c7a961d75db5d00f6b213058f916ff9a63e89c5186792f4323e844"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "645a792310aead74aca764b1ea53a089",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2874242,
            "upload_time": "2024-04-26T19:13:48",
            "upload_time_iso_8601": "2024-04-26T19:13:48.205737Z",
            "url": "https://files.pythonhosted.org/packages/33/d1/701074e83218a9fe81d9a45ab245c2f9192ebea86d2fbeace4b1c70c172b/tilmedia-3.16.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab2e4874d6c9f3613bb1964b469f1811e3d18bccba25195e7558fa7f3cf16082",
                "md5": "b868f8fa051268cdafc6896ca9aa5432",
                "sha256": "5c8cb8f6138ff3b80464769cd3d55ed37e687ef4c5f53f21ef2dbce8eb91e7dc"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b868f8fa051268cdafc6896ca9aa5432",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3012647,
            "upload_time": "2024-04-26T19:13:50",
            "upload_time_iso_8601": "2024-04-26T19:13:50.671628Z",
            "url": "https://files.pythonhosted.org/packages/ab/2e/4874d6c9f3613bb1964b469f1811e3d18bccba25195e7558fa7f3cf16082/tilmedia-3.16.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "719595d40270bb34f6625592c45ed8fb44dc76d8a1981d7dadda811ff5f9504b",
                "md5": "c15502ee2f9c06491b52087d86a8925f",
                "sha256": "1c8a9c1410c3ad5c84a88106789b55bd7566783a563e7a84ae9f3a94c06232a3"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c15502ee2f9c06491b52087d86a8925f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 11553357,
            "upload_time": "2024-04-26T19:13:54",
            "upload_time_iso_8601": "2024-04-26T19:13:54.600588Z",
            "url": "https://files.pythonhosted.org/packages/71/95/95d40270bb34f6625592c45ed8fb44dc76d8a1981d7dadda811ff5f9504b/tilmedia-3.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac9828650827dbc48c75f94139579a25f02d32027084f1e24bb69cac5ab5c39c",
                "md5": "88cccbe8cdb23454e35cf7e496dd9f48",
                "sha256": "dd4eca67b48ee162d8b1c4667ddb17aebed9104bdca6a6593e83008f78d773eb"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "88cccbe8cdb23454e35cf7e496dd9f48",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 10991720,
            "upload_time": "2024-04-26T19:13:59",
            "upload_time_iso_8601": "2024-04-26T19:13:59.187668Z",
            "url": "https://files.pythonhosted.org/packages/ac/98/28650827dbc48c75f94139579a25f02d32027084f1e24bb69cac5ab5c39c/tilmedia-3.16.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d7c981ac12b9c95a3b9a3446400b925968680fa964ff7b5e3715a20992a42c6",
                "md5": "df33839aff26c8a9c13595bf13cb5d98",
                "sha256": "afeb1fbb3c1dbe069d33585b5a4408a72650c192b08bc6007cf50b01298e8ae1"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df33839aff26c8a9c13595bf13cb5d98",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 11800688,
            "upload_time": "2024-04-26T19:14:03",
            "upload_time_iso_8601": "2024-04-26T19:14:03.801853Z",
            "url": "https://files.pythonhosted.org/packages/0d/7c/981ac12b9c95a3b9a3446400b925968680fa964ff7b5e3715a20992a42c6/tilmedia-3.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9843c73e47c3e6d24f0de51bc1f6d687b948b9a4f87d0cbcd50c71613a10028f",
                "md5": "897fd63f640eafcd56d70959b4d2644d",
                "sha256": "ef3abab63409d94660687e38623120ee9fdd434fa2d927f4fbfa6098444b1189"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "897fd63f640eafcd56d70959b4d2644d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2874931,
            "upload_time": "2024-04-26T19:14:06",
            "upload_time_iso_8601": "2024-04-26T19:14:06.551495Z",
            "url": "https://files.pythonhosted.org/packages/98/43/c73e47c3e6d24f0de51bc1f6d687b948b9a4f87d0cbcd50c71613a10028f/tilmedia-3.16.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fad8bcdf999da221a5d6f8163ac5f63d41a53b3a754d3eb8c2afc3107e83766b",
                "md5": "ecb3fd8f7221d4bdf02a33f8124c350d",
                "sha256": "11d37c388f9b8cb52673cc0b16373cb2423b958f647f80a235633b5eb297d55b"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ecb3fd8f7221d4bdf02a33f8124c350d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3013184,
            "upload_time": "2024-04-26T19:14:08",
            "upload_time_iso_8601": "2024-04-26T19:14:08.467840Z",
            "url": "https://files.pythonhosted.org/packages/fa/d8/bcdf999da221a5d6f8163ac5f63d41a53b3a754d3eb8c2afc3107e83766b/tilmedia-3.16.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79d351462d6cb8622d104e1b047b883f2699d2a07f79e4147bb1d00ecefe1575",
                "md5": "5499175dbfbd0edbdc727e7e4c1f6891",
                "sha256": "507728fed3630c369995860c4a39e17a5a77c19f85478f66253192172fda7b9e"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5499175dbfbd0edbdc727e7e4c1f6891",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 11528067,
            "upload_time": "2024-04-26T19:14:13",
            "upload_time_iso_8601": "2024-04-26T19:14:13.116202Z",
            "url": "https://files.pythonhosted.org/packages/79/d3/51462d6cb8622d104e1b047b883f2699d2a07f79e4147bb1d00ecefe1575/tilmedia-3.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2050a5bca05fad988f2e5c7b43b0544a56072fb11ca9a29141dda3b61efae597",
                "md5": "014265188929a40dce023b0ddae492b0",
                "sha256": "f28c53941b2a254f200ed019bd8940a9b7637665f78d214763c13cd20dbf45fe"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "014265188929a40dce023b0ddae492b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 10955323,
            "upload_time": "2024-04-26T19:14:17",
            "upload_time_iso_8601": "2024-04-26T19:14:17.663080Z",
            "url": "https://files.pythonhosted.org/packages/20/50/a5bca05fad988f2e5c7b43b0544a56072fb11ca9a29141dda3b61efae597/tilmedia-3.16.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d9bb339d1ea5bdc1a71201d5647761f53386c804c64053a77b88ce697105e99",
                "md5": "ab010af3e53ba95f5d1d6f4960499bda",
                "sha256": "a28f5c00a59da5ae34795cea3d43263e8eccc8ea0381292d6f0d1a77955462b8"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ab010af3e53ba95f5d1d6f4960499bda",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 11782020,
            "upload_time": "2024-04-26T19:14:21",
            "upload_time_iso_8601": "2024-04-26T19:14:21.694652Z",
            "url": "https://files.pythonhosted.org/packages/5d/9b/b339d1ea5bdc1a71201d5647761f53386c804c64053a77b88ce697105e99/tilmedia-3.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f0a5390aca23542e6ccc2f3e3c08f24b6a989cbc15ca8e298a7cbcf3cb1ba81",
                "md5": "4cd6a1d2811cdf017299f594e857fd50",
                "sha256": "a1a7b19624c9313b48bf84c2b172476e3141ae80da5a4a6a653caa6b0402ce13"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "4cd6a1d2811cdf017299f594e857fd50",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2871200,
            "upload_time": "2024-04-26T19:14:24",
            "upload_time_iso_8601": "2024-04-26T19:14:24.315355Z",
            "url": "https://files.pythonhosted.org/packages/3f/0a/5390aca23542e6ccc2f3e3c08f24b6a989cbc15ca8e298a7cbcf3cb1ba81/tilmedia-3.16.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b34115b82db95376cf7501c443e87e7d8f29da8f7fc0de835c055edbe86dc3b",
                "md5": "8d368e633f8bb6800d145dce0c7485ab",
                "sha256": "1ee6d2c8e03811a15c22e6c83b52efe66f9f38721ad7728fd4c757ca0b26e652"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8d368e633f8bb6800d145dce0c7485ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 3011373,
            "upload_time": "2024-04-26T19:14:26",
            "upload_time_iso_8601": "2024-04-26T19:14:26.179579Z",
            "url": "https://files.pythonhosted.org/packages/5b/34/115b82db95376cf7501c443e87e7d8f29da8f7fc0de835c055edbe86dc3b/tilmedia-3.16.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d46c97979e63a46381456f007fd122368edac05c45d99973e9bdc739711109bf",
                "md5": "3814969dc6eafc8f91e939cb8b269970",
                "sha256": "70d62a2383d79d151341c28494c25156dad716ae64e729968f8164045d2b82fe"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "3814969dc6eafc8f91e939cb8b269970",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2868162,
            "upload_time": "2024-04-26T19:14:28",
            "upload_time_iso_8601": "2024-04-26T19:14:28.576283Z",
            "url": "https://files.pythonhosted.org/packages/d4/6c/97979e63a46381456f007fd122368edac05c45d99973e9bdc739711109bf/tilmedia-3.16.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59ae846fae5405fb2896161458afcb90f916b24f21417ab23db94b958ceaaf69",
                "md5": "ff91cb553b843054692107738b2352f4",
                "sha256": "77de94618668961f701c000be904b5e20b0c85043c39bbc72477d670937f4fd4"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ff91cb553b843054692107738b2352f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 3006669,
            "upload_time": "2024-04-26T19:14:30",
            "upload_time_iso_8601": "2024-04-26T19:14:30.600785Z",
            "url": "https://files.pythonhosted.org/packages/59/ae/846fae5405fb2896161458afcb90f916b24f21417ab23db94b958ceaaf69/tilmedia-3.16.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1d5882909e72f68f459990a32b2306582753d1323dd3727fec04bca6ea778ea",
                "md5": "4e881c71651b7d90064ad79cf6c9c024",
                "sha256": "f8a695eac92b774dccae9863ef675bf638f5b456e2d9d03c91dd8e2acec188e7"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4e881c71651b7d90064ad79cf6c9c024",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 11476188,
            "upload_time": "2024-04-26T19:14:34",
            "upload_time_iso_8601": "2024-04-26T19:14:34.604779Z",
            "url": "https://files.pythonhosted.org/packages/e1/d5/882909e72f68f459990a32b2306582753d1323dd3727fec04bca6ea778ea/tilmedia-3.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26c825863278e32e26e65394ed265fd7a9d00005b56ec754815c98f4f6a5a382",
                "md5": "d52bc121fb6c510639c67a7001d0c459",
                "sha256": "547f667f103e46739981b79e5081ffedc8705fe64d1a326255d853abc5222119"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d52bc121fb6c510639c67a7001d0c459",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 10925842,
            "upload_time": "2024-04-26T19:14:39",
            "upload_time_iso_8601": "2024-04-26T19:14:39.010028Z",
            "url": "https://files.pythonhosted.org/packages/26/c8/25863278e32e26e65394ed265fd7a9d00005b56ec754815c98f4f6a5a382/tilmedia-3.16.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e736fb983295aff95fa63af224eac31de64917668d1f71fcdde186848fcabcf7",
                "md5": "e2f9b52001ad6f884c49a3a74506eb60",
                "sha256": "2c014c1dc93eae8abf0177cafa2ad4a0cc8503a423ce08a0ccde3e82a4f012d5"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2f9b52001ad6f884c49a3a74506eb60",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 11726757,
            "upload_time": "2024-04-26T19:14:43",
            "upload_time_iso_8601": "2024-04-26T19:14:43.079696Z",
            "url": "https://files.pythonhosted.org/packages/e7/36/fb983295aff95fa63af224eac31de64917668d1f71fcdde186848fcabcf7/tilmedia-3.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d434f7569de3158c884992d61ffab3e96bd0b62b717eeab40909a4902d7e3741",
                "md5": "7b7c6f427b56e2c36b5f3de686d7bd54",
                "sha256": "de8725b6d27be3bf40a222f587f9ff421ec43911f78f6981faa5093a794cecad"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "7b7c6f427b56e2c36b5f3de686d7bd54",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2876200,
            "upload_time": "2024-04-26T19:14:45",
            "upload_time_iso_8601": "2024-04-26T19:14:45.672671Z",
            "url": "https://files.pythonhosted.org/packages/d4/34/f7569de3158c884992d61ffab3e96bd0b62b717eeab40909a4902d7e3741/tilmedia-3.16.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70572eb257d3774af2b7c7f45f1b62e5035ef220efadccd1cc5a7ae7ea227491",
                "md5": "cff6082b2169665e583d033263c2f4f9",
                "sha256": "40ece458a019a73146e7fa7f3928f53288d80cfd03cb38b9587fd6e32cedd7b8"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cff6082b2169665e583d033263c2f4f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 3013969,
            "upload_time": "2024-04-26T19:14:47",
            "upload_time_iso_8601": "2024-04-26T19:14:47.550584Z",
            "url": "https://files.pythonhosted.org/packages/70/57/2eb257d3774af2b7c7f45f1b62e5035ef220efadccd1cc5a7ae7ea227491/tilmedia-3.16.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cce3f0054be062253a50b7b1a9f0f83e7531c5d4ebbe8ea15ef7378d0411d3db",
                "md5": "c3892e9eb8d137f2b3819d89497fc90c",
                "sha256": "dfd2c41d158e93cad571972b065f24c777c9a90ce8822ad4fb98f5647f8281b3"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c3892e9eb8d137f2b3819d89497fc90c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 11453507,
            "upload_time": "2024-04-26T19:14:50",
            "upload_time_iso_8601": "2024-04-26T19:14:50.873654Z",
            "url": "https://files.pythonhosted.org/packages/cc/e3/f0054be062253a50b7b1a9f0f83e7531c5d4ebbe8ea15ef7378d0411d3db/tilmedia-3.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e3b8041d118b560a5dd703fd828fc311755d4ae2fcc11c99d6857fc296d54e6",
                "md5": "8ea9292dd7b8e5682334ca4851764f0c",
                "sha256": "9c081a41ab528f489f975f599550296b7f0f9a4951682246b1614e2b1034f8e7"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8ea9292dd7b8e5682334ca4851764f0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 10904946,
            "upload_time": "2024-04-26T19:14:55",
            "upload_time_iso_8601": "2024-04-26T19:14:55.697015Z",
            "url": "https://files.pythonhosted.org/packages/3e/3b/8041d118b560a5dd703fd828fc311755d4ae2fcc11c99d6857fc296d54e6/tilmedia-3.16.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a6d2345ec1aa8f2cdbdae538cb637ec4604d6224f34ab0ea27f2af888875098",
                "md5": "09360c348032f0eb942325f930681def",
                "sha256": "ffbda089e11f0da5b8b94c51719bb7cff3fa9d91615ae42b37a9d695c14309fa"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "09360c348032f0eb942325f930681def",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 11702330,
            "upload_time": "2024-04-26T19:14:59",
            "upload_time_iso_8601": "2024-04-26T19:14:59.744120Z",
            "url": "https://files.pythonhosted.org/packages/9a/6d/2345ec1aa8f2cdbdae538cb637ec4604d6224f34ab0ea27f2af888875098/tilmedia-3.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f497a0847376d2dbfa2c4dd10379d7c4eff8e6a47432d2e5dde4212ba5fe427",
                "md5": "bed9391a6e032a4053bda5f885466b72",
                "sha256": "9609055378351275dee16548781bdc01887e4a36cb577098315b7673c0eaae4c"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "bed9391a6e032a4053bda5f885466b72",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2874399,
            "upload_time": "2024-04-26T19:15:02",
            "upload_time_iso_8601": "2024-04-26T19:15:02.407479Z",
            "url": "https://files.pythonhosted.org/packages/8f/49/7a0847376d2dbfa2c4dd10379d7c4eff8e6a47432d2e5dde4212ba5fe427/tilmedia-3.16.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71c16cfb6e04c0ea7811911a45576479df80e26464e2b97225d8a1e947e88b83",
                "md5": "1cad8b3201999cd85208237bf3f19961",
                "sha256": "8be61b3de44b1f40551eae104ea6c9b51114545ca326c8b5fcc7096cff2d29d4"
            },
            "downloads": -1,
            "filename": "tilmedia-3.16.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1cad8b3201999cd85208237bf3f19961",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3012764,
            "upload_time": "2024-04-26T19:15:04",
            "upload_time_iso_8601": "2024-04-26T19:15:04.899797Z",
            "url": "https://files.pythonhosted.org/packages/71/c1/6cfb6e04c0ea7811911a45576479df80e26464e2b97225d8a1e947e88b83/tilmedia-3.16.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-26 19:13:36",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "tilmedia"
}
        
Elapsed time: 0.32400s