{ "info": { "author": "MTC, SFCTA & PSRC", "author_email": "lzorn@bayareametro.gov", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Other Audience", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Topic :: Scientific/Engineering" ], "description": "**Build status**\n\nMaster Branch: [![Master branch build status](https://travis-ci.org/BayAreaMetro/fast-trips.svg?branch=master)](https://travis-ci.org/BayAreaMetro/fast-trips) \n\nDevelop Branch [![Develop branch build status: ](https://travis-ci.org/BayAreaMetro/fast-trips.svg?branch=develop)](https://travis-ci.org/BayAreaMetro/fast-trips)\n\n# fast-trips\nFast-Trips is a Dynamic Transit Passenger Assignment tool written in Python and supplemented by code in C++. For more information about this visit the following links: \n\n * Documentation : http://bayareametro.github.io/fast-trips/\n * Implementaiton Project Website: http://fast-trips.mtc.ca.gov/\n\n **Use Cases** \n Fast-trips can be used for analyzing short-term effects as a stand-along tool as well as long range planning when linked up with a travel demand modeling tool:\n - An analyst who wants to study the effect of a on service reliability of a schedule change.\n - An analyst who wants to evaluate a service plan for a special event.\n - A modeler who wants to include capacity constraints and reliability as a performance metric for long-range planning investments as evaluated in a long range transportation plan.\n\n## installing\n\n**Requirements**\nFast-Trips should work on OSX, Linux (Ubuntu tested) and Windows with Python 2.7 and Python 3.6+ installed. We also recommend using a virtual environment manager such as [Conda](www.conda.io).\n\n**Stable Release**\n\n`pip install fasttrips`\n\n**Bleeding Edge**\n\n`pip install git+https://github.com/bayareametro/fast-trips.git@develop#egg=fasttrips`\n\n## Running Fast-Trips\n\nFast-Trips can be run from the command line or by calling it from within a Python script or an iPython notebook using the `Run.run_fasttrips()` function.\n\nThere are six required parameters that need to either be passed from the command line or the function call: \n\n * `input_network_dir` = directory for input networks can be found \n * `input_demand_dir` = directory where input demand can be found \n * `input_weights` = file where path weights can be found \n * `run_config` = file where run configurations can be found \n * `iters` = Number of global iterations \n * `output_dir` = directory where output folder is created \n * `pathfinding_type` = either `deterministic` or `stochastic`\n\nAll the other parameters described in the [configuration options](#configuration-options-fasttrips) can also be passed as keywords. \n\n**NOTE: Any parameters passed in at run-time from the command line or via the script will overwrite any parameters read in from the `run_config` file.**\n\n### Running the Springfield Example\n\nSample input files have been provided in `\\Examples\\Springfield` to test the setup and also assist with the creation of new fast-trips runs. The input files include network files created from a small hypothetical network and also example transit demand data.\n\n#### From a Script\n```python\n\n# Examples\\Springfield\\run_springfield.py\n\nimport os\nfrom fasttrips import Run\n\n# DIRECTORY LOCATIONS\nEXAMPLE_DIR = os.path.abspath(os.path.dirname(__file__))\n\nINPUT_NETWORK = os.path.join(EXAMPLE_DIR, 'networks', 'vermont')\nINPUT_DEMAND = os.path.join(EXAMPLE_DIR, 'demand', 'general')\nINPUT_CONFIG = os.path.join(EXAMPLE_DIR, 'configs', 'A')\nOUTPUT_DIR = os.path.join(EXAMPLE_DIR, 'output')\nOUTPUT_FOLDER = \"general_run\"\n\n# INPUT FILE LOCATIONS\nCONFIG_FILE = os.path.join(INPUT_CONFIG, 'config_ft.txt')\nINPUT_WEIGHTS = os.path.join(INPUT_CONFIG, 'pathweight_ft.txt')\n\nprint \"Running Fast-Trips in %s\" % (ex_dir.split(os.sep)[-1:])\n\nRun.run_fasttrips(\n input_network_dir= INPUT_NETWORK,\n input_demand_dir = INPUT_DEMAND,\n run_config = CONFIG_FILE,\n input_weights = INPUT_WEIGHTS,\n output_dir = OUTPUT_DIR,\n output_folder = OUTPUT_FOLDER,\n pathfinding_type = \"stochastic\",\n overlap_variable = \"count\",\n overlap_split_transit = True,\n iters = 1,\n utils_conversion_factor = 10,\n dispersion = 0.50)\n```\n\nTo run the example:\n\n* Make sure your `` is in your `PYTHONPATH` environment variable in *Advanced system settings* [Win] or terminal [OSX].\n* Run `python Examples/Springfield/run_springfield.py` from within `\\scripts` in a command prompt [ Win ] or terminal [ OSX ].\n\nOutput files from running fast-trips with the sample input data provided can be found in the `Springfield/output` directory.\n\n#### From Command Line \n\nThe same example can be run from the command line by using the command from within the `` directory:\n\n```bat\nC:\\Users\\lzorn\\Documents\\fast-trips>rem See usage and forgive my use of windows\nC:\\Users\\lzorn\\Documents\\fast-trips>rem If using installed version, use 'run_fasttrips' instead of 'python fasttrips\\Run.py'\nC:\\Users\\lzorn\\Documents\\fast-trips>python fasttrips\\Run.py -h\nusage:\n\n Run Fast-Trips from the command line with required inputs as command line parameters.\n\npositional arguments:\n {deterministic,stochastic,file}\n Type of pathfinding\n iters Number of iterations to run\n run_config The run configuration file\n input_network_dir Location of the input network\n input_demand_dir Location of the input demand\n input_weights Location of the pathweights file\n output_dir Location to write fasttrips output\n\noptional arguments:\n -h, --help show this help message and exit\n -t, --trace_only Run only the trace persons?\n -n NUM_TRIPS, --num_trips NUM_TRIPS\n Number of person trips to run, to run a subset of the\n whole demand.\n -d DISPERSION, --dispersion DISPERSION\n Stochastic dispersion parameter\n -m MAX_STOP_PROCESS_COUNT, --max_stop_process_count MAX_STOP_PROCESS_COUNT\n Max times to process a stop in stochastic pathfinding\n -c, --capacity Enable capacity constraint\n -o OUTPUT_FOLDER, --output_folder OUTPUT_FOLDER\n Directory within output_loc to write fasttrips\n outtput. If none specified, will construct one.\n --debug_output_columns\n Include debug columns in output\n --overlap_variable {None,count,distance,time}\n Variable to use for overlap penalty calculation\n --overlap_split_transit\n Split transit for path overlap penalty calculation\n --transfer_fare_ignore_pathfinding\n In path-finding, suppress trying to adjust fares using\n transfer rules. For performance.\n --transfer_fare_ignore_pathenum\n In path-enumeration, suppress trying to adjust fares\n using transfer rules. For performance.\n\nC:\\Users\\lzorn\\Documents\\fast-trips>rem Run it with Springfield Example scenario\nC:\\Users\\lzorn\\Documents\\fast-trips>rem If using installed version, use 'run_fasttrips' instead of 'python fasttrips\\Run.py'\n\nC:\\Users\\lzorn\\Documents\\fast-trips>python fasttrips\\Run.py stochastic 1 fasttrips\\Examples\\Springfield\\configs\\A\\config_ft.txt fasttrips\\Examples\\Springfield\\networks\\vermont fasttrips\\Examples\\Springfield\\demand\\general fasttrips\\Examples\\Springfield\\configs\\A\\pathweight_ft.txt fasttrips\\Examples\\test_scenario\\output\n```\n\n## Example Scenarios\n\nFast-Trips comes with a handful of scenarios in the `fasttrips/Examples` directory to use as examples or get you started. They can be viewed at a high-level using the [jupyter notebooks](http://jupyter.org/) contained in that directory. Note that these notebooks may require you to install additional Python packages such as [jupyter](http://jupyter.org/), [ipywidgets](https://ipywidgets.readthedocs.io/en/latest/), and [bokeh](https://bokeh.pydata.org/en/latest/).\n\n### Springfield\nThe Springfield scenario is what many of our tests use and is meant to be a generic example with enough complexity and modes to flex Fast-Trips muscles, but not too complex to understand what is going on.\n\n#### Springfield Network\n\nThe hypothetical 5-zone example network was developed to help code development. It has a total of three transit routes (one rail and two bus) with two or three stops each. There are also two park-and-ride (PnR) locations.\n\n![alt text](/fasttrips/Examples/Springfield/networks/vermont/test_network.png \"Transit Example Network\")\n\nTransit vehicles commence at 3:00 PM and continue until 6:00 PM. There are 152 transit trips that make a total of 384 station stops. The `input` folder contains all the supply-side/network input files prepared from the test network. More information about network input file standards can be found in the [GTFS-Plus Data Standards Repository][network-standard-url].\n\n#### Springfield Demand\nTwo versions of sample demand have been prepared:\n* `general` contains regular demand that consists only of a transit trip list. Demand starts at 3:15 PM and ends at 5:15 PM.One trip occurs every 10 seconds. More information is available in [documentation](https://github.com/BayAreaMetro/fast-trips/blob/master/fasttrips/Examples/Springfield/Readme.md).\n* `simpson_zorn` represents demand for two user classes that can use different sets of path weights. Household and person attribute files are present in addition to the trip list to model user heterogeneity and multiple user classes.\n\nSimilar to network data standards, there also exists a [Demand Data Standards Repository][demand-standard-url].\n\n#### Springfield Configs\nThere are several configurations for the Springfield setup, which are generally grouped as: \n* `A` which doesn't use user classes, and\n* `B` which uses user classes and thus needs to use the `simpson_zorn` demand\n\n## Tests\nThere are a couple dozen tests that are stored in `\\tests`. They can be run by installing the [PyTest](https://docs.pytest.org/en/latest/) library (`pip install pytest`and executing the command `pytest` from the command line within your ``. \n\nMost of the tests use test scenarios that can be found in the `fasttrips/Examples` directory.\n\nMany (but not all) of the tests can be individually run by giving the command `pytest tests/test_.py`. \n\nTest output defaults to the folder `fasttrips/Examples/output`\n\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://fast-trips.mtc.ca.gov/", "keywords": "transit model dynamic passenger assignment simulation", "license": "Apache", "maintainer": "", "maintainer_email": "", "name": "fasttrips", "package_url": "https://pypi.org/project/fasttrips/", "platform": "", "project_url": "https://pypi.org/project/fasttrips/", "project_urls": { "Homepage": "http://fast-trips.mtc.ca.gov/" }, "release_url": "https://pypi.org/project/fasttrips/1.0b2/", "requires_dist": [ "numpy (>=1.15)", "pandas (==0.22)", "partridge (==0.6.0.dev1)", "future", "configparser", "psutil", "pytest", "functools32 ; python_version <= \"2.7\"" ], "requires_python": "", "summary": "Dynamic Transit Assignment Model. Given a transit network and a list of transit demand, finds a pathset and chooses a path for each traveler.", "version": "1.0b2" }, "last_serial": 4881102, "releases": { "1.0a1": [ { "comment_text": "", "digests": { "md5": "80f31d1e2b66aea6740e991f1fb19038", "sha256": "01035df334766a0cda1241a20db922be534f714ef6e6c5e30680b4ddb86bfb61" }, "downloads": -1, "filename": "fasttrips-1.0a1.win-amd64.zip", "has_sig": false, "md5_digest": "80f31d1e2b66aea6740e991f1fb19038", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 315754, "upload_time": "2017-05-08T20:32:11", "url": "https://files.pythonhosted.org/packages/fe/8f/7ace8b359d1a24b200c9dd3711e7601742ab4dfc9ff9972ac1d4cc68d9db/fasttrips-1.0a1.win-amd64.zip" } ], "1.0a10": [ { "comment_text": "", "digests": { "md5": "8d1587384faa6489c2ba4668d1302afc", "sha256": "7e3f19bb93381577f2f7cf22d83e1d5ef80c15275cf53dc216e12301241ecb50" }, "downloads": -1, "filename": "fasttrips-1.0a10-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "8d1587384faa6489c2ba4668d1302afc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 179440, "upload_time": "2017-05-09T23:32:08", "url": "https://files.pythonhosted.org/packages/85/3d/63b35acf9707865bcf7372ac49fe232d2971d1d2ce0060d5f396fd4290ce/fasttrips-1.0a10-cp27-cp27m-win_amd64.whl" } ], "1.0a11": [ { "comment_text": "", "digests": { "md5": "c1cce84a25f969f73c2ba47e48c37639", "sha256": "7d15e334d5d50e7787ebc28cbc1a23697bcdbb6e5c5d823c5adc8a57cfcbee22" }, "downloads": -1, "filename": "fasttrips-1.0a11-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "c1cce84a25f969f73c2ba47e48c37639", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 376298, "upload_time": "2017-05-09T23:48:45", "url": "https://files.pythonhosted.org/packages/38/71/2e2f4786f48a8a2d71ac0155ec02c25c51bdae469e2b9d39d5e31a50f517/fasttrips-1.0a11-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "c220c12bffc640114c76e3853016c965", "sha256": "4f4ec6f51928805ca999ba17efd086b2e33fc5eb742fe008ad89b8901d57a80c" }, "downloads": -1, "filename": "fasttrips-1.0a11-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "c220c12bffc640114c76e3853016c965", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 282907, "upload_time": "2017-05-09T23:49:01", "url": "https://files.pythonhosted.org/packages/55/55/1ac1d7c81766ffeec0e424ea6e73ced536ed4adff704f6c5c6f969260098/fasttrips-1.0a11-cp27-cp27m-win_amd64.whl" } ], "1.0a12": [ { "comment_text": "", "digests": { "md5": "e09535a8a35e1304ac99adea2b70157e", "sha256": "896992e989aba500f0c746bcd741851ee1c30d91b462377b83ac84947973e3d1" }, "downloads": -1, "filename": "fasttrips-1.0a12-cp27-cp27m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "e09535a8a35e1304ac99adea2b70157e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 280233, "upload_time": "2017-05-11T17:10:33", "url": "https://files.pythonhosted.org/packages/67/c9/1638f72f75b6aabe41b224a7e743fb2ea414adeb628f1f1badb58870c0bd/fasttrips-1.0a12-cp27-cp27m-macosx_10_7_x86_64.whl" } ], "1.0a13": [ { "comment_text": "", "digests": { "md5": "93bbf41b0c431f2522a02c304cfdd558", "sha256": "e3ea6f0803902219b84fe1a4d1242b9ac77aae862d86c6781ebe0c15d17eee00" }, "downloads": -1, "filename": "fasttrips-1.0a13-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "93bbf41b0c431f2522a02c304cfdd558", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 377846, "upload_time": "2017-05-11T18:43:31", "url": "https://files.pythonhosted.org/packages/21/87/f063270ab0ff465674b72c24ebe71a7e91f1a7fc0a5c610936a099e530dc/fasttrips-1.0a13-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "37f86457ace46041552f123757c79752", "sha256": "b1f946821af914a6463df8a5c7ee30a8eec578ba308a3e07bd71216c2b67a820" }, "downloads": -1, "filename": "fasttrips-1.0a13-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "37f86457ace46041552f123757c79752", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 283449, "upload_time": "2017-05-11T18:52:55", "url": "https://files.pythonhosted.org/packages/60/f7/2db0067460e6b9d2f2b4c678027ef84dc1c4a2d81c5148d459f786b7a8c5/fasttrips-1.0a13-cp27-cp27m-win_amd64.whl" } ], "1.0a14": [ { "comment_text": "", "digests": { "md5": "c5189765a51bf8b4687c8881522c516d", "sha256": "9045b2a1d0295260ead0f4d5b7b8481ab1f966c5de846dbba07d5273afb76459" }, "downloads": -1, "filename": "fasttrips-1.0a14-cp27-cp27m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "c5189765a51bf8b4687c8881522c516d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 280328, "upload_time": "2017-05-12T01:49:20", "url": "https://files.pythonhosted.org/packages/5b/5c/4079261e7b760c97d9e11ae26ea5946691318d9f44c721263c9e98873015/fasttrips-1.0a14-cp27-cp27m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0cd9c13d114467a5361633f655d018a6", "sha256": "425600b5f3f3eacd46c6f225ba86920959aca2c0f8227cd9fb54743da851c836" }, "downloads": -1, "filename": "fasttrips-1.0a14-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "0cd9c13d114467a5361633f655d018a6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 283524, "upload_time": "2017-05-12T01:50:36", "url": "https://files.pythonhosted.org/packages/b5/36/a6e09e7cc0458951ec3aecca70a1411c1ee736617d000fdbf6bae7d2a690/fasttrips-1.0a14-cp27-cp27m-win_amd64.whl" } ], "1.0a2": [ { "comment_text": "", "digests": { "md5": "072baf0d078867ce2eec9ef3330d21e9", "sha256": "b95e51e92b0966830e508c13690ef6c426581e118284c4106d9c21437c3427cd" }, "downloads": -1, "filename": "fasttrips-1.0a2-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "072baf0d078867ce2eec9ef3330d21e9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 211945, "upload_time": "2017-05-08T21:07:29", "url": "https://files.pythonhosted.org/packages/19/54/7d212268b0a0319a49389c2c81240859f476c5fce54232fc2e5a32badb08/fasttrips-1.0a2-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "69db9de9c3d55ae36d883f4ab187116a", "sha256": "a4238757a33cb2ecdbfd567562cb144ed99ae0c7592aeea50455c333ad8576c5" }, "downloads": -1, "filename": "fasttrips-1.0a2.win-amd64.zip", "has_sig": false, "md5_digest": "69db9de9c3d55ae36d883f4ab187116a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 327789, "upload_time": "2017-05-08T20:40:10", "url": "https://files.pythonhosted.org/packages/46/6f/17b08b003fe5afd5e832fb7a843dccf22b7d4e3fb2ed4c03db19d2b9455d/fasttrips-1.0a2.win-amd64.zip" } ], "1.0a3": [ { "comment_text": "", "digests": { "md5": "f8ffc9299410a3dbb8d0abf1ec1fc749", "sha256": "dbf9da5fa72656c92fed366eb75949e11197ca9bd829fef02e08c35d5cdceab2" }, "downloads": -1, "filename": "fasttrips-1.0a3-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "f8ffc9299410a3dbb8d0abf1ec1fc749", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 211988, "upload_time": "2017-05-09T03:13:34", "url": "https://files.pythonhosted.org/packages/75/1a/389bcf6b7a8ad30e096a9182f01c4c2de8ba5b3eced1ea6c3097d32c8d10/fasttrips-1.0a3-cp27-cp27m-win_amd64.whl" } ], "1.0a4": [ { "comment_text": "", "digests": { "md5": "65af09a06fab98b3486ed723df8e4858", "sha256": "39a34069fd43af933db6b46f6f0d39ba4bddeed8a17dcf70a0892b856df23ced" }, "downloads": -1, "filename": "fasttrips-1.0a4-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "65af09a06fab98b3486ed723df8e4858", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 211991, "upload_time": "2017-05-09T03:35:20", "url": "https://files.pythonhosted.org/packages/d8/fb/f23e1398d45a4ecb6c074c3f72bac1f18b25fe896696886500ac4e5cd7bc/fasttrips-1.0a4-cp27-cp27m-win_amd64.whl" } ], "1.0a5": [ { "comment_text": "", "digests": { "md5": "1192c932cf645a6f14339fcb0f78ddea", "sha256": "12597d2329e55b5d977f20597a7e02d19db2752450d4621c7bfbbd169c9a9143" }, "downloads": -1, "filename": "fasttrips-1.0a5-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "1192c932cf645a6f14339fcb0f78ddea", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 267452, "upload_time": "2017-05-09T17:18:04", "url": "https://files.pythonhosted.org/packages/45/8d/611b1990d07883630d0f7f61908049a57b7b98a79bfb84bc155b22879238/fasttrips-1.0a5-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "021762436b8c30d1f8fdceae854482a8", "sha256": "93b9435d8787b85aed82c4317e963fc1b662f45edc6f56181c1b490578a3efc2" }, "downloads": -1, "filename": "fasttrips-1.0a5-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "021762436b8c30d1f8fdceae854482a8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 280360, "upload_time": "2017-05-09T17:18:23", "url": "https://files.pythonhosted.org/packages/eb/61/42ef6f15bb02e2dbad72f279008b326c9ea18fd8f274ae150f704201b50c/fasttrips-1.0a5-cp27-cp27m-win_amd64.whl" } ], "1.0a6": [ { "comment_text": "", "digests": { "md5": "62f49b6e58570f11516cca37f78d48de", "sha256": "f78efa37294791df25198ab58f749a27f6942183bb984521140f738a1f9fc480" }, "downloads": -1, "filename": "fasttrips-1.0a6-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "62f49b6e58570f11516cca37f78d48de", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 375309, "upload_time": "2017-05-09T21:37:33", "url": "https://files.pythonhosted.org/packages/1b/89/2d52f822252cac2f5053fb62c5b53bd14f4f1d53c711b3f8384a53d93cbc/fasttrips-1.0a6-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "1d620369f4056807763905fbd12b40ed", "sha256": "c8a4b7527b2cf77865d2f7d9aaaaf0af02ca892f6d8df2d4b60027135e6c61be" }, "downloads": -1, "filename": "fasttrips-1.0a6-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "1d620369f4056807763905fbd12b40ed", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 293000, "upload_time": "2017-05-09T21:37:07", "url": "https://files.pythonhosted.org/packages/d8/43/31b5c33e0c5ca39ca8899ba43a3f37f898ced57084b04b0a3afd13272e8d/fasttrips-1.0a6-cp27-cp27m-win_amd64.whl" } ], "1.0a7": [ { "comment_text": "", "digests": { "md5": "70c935499c88216e33389794573c42b9", "sha256": "1817d8f93d28bab856e19490f87b8bdc41815f9277dd0114f48fe73211e17901" }, "downloads": -1, "filename": "fasttrips-1.0a7-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "70c935499c88216e33389794573c42b9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 375304, "upload_time": "2017-05-09T21:43:14", "url": "https://files.pythonhosted.org/packages/26/19/90f48035ba9d58fe06f8a0461bf7fd90b5425d1e51d4ca4124961ed359c8/fasttrips-1.0a7-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "348f2880a0ccb56bcc14b3b79b5edc28", "sha256": "d64719fc2e4c3a1352ee64e9e37322fdaa183c0dd0d17e8f446f6a7e3e603c29" }, "downloads": -1, "filename": "fasttrips-1.0a7-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "348f2880a0ccb56bcc14b3b79b5edc28", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 292996, "upload_time": "2017-05-09T21:44:03", "url": "https://files.pythonhosted.org/packages/02/da/ff2789c45c4b8d04bf6e70ce4dbb970de2450e5157218bc119863f2965bb/fasttrips-1.0a7-cp27-cp27m-win_amd64.whl" } ], "1.0a8": [ { "comment_text": "", "digests": { "md5": "2b70fe6f6817e77e6f9d6271892a9e11", "sha256": "90344d3ff12f429bf4bf6ec1b068a45cc0f9f0816820e7db45a4c8068033c278" }, "downloads": -1, "filename": "fasttrips-1.0a8-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "2b70fe6f6817e77e6f9d6271892a9e11", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 293028, "upload_time": "2017-05-09T23:11:06", "url": "https://files.pythonhosted.org/packages/28/19/a500530f11dea36a3b9be0bbf4fdb061ba774604c8f4f4dc76212729042e/fasttrips-1.0a8-cp27-cp27m-win_amd64.whl" } ], "1.0a9": [ { "comment_text": "", "digests": { "md5": "9307319b4ff0e6255b7a843b28175776", "sha256": "54862af0164e3a28d8af1a18524c29a462c028292e68eb6712d87de78cd098af" }, "downloads": -1, "filename": "fasttrips-1.0a9-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "9307319b4ff0e6255b7a843b28175776", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 380821, "upload_time": "2017-05-09T23:22:49", "url": "https://files.pythonhosted.org/packages/c1/4b/288f084a4b8b5b35e3c7582752f2b0b4213044f0cce01d44ac6ddf611581/fasttrips-1.0a9-cp27-cp27m-macosx_10_6_intel.whl" } ], "1.0b1": [ { "comment_text": "", "digests": { "md5": "267393cc6104692966c1a265e0f77cdb", "sha256": "43479cfdcd5869c3b6b25719fa91c086aaa3e17a6b6ecbe7b2d8657be7ede2f1" }, "downloads": -1, "filename": "fasttrips-1.0b1-cp27-cp27m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "267393cc6104692966c1a265e0f77cdb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 289067, "upload_time": "2018-06-25T20:25:07", "url": "https://files.pythonhosted.org/packages/f3/6c/86c8b735c62631ecfc56aee71a84332a00387ad6dedc2aaa6013711d8535/fasttrips-1.0b1-cp27-cp27m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9fe8a2d6c037d07ab6e0ff7b153097b9", "sha256": "7ae71170eceedf04983aa9a22d0e6ae21daa2de746624bedcfc9894723badcb6" }, "downloads": -1, "filename": "fasttrips-1.0b1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "9fe8a2d6c037d07ab6e0ff7b153097b9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 227517, "upload_time": "2018-06-25T20:37:47", "url": "https://files.pythonhosted.org/packages/ce/73/a8e3ef7c416d7a07a34406ab745f521b9afe4d44939a1502bb378e0f8649/fasttrips-1.0b1-cp27-cp27m-win_amd64.whl" } ], "1.0b2": [ { "comment_text": "", "digests": { "md5": "a04f1d84a6514eb57110df278bda314a", "sha256": "da7f6cffa14475ff96adac2e856328883212ea7682bdb808d054183f83bae868" }, "downloads": -1, "filename": "fasttrips-1.0b2-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "a04f1d84a6514eb57110df278bda314a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 241949, "upload_time": "2019-02-28T21:01:48", "url": "https://files.pythonhosted.org/packages/58/2b/831b86140197a54e8b82142742dc28ec5bd4b8687f47480952a286e06822/fasttrips-1.0b2-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c567eb3e1e9ca0228a3c20b87b2684e9", "sha256": "775bc17374bc6e2ef312a6a19755be101defb67e942e57f77d6eb115428ab91f" }, "downloads": -1, "filename": "fasttrips-1.0b2.tar.gz", "has_sig": false, "md5_digest": "c567eb3e1e9ca0228a3c20b87b2684e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155415, "upload_time": "2019-02-28T21:01:50", "url": "https://files.pythonhosted.org/packages/7c/32/c4f203b0095f165fad7c03a96a5fc482e6afe35120b88a915ba3cf559f82/fasttrips-1.0b2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a04f1d84a6514eb57110df278bda314a", "sha256": "da7f6cffa14475ff96adac2e856328883212ea7682bdb808d054183f83bae868" }, "downloads": -1, "filename": "fasttrips-1.0b2-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "a04f1d84a6514eb57110df278bda314a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 241949, "upload_time": "2019-02-28T21:01:48", "url": "https://files.pythonhosted.org/packages/58/2b/831b86140197a54e8b82142742dc28ec5bd4b8687f47480952a286e06822/fasttrips-1.0b2-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c567eb3e1e9ca0228a3c20b87b2684e9", "sha256": "775bc17374bc6e2ef312a6a19755be101defb67e942e57f77d6eb115428ab91f" }, "downloads": -1, "filename": "fasttrips-1.0b2.tar.gz", "has_sig": false, "md5_digest": "c567eb3e1e9ca0228a3c20b87b2684e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155415, "upload_time": "2019-02-28T21:01:50", "url": "https://files.pythonhosted.org/packages/7c/32/c4f203b0095f165fad7c03a96a5fc482e6afe35120b88a915ba3cf559f82/fasttrips-1.0b2.tar.gz" } ] }