tilmedia


Nametilmedia JSON
Version 2024.1 PyPI version JSON
download
home_pagehttps://www.tlk-thermo.com/en/software/tilmedia-suite
SummarySubstance properties for incompressible liquids, ideal gases, real fluids and mixtures
upload_time2024-12-19 09:59:52
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/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/en/software/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/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": "2024.1",
    "project_urls": {
        "Homepage": "https://www.tlk-thermo.com/en/software/tilmedia-suite"
    },
    "split_keywords": [
        "thermophysical",
        "thermodynamic",
        "fluid",
        "properties",
        "gas",
        "liquid",
        "mixtures",
        "substances",
        "media"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a010a844f58390720f66ee4e1dd733fed9c678e85a3765a66cb5473b43e1a59",
                "md5": "f9062aa922a8d929cba80c19923a0dbc",
                "sha256": "b44b3eb381b6e9ffe6e19e8968eae4cec0ac9ff3ecfe984dde0f0d76d1506e42"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f9062aa922a8d929cba80c19923a0dbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 11515314,
            "upload_time": "2024-12-19T09:59:52",
            "upload_time_iso_8601": "2024-12-19T09:59:52.794173Z",
            "url": "https://files.pythonhosted.org/packages/5a/01/0a844f58390720f66ee4e1dd733fed9c678e85a3765a66cb5473b43e1a59/tilmedia-2024.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e4edd7c444200b4fea2f79158753f87a5595a18c54a6fcca07ae9bc3d9e4557",
                "md5": "2e3cb81cfd093f3317771cfcdf3f9ddc",
                "sha256": "10b38ea1d57bbebacb1375dcc19a4fede35e889e721aa723039bc1bf11296e16"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2e3cb81cfd093f3317771cfcdf3f9ddc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 10946527,
            "upload_time": "2024-12-19T10:00:06",
            "upload_time_iso_8601": "2024-12-19T10:00:06.663993Z",
            "url": "https://files.pythonhosted.org/packages/3e/4e/dd7c444200b4fea2f79158753f87a5595a18c54a6fcca07ae9bc3d9e4557/tilmedia-2024.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e264f81447ec234097e3793d72c9de6eb2929a50bfb5f5104ebe832f9edc094f",
                "md5": "3055b5d10eabda54e92198d54da9d554",
                "sha256": "75e077b3658ec7bb3dbe856e1c0fc71a736dcde01a32908fd7bdb96a42ef60dc"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3055b5d10eabda54e92198d54da9d554",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 11752726,
            "upload_time": "2024-12-19T10:00:20",
            "upload_time_iso_8601": "2024-12-19T10:00:20.787067Z",
            "url": "https://files.pythonhosted.org/packages/e2/64/f81447ec234097e3793d72c9de6eb2929a50bfb5f5104ebe832f9edc094f/tilmedia-2024.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f4721d09a6754412581d8594298d2c329797813adb84ac762d541f91ae64aff",
                "md5": "4812a6856016c66a27ed926f0060af57",
                "sha256": "82742696f16adc70758713b2806744c42446122a8f61571a0815f9786b074a32"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "4812a6856016c66a27ed926f0060af57",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2884156,
            "upload_time": "2024-12-19T10:00:25",
            "upload_time_iso_8601": "2024-12-19T10:00:25.733753Z",
            "url": "https://files.pythonhosted.org/packages/3f/47/21d09a6754412581d8594298d2c329797813adb84ac762d541f91ae64aff/tilmedia-2024.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11afee02a63bb1fd8654c2624ae55b2f7f7c8249346293ebaa6b53f13c61b5cd",
                "md5": "2b6db1adbe59b12abad63a3dab733137",
                "sha256": "0084a71288c745c579d875d0591d6d234a8579a777777750ae7b3ddff2d99eb3"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2b6db1adbe59b12abad63a3dab733137",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3022908,
            "upload_time": "2024-12-19T10:00:29",
            "upload_time_iso_8601": "2024-12-19T10:00:29.416547Z",
            "url": "https://files.pythonhosted.org/packages/11/af/ee02a63bb1fd8654c2624ae55b2f7f7c8249346293ebaa6b53f13c61b5cd/tilmedia-2024.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "481f71a1852c260fa1eb6e3f5fa0f45f7608beca0c0a5a3a56acac0f89137205",
                "md5": "91dd107f415b618443cfb4f9b25f395e",
                "sha256": "70256fb2bcdfc770baac60a3566d2d8f97a0e63c2b1ef0f6d9c4fa69d4ffc30c"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "91dd107f415b618443cfb4f9b25f395e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 11617331,
            "upload_time": "2024-12-19T10:00:40",
            "upload_time_iso_8601": "2024-12-19T10:00:40.168102Z",
            "url": "https://files.pythonhosted.org/packages/48/1f/71a1852c260fa1eb6e3f5fa0f45f7608beca0c0a5a3a56acac0f89137205/tilmedia-2024.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "275dd5097c14f607d9287dbb92184d5c77cafc53ad97312eabcc1b1361b7603c",
                "md5": "8aa79be45e12a6d21b7320b29a2dcdf2",
                "sha256": "9610f8cd97e26ed2840dce428db64d5ed68a3ee10b76a36cdfea6f0f2eebbd70"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8aa79be45e12a6d21b7320b29a2dcdf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 11033832,
            "upload_time": "2024-12-19T10:00:48",
            "upload_time_iso_8601": "2024-12-19T10:00:48.962954Z",
            "url": "https://files.pythonhosted.org/packages/27/5d/d5097c14f607d9287dbb92184d5c77cafc53ad97312eabcc1b1361b7603c/tilmedia-2024.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d826a96f5ca8a1d03ca952e2b0c09b0c78bb8ac58e867d0c26678f54f761c07",
                "md5": "4994b0b88ccea16615230612f63d7cdb",
                "sha256": "de42caf4bb931464ff90cbd995d14fe09105262b9a4a81544591b99c4b059655"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4994b0b88ccea16615230612f63d7cdb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 11852334,
            "upload_time": "2024-12-19T10:01:02",
            "upload_time_iso_8601": "2024-12-19T10:01:02.966189Z",
            "url": "https://files.pythonhosted.org/packages/6d/82/6a96f5ca8a1d03ca952e2b0c09b0c78bb8ac58e867d0c26678f54f761c07/tilmedia-2024.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84a6365b738de3a7676775a5ad582a427b9c2238d93bfbe0cc4400048a57515c",
                "md5": "1348f1f35e0932b40028698cb22b3594",
                "sha256": "5e96be88f7ae9c81774cc20e929f57e090440bdc87fbd14b764c1674da11e94a"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "1348f1f35e0932b40028698cb22b3594",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2884630,
            "upload_time": "2024-12-19T10:01:08",
            "upload_time_iso_8601": "2024-12-19T10:01:08.264393Z",
            "url": "https://files.pythonhosted.org/packages/84/a6/365b738de3a7676775a5ad582a427b9c2238d93bfbe0cc4400048a57515c/tilmedia-2024.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49724496ee833824c04f76e64e3d52879df2dca4e35b4e63b8f51bac634fea58",
                "md5": "3f73bef874b4d681a7080b9f0f412f1f",
                "sha256": "2b0d3d7d27a9933eed2a222d5faaea2905088e0a2fe8aee329e2fb136d47d630"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3f73bef874b4d681a7080b9f0f412f1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3023067,
            "upload_time": "2024-12-19T10:01:14",
            "upload_time_iso_8601": "2024-12-19T10:01:14.092613Z",
            "url": "https://files.pythonhosted.org/packages/49/72/4496ee833824c04f76e64e3d52879df2dca4e35b4e63b8f51bac634fea58/tilmedia-2024.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e198f6218b5387a4bd1c33ce18a781e38991d678150d3ed4de04e35d001f3720",
                "md5": "f0b4e66438e5648cd5f5a869014f8642",
                "sha256": "af970d140cb77a173179a7d70580be1f8d51e06b0ba6d4ecb8cb00d8b29a2bb0"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f0b4e66438e5648cd5f5a869014f8642",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 11589857,
            "upload_time": "2024-12-19T10:01:28",
            "upload_time_iso_8601": "2024-12-19T10:01:28.916553Z",
            "url": "https://files.pythonhosted.org/packages/e1/98/f6218b5387a4bd1c33ce18a781e38991d678150d3ed4de04e35d001f3720/tilmedia-2024.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b28606eaed9cb9ad4068ea1981c0ab38089a28eca7c4c1b67a3c0bb9c21e652",
                "md5": "4581501aa2a64b746f4bba7e681ef2c1",
                "sha256": "7e4d7594f013df2bb46cc59c2e44830a0b1fba1876b42632725bd2b0796fe4be"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4581501aa2a64b746f4bba7e681ef2c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 10993631,
            "upload_time": "2024-12-19T10:01:41",
            "upload_time_iso_8601": "2024-12-19T10:01:41.359566Z",
            "url": "https://files.pythonhosted.org/packages/6b/28/606eaed9cb9ad4068ea1981c0ab38089a28eca7c4c1b67a3c0bb9c21e652/tilmedia-2024.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9dda65c10e17fb411f65f9c895d1a2e37487047a0f5c98a7867e1511b0a88ce5",
                "md5": "fccb663c1c6f5461b45a1e9c7a67c906",
                "sha256": "4ff33bea1ea90f3c76081213e4e364fb48188f442220df6b2de76f08f053ccb1"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fccb663c1c6f5461b45a1e9c7a67c906",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 11828604,
            "upload_time": "2024-12-19T10:01:53",
            "upload_time_iso_8601": "2024-12-19T10:01:53.054042Z",
            "url": "https://files.pythonhosted.org/packages/9d/da/65c10e17fb411f65f9c895d1a2e37487047a0f5c98a7867e1511b0a88ce5/tilmedia-2024.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffc027ca454bbc2126fa9d2c7e6f76decfd1e6e79f28e1cbe6409bebf1722121",
                "md5": "70548a957aeb13f802c0996daf260942",
                "sha256": "6db715e3f5b316b630cbb8dd6f956534e9a59cc16e35a62f7a98a794a8835c8e"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "70548a957aeb13f802c0996daf260942",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2880481,
            "upload_time": "2024-12-19T10:01:58",
            "upload_time_iso_8601": "2024-12-19T10:01:58.470607Z",
            "url": "https://files.pythonhosted.org/packages/ff/c0/27ca454bbc2126fa9d2c7e6f76decfd1e6e79f28e1cbe6409bebf1722121/tilmedia-2024.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b14f1e8292a19356c85323dc9de10a41817a58f87f014a9c9959363264b84328",
                "md5": "553de06c148d4795cb0d4f02e99a6497",
                "sha256": "e72c021f0456687d1bddea6342739448bd2649cefe3c42f03d4934a1472852cc"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "553de06c148d4795cb0d4f02e99a6497",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 3022384,
            "upload_time": "2024-12-19T10:02:01",
            "upload_time_iso_8601": "2024-12-19T10:02:01.942371Z",
            "url": "https://files.pythonhosted.org/packages/b1/4f/1e8292a19356c85323dc9de10a41817a58f87f014a9c9959363264b84328/tilmedia-2024.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffef23cdae189e062aae4a025935a22fc0ef698326baa7159a82b351027c08a9",
                "md5": "e011f8eac7449558d50d80181b27f857",
                "sha256": "29edff2b1e6f115c10f450d3539c080977b30793b4e37240736e7c2ba90764e4"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "e011f8eac7449558d50d80181b27f857",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2879367,
            "upload_time": "2024-12-19T10:02:05",
            "upload_time_iso_8601": "2024-12-19T10:02:05.503338Z",
            "url": "https://files.pythonhosted.org/packages/ff/ef/23cdae189e062aae4a025935a22fc0ef698326baa7159a82b351027c08a9/tilmedia-2024.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65f60702d750cb5505e8270348842e67a6535b1a090bd02ec399dc3aef47f80c",
                "md5": "0a43ec1ece78273876f1f97a8951d3d6",
                "sha256": "9ad5edf49f97d84e59449c5ac3397266879418b96eeb6a8594f8d98df2f86e07"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0a43ec1ece78273876f1f97a8951d3d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 3020710,
            "upload_time": "2024-12-19T10:02:09",
            "upload_time_iso_8601": "2024-12-19T10:02:09.190489Z",
            "url": "https://files.pythonhosted.org/packages/65/f6/0702d750cb5505e8270348842e67a6535b1a090bd02ec399dc3aef47f80c/tilmedia-2024.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f64afb4761f2c1a92b92ce5124eec73ad3f56cab7f2e9f523f621b11bd3dd16",
                "md5": "5805f3d5172939f2656b71b5c2d2db59",
                "sha256": "bffc97feb405f68bb76ca8a2d737fe90339d3dba2260fa18f27baf8bd028b368"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5805f3d5172939f2656b71b5c2d2db59",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 11541560,
            "upload_time": "2024-12-19T10:02:19",
            "upload_time_iso_8601": "2024-12-19T10:02:19.625422Z",
            "url": "https://files.pythonhosted.org/packages/0f/64/afb4761f2c1a92b92ce5124eec73ad3f56cab7f2e9f523f621b11bd3dd16/tilmedia-2024.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "babf155546de766dcaafe20b3be079e0514202aa3f67d9c102f5bae2a9953a1f",
                "md5": "09f4de6c260e17e895db03db4b2efb64",
                "sha256": "7784dbb61979463cdab7e2d1856ed13a197ba054b40bb837e26b7f18aa0b0d48"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "09f4de6c260e17e895db03db4b2efb64",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 10968894,
            "upload_time": "2024-12-19T10:02:31",
            "upload_time_iso_8601": "2024-12-19T10:02:31.605373Z",
            "url": "https://files.pythonhosted.org/packages/ba/bf/155546de766dcaafe20b3be079e0514202aa3f67d9c102f5bae2a9953a1f/tilmedia-2024.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "925c3596f5bb922a164028ebacdb21125dff2f9f75451c491a024f7cd5f93be3",
                "md5": "1c5abe51298b1c75dbed2b9ad4531ac7",
                "sha256": "2d0ecc34aa61e126f96bdc8b08cc0afd5d7419c99917bcee5d75c0fdfa10fab5"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1c5abe51298b1c75dbed2b9ad4531ac7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 11782079,
            "upload_time": "2024-12-19T10:02:41",
            "upload_time_iso_8601": "2024-12-19T10:02:41.846516Z",
            "url": "https://files.pythonhosted.org/packages/92/5c/3596f5bb922a164028ebacdb21125dff2f9f75451c491a024f7cd5f93be3/tilmedia-2024.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c7825f9576e93b942daed80c439c1878dee0af6ebc18d95a4e0f2ff943f5ab8",
                "md5": "4119393485804f25e3a9dd8b37dd76d8",
                "sha256": "5650637a3c70165c009d17f31f587b554eed033f0b9ee9be05f2002840b9f598"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "4119393485804f25e3a9dd8b37dd76d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2885861,
            "upload_time": "2024-12-19T10:02:45",
            "upload_time_iso_8601": "2024-12-19T10:02:45.931465Z",
            "url": "https://files.pythonhosted.org/packages/0c/78/25f9576e93b942daed80c439c1878dee0af6ebc18d95a4e0f2ff943f5ab8/tilmedia-2024.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a619c6642576601bb0ab290442f60df269fec8d1acf066146417ea688469df1",
                "md5": "2ee48fec8b7b502392a82b0dbb892592",
                "sha256": "889f885949d268f17f5510b5b7e799fc30fffe85e0834f6892c5fce189b9af51"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2ee48fec8b7b502392a82b0dbb892592",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 3023369,
            "upload_time": "2024-12-19T10:02:49",
            "upload_time_iso_8601": "2024-12-19T10:02:49.671129Z",
            "url": "https://files.pythonhosted.org/packages/0a/61/9c6642576601bb0ab290442f60df269fec8d1acf066146417ea688469df1/tilmedia-2024.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4bba9b44d4a1c4c87d91221299fd159cb40910eeec8e403e37fbad0eaecbf8c4",
                "md5": "0b0753f28ab8b4132d3cf17dc96494d5",
                "sha256": "7ddca6b5f4aea09b0fbabf34170c808379d4dd1623bfb90581dfa9c09dd43683"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0b0753f28ab8b4132d3cf17dc96494d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 11515065,
            "upload_time": "2024-12-19T10:03:03",
            "upload_time_iso_8601": "2024-12-19T10:03:03.083355Z",
            "url": "https://files.pythonhosted.org/packages/4b/ba/9b44d4a1c4c87d91221299fd159cb40910eeec8e403e37fbad0eaecbf8c4/tilmedia-2024.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34b9ef44b766fc8b12bf4d4fbde380e226a3abf3ff0a3d28bda8e77f6bb6ce44",
                "md5": "93f2309085d4d5bb7320ff6b3c32b907",
                "sha256": "42e6dc674218b1e4f1205821d221fc28aebff1f192098b27c246db78985f7f7c"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "93f2309085d4d5bb7320ff6b3c32b907",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 10947161,
            "upload_time": "2024-12-19T10:03:10",
            "upload_time_iso_8601": "2024-12-19T10:03:10.312957Z",
            "url": "https://files.pythonhosted.org/packages/34/b9/ef44b766fc8b12bf4d4fbde380e226a3abf3ff0a3d28bda8e77f6bb6ce44/tilmedia-2024.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98cf0a06a653e2fabc11174c32e9fdcfd32e19f1691acc89585d178e889ea2bc",
                "md5": "e5614ec2f054bdd76e5cfc406364398b",
                "sha256": "024aaf1e1362f720a0745bd6fe9ce5b60d79706202cf5511d9d8b384d2f2a73d"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5614ec2f054bdd76e5cfc406364398b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 11754550,
            "upload_time": "2024-12-19T10:03:20",
            "upload_time_iso_8601": "2024-12-19T10:03:20.189671Z",
            "url": "https://files.pythonhosted.org/packages/98/cf/0a06a653e2fabc11174c32e9fdcfd32e19f1691acc89585d178e889ea2bc/tilmedia-2024.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e6c46dd1d9f20d6a72cbf7c1a9d6c2b0e12678c83dab041561d81e6cae05e77",
                "md5": "65d03e06c67ef14c4b5134b5b109a1d1",
                "sha256": "bc0a65dabf6c9818b8540358b31fb18916dd76460c47bb454bae8e732b667f38"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "65d03e06c67ef14c4b5134b5b109a1d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2884070,
            "upload_time": "2024-12-19T10:03:24",
            "upload_time_iso_8601": "2024-12-19T10:03:24.802370Z",
            "url": "https://files.pythonhosted.org/packages/8e/6c/46dd1d9f20d6a72cbf7c1a9d6c2b0e12678c83dab041561d81e6cae05e77/tilmedia-2024.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d476d7d793d75f41a9a277050b22fa3d1a9e6c4682a7b6516fa4ae57ef97dea",
                "md5": "9d21f0d5be012f8e58f9e1b61b4e3cb1",
                "sha256": "99b782baa7e6ccb7d970bbe52f92bccd8dc2a2f7df52d0ed68fe69b2495a89fc"
            },
            "downloads": -1,
            "filename": "tilmedia-2024.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9d21f0d5be012f8e58f9e1b61b4e3cb1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3022864,
            "upload_time": "2024-12-19T10:03:28",
            "upload_time_iso_8601": "2024-12-19T10:03:28.713197Z",
            "url": "https://files.pythonhosted.org/packages/4d/47/6d7d793d75f41a9a277050b22fa3d1a9e6c4682a7b6516fa4ae57ef97dea/tilmedia-2024.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-19 09:59:52",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "tilmedia"
}
        
Elapsed time: 0.48568s