{ "info": { "author": "Assela Pathirana", "author_email": "assela@pathirana.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Other Environment", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Natural Language :: English", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "SWMM5 Python calling interface\n(c) Assela Pathirana\nReleased under GNU GPL v.3\n\nRelease History:\n----------------\n\nversion 1.0.0.1 first production (non-beta) release. \n\nversion 1.1.0.1 version with new SWMM 5.1 version (instead of SWMM 5.0)\n\n\n\nInstallation:\n-------------\n:Windows: \n\nAs of version 1.0.0.1 SWMM5 is verified to work with Python 3 as well. \n\nNow (as of version 1.0.0.1) the package is provided as python Wheel too. This means for windows the following command should install SWMM5\n\n\n::\n\n pip install SWMM5\n \nAlternatively, use the SWMM5-x.y.z.k.win32.exe file downloaded from the repository for click and install. \n\nIf you have your own C compilers, then SWMM5-x.y.z.k.zip can be used to install as \n\n::\n\n python setup.py install\n \n:Linux: \n\nDownload SWMM5-x.y.z.k.zip can be used to install as \n\n::\n\n python setup.py install\n\nOr, just with, \n::\n\n pip install SWMM5\n\nUsage:\n------\n\n:New Interface:\n\nOne should always use the new interface. The old interface (below) is left only for backward compatibility. The key features of new interface are \n * More pythonic interface\n * A number of convenience functions\n \n Import new interface and run SWMM\n\n::\n\n >>> from swmm5.swmm5tools import SWMM5Simulation\n >>> st=SWMM5Simulation(\"swmm5/examples/simple/swmm5Example.inp\")\n \n \n \n:Example 1: Retrive simulation properties. \n\n\n::\n\n >>> st.SWMM5_Version() # Version of underlying SWMM5 engine. \n '5.1.000'\n >>> st.SWMM5_VERSION # same thing as an integer \n 51000\n >>> st.Flow_Units() # Flow units. \n 'LPS'\n >>> st.SWMM_FlowUnits # returns flow units as an index. 0 = CFS, 1 = GPM, 2 = MGD, 3 = CMS, 4 = LPS, and 5 = LPD \n 4\n >>> st.SWMM_Nperiods # number of reporting periods \n 360\n >>> st.SWMM_Nsubcatch # number of subcatchments\n 6\n >>> st.SWMM_Nnodes # number of drainage system nodes\n 12\n >>> st.SWMM_Nlinks # number of drainage system links\n 11\n >>> st.SWMM_Npolluts # number of pollutants tracked\n 0\n >>> print (\"%.2f\"%st.SWMM_StartDate) # start date of simulation\n 40844.00\n >>> st.SWMM_ReportStep\n 60\n >>>\n\n:Example 2: Prints available entities\n\n::\n\n >>> st.entityList()\n ['SUBCATCH', 'NODE', 'LINK', 'SYS']\n >>> st.Subcatch()\n ['A2', 'A1', 'A3', 'A4', 'A5', 'E1']\n >>> st.Node()\n ['J1', 'J2', 'J3', 'J4', 'J5', 'J6', 'J7', 'J8', 'J9', 'J10', 'J11', 'J12']\n >>> st.Link()\n ['T4-1', 'T4-2', 'T4-3', 'T1-1', 'T1-2', 'T2-1', 'T2-2', 'T2-3', 'T3-1', 'T3-2', 'T5']\n >>> st.Sys()\n ['SYS']\n >>> st.Pollutants() # no pollutants in this file. \n []\n >>> wq=SWMM5Simulation(\"swmm5/examples/waterquality/Example5-EXP5.1.inp\")\n >>> wq.SWMM_Npolluts\n 1\n >>> wq.Pollutants() # TSS in this case. \n ['TSS']\n >>> lst=st.varList(\"SUBCATCH\")\n >>> print (\"\\n\".join( \"%4i %s\"% (i,v) for i,v in enumerate(lst))) # print in a column with index.\n 0 Rainfall (in/hr or mm/hr)\n 1 Snow depth (in or mm)\n 2 Evaporation loss (in/hr or mm/hr)\n 3 Infiltration loss (in/hr or mm/hr)\n 4 Runoff rate (flow units)\n 5 Groundwater outflow rate (flow units)\n 6 Groundwater water table elevation (ft or m)\n 7 Soil Moisture (volumetric fraction, less or equal tosoil porosity)\n\n\n\n >>> lst=wq.varList(\"SUBCATCH\") # for the network that has pollutants. \n >>> print (\"\\n\".join( \"%4i %s\"% (i,v) for i,v in enumerate(lst))) # print in a column with index.\n 0 Rainfall (in/hr or mm/hr)\n 1 Snow depth (in or mm)\n 2 Evaporation loss (in/hr or mm/hr)\n 3 Infiltration loss (in/hr or mm/hr)\n 4 Runoff rate (flow units)\n 5 Groundwater outflow rate (flow units)\n 6 Groundwater water table elevation (ft or m)\n 7 Soil Moisture (volumetric fraction, less or equal tosoil porosity)\n 8 Runoff concentration of TSS (mg/l)\n \n >>> lst=wq.varList(\"NODE\")\n >>> print (\"\\n\".join( \"%4i %s\"% (i,v) for i,v in enumerate(lst))) # print in a column with index.\n 0 Depth of water above invert (ft or m)\n 1 Hydraulic head (ft or m)\n 2 Volume of stored + ponded water (ft3 or m3)\n 3 Lateral inflow (flow units)\n 4 Total inflow (lateral + upstream) (flow units)\n 5 Flow lost to flooding (flow units)\n 6 Concentration of TSS (mg/l)\n >>> lst=wq.varList(\"LINK\")\n >>> print (\"\\n\".join( \"%4i %s\"% (i,v) for i,v in enumerate(lst))) # print in a column with index.\n 0 Flow rate (flow units)\n 1 Flow depth (ft or m)\n 2 Flow velocity (ft/s or m/s)\n 3 Froude number\n 4 Capacity (fraction of conduit filled)\n 5 Concentration of TSS (mg/l)\n >>> lst=wq.varList(\"SYS\")\n >>> print (\"\\n\".join( \"%4i %s\"% (i,v) for i,v in enumerate(lst))) # print in a column with index.\n 0 Air temperature (deg. F or deg. C)\n 1 Rainfall (in/hr or mm/hr)\n 2 Snow depth (in or mm)\n 3 Evaporation + infiltration loss rate (in/hr or mm/hr)\n 4 Runoff flow (flow units)\n 5 Dry weather inflow (flow units)\n 6 Groundwater inflow (flow units)\n 7 RDII inflow (flow units)\n 8 User supplied direct inflow (flow units)\n 9 Total lateral inflow (sum of variables 4 to 8) (flow units)\n 10 Flow lost to flooding (flow units)\n 11 Flow leaving through outfalls (flow units)\n 12 Volume of stored water (ft3 or m3)\n 13 Evaporation rate (in/day or mm/day)\n \n \n \n:Example 3: Results\n\n::\n\n >>> r=list(st.Results('NODE','J1', 4)) # total inflow into node \"J1\". The Results function returns a generator. We convert it to a list.\n >>> print (\"\\n\".join( \"%5.2f\"% (i) for i in r[0:10])) # Lets print the first 10 items. \n 0.00\n 0.00\n 0.00\n 3.21\n 13.50\n 27.90\n 45.63\n 64.32\n 82.79\n 101.84\n >>> r=st.Results('SYS','SYS', 1) #1 Rainfall (in/hr or mm/hr). This time we use the generator directly. \n >>> print (\"\\n\".join([\"%5.2f\"% (i) for i in r])) #doctest: +ELLIPSIS\n 0.00\n 0.00\n 7.20\n 7.20\n 7.20\n 7.60\n 7.60\n 7.60\n 8.00\n ...\n 0.00\n \n\n:Example 4: Pollutant Concentration\n\n::\n\n >>> wq.Subcatch()\n ['S1', 'S2', 'S3', 'S4', 'S5', 'S6', 'S7']\n\t\n >>> r=list(wq.Results('SUBCATCH','S3', 8)) # TSS out of catchment 'S3'. We convert it to a list.\n >>> print (\"\\n\".join( \"%5.2f\"% (i) for i in r[0:10])) # Lets print the first 10 items. #doctest.NORMALIZE_WHITESPACE\n 0.00\n 0.00\n 0.00\n 0.00\n 0.00\n 13.45\n 14.11\n 14.71\n 15.24\n 15.70\n\n\t\n::\n\n >>> wq.Node()\n ['J1', 'J2', 'J3', 'J4', 'J5', 'J6', 'J7', 'J8', 'J9', 'J10', 'J11', 'O1']\n\t\n >>> r=list(wq.Results('NODE','J3', 6)) # TSS out of Node 'J3'. We convert it to a list.\n >>> print (\"\\n\".join( \"%5.2f\"% (i) for i in r[0:10])) # Lets print the first 10 items. \n 0.00\n 0.00\n 0.00\n 0.00\n 0.00\n 13.26\n 14.10\n 14.70\n 15.23\n 15.69\n\n >>> wq.Link()\n ['C1', 'C2', 'C3', 'C4', 'C5', 'C6', 'C7', 'C8', 'C9', 'C10', 'C11']\n\t\n >>> r=list(wq.Results('LINK','C11', 5)) # TSS out of Link 'C11'. We convert it to a list.\n >>> print (\"\\n\".join( \"%5.2f\"% (i) for i in r)) # Lets print the first 10 items. #doctest: +ELLIPSIS\n 0.00\n 0.00\n 0.00\n 0.00\n 0.00\n 0.00\n 0.00\n 5.42\n 9.96\n 12.76\n 14.77\n 16.43\n 17.91\n 19.27\n 20.56\n ...\n 44.65\n\n \n:Example 5: Tracking output files\n\n::\n\n >>> simtemp=SWMM5Simulation(\"swmm5/examples/simple/swmm5Example.inp\")\n >>> f=simtemp.getFiles()\n >>> f #doctest: +ELLIPSIS\n ['swmm5/examples/simple/swmm5Example.inp', '...swmm5Example....rpt', '...swmm5Example....dat']\n >>> from os.path import isfile\n >>> [isfile(x) for x in f] # do they exist in the operating system. \n [True, True, True]\n >>> simtemp.clean()\n >>> [isfile(x) for x in f] # do they exist in the operating system. \n [True, False, False]\n \nThread Safety\n-------------\nCalling SWMM5Simulation with input file as only argument (SWMM5Simulation will \nchoose the report and binary output file names) and subsequent use of the object \nto retreive results is threadsafe to the degree I could verify. \n\nThere is a test ``test_multithreading.py`` in the test directory, which can be run to test this to some degree. It should be run as ``python test_multithreading.py``. \n\n\n \nLegacy interface \n----------------\n\n:Note: This is provided only for backward compatibility. Always use the new interface (above). \n\nimport swmm5 module\n\n::\n\n >>> from swmm5 import swmm5 as sw\n >>>\n \nrun a sample network\n\n::\n\n >>> ret=sw.RunSwmmDll(\"./swmm5/examples/simple/swmm5Example.inp\",\"swmm5Example.rpt\",\"swmm5.dat\")\n >>>\n\n\nshould return 0 if everything is OK (according to to swmm convension)\n\n::\n\n >>> print (ret)\n 0\n >>>\n\nNow it is possible to retrive results. \nOpen the swmm results file\n\n::\n\n >>> sw.OpenSwmmOutFile(\"swmm5.dat\")\n 0\n >>>\n \nHow many time steps are there?\n\n::\n\n >>> sw.cvar.SWMM_Nperiods\n 360\n >>>\n\nLet's retrive rainfall in the system. \nSystems rainfall at fifth timestep\n::\n \n >>> ret,x=sw.GetSwmmResult(3,0,1,5)\n >>> print ('%.2f' % x)\n 7.20\n >>>\n\n\n\nAcknowlegements\n----------------\n * David Townshend \n * Tim Cera", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://assela.pathirana.net/SWMM5-Python", "keywords": "Hydraulics,Hydrology,Urban Drainage,Sewerage,Water Engineering,Numerical Methods,Computer Model,Environmental Science,Engineering,Science", "license": "GNU General Public License version 3", "maintainer": "", "maintainer_email": "", "name": "SWMM5", "package_url": "https://pypi.org/project/SWMM5/", "platform": "", "project_url": "https://pypi.org/project/SWMM5/", "project_urls": { "Homepage": "http://assela.pathirana.net/SWMM5-Python" }, "release_url": "https://pypi.org/project/SWMM5/5.1.12/", "requires_dist": null, "requires_python": "", "summary": "SWMM5 calls from python", "version": "5.1.12" }, "last_serial": 4343404, "releases": { "0.3.0.0": [ { "comment_text": "", "digests": { "md5": "1c1d33bc980af4b7a1a02b46ddd25922", "sha256": "87020277f41f4febc2b1e253eabe749d4e1974b17027613b9c24d829650a955c" }, "downloads": -1, "filename": "SWMM5-0.3.0.0.win32-py2.7.exe", "has_sig": true, "md5_digest": "1c1d33bc980af4b7a1a02b46ddd25922", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 367683, "upload_time": "2013-01-06T20:37:27", "url": "https://files.pythonhosted.org/packages/49/6b/d8a04b3a7a6102c47ea7e421df0a64e3271eb54988a9aac3e54324ae34ae/SWMM5-0.3.0.0.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "f4c91271ff148a6beb045b71073292ca", "sha256": "f527469131db16b6c534d2ca25efbbc3424b0a3f3bdd05f181e83841df3f8659" }, "downloads": -1, "filename": "SWMM5-0.3.0.0.zip", "has_sig": true, "md5_digest": "f4c91271ff148a6beb045b71073292ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 314801, "upload_time": "2013-01-06T20:36:01", "url": "https://files.pythonhosted.org/packages/16/a6/bd8e6661104e46ad95711dab1050cd733bc96b2f9f98ea9b99960994470d/SWMM5-0.3.0.0.zip" } ], "0.3.1.0": [ { "comment_text": "", "digests": { "md5": "9030a24e08c6282b79b1a814dd456a04", "sha256": "d0518128593c8dae747ec409930747f8a4ca16152d9775047b769eb2c7c926c9" }, "downloads": -1, "filename": "SWMM5-0.3.1.0.win32-py2.7.exe", "has_sig": true, "md5_digest": "9030a24e08c6282b79b1a814dd456a04", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 366051, "upload_time": "2013-01-07T09:51:59", "url": "https://files.pythonhosted.org/packages/03/7b/08662b2108efbe92d6e5a3fc50d065f45408f6969b32be374730a3f4e3df/SWMM5-0.3.1.0.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "1d601980a666e2f44b4fd0579ddeac57", "sha256": "f1f96895268a691906636a462b8fbe5fbadcb12d48689b6eae5f972c98b3c658" }, "downloads": -1, "filename": "SWMM5-0.3.1.0.zip", "has_sig": true, "md5_digest": "1d601980a666e2f44b4fd0579ddeac57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 367269, "upload_time": "2013-01-07T09:51:09", "url": "https://files.pythonhosted.org/packages/2a/aa/33b07eb14b1c79c71975ecae1491451338d42eb46fd81f4d0806c3f74b4a/SWMM5-0.3.1.0.zip" } ], "0.3.2.0": [ { "comment_text": "", "digests": { "md5": "71caeca0933352a3246dd679f36ee4ef", "sha256": "4882b6c6f1df665cb7a2379bacbfe06fdd5ce25f91308915aaeb6419a26a2d47" }, "downloads": -1, "filename": "SWMM5-0.3.2.0.win32-py2.7.exe", "has_sig": true, "md5_digest": "71caeca0933352a3246dd679f36ee4ef", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 366115, "upload_time": "2013-01-07T12:37:53", "url": "https://files.pythonhosted.org/packages/7e/a9/697f905169e816220b7e75ab37d9f8ae41a176b7ad9080c8f64af371c713/SWMM5-0.3.2.0.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "5bc579757ca106757b57db7a2b2f37a4", "sha256": "26a8ccd9bbf900bb82fb163842011d0887a8b33ff4fa576bd24b152930648a05" }, "downloads": -1, "filename": "SWMM5-0.3.2.0.zip", "has_sig": true, "md5_digest": "5bc579757ca106757b57db7a2b2f37a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 367309, "upload_time": "2013-01-07T12:37:21", "url": "https://files.pythonhosted.org/packages/7d/db/150bc0308f02fec45ff756e1feb59a74f27f373f4dd85d59a22c8d1d8ada/SWMM5-0.3.2.0.zip" } ], "0.3.3.0dev": [ { "comment_text": "", "digests": { "md5": "16cb758d4f5dda605ed4acbc5e4a5280", "sha256": "bc55de8f8ae6e05b1a159eed1684e21ff4bb7b7b54f1094af78763fd17ebd63d" }, "downloads": -1, "filename": "SWMM5-0.3.3.0dev.win32-py2.7.exe", "has_sig": true, "md5_digest": "16cb758d4f5dda605ed4acbc5e4a5280", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 367967, "upload_time": "2013-01-10T18:48:36", "url": "https://files.pythonhosted.org/packages/34/dd/1c926b6bd6c0f0f595426abbc953155c5b85b1737bc7ce90fe4bf3ae47fd/SWMM5-0.3.3.0dev.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "de2a6f966f834a30b36aef057c6aab14", "sha256": "45d7c5d1b7e1ed210f87f650a95a765ab796aec89d91c4816386ffbb9e865350" }, "downloads": -1, "filename": "SWMM5-0.3.3.0dev.zip", "has_sig": false, "md5_digest": "de2a6f966f834a30b36aef057c6aab14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 370216, "upload_time": "2013-01-10T18:46:01", "url": "https://files.pythonhosted.org/packages/98/65/5b6e142917a2adc4e3b5b89538d8f3ee86fc4208f9e7f02090b982265f96/SWMM5-0.3.3.0dev.zip" } ], "0.4.0.0dev": [ { "comment_text": "", "digests": { "md5": "bd687e9131348d367a93e9cf54728bb4", "sha256": "6f72f30e8a29879c2146dc37500c18ce71a56467b41265838171eff66cf4cb82" }, "downloads": -1, "filename": "SWMM5-0.4.0.0dev.win32-py2.7.exe", "has_sig": true, "md5_digest": "bd687e9131348d367a93e9cf54728bb4", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 375729, "upload_time": "2013-01-14T19:54:19", "url": "https://files.pythonhosted.org/packages/11/19/49f6892f929d7cd1ed807f69107bfbb3b2fd0258f3ea9d198e6d0af17b41/SWMM5-0.4.0.0dev.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "9193b881c9eec82c5fa9cd459b092a9f", "sha256": "8d4963b6d15bb196a9f1e2caed9e079480e141f95d3f6c7bfb8aaa097cfb3782" }, "downloads": -1, "filename": "SWMM5-0.4.0.0dev.zip", "has_sig": true, "md5_digest": "9193b881c9eec82c5fa9cd459b092a9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 374317, "upload_time": "2013-01-14T19:54:05", "url": "https://files.pythonhosted.org/packages/e4/55/a018447dd039778bf2de2ff8215dbd2e06a30818137c756ce3a2824e43e1/SWMM5-0.4.0.0dev.zip" } ], "0.4.1.0": [ { "comment_text": "", "digests": { "md5": "662658f93f02efc10ea310f2a702ec5e", "sha256": "7bfd4fd7396b14cdffc894dd8efb6089aaeca0a38531afc4dc481f62af034737" }, "downloads": -1, "filename": "SWMM5-0.4.1.0.win32-py2.7.exe", "has_sig": true, "md5_digest": "662658f93f02efc10ea310f2a702ec5e", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 374783, "upload_time": "2013-01-16T19:04:56", "url": "https://files.pythonhosted.org/packages/fa/31/01da1d965ede0e85b5426163daea76895e27c7289744f17665ff37d9f648/SWMM5-0.4.1.0.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "2fdfda97f26511925d3fec8ab4a5c612", "sha256": "6cca93c85bf6f4639b58df2cff8f50a396af39c632b2608643be79c7788200ff" }, "downloads": -1, "filename": "SWMM5-0.4.1.0.zip", "has_sig": true, "md5_digest": "2fdfda97f26511925d3fec8ab4a5c612", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 372911, "upload_time": "2013-01-16T19:04:37", "url": "https://files.pythonhosted.org/packages/14/3d/e5d0e7106584678cf3acda7fff8fe98a6c7c04bc1d4edaea747a859012e8/SWMM5-0.4.1.0.zip" } ], "0.4.1.0dev": [ { "comment_text": "", "digests": { "md5": "007cd86ccf49b53fab9109cc5125a296", "sha256": "ca037aff42293019a98dc387c89486c8a1679fe16152a46e8f440b7ae82049fb" }, "downloads": -1, "filename": "SWMM5-0.4.1.0dev.win32-py2.7.exe", "has_sig": true, "md5_digest": "007cd86ccf49b53fab9109cc5125a296", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 375705, "upload_time": "2013-01-16T15:59:46", "url": "https://files.pythonhosted.org/packages/a0/1a/df0bbfd423051b3fe47842337a809b1e08fa6f6366b624d0e5f929c0e604/SWMM5-0.4.1.0dev.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "ae14d8501199dbfdde9377829f1c5480", "sha256": "780ff3d7d0aab80f7f4c911dbc79fee8aa04d31a5247f7e3421bd27d618a8ef2" }, "downloads": -1, "filename": "SWMM5-0.4.1.0dev.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "ae14d8501199dbfdde9377829f1c5480", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 464942, "upload_time": "2014-09-09T15:21:17", "url": "https://files.pythonhosted.org/packages/c0/93/1214eec032f061788cf7b1b241230a06919d370af62fdb6f4cf1fe038683/SWMM5-0.4.1.0dev.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "aeb909ef3b210a854ebe541f81eaaa41", "sha256": "2e79b2f35d5827cfb5a22002697c00625a1185970b27b7ca35d6891bc3ee96de" }, "downloads": -1, "filename": "SWMM5-0.4.1.0dev.zip", "has_sig": true, "md5_digest": "aeb909ef3b210a854ebe541f81eaaa41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 374304, "upload_time": "2013-01-16T16:00:17", "url": "https://files.pythonhosted.org/packages/d9/0f/9a1ff4c74201b222f1386b92b737690e64285b28e1bd9d67b9cb5696dc6f/SWMM5-0.4.1.0dev.zip" } ], "1.0.0.0dev": [ { "comment_text": "", "digests": { "md5": "d90c6a2c0a851301e4c3bd8b6021a174", "sha256": "c8fbe2e790866ba64aec5e8d58fb19b6670caae3253cce7201627bb232f50b77" }, "downloads": -1, "filename": "SWMM5-1.0.0.0dev.win32-py2.7.exe", "has_sig": false, "md5_digest": "d90c6a2c0a851301e4c3bd8b6021a174", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 390477, "upload_time": "2014-09-09T15:39:13", "url": "https://files.pythonhosted.org/packages/be/21/05d1ba7126b2d910f00f760a2ff1b099d5d2b5678a36c694243de72a88a4/SWMM5-1.0.0.0dev.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "d20ae6c59f5285fe0bcfab4edf90db84", "sha256": "a741979f27b82f91929cdd4c63ac37c434e83cfbb6ff27fca36ee78f02fb520c" }, "downloads": -1, "filename": "SWMM5-1.0.0.0dev.win32-py3.3.exe", "has_sig": false, "md5_digest": "d20ae6c59f5285fe0bcfab4edf90db84", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 387282, "upload_time": "2014-09-10T18:52:55", "url": "https://files.pythonhosted.org/packages/6d/95/cd8fd9896450ffacb1ae4c3748c817e41b1a5769a5f9e2dd533d6e1af17a/SWMM5-1.0.0.0dev.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "912383c7d317e4282035a778b47db32c", "sha256": "3c38cf1e49bb7133123db0d526bb1b1c0086bf28bdcad6a098dddf2cf9781015" }, "downloads": -1, "filename": "SWMM5-1.0.0.0dev.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "912383c7d317e4282035a778b47db32c", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 464937, "upload_time": "2014-09-09T15:25:16", "url": "https://files.pythonhosted.org/packages/8d/bf/3fd57e9fab10d25291ebf2fc12830c6d8cb86f5d69e2a2757c7b1e70dfa4/SWMM5-1.0.0.0dev.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "fa27bc272d355420bc7dfa1c6195a058", "sha256": "d6f295f66423693bd184327484c11a7f79a1eb8fc257988f952cbc6f66d51169" }, "downloads": -1, "filename": "SWMM5-1.0.0.0dev.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "fa27bc272d355420bc7dfa1c6195a058", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 462567, "upload_time": "2014-09-10T19:07:34", "url": "https://files.pythonhosted.org/packages/2f/61/f603ff738776035050ca5f5cc90bdbba6287346ca7e9d738d047033c01ab/SWMM5-1.0.0.0dev.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "180e0141854691c6d93dd1fc16213265", "sha256": "31ad00c9e19734a54a2846090fc7ae4ed78a9e5659642370e1ed57a465982ec3" }, "downloads": -1, "filename": "SWMM5-1.0.0.0dev.zip", "has_sig": false, "md5_digest": "180e0141854691c6d93dd1fc16213265", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 373322, "upload_time": "2014-09-10T14:15:50", "url": "https://files.pythonhosted.org/packages/e3/aa/47a42b373720be5d646d4a230ba3024fedef73760441f8e33302f048b50a/SWMM5-1.0.0.0dev.zip" } ], "1.0.0.1": [ { "comment_text": "", "digests": { "md5": "d0a94b9d1b16e92957e2b3de9888613d", "sha256": "1de0d16a01e05a8b7036e12b4fd973d10ec398300dfb707a8bad74e08aafbaff" }, "downloads": -1, "filename": "SWMM5-1.0.0.1-cp27-none-win32.whl", "has_sig": false, "md5_digest": "d0a94b9d1b16e92957e2b3de9888613d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 190359, "upload_time": "2014-09-12T07:56:22", "url": "https://files.pythonhosted.org/packages/d7/c6/d2db44452ef24773e286d4dccb90c59355400c591574e8c4ae3c7fa69c7a/SWMM5-1.0.0.1-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "6151548297d9f589c494bdb814022dfa", "sha256": "5157159dae3eecb676f959953dd3c88e9be41d08e4079a96f16c65ae40e60085" }, "downloads": -1, "filename": "SWMM5-1.0.0.1-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "6151548297d9f589c494bdb814022dfa", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 237170, "upload_time": "2014-09-12T08:00:32", "url": "https://files.pythonhosted.org/packages/7d/1f/b793d3d38c5f1ec7e9e95f6752531ff246216c7afb58087bdfbcd09d344f/SWMM5-1.0.0.1-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ca21bbfd6f8b6e08ff14b6348127b69b", "sha256": "5911807b78cde471b0baa6b6b4d74b58bc6f9048c1cea6e86f2bb2852112cf44" }, "downloads": -1, "filename": "SWMM5-1.0.0.1-cp33-none-win32.whl", "has_sig": false, "md5_digest": "ca21bbfd6f8b6e08ff14b6348127b69b", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 192244, "upload_time": "2014-09-12T08:05:36", "url": "https://files.pythonhosted.org/packages/cd/18/2b71be56abfa5f756cb40d3ee76c84d6512310d6063c0494d40f3d37bcdd/SWMM5-1.0.0.1-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "771fa95808bb7d4e9ce48214d3040ac9", "sha256": "9add6676a5fca608f18d2ca8561b08a72624e04f852298eeabaaaf6b8a741295" }, "downloads": -1, "filename": "SWMM5-1.0.0.1-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "771fa95808bb7d4e9ce48214d3040ac9", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 236273, "upload_time": "2014-09-12T08:02:03", "url": "https://files.pythonhosted.org/packages/0d/f2/9da2a088d0e6d86a65d028016d6463a1dcb024713681322336eda080313f/SWMM5-1.0.0.1-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "872dd5f023977921d336c68ec9c287bd", "sha256": "83f9873cde722b567637807d6db227580933a8049219211f94d65a777156e94b" }, "downloads": -1, "filename": "SWMM5-1.0.0.1.win32-py2.7.exe", "has_sig": false, "md5_digest": "872dd5f023977921d336c68ec9c287bd", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 392061, "upload_time": "2014-09-12T07:56:18", "url": "https://files.pythonhosted.org/packages/54/e2/d46419aab3bb330141281647264b466a229fb1bb768d95cc8a366bb0df62/SWMM5-1.0.0.1.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "183e96055eb0448473099e2526623ea5", "sha256": "71877d3d28e0ba3fb069029ac5b594560ddcf30d49bd714d536e5be1dabbf047" }, "downloads": -1, "filename": "SWMM5-1.0.0.1.win32-py3.3.exe", "has_sig": false, "md5_digest": "183e96055eb0448473099e2526623ea5", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 388855, "upload_time": "2014-09-12T08:05:31", "url": "https://files.pythonhosted.org/packages/ea/eb/39c7b8c4328b135c0a27667bf3ce44694468c25210dff2e5db1b371e4750/SWMM5-1.0.0.1.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "b15de265a9f2073363feb0a7f4d5e3b7", "sha256": "07f97d88a9f00b6d1033af2b37c7bd041bccae9fef7d31b65c8fff058579c776" }, "downloads": -1, "filename": "SWMM5-1.0.0.1.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "b15de265a9f2073363feb0a7f4d5e3b7", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 466530, "upload_time": "2014-09-12T08:00:29", "url": "https://files.pythonhosted.org/packages/25/81/dd3addb189cdc5817add430bc78ea5193a97fa2d9af83fdcffedbdbd288a/SWMM5-1.0.0.1.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "a54074dd7f81d41d36e9df0cb51ea756", "sha256": "06decc40b8b8b33d597f986414c1b5dd1a2591fbcf535c94175c14298a7226c5" }, "downloads": -1, "filename": "SWMM5-1.0.0.1.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "a54074dd7f81d41d36e9df0cb51ea756", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 464127, "upload_time": "2014-09-12T08:01:59", "url": "https://files.pythonhosted.org/packages/86/0d/65260b2d13f1eeddaf7865c1469742d2d222ec2a3eb1fe5b5ef5543b2ebc/SWMM5-1.0.0.1.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "867c8859b89f6a16d184a687c1e4a14e", "sha256": "fb6272e054ebbec3f9ea47440d2bbc8f05a1cb2407c9af3698ac56f49e6c0373" }, "downloads": -1, "filename": "SWMM5-1.0.0.1.zip", "has_sig": false, "md5_digest": "867c8859b89f6a16d184a687c1e4a14e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 377938, "upload_time": "2014-09-12T07:56:28", "url": "https://files.pythonhosted.org/packages/69/92/1751a832c8d2fa8dd329b2c7d0ae069f03d7ecd4b7beb71038e95cf5803e/SWMM5-1.0.0.1.zip" } ], "1.0.0.1dev": [ { "comment_text": "", "digests": { "md5": "0bacaec185399fc04ed624da62ee8dbb", "sha256": "0eb2912f410c14f98ff6008371c8d85436324f932001ddf45aed0f3277218056" }, "downloads": -1, "filename": "SWMM5-1.0.0.1dev-cp27-none-win32.whl", "has_sig": false, "md5_digest": "0bacaec185399fc04ed624da62ee8dbb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 190135, "upload_time": "2014-09-11T18:59:03", "url": "https://files.pythonhosted.org/packages/d3/10/b1f95cadee1203d3cd0343f9350a08395f946cc75531fd85d9ac38d6d7c3/SWMM5-1.0.0.1dev-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "ab5624aeb11fa98988b91df8e95b764a", "sha256": "f8996d8bb3aa864388ee12c9e7dd34ad946a7ce13843d1fe8c3cc168213a599f" }, "downloads": -1, "filename": "SWMM5-1.0.0.1dev-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "ab5624aeb11fa98988b91df8e95b764a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 236954, "upload_time": "2014-09-11T18:48:16", "url": "https://files.pythonhosted.org/packages/8f/70/25e7e45d7c25f07369f2065d5bab71fa7e31e52df80665ff86cff7b69ae8/SWMM5-1.0.0.1dev-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "11fdebcf3fe475fbb7d4e10c79135e52", "sha256": "b11fe7f29be63ea1804cbdaf6bbea2b3af05e9b114fb6058bebccff0af64057e" }, "downloads": -1, "filename": "SWMM5-1.0.0.1dev-cp33-none-win32.whl", "has_sig": false, "md5_digest": "11fdebcf3fe475fbb7d4e10c79135e52", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 192001, "upload_time": "2014-09-11T18:57:37", "url": "https://files.pythonhosted.org/packages/c6/25/d3b9e31c7f0624db2285d89191dfaacaa9add96733d45470f94599289c64/SWMM5-1.0.0.1dev-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "fe2395f09eb8775f66cacea5138eba2d", "sha256": "1782efc22531433547338d59ab5302a49933a96ebe1c9b02ff6672358ca91864" }, "downloads": -1, "filename": "SWMM5-1.0.0.1dev-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "fe2395f09eb8775f66cacea5138eba2d", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 236064, "upload_time": "2014-09-11T18:55:56", "url": "https://files.pythonhosted.org/packages/a3/71/3e73234fb9917eb4cf347055c34e68f8581f54c7c4f07d4692fd6c6317ff/SWMM5-1.0.0.1dev-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "293c2845ab0e2a648b149789a88ac5d7", "sha256": "2259fa587eb251a2291a1cfb1c87e14e705b84a0b2038ead0dd0f89d452e49b6" }, "downloads": -1, "filename": "SWMM5-1.0.0.1dev.win32-py2.7.exe", "has_sig": false, "md5_digest": "293c2845ab0e2a648b149789a88ac5d7", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 390510, "upload_time": "2014-09-11T09:58:58", "url": "https://files.pythonhosted.org/packages/f4/6e/35c6e80b065fccfab7ed65a211417721297e5202776bcb985db949fb87ed/SWMM5-1.0.0.1dev.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "7cb84dc37f4cf2e819da4289e3543812", "sha256": "a32e16e6ca7625167140f462b2128638b1def941460818aa793a528c8732535c" }, "downloads": -1, "filename": "SWMM5-1.0.0.1dev.win32-py3.3.exe", "has_sig": false, "md5_digest": "7cb84dc37f4cf2e819da4289e3543812", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 387283, "upload_time": "2014-09-11T10:00:30", "url": "https://files.pythonhosted.org/packages/7e/ec/79679586dd9753189bbe11b313a64f5caf7a3bdcb6629c6dc48cf070e5f1/SWMM5-1.0.0.1dev.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "3687b60c909d7f1e453abd845b3ff14b", "sha256": "8b3a6bd7987fbe023f9827345061ce53991b52a9f95f7f829eb6e75db55d87ee" }, "downloads": -1, "filename": "SWMM5-1.0.0.1dev.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "3687b60c909d7f1e453abd845b3ff14b", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 464971, "upload_time": "2014-09-11T08:34:31", "url": "https://files.pythonhosted.org/packages/6c/1f/7b98506647109aad7482d293ebdcaebea23f401527edf1e38006e3a4d8f2/SWMM5-1.0.0.1dev.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "d467f1d60e5e6380787976d7cef25a65", "sha256": "2421f053ca6d16146d07e8dc4ecbc40a4495e790122ca166dffa35b38053cd4b" }, "downloads": -1, "filename": "SWMM5-1.0.0.1dev.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "d467f1d60e5e6380787976d7cef25a65", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 462569, "upload_time": "2014-09-11T10:01:24", "url": "https://files.pythonhosted.org/packages/3a/ca/164fc752ec346547257ebea29535ca425cd552d25278f067e8e949ebda1c/SWMM5-1.0.0.1dev.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "aa3876d58a7fad23cf43b5f99f2570c7", "sha256": "0ff9aa69cd16034030e9da8dcaa4cbd86f98b32bc6a773631147932eabb4c0d5" }, "downloads": -1, "filename": "SWMM5-1.0.0.1dev.zip", "has_sig": false, "md5_digest": "aa3876d58a7fad23cf43b5f99f2570c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 373380, "upload_time": "2014-09-11T08:34:35", "url": "https://files.pythonhosted.org/packages/4f/32/e3d571289428543a317cff42515624add4a414ffc7f33ff5911883e5c08d/SWMM5-1.0.0.1dev.zip" } ], "1.1.0.1dev": [ { "comment_text": "", "digests": { "md5": "bee88d26849629672fe3e794736fe8c2", "sha256": "56ec41eca5b74817841b558928746975b8ef55d5b55cf892b6363b09010a2224" }, "downloads": -1, "filename": "SWMM5-1.1.0.1dev-cp27-none-win32.whl", "has_sig": false, "md5_digest": "bee88d26849629672fe3e794736fe8c2", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 197577, "upload_time": "2015-03-31T11:02:10", "url": "https://files.pythonhosted.org/packages/87/85/3516a3041d9d56104bb46d0ad8f0c56b90b1f60a4623f9cb7bc4ce12a1db/SWMM5-1.1.0.1dev-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "08f19f7cef496c8d7db9e17656b435be", "sha256": "fb46e83d3351d78d5047fd531cbe35872b85c12ba8d293644e019c9aa24564a7" }, "downloads": -1, "filename": "SWMM5-1.1.0.1dev-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "08f19f7cef496c8d7db9e17656b435be", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 247847, "upload_time": "2015-03-31T11:06:01", "url": "https://files.pythonhosted.org/packages/6e/82/5c01cbc6ba77255b9a1e1f32aadc5ee70d1ef065d8b374f92d50c6d1797f/SWMM5-1.1.0.1dev-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "645e280bf5e504d7536923ef7f123762", "sha256": "268e2cf136eb7a1cf35f3d5e150158aa8f5245d1299921e438f6dec296f5c8ec" }, "downloads": -1, "filename": "SWMM5-1.1.0.1dev-cp33-none-win32.whl", "has_sig": false, "md5_digest": "645e280bf5e504d7536923ef7f123762", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 204571, "upload_time": "2015-03-31T14:54:07", "url": "https://files.pythonhosted.org/packages/b9/0c/86a87fabdf6d3b7e97cdfd710b7f1fec2f28c278701f1d2e32b365c26d89/SWMM5-1.1.0.1dev-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "3979744172e71a52ca1d06a9c15281dc", "sha256": "22b2a5b7a867baea6e48cf64bf0adaf1f7e8fda8b43d750ea942da67981fd11d" }, "downloads": -1, "filename": "SWMM5-1.1.0.1dev-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "3979744172e71a52ca1d06a9c15281dc", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 254264, "upload_time": "2015-03-31T14:56:20", "url": "https://files.pythonhosted.org/packages/01/15/0f004bf27834822f29d5270b87406c6e20b014ae11b3a4119ea5d7614f51/SWMM5-1.1.0.1dev-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3b19af2f676663a841e8f763cd7eff46", "sha256": "f6bf0ee7639c14624ff86e9f0249f3b6b1d2e4e0d2841127b34592c03cc494f7" }, "downloads": -1, "filename": "SWMM5-1.1.0.1dev.win32-py2.7.exe", "has_sig": false, "md5_digest": "3b19af2f676663a841e8f763cd7eff46", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 399361, "upload_time": "2015-03-31T11:02:04", "url": "https://files.pythonhosted.org/packages/4a/5f/4d02fd94355d9a1946c81a4b380f228356cc6b701506c52650528d5d4144/SWMM5-1.1.0.1dev.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "9cc0819c31f88cabc44e5a68c6e834e7", "sha256": "b0fc1cadb542b7dc8799a4f2ed030862c91be9bebf866bed1587c09b955a3a79" }, "downloads": -1, "filename": "SWMM5-1.1.0.1dev.win32-py3.3.exe", "has_sig": false, "md5_digest": "9cc0819c31f88cabc44e5a68c6e834e7", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 401243, "upload_time": "2015-03-31T14:53:59", "url": "https://files.pythonhosted.org/packages/2e/05/e8adc124ac88ca208080a34393f6d59e2f632e74fdec88d56237b4a9a5d7/SWMM5-1.1.0.1dev.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "56a63e0f40845b60932e10b630721450", "sha256": "54d483e19e72aeaf842d251443b2d6794563134def64a497c863897b43840d0f" }, "downloads": -1, "filename": "SWMM5-1.1.0.1dev.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "56a63e0f40845b60932e10b630721450", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 477276, "upload_time": "2015-03-31T11:05:55", "url": "https://files.pythonhosted.org/packages/0c/ec/dce2f5eaff09e99b93637088c9bd17e6c8e8962ce76a896d997b7e309e20/SWMM5-1.1.0.1dev.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "f9ca4eecb91e799c250ee40c70f4cb43", "sha256": "a9a4db853d0297f3d426c98db67eb4e529511ca141f4f8fd76d03b77bca3ab2c" }, "downloads": -1, "filename": "SWMM5-1.1.0.1dev.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "f9ca4eecb91e799c250ee40c70f4cb43", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 482161, "upload_time": "2015-03-31T14:56:12", "url": "https://files.pythonhosted.org/packages/1d/95/d4ee38b9a1f7e8f1129704cad4d0c9c8c4557a1a1f7f5bb93ad00dfa6805/SWMM5-1.1.0.1dev.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "cd70f4e1bf029d82dbc1b2ca31af8914", "sha256": "e102ff62e828b368d5e46c90213693ccd773b217d6503d64018d52ad1e4c5475" }, "downloads": -1, "filename": "SWMM5-1.1.0.1dev.zip", "has_sig": false, "md5_digest": "cd70f4e1bf029d82dbc1b2ca31af8914", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 379202, "upload_time": "2015-03-31T11:02:17", "url": "https://files.pythonhosted.org/packages/2f/a9/a461733384238a2124cf5d7df99efa6dc531f2c3557a6d0d095b0f866c63/SWMM5-1.1.0.1dev.zip" } ], "1.1.0.2": [ { "comment_text": "", "digests": { "md5": "ba27f43194b9f701ae61fe610612502d", "sha256": "48bb4c63da52a98463b2b77dd096c022a31d62f1015ddde5038a8cd8dc7e3275" }, "downloads": -1, "filename": "SWMM5-1.1.0.2-cp27-none-win32.whl", "has_sig": false, "md5_digest": "ba27f43194b9f701ae61fe610612502d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 204802, "upload_time": "2015-04-01T12:10:40", "url": "https://files.pythonhosted.org/packages/88/d1/5b02538cdd02c71e71e7fbf60ca7a0d9b25874cb1658ff21e2716422bd36/SWMM5-1.1.0.2-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "46c46dd05954abd9055e15236090f5a1", "sha256": "5fabebe93d15276a3e422af04063b568f36559ca7e7d012b8338278d633efdf7" }, "downloads": -1, "filename": "SWMM5-1.1.0.2-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "46c46dd05954abd9055e15236090f5a1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 258863, "upload_time": "2015-04-01T12:12:55", "url": "https://files.pythonhosted.org/packages/9e/b5/0fc5772d593e486f49a5f668aeee5adb4db88b4d35968ff6b6bf6ecbdb2f/SWMM5-1.1.0.2-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e7043fa4bd9efc0aa0f0b63b2186ef58", "sha256": "36a2f0f74b2cc9ec2ab1854e02273a2db2cb120377861803892e534fa4c6277d" }, "downloads": -1, "filename": "SWMM5-1.1.0.2-cp33-none-win32.whl", "has_sig": false, "md5_digest": "e7043fa4bd9efc0aa0f0b63b2186ef58", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 207857, "upload_time": "2015-04-01T12:06:36", "url": "https://files.pythonhosted.org/packages/1a/ae/293bcc6ca5ba3e94e303ad4e340b7dcd73a28fc707a751daf52fe660f649/SWMM5-1.1.0.2-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "fc5e95a190d17dcfdfaa7d3c30e13db0", "sha256": "b8e63068c943aa749d3587496bbe25de65f44a692c6f9fc57ecf6dcb449b71eb" }, "downloads": -1, "filename": "SWMM5-1.1.0.2-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "fc5e95a190d17dcfdfaa7d3c30e13db0", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 258349, "upload_time": "2015-04-01T12:08:44", "url": "https://files.pythonhosted.org/packages/17/2f/2104e41ab21c5de3285fe746a52f6a0cf443e4d17e37721b3ec3d3e45768/SWMM5-1.1.0.2-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "92f9b07093196df8d5ab3b0b14513678", "sha256": "b7b2fbd7c6a22c0662ebf7853f9c3222d40d39f28b251c6427001a8a73431a55" }, "downloads": -1, "filename": "SWMM5-1.1.0.2.win32-py2.7.exe", "has_sig": false, "md5_digest": "92f9b07093196df8d5ab3b0b14513678", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 407392, "upload_time": "2015-04-01T12:10:33", "url": "https://files.pythonhosted.org/packages/5d/18/994b7a4694785cbc2a009e7713383ba4e5b7a1c16e812dbc75b4c8dec3af/SWMM5-1.1.0.2.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "24f52e73322ffb539e6b1f9e1785addb", "sha256": "b8c057435cef44290d7d8408efce6346b4d402e286d33400b148b694d6ad45aa" }, "downloads": -1, "filename": "SWMM5-1.1.0.2.win32-py3.3.exe", "has_sig": false, "md5_digest": "24f52e73322ffb539e6b1f9e1785addb", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 405356, "upload_time": "2015-04-01T12:06:29", "url": "https://files.pythonhosted.org/packages/42/83/04adfe5ad4fb873a18f2bdcbd9557ccb9a99e4d627e7999848a277efcc43/SWMM5-1.1.0.2.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "aa2a3035120bb7ac8d9c287910e05408", "sha256": "b7769af3ad5bf407be4b8747778a0951411c19732cac77aaf2fedd89aa6056c7" }, "downloads": -1, "filename": "SWMM5-1.1.0.2.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "aa2a3035120bb7ac8d9c287910e05408", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 489094, "upload_time": "2015-04-01T12:12:48", "url": "https://files.pythonhosted.org/packages/1c/a8/db8d08611e5c575c8cfd04386979e86f7a319d47332d4ae5255e2796f59b/SWMM5-1.1.0.2.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "4d196dd9f246d8ad1bebbfd5abfb75c2", "sha256": "96923eb49f5baf1b28c7566ac0031a59ee65ae4dc2eec857782f4a68a4e8b0df" }, "downloads": -1, "filename": "SWMM5-1.1.0.2.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "4d196dd9f246d8ad1bebbfd5abfb75c2", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 487080, "upload_time": "2015-04-01T12:08:37", "url": "https://files.pythonhosted.org/packages/48/1e/f868c12949bc9bed6945575a51fade7b7988aa40ec044cc565cd52099b96/SWMM5-1.1.0.2.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "98d2179b80dda7313317571ebf467f26", "sha256": "6576c4533b643bcede7810f455fbdaa75b42ff47670ce531b98172217e5598c6" }, "downloads": -1, "filename": "SWMM5-1.1.0.2.zip", "has_sig": false, "md5_digest": "98d2179b80dda7313317571ebf467f26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 389521, "upload_time": "2015-04-01T12:06:44", "url": "https://files.pythonhosted.org/packages/42/8d/939425a956524eb0522ebee0c4490fba7bf31833019dd6e412972c5cd4e8/SWMM5-1.1.0.2.zip" } ], "1.1.0.2dev": [ { "comment_text": "", "digests": { "md5": "7ee84fb3a2552c9b30f44b34d004d631", "sha256": "907eec0ebcd29ef0fc1d28c61e9bf31319bc35543eae8f696017ce5f765748ca" }, "downloads": -1, "filename": "SWMM5-1.1.0.2dev-cp27-none-win32.whl", "has_sig": false, "md5_digest": "7ee84fb3a2552c9b30f44b34d004d631", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 201544, "upload_time": "2015-03-31T15:07:09", "url": "https://files.pythonhosted.org/packages/43/3d/cc62e4cec9103d1c80ee816c88e6c09b6e91b9a7cf325d71a4fef662198f/SWMM5-1.1.0.2dev-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "a43a387820f2684cf834a27a6b375e55", "sha256": "db12fb8ef6b8ea32664caad188a15d680ae78a88de744d1d34b7da6baf97b3f6" }, "downloads": -1, "filename": "SWMM5-1.1.0.2dev-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "a43a387820f2684cf834a27a6b375e55", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 254706, "upload_time": "2015-03-31T15:25:23", "url": "https://files.pythonhosted.org/packages/d0/da/689b7c887dcffb941497ceffed7f296e341688b2376fdaa2cce084cfa1ae/SWMM5-1.1.0.2dev-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "50a42058c7b9af2fba17a91324db7bdf", "sha256": "d6e58f2879c2f9b6407e00a80f789248c0b12e36275ff7eaae1cf8d4ec06f630" }, "downloads": -1, "filename": "SWMM5-1.1.0.2dev-cp33-none-win32.whl", "has_sig": false, "md5_digest": "50a42058c7b9af2fba17a91324db7bdf", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 204568, "upload_time": "2015-03-31T15:29:44", "url": "https://files.pythonhosted.org/packages/ca/97/e03ee5c61c2c1940816c32580ae49ad20269fcfcb695c9ed2af1d3ab037c/SWMM5-1.1.0.2dev-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "975bd83d4fb4cb60cb60cad5891eb6c9", "sha256": "a3da8f083aab10b11d5f9cab5585fc30d8636275d770b9d71360d601b34f8da3" }, "downloads": -1, "filename": "SWMM5-1.1.0.2dev-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "975bd83d4fb4cb60cb60cad5891eb6c9", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 254261, "upload_time": "2015-03-31T15:27:33", "url": "https://files.pythonhosted.org/packages/c8/9c/121d64a57256696d4a07ea7c967205fe1b9428f3eacc4095654dae065fa9/SWMM5-1.1.0.2dev-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "73d46a585130f757973b5e386a3839e7", "sha256": "2e8badc106b744f1e68d2e2f13ec976368d7a9fb0e1acf813a191435760b61e7" }, "downloads": -1, "filename": "SWMM5-1.1.0.2dev.win32-py2.7.exe", "has_sig": false, "md5_digest": "73d46a585130f757973b5e386a3839e7", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 403307, "upload_time": "2015-03-31T15:07:03", "url": "https://files.pythonhosted.org/packages/59/cb/04a78dca5ec919850d25a03026dd0d59423ddcb885b4baaf6ac57096871f/SWMM5-1.1.0.2dev.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "905a0f43f367ecc2a0ca77dba49228a5", "sha256": "c5d89cf0911a763d917652289e534329bb4de737231fa3bd27fd07c37dafd56d" }, "downloads": -1, "filename": "SWMM5-1.1.0.2dev.win32-py3.3.exe", "has_sig": false, "md5_digest": "905a0f43f367ecc2a0ca77dba49228a5", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 401241, "upload_time": "2015-03-31T15:29:37", "url": "https://files.pythonhosted.org/packages/4b/5d/64d787f6919f88eb456ec01a7d0b5125919acf6c5a8c331a09d4fbe51c3d/SWMM5-1.1.0.2dev.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "40acf89ced82b9f224fdc8b0a94146de", "sha256": "cdc9149f9464bd0bf96c6c4acd86d6b4709705cf1e3c9f306b9b9337b440aace" }, "downloads": -1, "filename": "SWMM5-1.1.0.2dev.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "40acf89ced82b9f224fdc8b0a94146de", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 484113, "upload_time": "2015-03-31T15:25:17", "url": "https://files.pythonhosted.org/packages/d1/0d/984e4f08086da3ed24e086d73116fabce907d659d4d198cc20bafba590c9/SWMM5-1.1.0.2dev.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "e0fb2edcd04dba02bce53c68b934a808", "sha256": "06ce0d44f7906550224878a154183ea36aa721e6a60f0051a62a05a594df2304" }, "downloads": -1, "filename": "SWMM5-1.1.0.2dev.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "e0fb2edcd04dba02bce53c68b934a808", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 482162, "upload_time": "2015-03-31T15:27:26", "url": "https://files.pythonhosted.org/packages/7c/f9/c80d6c63ec2be59fc6af77c523e92aef16134fde292521432fe26c274490/SWMM5-1.1.0.2dev.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "b2aaa4496859fe9405cda83d4d96cb96", "sha256": "1cacd13e5b7615530d2054778bab3828d48c064fe8f572f0071e0f6137c8a422" }, "downloads": -1, "filename": "SWMM5-1.1.0.2dev.zip", "has_sig": false, "md5_digest": "b2aaa4496859fe9405cda83d4d96cb96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 382410, "upload_time": "2015-03-31T15:07:18", "url": "https://files.pythonhosted.org/packages/a3/81/9f403389b1efeb00891f7396c44ce3bafea8308b8ecc411844d9ab8dc8ac/SWMM5-1.1.0.2dev.zip" } ], "1.1.0.3": [ { "comment_text": "", "digests": { "md5": "4c91e658ee3fee93ac4c636eb8b1b060", "sha256": "ace98c9639d9ff991d396cc85d013d64a62b9bc9090744c24e60b7d1500ad72b" }, "downloads": -1, "filename": "SWMM5-1.1.0.3-cp27-none-win32.whl", "has_sig": false, "md5_digest": "4c91e658ee3fee93ac4c636eb8b1b060", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 205139, "upload_time": "2015-04-01T14:32:27", "url": "https://files.pythonhosted.org/packages/f7/c7/1cece14562a47122c3b0525b038bcba0a8d9364a718e97fa11bc496636ce/SWMM5-1.1.0.3-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "7edb3cd8c0cb405b2d6b3af5dd9ad6bd", "sha256": "db8063179ccb75c5afe4503a1e71867152b2efad185731351fd1f1a20437c925" }, "downloads": -1, "filename": "SWMM5-1.1.0.3-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "7edb3cd8c0cb405b2d6b3af5dd9ad6bd", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 259196, "upload_time": "2015-04-01T14:47:10", "url": "https://files.pythonhosted.org/packages/79/55/0b9c443941e715fc954dceeaa04684d04d9c5053380f2fad49756bdc08c6/SWMM5-1.1.0.3-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "781ae64a539a9e66b90d79c0842125e2", "sha256": "fda81e471ae03fd8f97d50f9765bfac6d9c1e85e20c8fdfb069ffd61ffa96a75" }, "downloads": -1, "filename": "SWMM5-1.1.0.3-cp33-none-win32.whl", "has_sig": false, "md5_digest": "781ae64a539a9e66b90d79c0842125e2", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 208195, "upload_time": "2015-04-01T14:51:25", "url": "https://files.pythonhosted.org/packages/37/69/91feec750fd093b20a5d493cd4bc056fbd85748974e0fec30bffaa460d19/SWMM5-1.1.0.3-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "34e9d5e6575437b0b0427b4bab1cf32b", "sha256": "4e18741783fa55ad38fab546915592c92317ca7e442061b584659e020b722464" }, "downloads": -1, "filename": "SWMM5-1.1.0.3-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "34e9d5e6575437b0b0427b4bab1cf32b", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 258683, "upload_time": "2015-04-01T14:49:18", "url": "https://files.pythonhosted.org/packages/5e/2d/b94dd3dbc89d06df05333d2644be5b9265297a1a6550457b79f1e213794e/SWMM5-1.1.0.3-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e20df6c9df7749e21799d3b0ecf7fbdf", "sha256": "0a549382279928a24f460f17785e9516a49966ffe9c449f6370812444f895a2d" }, "downloads": -1, "filename": "SWMM5-1.1.0.3.win32-py2.7.exe", "has_sig": false, "md5_digest": "e20df6c9df7749e21799d3b0ecf7fbdf", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 407869, "upload_time": "2015-04-01T14:32:19", "url": "https://files.pythonhosted.org/packages/4f/6d/9a26225523493b23bd7b380c89ba0a38082208d5c1760dba858eb55a64c4/SWMM5-1.1.0.3.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "efd14ce64fdee4159bc16189e87fea45", "sha256": "ee5c216f24607fbd70ff544c0b5ab4ced25cba7067798e08b5abcc1f78cb013f" }, "downloads": -1, "filename": "SWMM5-1.1.0.3.win32-py3.3.exe", "has_sig": false, "md5_digest": "efd14ce64fdee4159bc16189e87fea45", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 405836, "upload_time": "2015-04-01T14:51:16", "url": "https://files.pythonhosted.org/packages/28/0e/e9a9a1ce208fcb367bd5d9eb1974d55d9e55da901a200276c9b7cccc13fd/SWMM5-1.1.0.3.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "82b5bc1daa93b609b2e861e04889ef80", "sha256": "971c950387ac3d6ac8c4a983c71061e0bda89b94030164276c7b05b605c09c78" }, "downloads": -1, "filename": "SWMM5-1.1.0.3.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "82b5bc1daa93b609b2e861e04889ef80", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 489572, "upload_time": "2015-04-01T14:47:03", "url": "https://files.pythonhosted.org/packages/4e/53/cf9155251c42a9339fd6bfc9606e05b4e60dccf05b61e110be26764c3b3c/SWMM5-1.1.0.3.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "83c82fd0f22f0ed6601cbf4ee87d0407", "sha256": "e76f404c0272a03d00daa7490163f0316773249c4fed33a74f736b8fe354f828" }, "downloads": -1, "filename": "SWMM5-1.1.0.3.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "83c82fd0f22f0ed6601cbf4ee87d0407", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 487558, "upload_time": "2015-04-01T14:49:10", "url": "https://files.pythonhosted.org/packages/df/ae/916e787c580b330e905512926678be80e2e835a57a4ee5b4d7072b00d9d8/SWMM5-1.1.0.3.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "5cf640cffe7db3d582c3f2704fac25a8", "sha256": "886538c2ec855ad3dc39c3461dc0a58b0135b502a11276cf7ba1972074bbf58b" }, "downloads": -1, "filename": "SWMM5-1.1.0.3.zip", "has_sig": false, "md5_digest": "5cf640cffe7db3d582c3f2704fac25a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 390027, "upload_time": "2015-04-01T14:32:35", "url": "https://files.pythonhosted.org/packages/bb/88/f9edf90921251c4c2c38205db9564815f4deb39c7d3daef82cf431c918c9/SWMM5-1.1.0.3.zip" } ], "5.1.0.10": [], "5.1.0.102": [ { "comment_text": "", "digests": { "md5": "7c0701f8a4b0994cb4b739cc0281fd62", "sha256": "69d054ff5ee2a4d8cd86d8a1c74c0bbea1c717c9162b2cfe3aeb40b0972350b1" }, "downloads": -1, "filename": "SWMM5-5.1.0.102-cp27-none-win32.whl", "has_sig": false, "md5_digest": "7c0701f8a4b0994cb4b739cc0281fd62", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 297830, "upload_time": "2015-10-01T10:36:09", "url": "https://files.pythonhosted.org/packages/eb/f5/f1da200a164d0ce5bed7e5ba03d6e39b52e82bd4dedfffe60ba2f6006c32/SWMM5-5.1.0.102-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "3bcd06af9c2c2353094f7eabbfc73dd7", "sha256": "83efb24b2ba9ff878a5e2aebc3306a88d1fd4c66bcab65bc869c41c663aa22fe" }, "downloads": -1, "filename": "SWMM5-5.1.0.102-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "3bcd06af9c2c2353094f7eabbfc73dd7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 328117, "upload_time": "2015-09-29T06:33:29", "url": "https://files.pythonhosted.org/packages/05/96/ddcd291629e556c72cf4555d9e18f4dfc7340af103d1326dcbb47796f787/SWMM5-5.1.0.102-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ec2d26d03158a025ccfbf3ca43686b19", "sha256": "a372627998e2f1a91d9753d290656ee22c657b2bda83defeb25b78324212146f" }, "downloads": -1, "filename": "SWMM5-5.1.0.102-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "ec2d26d03158a025ccfbf3ca43686b19", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 315743, "upload_time": "2015-09-29T07:04:38", "url": "https://files.pythonhosted.org/packages/f6/aa/b75672c687019bf048009ae3a29fb7046ff068e0e5098093343cb0586d62/SWMM5-5.1.0.102-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2a02775535ca7d5d211de12e6c15232e", "sha256": "6c7783d476e7cc12bf30d4719d5a2e3fa4d8be88e80a65e6f24a79428d524ba1" }, "downloads": -1, "filename": "SWMM5-5.1.0.102-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "2a02775535ca7d5d211de12e6c15232e", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 315746, "upload_time": "2015-09-29T07:20:05", "url": "https://files.pythonhosted.org/packages/e6/25/c4c07b8b213e3e7edd6c600dcfa69d42c315e086c95c81e12dc51b8801cb/SWMM5-5.1.0.102-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f9261b3bfcb4d79985295e28c9f34678", "sha256": "cb759aaca3453e6ef5f5c0b6f70025501bf8a35391796a75d7c79d877a079152" }, "downloads": -1, "filename": "SWMM5-5.1.0.102.win32-py2.7.exe", "has_sig": false, "md5_digest": "f9261b3bfcb4d79985295e28c9f34678", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 500433, "upload_time": "2015-10-01T10:36:30", "url": "https://files.pythonhosted.org/packages/25/4f/d9b75e7f6aedd5e58bae6d7fa4cde64db7e366938acc76f088ba4067b799/SWMM5-5.1.0.102.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "424d2f5628eea2d293e0254784138a4f", "sha256": "82d5b2577abf892336a59800a29238ecc5b9fea0096ed4b00076211a05e01fe1" }, "downloads": -1, "filename": "SWMM5-5.1.0.102.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "424d2f5628eea2d293e0254784138a4f", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 558364, "upload_time": "2015-09-29T06:32:52", "url": "https://files.pythonhosted.org/packages/f1/d3/00599f34a1af8006dc184eaa15830f4d003bff8bdde78b67cc6c3a2e88de/SWMM5-5.1.0.102.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "a359375a2e07751e8fe10278a48fdb45", "sha256": "80c0645e8e8ba4ca7df739271e23fc99e4083c10a0488ceb18d84923e6cbaed1" }, "downloads": -1, "filename": "SWMM5-5.1.0.102.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "a359375a2e07751e8fe10278a48fdb45", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 544487, "upload_time": "2015-09-29T06:39:22", "url": "https://files.pythonhosted.org/packages/8c/c3/f1ecf244273347cada5712b2db816db104bace3adef8879165bdeac6a034/SWMM5-5.1.0.102.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "31c67498c5951d70077a5d174b9a813f", "sha256": "6dc199cb674b45ec68c5363d38335a428cff1ee8e3811ffb536c049b658b9af1" }, "downloads": -1, "filename": "SWMM5-5.1.0.102.win-amd64-py3.4.exe", "has_sig": false, "md5_digest": "31c67498c5951d70077a5d174b9a813f", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 544495, "upload_time": "2015-09-29T07:19:56", "url": "https://files.pythonhosted.org/packages/b2/f2/e474543e9e85487bb1587b00f7c644c30d8b7e97d72ab6c9f9cad4d878dc/SWMM5-5.1.0.102.win-amd64-py3.4.exe" }, { "comment_text": "", "digests": { "md5": "65789c812caeaa1e045391b6a953189a", "sha256": "69bee3c7e89407306546e489fa51a4a3bc5c6f368de6337b386f28a2b913da8d" }, "downloads": -1, "filename": "SWMM5-5.1.0.102.zip", "has_sig": false, "md5_digest": "65789c812caeaa1e045391b6a953189a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 415376, "upload_time": "2015-09-29T06:33:41", "url": "https://files.pythonhosted.org/packages/44/ac/4b9ed15667c2a5a68bee89f2842b7cdb5a1f27eeae0998643045f126d696/SWMM5-5.1.0.102.zip" } ], "5.1.12": [ { "comment_text": "", "digests": { "md5": "6b036338b042f273df5093561093f8e8", "sha256": "caa300b08f686561434afd1d6e6bc209aff37b15d0bf47d4787f84f9ac12c850" }, "downloads": -1, "filename": "SWMM5-5.1.12-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "6b036338b042f273df5093561093f8e8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 268593, "upload_time": "2018-03-13T13:28:18", "url": "https://files.pythonhosted.org/packages/24/18/225632a715d4914f14961a4e0f1d4f2cb6afb5b68f343a6effcbac12bddf/SWMM5-5.1.12-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f789acaac389f31a9bc0324bcefe02ff", "sha256": "ab7aa5811304402f895d6ac8071fdfa3d3aace8f21220353a39fb639fb9bf2aa" }, "downloads": -1, "filename": "SWMM5-5.1.12-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f789acaac389f31a9bc0324bcefe02ff", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 332380, "upload_time": "2018-03-13T12:59:20", "url": "https://files.pythonhosted.org/packages/aa/95/78f54417ae29d3914032e65ad0fda7a5c60aeac8d9305e3b2e4b1af6aa3c/SWMM5-5.1.12-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ae5f57e4092c6a1c68df8b286da871fb", "sha256": "e84b510a7b1f1f799e430c4c422d62e7f62c7af3b1242f6724f4beba6cd13833" }, "downloads": -1, "filename": "SWMM5-5.1.12-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ae5f57e4092c6a1c68df8b286da871fb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 317440, "upload_time": "2018-10-05T09:17:03", "url": "https://files.pythonhosted.org/packages/02/93/1ec984329707b280e06e738f073575e7cec6de21cff39778549e3129f45b/SWMM5-5.1.12-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2cdd6ab7e0f2ee59f319085ed014aefb", "sha256": "3fa15cd518953f886bf3640b42dd5e893c95d5583c87eabd55fb306f7e7cc7d9" }, "downloads": -1, "filename": "SWMM5-5.1.12.tar.gz", "has_sig": false, "md5_digest": "2cdd6ab7e0f2ee59f319085ed014aefb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 380199, "upload_time": "2018-03-13T12:57:00", "url": "https://files.pythonhosted.org/packages/5c/50/8ace58a5729654c44a80b60549ae1738803c6ecd8b400348abb76cb2855f/SWMM5-5.1.12.tar.gz" }, { "comment_text": "", "digests": { "md5": "6009177ff96064d8aba70230ef7b41cb", "sha256": "8615bdc7f71958ec0a397cca21acd5417865a7c8e66d7edc57037f5b36a31674" }, "downloads": -1, "filename": "SWMM5-5.1.12.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "6009177ff96064d8aba70230ef7b41cb", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 498838, "upload_time": "2018-03-13T13:28:25", "url": "https://files.pythonhosted.org/packages/bf/46/0269cf7b96657ef5c1db00fef2a0ac7f2649982f80f37d9cd90ab92e4a88/SWMM5-5.1.12.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "ce048b6537bee0e2531dc981444d1a1c", "sha256": "bf2eed52bd456764209ea85ed0c5df988509b945862cef63b495f7550b0e1117" }, "downloads": -1, "filename": "SWMM5-5.1.12.win-amd64-py3.6.exe", "has_sig": false, "md5_digest": "ce048b6537bee0e2531dc981444d1a1c", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 926660, "upload_time": "2018-03-13T12:58:28", "url": "https://files.pythonhosted.org/packages/d6/c8/0489f0768fcf2f6a28a86bda8233ff2d8a7774b3f540137f1fa960673012/SWMM5-5.1.12.win-amd64-py3.6.exe" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6b036338b042f273df5093561093f8e8", "sha256": "caa300b08f686561434afd1d6e6bc209aff37b15d0bf47d4787f84f9ac12c850" }, "downloads": -1, "filename": "SWMM5-5.1.12-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "6b036338b042f273df5093561093f8e8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 268593, "upload_time": "2018-03-13T13:28:18", "url": "https://files.pythonhosted.org/packages/24/18/225632a715d4914f14961a4e0f1d4f2cb6afb5b68f343a6effcbac12bddf/SWMM5-5.1.12-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f789acaac389f31a9bc0324bcefe02ff", "sha256": "ab7aa5811304402f895d6ac8071fdfa3d3aace8f21220353a39fb639fb9bf2aa" }, "downloads": -1, "filename": "SWMM5-5.1.12-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f789acaac389f31a9bc0324bcefe02ff", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 332380, "upload_time": "2018-03-13T12:59:20", "url": "https://files.pythonhosted.org/packages/aa/95/78f54417ae29d3914032e65ad0fda7a5c60aeac8d9305e3b2e4b1af6aa3c/SWMM5-5.1.12-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ae5f57e4092c6a1c68df8b286da871fb", "sha256": "e84b510a7b1f1f799e430c4c422d62e7f62c7af3b1242f6724f4beba6cd13833" }, "downloads": -1, "filename": "SWMM5-5.1.12-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ae5f57e4092c6a1c68df8b286da871fb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 317440, "upload_time": "2018-10-05T09:17:03", "url": "https://files.pythonhosted.org/packages/02/93/1ec984329707b280e06e738f073575e7cec6de21cff39778549e3129f45b/SWMM5-5.1.12-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2cdd6ab7e0f2ee59f319085ed014aefb", "sha256": "3fa15cd518953f886bf3640b42dd5e893c95d5583c87eabd55fb306f7e7cc7d9" }, "downloads": -1, "filename": "SWMM5-5.1.12.tar.gz", "has_sig": false, "md5_digest": "2cdd6ab7e0f2ee59f319085ed014aefb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 380199, "upload_time": "2018-03-13T12:57:00", "url": "https://files.pythonhosted.org/packages/5c/50/8ace58a5729654c44a80b60549ae1738803c6ecd8b400348abb76cb2855f/SWMM5-5.1.12.tar.gz" }, { "comment_text": "", "digests": { "md5": "6009177ff96064d8aba70230ef7b41cb", "sha256": "8615bdc7f71958ec0a397cca21acd5417865a7c8e66d7edc57037f5b36a31674" }, "downloads": -1, "filename": "SWMM5-5.1.12.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "6009177ff96064d8aba70230ef7b41cb", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 498838, "upload_time": "2018-03-13T13:28:25", "url": "https://files.pythonhosted.org/packages/bf/46/0269cf7b96657ef5c1db00fef2a0ac7f2649982f80f37d9cd90ab92e4a88/SWMM5-5.1.12.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "ce048b6537bee0e2531dc981444d1a1c", "sha256": "bf2eed52bd456764209ea85ed0c5df988509b945862cef63b495f7550b0e1117" }, "downloads": -1, "filename": "SWMM5-5.1.12.win-amd64-py3.6.exe", "has_sig": false, "md5_digest": "ce048b6537bee0e2531dc981444d1a1c", "packagetype": "bdist_wininst", "python_version": "3.6", "requires_python": null, "size": 926660, "upload_time": "2018-03-13T12:58:28", "url": "https://files.pythonhosted.org/packages/d6/c8/0489f0768fcf2f6a28a86bda8233ff2d8a7774b3f540137f1fa960673012/SWMM5-5.1.12.win-amd64-py3.6.exe" } ] }