{ "info": { "author": "Alex Nunes", "author_email": "alex.et.nunes@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "Divebomb\n--------\n\nDivebomb is a python package that uses pandas to divide a timeseries of depths into individual dives. The dives are profiled as a ``Dive`` or ``DeepDive``\ndepending on the animal. The ``Dive`` class is used for frequently surfacing animals, such as seals and whales. The ``DeepDive`` class is used for infrequently surfaceing animals, like sharks.\n\nThe dive profiles are reduced to 8 dimensions using Principal Component Analsysis. Guassian Mixed Models are generated using theses variables\nand the minimal Bayesian Information Criterion is used to determine the optimal number of clusters. The dives are split into the clusters using\nAgglomerative Hierarchical Clustering (from sklearn). The dives are then display through iPython notebooks or saved to netCDF files organized by cluster.\n\nDocumentation\n-------------\n\nThe official documentation is hosted on here: http://divebomb.readthedocs.io/en/latest/\n\nDive\n****\n\nA ``Dive`` is then profiled with the following attributes:\n\n- ``max_depth`` - the max depth in the dive\n- ``dive_start`` - the timestamp of the first point in the dive\n- ``dive_end`` - the timestamp of the last point in the dive\n- ``bottom_start`` - the timestamp of the first point in the dive when the animal is at depth\n- ``td_bottom_duration`` - a timedelta object containing the duration of the time the animal is at depth in seconds\n- ``td_descent_duration`` - a timedelta object containing the duration of the time the animal is descending in seconds\n- ``td_ascent_duration`` - a timedelta object containing the duration of the time the animal is ascending in seconds\n- ``td_surface_duration`` - a timedelta object containing the duration of the time the animal is at the surface in seconds\n- ``bottom_variance`` - the variance of the depth while the animal is at the bottom of the dive\n- ``dive_variance`` - the variance of the depth for the entire dive.\n- ``descent_velocity`` - the average velocity of the descent\n- ``ascent_velocity`` - the average velocity of the descent\n- ``peaks`` - the number of peaks found in the dive profile\n- ``left_skew`` - a boolean of 1 or 0 indicating if the dive is left skewed\n- ``right_skew`` - a boolean of 1 or 0 indicating if the dive is right skewed\n- ``no_skew`` - a boolean of 1 or 0 indicating if the dive is not skewed\n\nDeepDive\n********\n\nA ``DeepDive`` is then profiled with the following attributes:\n\n- ``max_depth`` - the max depth in the dive\n- ``min_depth`` - the max depth in the dive\n- ``dive_start`` - the timestamp of the first point in the dive\n- ``dive_end`` - the timestamp of the last point in the dive\n- ``td_total_duration`` - a timedelta (in seconds since 1970-01-01) containing the duration of the dive\n- ``depth_variance`` - the variance of the depth for the entire dive.\n- ``average_vertical_velocity`` - the mean velocity of the animal over the entire dive with negative value indicating upward movement\n- ``average_descent_velocity`` - the average velocity of any downward movement as positive value\n- ``average_ascent_velocity`` - the average velocity of any upward movement as positive value\n- ``number_of_descent_transitions`` - the number of times and animal moves descends any distance in the dive period\n- ``number_of_ascent_transitions`` - the number of times and animal moves ascends any distance in the dive period\n- ``total_descent_distance_traveled`` - the total absolute distance in meters in which the anaimal moves down\n- ``total_ascent_distance_traveled`` - the total absolute distance in meters in which the anaimal moves up\n- ``overall_change_in_depth`` - the difference between the minimum and maximum depth within the dive period\n- ``td_time_at_depth`` - the duration in seconds at which the animal spends in the deepest part of the vertical movement (< 85% depth)\n- ``td_time_pre_depth`` - the duration in seconds befor the deepest part of the vertical movement (< 85% depth)\n- ``td_time_post_depth`` - the duration in seconds after the deepest part of the vertical movement (< 85% depth)\n- ``peaks`` - the number of peaks found in the dive profile\n- ``left_skew`` - a boolean of 1 or 0 indicating if the dive is left skewed\n- ``right_skew`` - a boolean of 1 or 0 indicating if the dive is right skewed\n- ``no_skew`` - a boolean of 1 or 0 indicating if the dive is not skewed\n\nSurface Thresholds\n******************\n\nA surface threshold is used for surfacing animals to define a depth window for what is considered to be at surface. The ``surface_threshold`` argument defaults to ``0`` but can be changed in the ``profile_dives()`` function. For example ``surface_threshold=2`` might be passed for animal that is ``~2`` meters long. ``surface_threshold`` is always passed in meters.\n\nAt Depth Thresholds\n*******************\n\nAn at depth threshold is used in bothe the ``Dive`` and the ``DeepDive`` class. The ``at_depth_thresold`` argument is a value between ``0`` and ``1`` that determines the window for when an animal is considered to be at bottom of its dive. The default value is ``0.15`` which means the bottom ``15%`` of the relative depth is considered to be at bottom. ``at_depth_thresold`` is always as value between ``0`` and ``1`` expressing a percentage.\n\nSkews\n*****\n\nA skew is defined as any difference one way or the other in descent or ascent times for the ``Dive`` class and any difference in pre-depth or post-depth time for a ``DeepDive``. This method was chosen as researchers found skew was most accurately represented when any difference between the values existed.\n\nTimestamps\n**********\n\nThe input timestamps are expected to be in a datetime format. The output timestamps are in ``seconds since 1970-01-01``.\nEvery netCDF file has the time unit saved as an attribute as a reminder. All dive attributes that start with ``td_`` are\na duration in seconds. The ``time``, ``dive_start``, ``dive_end``, and ``bottom_start`` will use the units mentioned above.\nthe netCDF4 library has a ``num2date`` function that will convert the values back to a datetime object.\n\nDivebomb\n--------\n\nDivebomb is a python package that uses pandas to divide a timeseries of depths into individual dives. The dives are profiled as a ``Dive`` or ``DeepDive``\ndepending on the animal. The ``Dive`` class is used for frequently surfacing animals, such as seals and whales. The ``DeepDive`` class is used for infrequently surfaceing animals, like sharks.\n\nThe dive profiles are reduced to 8 dimensions using Principal Component Analsysis. Guassian Mixed Models are generated using theses variables\nand the minimal Bayesian Information Criterion is used to determine the optimal number of clusters. The dives are split into the clusters using\nAgglomerative Hierarchical Clustering (from sklearn). The dives are then display through iPython notebooks or saved to netCDF files organized by cluster.\n\n\nDive\n****\n\nA ``Dive`` is then profiled with the following attributes:\n\n- ``max_depth`` - the max depth in the dive\n- ``dive_start`` - the timestamp of the first point in the dive\n- ``dive_end`` - the timestamp of the last point in the dive\n- ``bottom_start`` - the timestamp of the first point in the dive when the animal is at depth\n- ``td_bottom_duration`` - a timedelta object containing the duration of the time the animal is at depth in seconds\n- ``td_descent_duration`` - a timedelta object containing the duration of the time the animal is descending in seconds\n- ``td_ascent_duration`` - a timedelta object containing the duration of the time the animal is ascending in seconds\n- ``td_surface_duration`` - a timedelta object containing the duration of the time the animal is at the surface in seconds\n- ``bottom_variance`` - the variance of the depth while the animal is at the bottom of the dive\n- ``dive_variance`` - the variance of the depth for the entire dive.\n- ``descent_velocity`` - the average velocity of the descent\n- ``ascent_velocity`` - the average velocity of the descent\n- ``peaks`` - the number of peaks found in the dive profile\n- ``left_skew`` - a boolean of 1 or 0 indicating if the dive is left skewed\n- ``right_skew`` - a boolean of 1 or 0 indicating if the dive is right skewed\n- ``no_skew`` - a boolean of 1 or 0 indicating if the dive is not skewed\n\n\nDeepDive\n********\n\nA ``DeepDive`` is then profiled with the following attributes:\n\n- ``max_depth`` - the max depth in the dive\n- ``min_depth`` - the max depth in the dive\n- ``dive_start`` - the timestamp of the first point in the dive\n- ``dive_end`` - the timestamp of the last point in the dive\n- ``td_total_duration`` - a timedelta (in seconds since 1970-01-01) containing the duration of the dive\n- ``depth_variance`` - the variance of the depth for the entire dive.\n- ``average_vertical_velocity`` - the mean velocity of the animal over the entire dive with negative value indicating upward movement\n- ``average_descent_velocity`` - the average velocity of any downward movement as positive value\n- ``average_ascent_velocity`` - the average velocity of any upward movement as positive value\n- ``number_of_descent_transitions`` - the number of times and animal moves descends any distance in the dive period\n- ``number_of_ascent_transitions`` - the number of times and animal moves ascends any distance in the dive period\n- ``total_descent_distance_traveled`` - the total absolute distance in meters in which the anaimal moves down\n- ``total_ascent_distance_traveled`` - the total absolute distance in meters in which the anaimal moves up\n- ``overall_change_in_depth`` - the difference between the minimum and maximum depth within the dive period\n- ``td_time_at_depth`` - the duration in seconds at which the animal spends in the deepest part of the vertical movement (< 85% depth)\n- ``td_time_pre_depth`` - the duration in seconds befor the deepest part of the vertical movement (< 85% depth)\n- ``td_time_post_depth`` - the duration in seconds after the deepest part of the vertical movement (< 85% depth)\n- ``peaks`` - the number of peaks found in the dive profile\n- ``left_skew`` - a boolean of 1 or 0 indicating if the dive is left skewed\n- ``right_skew`` - a boolean of 1 or 0 indicating if the dive is right skewed\n- ``no_skew`` - a boolean of 1 or 0 indicating if the dive is not skewed\n\n\nSurface Thresholds\n******************\n\nA surface threshold is used for surfacing animals to define a depth window for what is considered to be at surface. The ``surface_threshold`` argument defaults to ``0`` but can be changed in the ``profile_dives()`` function. For example ``surface_threshold=2`` might be passed for animal that is ``~2`` meters long. ``surface_threshold`` is always passed in meters.\n\n\nAt Depth Thresholds\n*******************\n\nAn at depth threshold is used in bothe the ``Dive`` and the ``DeepDive`` class. The ``at_depth_thresold`` argument is a value between ``0`` and ``1`` that determines the window for when an animal is considered to be at bottom of its dive. The default value is ``0.15`` which means the bottom ``15%`` of the relative depth is considered to be at bottom. ``at_depth_thresold`` is always as value between ``0`` and ``1`` expressing a percentage.\n\n\nSkews\n*****\n\nA skew is defined as any difference one way or the other in descent or ascent times for the ``Dive`` class and any difference in pre-depth or post-depth time for a ``DeepDive``. This method was chosen as researchers found skew was most accurately represented when any difference between the values existed.\n\n\nTimestamps\n**********\n\nThe input timestamps are expected to be in a datetime format. The output timestamps are in ``seconds since 1970-01-01``.\nEvery netCDF file has the time unit saved as an attribute as a reminder. All dive attributes that start with ``td_`` are\na duration in seconds. The ``time``, ``dive_start``, ``dive_end``, and ``bottom_start`` will use the units mentioned above.\nthe netCDF4 library has a ``num2date`` function that will convert the values back to a datetime object.", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/ocean-tracking-network/divebomb", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ocean-tracking-network/divebomb", "keywords": "", "license": "GPLv2", "maintainer": "", "maintainer_email": "", "name": "divebomb", "package_url": "https://pypi.org/project/divebomb/", "platform": "", "project_url": "https://pypi.org/project/divebomb/", "project_urls": { "Download": "https://github.com/ocean-tracking-network/divebomb", "Homepage": "https://github.com/ocean-tracking-network/divebomb" }, "release_url": "https://pypi.org/project/divebomb/1.1.0/", "requires_dist": null, "requires_python": "", "summary": "divebomb dive classification algorithm", "version": "1.1.0" }, "last_serial": 5371776, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "5da4096e554d9156e20c4c81f8f0477f", "sha256": "166c75789f913f84f9e945391ce474d28261fba41a5291015de9aa3531e31d82" }, "downloads": -1, "filename": "divebomb-0.1.0.tar.gz", "has_sig": false, "md5_digest": "5da4096e554d9156e20c4c81f8f0477f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18976, "upload_time": "2018-02-27T18:32:03", "url": "https://files.pythonhosted.org/packages/3e/ed/06c4c8f5e6d11cfea8e257b03bcc5d466dc56eb0c1ba123dd3e9a18e869f/divebomb-0.1.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "8e088e8470daef2458209f997611102e", "sha256": "31b80dfb5fccf61e70cc28e6b5caf81ac903cbc2ba8afe27f36eec0a9f5c2b09" }, "downloads": -1, "filename": "divebomb-0.2.0.tar.gz", "has_sig": false, "md5_digest": "8e088e8470daef2458209f997611102e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22455, "upload_time": "2018-04-26T15:08:03", "url": "https://files.pythonhosted.org/packages/72/29/92f545dba5873197999e09a73186396e660b336fb054b88a4322172dec95/divebomb-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "b36ac8c74ac034ab7f2e89f151170793", "sha256": "dc05c3d80f45a28ec3c978160a603d2db3bb49e33876b2e9582114f46ec05ceb" }, "downloads": -1, "filename": "divebomb-0.2.1.tar.gz", "has_sig": false, "md5_digest": "b36ac8c74ac034ab7f2e89f151170793", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22409, "upload_time": "2018-07-14T18:54:14", "url": "https://files.pythonhosted.org/packages/c3/8d/0a9f577e84af542a9f40f07ff2bdf25bee48e3063d82623cc3a320e5929a/divebomb-0.2.1.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "d501540e1490dc6173f6fa743470e4bf", "sha256": "083d39f32ae2a76521c8909efa237dd54944365ec97b3bc97dd1263c9a3a33c7" }, "downloads": -1, "filename": "divebomb-0.3.0-py3.6.egg", "has_sig": false, "md5_digest": "d501540e1490dc6173f6fa743470e4bf", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 40084, "upload_time": "2018-10-03T14:19:08", "url": "https://files.pythonhosted.org/packages/96/2c/4ead4f03c18d7f039304991514309d1210254d562db5f9ff04e6e0def750/divebomb-0.3.0-py3.6.egg" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "8e4f5366e44a929762246ce6a0ae0854", "sha256": "d4e39026f71547bab8a5f1f5f4bfdbd2f7ce7edb7039522721f41eadfb7d09e9" }, "downloads": -1, "filename": "divebomb-1.0.0-py3.6.egg", "has_sig": false, "md5_digest": "8e4f5366e44a929762246ce6a0ae0854", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 40135, "upload_time": "2018-10-03T14:19:09", "url": "https://files.pythonhosted.org/packages/86/a9/c2c810f72995806664e03062b81a54d0f505b1956ba5237f23b4dd53de16/divebomb-1.0.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "a2c095777a87949601863146ce28f872", "sha256": "a38d17e993284cde5e2c687d3532ed126845accb181e0631afbf2cb7bee699e2" }, "downloads": -1, "filename": "divebomb-1.0.0.tar.gz", "has_sig": false, "md5_digest": "a2c095777a87949601863146ce28f872", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26704, "upload_time": "2018-08-03T13:23:09", "url": "https://files.pythonhosted.org/packages/db/04/6060ed219cbb65e39cb37cec61a9f633e03d64528ee39c14a87ed4414ca7/divebomb-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "b6c808cea1a5d8cfaad459bd6cfd74cd", "sha256": "7259064b14b54e2fbb548bc9d388e1ce6bdd221b3bcd546d481dd0f123ce7b54" }, "downloads": -1, "filename": "divebomb-1.0.1-py3.6.egg", "has_sig": false, "md5_digest": "b6c808cea1a5d8cfaad459bd6cfd74cd", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 40494, "upload_time": "2018-11-05T13:37:45", "url": "https://files.pythonhosted.org/packages/3f/8f/b7228ff00576d3d5d81c3a651f5e9d4c8af087943e7fb9d3b97fffb76a94/divebomb-1.0.1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "9feeb2acedaffa9ff5f5d00ece267fc1", "sha256": "c0d8dd5737c2da30844cce699c288ae051b403adf9368f7a7e0c456a76986dc5" }, "downloads": -1, "filename": "divebomb-1.0.1.tar.gz", "has_sig": false, "md5_digest": "9feeb2acedaffa9ff5f5d00ece267fc1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26863, "upload_time": "2018-10-03T14:13:09", "url": "https://files.pythonhosted.org/packages/93/5c/e7ab3c8a46541344aa164cba3ca87b614af260504b21812741fd25589584/divebomb-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "320919f9857c37d8ee7b11b7214c4580", "sha256": "9eda348f8a39dcc734f771cdd6e489d208a6a58e143d827bf9ffa5c5492016cb" }, "downloads": -1, "filename": "divebomb-1.0.2-py3.6.egg", "has_sig": false, "md5_digest": "320919f9857c37d8ee7b11b7214c4580", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 41221, "upload_time": "2018-11-05T13:37:46", "url": "https://files.pythonhosted.org/packages/fb/d9/81f23beae5a46bed8ab2313b4df9880650decb204ba78a08f23f26485bf7/divebomb-1.0.2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "6d57abcc26f26594ed2a4bc7e4d3546b", "sha256": "dc3b88f51ca35b218613419646fc0ac6dbb4348c1437e789c1884319fa53c253" }, "downloads": -1, "filename": "divebomb-1.0.2-py3.7.egg", "has_sig": false, "md5_digest": "6d57abcc26f26594ed2a4bc7e4d3546b", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 41323, "upload_time": "2019-02-27T04:58:09", "url": "https://files.pythonhosted.org/packages/65/84/d8a20fbaa83f44df50c3e39a406f37ccf737aea4cd701bcb503fcede8e56/divebomb-1.0.2-py3.7.egg" }, { "comment_text": "", "digests": { "md5": "ecb8f524f43e9ce98e68ce4b93498ac1", "sha256": "a0135c8a9508fda2c0fd94112192a640c26981000d44e8ca962ef61ef369a87e" }, "downloads": -1, "filename": "divebomb-1.0.2.tar.gz", "has_sig": false, "md5_digest": "ecb8f524f43e9ce98e68ce4b93498ac1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27176, "upload_time": "2018-11-05T13:37:47", "url": "https://files.pythonhosted.org/packages/dd/8b/476b1fea4e804317bbcc0c13bd7c694e6a928075e6417a5166cfd1361acd/divebomb-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "e6384148ca304e91171e906a7f226ebf", "sha256": "4ca3a728df11e77c21620bf1567333a1ff03369dc192a2b9af32cb2f38309d6b" }, "downloads": -1, "filename": "divebomb-1.0.3-py3.6.egg", "has_sig": false, "md5_digest": "e6384148ca304e91171e906a7f226ebf", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 41461, "upload_time": "2019-03-07T18:58:11", "url": "https://files.pythonhosted.org/packages/ce/bc/f5acf235aa3afd37671f438ce52455bfa5297aae6d9e69368cf95e033999/divebomb-1.0.3-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "1268847ec7ca9333acf05091efc59a24", "sha256": "bf5afc09b63331ec627ce9c1ca7ae37722432d478f3070d542bf5ca2b6e6c0ce" }, "downloads": -1, "filename": "divebomb-1.0.3-py3.7.egg", "has_sig": false, "md5_digest": "1268847ec7ca9333acf05091efc59a24", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 41438, "upload_time": "2019-02-27T04:58:10", "url": "https://files.pythonhosted.org/packages/5d/66/cff74da8d2a7b3cac7f9e7c0e0662cc32b46d1d25cfa3e987f3bddef789b/divebomb-1.0.3-py3.7.egg" }, { "comment_text": "", "digests": { "md5": "eabf21e0c9518b86851de75c526d7650", "sha256": "bff5261a61a93769aa17d0322fc9ce825770b5a25de31ff2c61a9a6bdf1c3567" }, "downloads": -1, "filename": "divebomb-1.0.3.tar.gz", "has_sig": false, "md5_digest": "eabf21e0c9518b86851de75c526d7650", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26640, "upload_time": "2019-02-27T04:58:11", "url": "https://files.pythonhosted.org/packages/c0/1f/0e5afab189f954ac3bc564b3ce109e8427dcd7004abc47032aece33f2ce6/divebomb-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "fefb9e0a08d05722e12500ca6ac3dd82", "sha256": "61dbf053f205e7c10ee30493e10f06ff920aa9e7fe4f22effc2f19cc07c8ef11" }, "downloads": -1, "filename": "divebomb-1.0.4-py3.6.egg", "has_sig": false, "md5_digest": "fefb9e0a08d05722e12500ca6ac3dd82", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 41459, "upload_time": "2019-03-07T18:58:12", "url": "https://files.pythonhosted.org/packages/c2/17/2bcf6cb45d2e55fd61a6b06af581880bd8c860cd0b7dccf421278069d528/divebomb-1.0.4-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "8c172bc12416e60110a3b7d8c7249e1f", "sha256": "ad87786768b171d4a0d97e60513e7805e2fa99d6007c49bf1ad795ad1ebbe3ef" }, "downloads": -1, "filename": "divebomb-1.0.4.tar.gz", "has_sig": false, "md5_digest": "8c172bc12416e60110a3b7d8c7249e1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27378, "upload_time": "2019-03-07T18:58:14", "url": "https://files.pythonhosted.org/packages/82/0e/a0687005e60dff9019daae74e1eb4841d5dc66891364829ca4fd52ab3b64/divebomb-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "13d4e51c05fbabb484f8d6802cace0d5", "sha256": "53320165bd95c0c2a47730382c597ccecda11b5dc7debca49220df22d6279a49" }, "downloads": -1, "filename": "divebomb-1.0.5-py3.6.egg", "has_sig": false, "md5_digest": "13d4e51c05fbabb484f8d6802cace0d5", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 41459, "upload_time": "2019-03-12T12:30:04", "url": "https://files.pythonhosted.org/packages/8e/db/15d1a77b24af5f7f7a7e7cdf465a5faca65414336fc1d54d96d6d63321d2/divebomb-1.0.5-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "807883d91800827e437607e33ab822f8", "sha256": "21ac04b50d7d8f4c6e4fea2f22e55e3f4291b435fd9cf4bdfa1e776a8c1032e7" }, "downloads": -1, "filename": "divebomb-1.0.5.tar.gz", "has_sig": false, "md5_digest": "807883d91800827e437607e33ab822f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27363, "upload_time": "2019-03-12T12:30:06", "url": "https://files.pythonhosted.org/packages/9f/73/d65306ce5acecef2a9700bb3bb0d306ba614e267995c785ed558d82c2b03/divebomb-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "e94e897ca5185f568ec6a6c9705fde47", "sha256": "061485a0e635eb62cb277de3d49838ce18ef560b2d64abf11f36bfae83b1a4d3" }, "downloads": -1, "filename": "divebomb-1.0.6-py3.6.egg", "has_sig": false, "md5_digest": "e94e897ca5185f568ec6a6c9705fde47", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 36094, "upload_time": "2019-05-21T17:20:48", "url": "https://files.pythonhosted.org/packages/0d/87/54e6aa1252c5fa82980332aaf26291656537c8b01b5924ab1d64bd1f88c1/divebomb-1.0.6-py3.6.egg" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "98222bfd0b83cb5752ceefde8ea46cd4", "sha256": "e83f4be90012f516758104b19d14954bbfe996247a98535bba010c6aab4145b9" }, "downloads": -1, "filename": "divebomb-1.0.7-py3.6.egg", "has_sig": false, "md5_digest": "98222bfd0b83cb5752ceefde8ea46cd4", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 36095, "upload_time": "2019-05-21T17:25:24", "url": "https://files.pythonhosted.org/packages/1b/a6/12bca51c019d04ab9753e4877b976b831a402e6d46e374fef5713d86089d/divebomb-1.0.7-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "a225956399cdbbea0694ba278aaa70d1", "sha256": "c7fa1495f88d6cf69a0fd4c5857bc5ac9c32e2e3e6b65311c73466e73d9eeadb" }, "downloads": -1, "filename": "divebomb-1.0.7.tar.gz", "has_sig": false, "md5_digest": "a225956399cdbbea0694ba278aaa70d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21679, "upload_time": "2019-05-21T17:25:26", "url": "https://files.pythonhosted.org/packages/f5/55/2498f9d147e4958b7de2d0f9afd0bdea121cb22eb92b27f6f70d6fa94a5c/divebomb-1.0.7.tar.gz" } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "7d8ae455d79b17e33724232dc7cd4d98", "sha256": "04709e29505c638b2d4777fef8a1b82725c5e70a74319ba20521074c34c4aefd" }, "downloads": -1, "filename": "divebomb-1.0.8-py3.6.egg", "has_sig": false, "md5_digest": "7d8ae455d79b17e33724232dc7cd4d98", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 36118, "upload_time": "2019-05-27T12:46:27", "url": "https://files.pythonhosted.org/packages/8c/15/b4c6fa01f21569992bde16b5db810b00d428bc145285bd3508c2746cd3dc/divebomb-1.0.8-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "bffc6bdf559e4fe8ee5513fe27d71bcd", "sha256": "19b9a8afee0786ae1e5b3f9f7270a6dd4ba6bc836517ed4934e70744e8dad30b" }, "downloads": -1, "filename": "divebomb-1.0.8.tar.gz", "has_sig": false, "md5_digest": "bffc6bdf559e4fe8ee5513fe27d71bcd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21653, "upload_time": "2019-05-27T12:46:29", "url": "https://files.pythonhosted.org/packages/e8/f9/77131981ffc679c0a01d7edfe3ccecaa828e1de48873d413406518bdecd4/divebomb-1.0.8.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "9a4a0baa3c2605d8f75ad55514782b38", "sha256": "6dbd45f4bf11821c0d9ce1a09fdd7bbd47127c09d9c01d19f0a22aa2444338ad" }, "downloads": -1, "filename": "divebomb-1.1.0.tar.gz", "has_sig": false, "md5_digest": "9a4a0baa3c2605d8f75ad55514782b38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21899, "upload_time": "2019-06-07T14:25:53", "url": "https://files.pythonhosted.org/packages/33/c3/152d9bc9a0f235920ee2b768e2e9895d18e526374fcf99fc0690b0da12d7/divebomb-1.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9a4a0baa3c2605d8f75ad55514782b38", "sha256": "6dbd45f4bf11821c0d9ce1a09fdd7bbd47127c09d9c01d19f0a22aa2444338ad" }, "downloads": -1, "filename": "divebomb-1.1.0.tar.gz", "has_sig": false, "md5_digest": "9a4a0baa3c2605d8f75ad55514782b38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21899, "upload_time": "2019-06-07T14:25:53", "url": "https://files.pythonhosted.org/packages/33/c3/152d9bc9a0f235920ee2b768e2e9895d18e526374fcf99fc0690b0da12d7/divebomb-1.1.0.tar.gz" } ] }