{ "info": { "author": "Roger Labbe", "author_email": "rlabbejr@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: Unix", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Mathematics", "Topic :: Scientific/Engineering :: Physics", "Topic :: Utilities" ], "description": "FilterPy - Kalman filters and other optimal and non-optimal estimation filters in Python.\n-----------------------------------------------------------------------------------------\n\n.. image:: https://img.shields.io/pypi/v/filterpy.svg\n :target: https://pypi.python.org/pypi/filterpy\n\n**NOTE**: Imminent drop of support of Python 2.7, 3.4. See section below for details.\n\nThis library provides Kalman filtering and various related optimal and\nnon-optimal filtering software written in Python. It contains Kalman\nfilters, Extended Kalman filters, Unscented Kalman filters, Kalman\nsmoothers, Least Squares filters, fading memory filters, g-h filters,\ndiscrete Bayes, and more.\n\nThis is code I am developing in conjunction with my book Kalman and\nBayesian Filter in Python, which you can read/download at\nhttps://github.com/rlabbe/Kalman-and-Bayesian-Filters-in-Python/\n\nMy aim is largely pedalogical - I opt for clear code that matches the\nequations in the relevant texts on a 1-to-1 basis, even when that has a\nperformance cost. There are places where this tradeoff is unclear - for\nexample, I find it somewhat clearer to write a small set of equations\nusing linear algebra, but numpy's overhead on small matrices makes it\nrun slower than writing each equation out by hand. Furthermore, books\nsuch Zarchan present the written out form, not the linear algebra form.\nIt is hard for me to choose which presentation is 'clearer' - it depends\non the audience. In that case I usually opt for the faster implementation.\n\nI use NumPy and SciPy for all of the computations. I have experimented\nwith Numba and it yields impressive speed ups with minimal costs, but I \nam not convinced that I want to add that requirement to my project. It \nis still on my list of things to figure out, however.\n\nSphinx generated documentation lives at http://filterpy.readthedocs.org/.\nGeneration is triggered by git when I do a check in, so this will always\nbe bleeding edge development version - it will often be ahead of the\nreleased version. \n\n\nPlan for dropping Python 2.7 support\n------------------------------------\n\nI haven't finalized my decision on this, but NumPy is dropping\nPython 2.7 support in December 2018. I will certainly drop Python\n2.7 support by then; I will probably do it much sooner.\n\nAt the moment FilterPy is on version 1.x. I plan to fork the project\nto version 2.0, and support only Python 3.5+. The 1.x version \nwill still be available, but I will not support it. If I add something\namazing to 2.0 and someone really begs, I might backport it; more\nlikely I would accept a pull request with the feature backported\nto 1.x. But to be honest I don't forsee this happening.\n\nWhy 3.5+, and not 3.4+? 3.5 introduced the matrix multiply symbol,\nand I want my code to take advantage of it. Plus, to be honest,\nI'm being selfish. I don't want to spend my life supporting this\npackage, and moving as far into the present as possible means\na few extra years before the Python version I choose becomes\nhopelessly dated and a liability. I recognize this makes people\nrunning the default Python in their linux distribution more\npainful. All I can say is I did not decide to do the Python\n3 fork, and I don't have the time to support the bifurcation\nany longer.\n\nI am making edits to the package now in support of my book;\nonce those are done I'll probably create the 2.0 branch. \nI'm contemplating a SLAM addition to the book, and am not\nsure if I will do this in 3.5+ only or not.\n\n\nInstallation\n------------\n\nThe most general installation is just to use pip, which should come with\nany modern Python distribution.\n\n.. image:: https://img.shields.io/pypi/v/filterpy.svg\n :target: https://pypi.python.org/pypi/filterpy\n \n::\n\n pip install filterpy\n\nIf you prefer to download the source yourself\n\n::\n\n cd \n git clone http://github.com/rlabbe/filterpy\n python setup.py install\n\nIf you use Anaconda, you can install from the conda-forge channel. You\nwill need to add the conda-forge channel if you haven't already done so:\n\n::\n conda config --add channels conda-forge\n \nand then install with:\n\n::\n conda install filterpy\n \n \nAnd, if you want to install from the bleeding edge git version\n\n::\n\n pip install git+https://github.com/rlabbe/filterpy.git\n\nNote: I make no guarantees that everything works if you install from here.\nI'm the only developer, and so I don't worry about dev/release branches and\nthe like. Unless I fix a bug for you and tell you to get this version because\nI haven't made a new release yet, I strongly advise not installing from git.\n\n\n \n\nBasic use\n---------\n\nFull documentation is at\nhttps://filterpy.readthedocs.io/en/latest/\n\n\nFirst, import the filters and helper functions.\n\n.. code-block:: python\n\n import numpy as np\n from filterpy.kalman import KalmanFilter\n from filterpy.common import Q_discrete_white_noise\n\nNow, create the filter\n\n.. code-block:: python\n\n my_filter = KalmanFilter(dim_x=2, dim_z=1)\n\n\nInitialize the filter's matrices.\n\n.. code-block:: python\n\n my_filter.x = np.array([[2.],\n [0.]]) # initial state (location and velocity)\n\n my_filter.F = np.array([[1.,1.],\n [0.,1.]]) # state transition matrix\n\n my_filter.H = np.array([[1.,0.]]) # Measurement function\n my_filter.P *= 1000. # covariance matrix\n my_filter.R = 5 # state uncertainty\n my_filter.Q = Q_discrete_white_noise(2, dt, .1) # process uncertainty\n\n\nFinally, run the filter.\n\n.. code-block:: python\n\n while True:\n my_filter.predict()\n my_filter.update(get_some_measurement())\n\n # do something with the output\n x = my_filter.x\n do_something_amazing(x)\n\nSorry, that is the extent of the documentation here. However, the library\nis broken up into subdirectories: gh, kalman, memory, leastsq, and so on.\nEach subdirectory contains python files relating to that form of filter.\nThe functions and methods contain pretty good docstrings on use.\n\nMy book https://github.com/rlabbe/Kalman-and-Bayesian-Filters-in-Python/\nuses this library, and is the place to go if you are trying to learn\nabout Kalman filtering and/or this library. These two are not exactly in \nsync - my normal development cycle is to add files here, test them, figure \nout how to present them pedalogically, then write the appropriate section\nor chapter in the book. So there is code here that is not discussed\nyet in the book.\n\n\nRequirements\n------------\n\nThis library uses NumPy, SciPy, Matplotlib, and Python. \n\nI haven't extensively tested backwards compatibility - I use the\nAnaconda distribution, and so I am on Python 3.6 and 2.7.14, along with\nwhatever version of NumPy, SciPy, and matplotlib they provide. But I am\nusing pretty basic Python - numpy.array, maybe a list comprehension in\nmy tests.\n\nI import from **__future__** to ensure the code works in Python 2 and 3.\n\n\nTesting\n-------\n\nAll tests are written to work with py.test. Just type ``py.test`` at the\ncommand line.\n\nAs explained above, the tests are not robust. I'm still at the stage\nwhere visual plots are the best way to see how things are working.\nApologies, but I think it is a sound choice for development. It is easy\nfor a filter to perform within theoretical limits (which we can write a\nnon-visual test for) yet be 'off' in some way. The code itself contains\ntests in the form of asserts and properties that ensure that arrays are\nof the proper dimension, etc.\n\nReferences\n----------\n\nI use three main texts as my refererence, though I do own the majority\nof the Kalman filtering literature. First is Paul Zarchan's\n'Fundamentals of Kalman Filtering: A Practical Approach'. I think it by\nfar the best Kalman filtering book out there if you are interested in\npractical applications more than writing a thesis. The second book I use\nis Eli Brookner's 'Tracking and Kalman Filtering Made Easy'. This is an\nastonishingly good book; its first chapter is actually readable by the\nlayperson! Brookner starts from the g-h filter, and shows how all other\nfilters - the Kalman filter, least squares, fading memory, etc., all\nderive from the g-h filter. It greatly simplifies many aspects of\nanalysis and/or intuitive understanding of your problem. In contrast,\nZarchan starts from least squares, and then moves on to Kalman\nfiltering. I find that he downplays the predict-update aspect of the\nalgorithms, but he has a wealth of worked examples and comparisons\nbetween different methods. I think both viewpoints are needed, and so I\ncan't imagine discarding one book. Brookner also focuses on issues that\nare ignored in other books - track initialization, detecting and\ndiscarding noise, tracking multiple objects, an so on.\n\nI said three books. I also like and use Bar-Shalom's Estimation with\nApplications to Tracking and Navigation. Much more mathematical than the\nprevious two books, I would not recommend it as a first text unless you\nalready have a background in control theory or optimal estimation. Once\nyou have that experience, this book is a gem. Every sentence is crystal\nclear, his language is precise, but each abstract mathematical statement\nis followed with something like \"and this means...\".\n\n\nLicense\n-------\n.. image:: https://anaconda.org/rlabbe/filterpy/badges/license.svg :target: https://anaconda.org/rlabbe/filterpy\n\nThe MIT License (MIT)\n\nCopyright (c) 2015 Roger R. Labbe Jr\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.TION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/rlabbe/filterpy", "keywords": "Kalman filters filtering optimal estimation tracking", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "filterpy", "package_url": "https://pypi.org/project/filterpy/", "platform": "", "project_url": "https://pypi.org/project/filterpy/", "project_urls": { "Homepage": "https://github.com/rlabbe/filterpy" }, "release_url": "https://pypi.org/project/filterpy/1.4.5/", "requires_dist": null, "requires_python": "", "summary": "Kalman filtering and optimal estimation library", "version": "1.4.5" }, "last_serial": 4361895, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "61bcb33f0a5a7daa72b17c3b037f604a", "sha256": "7ab5eb40dc7c1bbb27e2062fddf0f1f1f5ed2951e016619b7f0f3aed65184e63" }, "downloads": -1, "filename": "filterpy-0.0.1.tar.gz", "has_sig": false, "md5_digest": "61bcb33f0a5a7daa72b17c3b037f604a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33065, "upload_time": "2014-09-01T20:26:20", "url": "https://files.pythonhosted.org/packages/84/47/18d315b1e1f12899af1ab9f9f6502d2a867e7e1e0eed8679b594013f0b7f/filterpy-0.0.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "8fd630aee886b5728167dc0e5dd74bc1", "sha256": "b504fa6f29fd5a8a134e2a965ddab48c202edaf83edf9809626e7d4e9cb977b5" }, "downloads": -1, "filename": "filterpy-0.0.1.zip", "has_sig": false, "md5_digest": "8fd630aee886b5728167dc0e5dd74bc1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52656, "upload_time": "2014-09-01T20:26:22", "url": "https://files.pythonhosted.org/packages/ff/bf/1fe941efcf3f1b717cf84636d5e9b68a9efe37ad32c9818dd4ac95beb61e/filterpy-0.0.1.zip" } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "7abf04e57f44f87c1215d4b6b7805583", "sha256": "97e6b726cf33fabdee3a43bbabf35f600dfd4541b69fce1b28d9d045bd5e08bf" }, "downloads": -1, "filename": "filterpy-0.0.10.tar.gz", "has_sig": false, "md5_digest": "7abf04e57f44f87c1215d4b6b7805583", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46830, "upload_time": "2014-12-13T17:08:48", "url": "https://files.pythonhosted.org/packages/fa/44/ecf08bbb58622c51977b719b389bd1a4fa474bc88ae97e179a4ed4ab25a5/filterpy-0.0.10.tar.gz" }, { "comment_text": "", "digests": { "md5": "9b40d4a24c492973ad26398f56d39798", "sha256": "1a6c91d424cb7b7f0fef504e9dc764405a01ab9665a787b73886bc3221d9d43c" }, "downloads": -1, "filename": "filterpy-0.0.10.zip", "has_sig": false, "md5_digest": "9b40d4a24c492973ad26398f56d39798", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75847, "upload_time": "2014-12-13T17:08:50", "url": "https://files.pythonhosted.org/packages/58/a1/1682ef77f2f528d85fe3c59774590d1d0fb267e0d98d1287876ec7d28904/filterpy-0.0.10.zip" } ], "0.0.12": [ { "comment_text": "", "digests": { "md5": "266fbe2406c8327e768a75387b530756", "sha256": "77b99197048ba8e3ec9aa07a001bc9514494f9d89cc2e750eda035d60b74ce54" }, "downloads": -1, "filename": "filterpy-0.0.12.tar.gz", "has_sig": false, "md5_digest": "266fbe2406c8327e768a75387b530756", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49059, "upload_time": "2014-12-15T17:16:59", "url": "https://files.pythonhosted.org/packages/30/cc/7e71d527fe5c25dd74ed46f204a15520ac3d9f8c5f3d78f739d0aa2b1edc/filterpy-0.0.12.tar.gz" }, { "comment_text": "", "digests": { "md5": "728bf94d897582f1a2e8c3436711966b", "sha256": "abd423d14c920113bfa1d484bb7b1e3ab3242b72966da9062c916eaa2f89a76e" }, "downloads": -1, "filename": "filterpy-0.0.12.zip", "has_sig": false, "md5_digest": "728bf94d897582f1a2e8c3436711966b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79961, "upload_time": "2014-12-15T17:17:01", "url": "https://files.pythonhosted.org/packages/41/21/c35422cfa0ba0a03c71ab210f9012f1a81de971f91a8eea7562efeb56b1d/filterpy-0.0.12.zip" } ], "0.0.13": [], "0.0.14": [ { "comment_text": "", "digests": { "md5": "6ef63db466bb804ff0b9bddb7fa46631", "sha256": "ee20092a9bb2c9018f4b3de06b0e8a732d46015b79c958a1874c3687a6b55d9a" }, "downloads": -1, "filename": "filterpy-0.0.14.tar.gz", "has_sig": false, "md5_digest": "6ef63db466bb804ff0b9bddb7fa46631", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52558, "upload_time": "2015-01-16T05:28:57", "url": "https://files.pythonhosted.org/packages/fe/8b/7902e3ae5e4c4422389b37d59288a22737d658870291b9b54f8dae88ebd8/filterpy-0.0.14.tar.gz" }, { "comment_text": "", "digests": { "md5": "c29096bbbf1e595ea81bd7a57befc927", "sha256": "6aa6674553ec1fc7b77a8b205b4fe5b7179ab272e368bcd70e479bb1ca075cca" }, "downloads": -1, "filename": "filterpy-0.0.14.zip", "has_sig": false, "md5_digest": "c29096bbbf1e595ea81bd7a57befc927", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82635, "upload_time": "2015-01-16T05:29:00", "url": "https://files.pythonhosted.org/packages/93/49/347f850ec1391de92dd3a2b0bae2810c9b343d9b798136191d12475e141a/filterpy-0.0.14.zip" } ], "0.0.15": [ { "comment_text": "", "digests": { "md5": "aa11da2d8085a259167e207d38e1f580", "sha256": "a68f53914d1cb34b78576fd4ca43edf0246d44dec51e42af98ebf4f454e053f9" }, "downloads": -1, "filename": "filterpy-0.0.15.tar.gz", "has_sig": false, "md5_digest": "aa11da2d8085a259167e207d38e1f580", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50155, "upload_time": "2015-01-28T21:28:33", "url": "https://files.pythonhosted.org/packages/39/d0/ab09cec25cbcce01b511946f1b286fb792b3bd72bb6cd636f0d444118af0/filterpy-0.0.15.tar.gz" }, { "comment_text": "", "digests": { "md5": "c8e2fd133712c16f9016aad1c7ef7006", "sha256": "674e48d11ac8cfa0e8aaf783e661f9f2db6e821d0910e16a5cdfcf30bc0c85a7" }, "downloads": -1, "filename": "filterpy-0.0.15.zip", "has_sig": false, "md5_digest": "c8e2fd133712c16f9016aad1c7ef7006", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80453, "upload_time": "2015-01-28T21:28:36", "url": "https://files.pythonhosted.org/packages/88/ad/b0a7ce8b2c291a586e255d937019f55a16f22c3b0c2cb4bc62bf9263988a/filterpy-0.0.15.zip" } ], "0.0.16": [ { "comment_text": "", "digests": { "md5": "3d13002a1b1b356ae81d5134bce25258", "sha256": "20c6f58a7b2af46b3c291e635cf2dd983371d28eaff4db9b57ef7d3bf429506f" }, "downloads": -1, "filename": "filterpy-0.0.16.tar.gz", "has_sig": false, "md5_digest": "3d13002a1b1b356ae81d5134bce25258", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49504, "upload_time": "2015-02-18T00:02:17", "url": "https://files.pythonhosted.org/packages/87/c9/4fb2eede9ff391988ed86c9fb0db80303e3c5c2d2edcb59717013c1dce0c/filterpy-0.0.16.tar.gz" }, { "comment_text": "", "digests": { "md5": "1009f6eeb7dcb24ec69da46f49703487", "sha256": "c8b13b19f2ab9f2bdf319ba22ed640ff85595e47a9ccd87a86cc817bd848a23a" }, "downloads": -1, "filename": "filterpy-0.0.16.zip", "has_sig": false, "md5_digest": "1009f6eeb7dcb24ec69da46f49703487", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80952, "upload_time": "2015-02-18T00:02:19", "url": "https://files.pythonhosted.org/packages/86/f4/8ce575fd6bf7105e54d24fad578b7562e76791f37f9d150dd236a5ba509e/filterpy-0.0.16.zip" } ], "0.0.17": [ { "comment_text": "", "digests": { "md5": "079d6ccd27db25c5852e5591298361b2", "sha256": "e0d40da20a26f645263cf2cbee92efc4af684df04e0dcd9cf2749013bb853002" }, "downloads": -1, "filename": "filterpy-0.0.17.tar.gz", "has_sig": false, "md5_digest": "079d6ccd27db25c5852e5591298361b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50673, "upload_time": "2015-03-04T02:57:59", "url": "https://files.pythonhosted.org/packages/25/e4/eb6646090e9f66785b9fa38734e3cb1cdedca5ec0483dec0acf0c8e9ab36/filterpy-0.0.17.tar.gz" }, { "comment_text": "", "digests": { "md5": "a54c23f143ec9b06105a78513dec8f72", "sha256": "779ef96e577eaddc16d32d5e03ba93bf2d976ec135e7fd851c2799a7738ab375" }, "downloads": -1, "filename": "filterpy-0.0.17.zip", "has_sig": false, "md5_digest": "a54c23f143ec9b06105a78513dec8f72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80956, "upload_time": "2015-03-04T02:58:01", "url": "https://files.pythonhosted.org/packages/11/59/ce2007e4fa82946755fec11d2c679efd54131a7d31f1a163ecad1efcbfdc/filterpy-0.0.17.zip" } ], "0.0.18": [ { "comment_text": "", "digests": { "md5": "3e18507c5015e1a38b9d91b7f0649ee3", "sha256": "bc26f971d91e8c960d0aa1f1145a9f21a00083d950d842c911f3ca85b8e41702" }, "downloads": -1, "filename": "filterpy-0.0.18.tar.gz", "has_sig": false, "md5_digest": "3e18507c5015e1a38b9d91b7f0649ee3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44114, "upload_time": "2015-05-27T05:22:54", "url": "https://files.pythonhosted.org/packages/27/b0/3dbc18add319ca8b45df329d1a59eb4dcf228600bc0eac3ab5e9989ef7ea/filterpy-0.0.18.tar.gz" }, { "comment_text": "", "digests": { "md5": "d1de67979a3d3c04c8ca18d22044941a", "sha256": "6e1375715bf3753eae9f233feb83a6ca01120313f5f018d7b1f6712b6fca3c6e" }, "downloads": -1, "filename": "filterpy-0.0.18.zip", "has_sig": false, "md5_digest": "d1de67979a3d3c04c8ca18d22044941a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81681, "upload_time": "2015-05-27T05:22:58", "url": "https://files.pythonhosted.org/packages/38/e1/df02d10d0dc28e120ede30c0f76616ab58fb1cf1b3688766e4d8a05f5904/filterpy-0.0.18.zip" } ], "0.0.19": [ { "comment_text": "", "digests": { "md5": "68d8e318399767a44b68c8ecde2c26fd", "sha256": "5affce40e338316ab29b75a76d5c4bc189b989dae286a84a9880f5d30f3c09df" }, "downloads": -1, "filename": "filterpy-0.0.19.tar.gz", "has_sig": false, "md5_digest": "68d8e318399767a44b68c8ecde2c26fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46042, "upload_time": "2015-06-09T02:15:22", "url": "https://files.pythonhosted.org/packages/95/c7/00df682d2c5923a9bf4b0be53aacdf70697fb0ecacb3715b4ce4020f763b/filterpy-0.0.19.tar.gz" }, { "comment_text": "", "digests": { "md5": "21d79e4f1fb4a2a5478656d80a460720", "sha256": "eb85cb326aa3f3eabee804f12e74ac87c34112ec818370d2e6d02e4edc221fb0" }, "downloads": -1, "filename": "filterpy-0.0.19.zip", "has_sig": false, "md5_digest": "21d79e4f1fb4a2a5478656d80a460720", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82855, "upload_time": "2015-06-09T02:15:27", "url": "https://files.pythonhosted.org/packages/83/f8/c0148e2fbf3d66c35d11d981b8f4db6262c7e27f0e8144b42a3d40cd3adb/filterpy-0.0.19.zip" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "01d81f6ffb146f9094fbe16c3eaa99d2", "sha256": "24434d0e870ba6c4b4a26181791cb1b53acdcdfb2b82eb2a1045e9bb536b0741" }, "downloads": -1, "filename": "filterpy-0.0.2.tar.gz", "has_sig": false, "md5_digest": "01d81f6ffb146f9094fbe16c3eaa99d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34545, "upload_time": "2014-11-09T05:18:04", "url": "https://files.pythonhosted.org/packages/eb/28/a34d5b754b975361f398aec3a5a64db4b4be0480b31f7bcf768d8488e24e/filterpy-0.0.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "50abab03a8cf70b06421b39529e15e94", "sha256": "1402528b56ec0cf77cbef6083cd52c4155976be64789ccc5826ca9bd9910d34d" }, "downloads": -1, "filename": "filterpy-0.0.2.zip", "has_sig": false, "md5_digest": "50abab03a8cf70b06421b39529e15e94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65499, "upload_time": "2014-11-09T05:18:08", "url": "https://files.pythonhosted.org/packages/60/04/35b2b47db240a9030a3db0116baecda9688b2f646c7df55f1bce8487c0d9/filterpy-0.0.2.zip" } ], "0.0.20": [ { "comment_text": "", "digests": { "md5": "f600e57f3ecd432b18f3599206d47b03", "sha256": "f571953e2a74b774c31fc4e3ec6834dfcc8c4dc261187329968c84a09afbcf3f" }, "downloads": -1, "filename": "filterpy-0.0.20.tar.gz", "has_sig": false, "md5_digest": "f600e57f3ecd432b18f3599206d47b03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46764, "upload_time": "2015-06-13T19:20:45", "url": "https://files.pythonhosted.org/packages/20/19/4d931a98ea91c29396d5a9e19f559032691e5fb274a05a75966a666d04a5/filterpy-0.0.20.tar.gz" }, { "comment_text": "", "digests": { "md5": "14e35bc5007fb0d58374600b22a5f853", "sha256": "e65e12b2943c5b8b0e405428178a2f4d552f322ae2399a4102c3c4afca3a5f71" }, "downloads": -1, "filename": "filterpy-0.0.20.zip", "has_sig": false, "md5_digest": "14e35bc5007fb0d58374600b22a5f853", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83084, "upload_time": "2015-06-13T19:20:49", "url": "https://files.pythonhosted.org/packages/d1/ae/2f8131b579c8720d7367a7fff3cd5e8ea34009219a054f1f916a134a2bf0/filterpy-0.0.20.zip" } ], "0.0.21": [ { "comment_text": "", "digests": { "md5": "0f64d105a6cec1dc5336b6dba3ae93f1", "sha256": "78788a38de7a19b48268090d6f8f588e436591b027229b13711774db64c7133e" }, "downloads": -1, "filename": "filterpy-0.0.21.tar.gz", "has_sig": false, "md5_digest": "0f64d105a6cec1dc5336b6dba3ae93f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49174, "upload_time": "2015-07-05T04:14:47", "url": "https://files.pythonhosted.org/packages/62/27/ffa7cc20fba63edf8e2903aeffdd6df106505f2f3cec52b5e0dc909a4601/filterpy-0.0.21.tar.gz" }, { "comment_text": "", "digests": { "md5": "a16eac04d401303c1920d03e4897c534", "sha256": "9b41837992ac2a14a31dab3e9f985516b397224bcf2c5df105ee99b53fbdc6ed" }, "downloads": -1, "filename": "filterpy-0.0.21.zip", "has_sig": false, "md5_digest": "a16eac04d401303c1920d03e4897c534", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 87616, "upload_time": "2015-07-05T04:14:51", "url": "https://files.pythonhosted.org/packages/4f/9b/a445d1bae51f6ae4583d18eba538200bb2f3150575dcc80e763f0dfbdcff/filterpy-0.0.21.zip" } ], "0.0.22": [ { "comment_text": "", "digests": { "md5": "fd3e488d240ee3c1e148f72aedc23a48", "sha256": "de7640de18f733596c5da0c0f137298c25e56d0a633693f4d4b6fddabb8a7105" }, "downloads": -1, "filename": "filterpy-0.0.22.tar.gz", "has_sig": false, "md5_digest": "fd3e488d240ee3c1e148f72aedc23a48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49969, "upload_time": "2015-07-09T01:59:05", "url": "https://files.pythonhosted.org/packages/77/a9/f94604ae85f1c4132ae378865de0f72d2b413392c2c3f2deb50f94c2e93a/filterpy-0.0.22.tar.gz" }, { "comment_text": "", "digests": { "md5": "614b4bbcbe0ff95055fe3cac058e1147", "sha256": "25af3faccda27d545d778bb8a3590aed4f7b596092adb4c2481ff56a7d9e9a45" }, "downloads": -1, "filename": "filterpy-0.0.22.zip", "has_sig": false, "md5_digest": "614b4bbcbe0ff95055fe3cac058e1147", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88302, "upload_time": "2015-07-09T01:59:09", "url": "https://files.pythonhosted.org/packages/1e/56/405ec02715852ecf6d1ab44b3ee2075bca04a6253ddbd4b162b45302af81/filterpy-0.0.22.zip" } ], "0.0.25": [ { "comment_text": "", "digests": { "md5": "74bdab3af32f98cccadcf35fcc7c00e4", "sha256": "1e42210656bb3625aa6ad55a5d682e321a4635185d6dfd8f592ed7389964ced5" }, "downloads": -1, "filename": "filterpy-0.0.25.tar.gz", "has_sig": false, "md5_digest": "74bdab3af32f98cccadcf35fcc7c00e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47916, "upload_time": "2015-07-15T20:08:18", "url": "https://files.pythonhosted.org/packages/e7/b5/50e93f833d9e41510038e364343e1195bc7828b9ff14b0f9062a89646650/filterpy-0.0.25.tar.gz" }, { "comment_text": "", "digests": { "md5": "3b282daa7b51a2c9fe4568ef16dd64bc", "sha256": "316510aea80e846df0f8a632a50152932de70af622715bc6633812e55870d307" }, "downloads": -1, "filename": "filterpy-0.0.25.zip", "has_sig": false, "md5_digest": "3b282daa7b51a2c9fe4568ef16dd64bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84749, "upload_time": "2015-07-15T20:08:22", "url": "https://files.pythonhosted.org/packages/4a/37/27051fbf8607e5b05ccc8735177c12a8969317b0a4d9d5bcddd527e7ad7f/filterpy-0.0.25.zip" } ], "0.0.26": [ { "comment_text": "", "digests": { "md5": "b62d21f2c540d283ca2ec436c5057b47", "sha256": "3c1936844b02c80838374358a26091f4d11e2fd52a33c6b030ab704a2ea249d4" }, "downloads": -1, "filename": "filterpy-0.0.26.tar.gz", "has_sig": false, "md5_digest": "b62d21f2c540d283ca2ec436c5057b47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51146, "upload_time": "2015-07-31T02:17:24", "url": "https://files.pythonhosted.org/packages/37/3e/ba01edc9cc7a8e73efa8dd23f8f877ffaf1afdab505cb978d36472b02612/filterpy-0.0.26.tar.gz" }, { "comment_text": "", "digests": { "md5": "c476df049f6d707b2674dc30ed19424f", "sha256": "7c9425c048545eaa71c6afa29c185171d805ac4f27875e8e500a6e022099b335" }, "downloads": -1, "filename": "filterpy-0.0.26.zip", "has_sig": false, "md5_digest": "c476df049f6d707b2674dc30ed19424f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91982, "upload_time": "2015-07-31T02:17:28", "url": "https://files.pythonhosted.org/packages/7d/85/91545699448faed2087e94ef2fa35eadd738a4e34017f69fe31f25bcc809/filterpy-0.0.26.zip" } ], "0.0.27": [ { "comment_text": "", "digests": { "md5": "d67cddeb0e857357d50481ffa3b0993f", "sha256": "c52895c3b91ac1d6cf7662d1dcdd24a606f09465177ac01a0a793c882b464183" }, "downloads": -1, "filename": "filterpy-0.0.27.tar.gz", "has_sig": false, "md5_digest": "d67cddeb0e857357d50481ffa3b0993f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52556, "upload_time": "2015-08-13T03:37:00", "url": "https://files.pythonhosted.org/packages/a2/ac/49a9fa9635a08bfc50476b1002476e30fa3c4af9dcd563e4204541571275/filterpy-0.0.27.tar.gz" }, { "comment_text": "", "digests": { "md5": "8fcb40d2130b7598ae21fe789b137370", "sha256": "89e581ce1cdd302d7e557f57627c5bfd0c29cf58656897e9d545e26fc02f4394" }, "downloads": -1, "filename": "filterpy-0.0.27.zip", "has_sig": false, "md5_digest": "8fcb40d2130b7598ae21fe789b137370", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90386, "upload_time": "2015-08-13T03:37:04", "url": "https://files.pythonhosted.org/packages/8f/65/94a24f25f70cdf845d498e70a90c1a6154c36dd58d1c5c7fac8cc0f9653f/filterpy-0.0.27.zip" } ], "0.0.28": [ { "comment_text": "", "digests": { "md5": "c41baf83b311f09717a3ede558b4e143", "sha256": "6a347b6a9ee10d839aa055772acba2f0bd25d0f8b2c58d1bb816d437489610f1" }, "downloads": -1, "filename": "filterpy-0.0.28.tar.gz", "has_sig": false, "md5_digest": "c41baf83b311f09717a3ede558b4e143", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53069, "upload_time": "2015-08-29T15:31:34", "url": "https://files.pythonhosted.org/packages/ef/e1/782be6ab7fe16148f6a69f89eb06cbdd64b7b9ffe9c0d5ece0705a43e081/filterpy-0.0.28.tar.gz" }, { "comment_text": "", "digests": { "md5": "02ea3755e68aa7c3489a05abbc89e6fe", "sha256": "f715f9287a7ae44a9b2befa1cec6c2283762f0d11a40a60774e6a226a97b5eda" }, "downloads": -1, "filename": "filterpy-0.0.28.zip", "has_sig": false, "md5_digest": "02ea3755e68aa7c3489a05abbc89e6fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90909, "upload_time": "2015-08-29T15:31:39", "url": "https://files.pythonhosted.org/packages/43/34/770ac796d92f3dd67213378fbeb7d6ea5cf6132de83744e3b825cc89dae4/filterpy-0.0.28.zip" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "e597b9726484b4d44cdcc28d68cbbb6b", "sha256": "b5ff2da62939bca0594b80f60e30348d777e01ed2f35e62cadc98df567e4167e" }, "downloads": -1, "filename": "filterpy-0.0.3.tar.gz", "has_sig": false, "md5_digest": "e597b9726484b4d44cdcc28d68cbbb6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38453, "upload_time": "2014-11-15T18:11:59", "url": "https://files.pythonhosted.org/packages/ca/a2/76553c1fd16aa5c226562d66d4bbcb2c4c9a2dcc7615a54a1f14adcb5f07/filterpy-0.0.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "2ba38002efa643695262e8b051c5ea66", "sha256": "7970aabc8c593a2d155cbabcde21db83ff442134fafe61e9cda5d908f5369020" }, "downloads": -1, "filename": "filterpy-0.0.3.zip", "has_sig": false, "md5_digest": "2ba38002efa643695262e8b051c5ea66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64714, "upload_time": "2014-11-15T18:12:02", "url": "https://files.pythonhosted.org/packages/14/d2/e0c91c514a296bbb51198a5a4c0923755fc1de7c5c9bc2ce4f4e71f84b0b/filterpy-0.0.3.zip" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "afd5632bee55c4f1b3459ba97eaeda85", "sha256": "56663f318676582795b69dd81fe4a4672dbf3ca697c19bcacacfc5efb93de511" }, "downloads": -1, "filename": "filterpy-0.0.4.tar.gz", "has_sig": false, "md5_digest": "afd5632bee55c4f1b3459ba97eaeda85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36950, "upload_time": "2014-11-16T08:34:30", "url": "https://files.pythonhosted.org/packages/36/fd/d3a543a4dc5306b401fc5d0de069352853b47ff5661f1f73c0225e47de7e/filterpy-0.0.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "297beb9bca3cf2dcb6e5e7ff400aa527", "sha256": "335ee8bbfcb118a04637a0f46822eabe3ad37b6c22b699143011310179a2dd46" }, "downloads": -1, "filename": "filterpy-0.0.4.zip", "has_sig": false, "md5_digest": "297beb9bca3cf2dcb6e5e7ff400aa527", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69402, "upload_time": "2014-11-16T08:34:37", "url": "https://files.pythonhosted.org/packages/cf/e4/889db145aa69d2e27a255812c7167053eb902be3852795804b96b5ff749a/filterpy-0.0.4.zip" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "75efccfdba6a59d3216e06e4b30fccc3", "sha256": "f5dc4d11e2e41816b62543565e7e6c7eb2c5989e6a87aabd4eb173345e1dbb63" }, "downloads": -1, "filename": "filterpy-0.0.5.tar.gz", "has_sig": false, "md5_digest": "75efccfdba6a59d3216e06e4b30fccc3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40102, "upload_time": "2014-11-19T03:56:15", "url": "https://files.pythonhosted.org/packages/ed/c4/afaa894e195e823d23ad2f0eb5e801ca4602525e04f4791efb995813ded3/filterpy-0.0.5.tar.gz" }, { "comment_text": "", "digests": { "md5": "6d45c3eafa0fd8858623b29f8247bd9f", "sha256": "709bd6cbda6e55e0e0b879cca77abf9597d2226204f1d126ce129cbc3b351cf8" }, "downloads": -1, "filename": "filterpy-0.0.5.zip", "has_sig": false, "md5_digest": "6d45c3eafa0fd8858623b29f8247bd9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72287, "upload_time": "2014-11-19T03:56:18", "url": "https://files.pythonhosted.org/packages/e9/76/6f2bfd83d01c5feccd1cecfd2b88176f286ecb166a5b440001f3c76f95cb/filterpy-0.0.5.zip" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "f897bc1881b026b50b1c6e6c52dc8ac2", "sha256": "33ddfadd3d9f003be86ac3cba2d555a9cb02fa16f3a37a425fa31b95ecb85c4f" }, "downloads": -1, "filename": "filterpy-0.0.6.tar.gz", "has_sig": false, "md5_digest": "f897bc1881b026b50b1c6e6c52dc8ac2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35493, "upload_time": "2014-11-23T03:10:08", "url": "https://files.pythonhosted.org/packages/89/9d/489d168456db91434b39b2ba440ca0f2329fa93360f8a8e45e738091c380/filterpy-0.0.6.tar.gz" }, { "comment_text": "", "digests": { "md5": "84301b49db3f147a111f333936ab123f", "sha256": "e991ee9067738b380d248152ed55c735d639e589d62c678a6d5b4858c3094e4b" }, "downloads": -1, "filename": "filterpy-0.0.6.zip", "has_sig": false, "md5_digest": "84301b49db3f147a111f333936ab123f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55947, "upload_time": "2014-11-23T03:10:11", "url": "https://files.pythonhosted.org/packages/c8/23/69e050af5561f7b2d46fb9d5d47d0ab45f72f5b177d2f7e4e1a271e2ac3e/filterpy-0.0.6.zip" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "410d597751ef4b9f1491e6e69999edd0", "sha256": "b2669fd3bc216775cdadf3bbfaccf36bf4a1b476e6369e1618011aca1254a6a0" }, "downloads": -1, "filename": "filterpy-0.0.7.tar.gz", "has_sig": false, "md5_digest": "410d597751ef4b9f1491e6e69999edd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42092, "upload_time": "2014-11-30T23:52:43", "url": "https://files.pythonhosted.org/packages/e1/bb/d1eee2836ad821241780396c5767032ea0684ae28c15ed00c062feb5d372/filterpy-0.0.7.tar.gz" }, { "comment_text": "", "digests": { "md5": "3c806889f5106e06c3c58382da51a103", "sha256": "ca1c6ca2418dcd6c3293d9e0d161165a8d52da258ec533a3bce42b37e40e75c4" }, "downloads": -1, "filename": "filterpy-0.0.7.zip", "has_sig": false, "md5_digest": "3c806889f5106e06c3c58382da51a103", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63878, "upload_time": "2014-11-30T23:52:49", "url": "https://files.pythonhosted.org/packages/80/c3/ba9c7b19455382feac2fabfd99dd79ad12be1a93c541a9721a7451859eb2/filterpy-0.0.7.zip" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "3ee424b045699d6ab99c011099440565", "sha256": "4cb6fc74e2b414d22b5f3fb25f11df63a862f3eca117fca6fe13f2243ed9527c" }, "downloads": -1, "filename": "filterpy-0.0.8.tar.gz", "has_sig": false, "md5_digest": "3ee424b045699d6ab99c011099440565", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44735, "upload_time": "2014-12-01T06:38:39", "url": "https://files.pythonhosted.org/packages/6e/b5/732bcbe4fc654c9fe86706e25af7c32640fd412dbff5486b1b30e5f104be/filterpy-0.0.8.tar.gz" }, { "comment_text": "", "digests": { "md5": "b9b502d22c0801a9a65e00506862355f", "sha256": "e6ca62298adf210234d47170925f1c162983142deae0cdcc442808dffda02f55" }, "downloads": -1, "filename": "filterpy-0.0.8.zip", "has_sig": false, "md5_digest": "b9b502d22c0801a9a65e00506862355f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68180, "upload_time": "2014-12-01T06:38:42", "url": "https://files.pythonhosted.org/packages/49/d2/e41ca8f66a8df014032626b99f628612d251978b515cfddd1cc517956bc1/filterpy-0.0.8.zip" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "405b7b49d3a438f2cc878964f3464cd2", "sha256": "9c81f22d1b955dd4cd3a2ffba0ee8cbebbe895bb5aeb942e39cc6b09558c4883" }, "downloads": -1, "filename": "filterpy-0.0.9.tar.gz", "has_sig": false, "md5_digest": "405b7b49d3a438f2cc878964f3464cd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46058, "upload_time": "2014-12-07T05:48:46", "url": "https://files.pythonhosted.org/packages/45/09/7ac63b8f81b56b277f73f16c49a7a43953cef1ece7959fde96056fa066f0/filterpy-0.0.9.tar.gz" }, { "comment_text": "", "digests": { "md5": "33a74120ee50877e9cd289f6c045e042", "sha256": "31cf2929dc8ab60379080b35f8c1cb310be0ef355a3a5143b7a9cdc0148e49a1" }, "downloads": -1, "filename": "filterpy-0.0.9.zip", "has_sig": false, "md5_digest": "33a74120ee50877e9cd289f6c045e042", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70643, "upload_time": "2014-12-07T05:48:49", "url": "https://files.pythonhosted.org/packages/ac/6a/ff811bdd7b3f36a9c033b8d7100decc81eb6d7f8d91758fae71b586ee144/filterpy-0.0.9.zip" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "712e204680fcbb5bbf3f1caa170e9aea", "sha256": "64468702793f662084a6997339603a0af76ffa3cdf6f66c4ef03767784f68bdb" }, "downloads": -1, "filename": "filterpy-0.1.0.tar.gz", "has_sig": false, "md5_digest": "712e204680fcbb5bbf3f1caa170e9aea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55166, "upload_time": "2015-12-20T17:46:02", "url": "https://files.pythonhosted.org/packages/01/a1/bb12174409e6a981f32198a1b478623341ae7f2d3fad874ee1ce44b37709/filterpy-0.1.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "9c74270607cfd61a3dd1774c15746220", "sha256": "e45e632e61018d96073a6942c410283d0d6cda50f2c17ca0c752a9edbffb0091" }, "downloads": -1, "filename": "filterpy-0.1.0.zip", "has_sig": false, "md5_digest": "9c74270607cfd61a3dd1774c15746220", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92744, "upload_time": "2015-12-20T17:46:09", "url": "https://files.pythonhosted.org/packages/e9/63/9037cd10497a7a913fce81f476181e76dbc5ca8337162eaf1ab6a62e0033/filterpy-0.1.0.zip" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "b196088a2e46bc915ad466a79a0f04fc", "sha256": "5a22641630d508d356cc592fb2e3588ec840a60d199dd40780b116b49f15b1eb" }, "downloads": -1, "filename": "filterpy-0.1.1.tar.gz", "has_sig": false, "md5_digest": "b196088a2e46bc915ad466a79a0f04fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57654, "upload_time": "2016-01-17T05:52:25", "url": "https://files.pythonhosted.org/packages/77/d1/ba2171330f3f6e0206c035af93d68efd7f3221d6b37a7d970ab3810a6c31/filterpy-0.1.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "2e759b88720c4a52c9b6ecfab887e30d", "sha256": "5ce30fbafa1cb8ffd243514ec0325c8c096e1e635a71dbd3f81efc2e75dd744e" }, "downloads": -1, "filename": "filterpy-0.1.1.zip", "has_sig": false, "md5_digest": "2e759b88720c4a52c9b6ecfab887e30d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96953, "upload_time": "2016-01-17T05:52:33", "url": "https://files.pythonhosted.org/packages/31/0e/cf304caf251fe06d33be552dfb0d64e382bfc8ddf76002a8475779b1e802/filterpy-0.1.1.zip" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "15941385b73ec4e6d72f306d1c5b4621", "sha256": "0d596f3034ac75c781379c329096da47802ea1841ae4f76983abd51a51465e70" }, "downloads": -1, "filename": "filterpy-0.1.2.tar.gz", "has_sig": false, "md5_digest": "15941385b73ec4e6d72f306d1c5b4621", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58009, "upload_time": "2016-01-24T20:05:20", "url": "https://files.pythonhosted.org/packages/18/94/7ca2b79cd95b24bad9fc693c9157b30e28aecbd51cacd46af8eb1793dbc6/filterpy-0.1.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "e71d1f69faf6c3d3c5386a955deda695", "sha256": "38089960ccd9fc9f399e925176d84e192ec775964ddff24b918ba3b1ce3b9d9c" }, "downloads": -1, "filename": "filterpy-0.1.2.zip", "has_sig": false, "md5_digest": "e71d1f69faf6c3d3c5386a955deda695", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97304, "upload_time": "2016-01-24T20:05:26", "url": "https://files.pythonhosted.org/packages/84/7b/5f164703f7f5eb76ce2c44010eaafc240aafdd3525bdbdde94a6aedc7c65/filterpy-0.1.2.zip" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "ba1e6fb84efaae3d21a73ba9fb563cab", "sha256": "6454bbe7bad0479bb8b5d263c0e69fd8176f0e0ea45872afcd7222e9f383f5bb" }, "downloads": -1, "filename": "filterpy-0.1.3.tar.gz", "has_sig": false, "md5_digest": "ba1e6fb84efaae3d21a73ba9fb563cab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58089, "upload_time": "2016-06-20T02:45:31", "url": "https://files.pythonhosted.org/packages/75/df/5dbf357a3da1b49af18b2be00da15c7f86397b5b263bea1b9d65b5bd51cf/filterpy-0.1.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "644f3d987c3186632e2ba507a08c3285", "sha256": "151d96ce97ecb7283d9ed8cf3a39b4e0e487bfb6d13460e433ba6f2132bdbfef" }, "downloads": -1, "filename": "filterpy-0.1.3.zip", "has_sig": false, "md5_digest": "644f3d987c3186632e2ba507a08c3285", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97337, "upload_time": "2016-06-20T02:45:37", "url": "https://files.pythonhosted.org/packages/47/cb/070b3b3df2e6ac76907c80636fe526f39f5b07bf29cdd43c994867eedd19/filterpy-0.1.3.zip" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "7bac8d967250da6c50472da60c54a42a", "sha256": "11b571dc2f214930780aac1de1fa977bde57556bef3d141f66c3c4fe1107fa19" }, "downloads": -1, "filename": "filterpy-0.1.4.tar.gz", "has_sig": false, "md5_digest": "7bac8d967250da6c50472da60c54a42a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61631, "upload_time": "2016-09-15T03:11:12", "url": "https://files.pythonhosted.org/packages/5e/3a/4dd8f3cf30760a8e07bd5e585995b7b97032642986c509a67ff0db7fa472/filterpy-0.1.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "2459036eff3517edc928a5cd84597d4b", "sha256": "91c9d5793622bba6e2fccdfeb49d34c6a6de7374485fa16961a40d66c7ef7c13" }, "downloads": -1, "filename": "filterpy-0.1.4.zip", "has_sig": false, "md5_digest": "2459036eff3517edc928a5cd84597d4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 101314, "upload_time": "2016-09-15T03:11:15", "url": "https://files.pythonhosted.org/packages/68/74/7cf0a5459090eb665c7245f78790154f77b80f5226c028517c4c3fc18a0a/filterpy-0.1.4.zip" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "c6e34e4249bc959ad075c20eccc70a51", "sha256": "42d42d7aeef752e297839776ae01721e79bf446e3c17e3d48914c03b5fbdd816" }, "downloads": -1, "filename": "filterpy-0.1.5.tar.gz", "has_sig": false, "md5_digest": "c6e34e4249bc959ad075c20eccc70a51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62130, "upload_time": "2016-11-24T18:25:59", "url": "https://files.pythonhosted.org/packages/1b/9a/321225a4e7d05828f0309b6c3c392c74571396a633c7d5b2aef08e4d978a/filterpy-0.1.5.tar.gz" }, { "comment_text": "", "digests": { "md5": "5fa5fdb45910bf372dbde7455f11f9db", "sha256": "8ee30da8dc8b3bad1d21bbb2a9402f8d63cae747ebaaf1d7e4f0f58c3ee9d3b8" }, "downloads": -1, "filename": "filterpy-0.1.5.zip", "has_sig": false, "md5_digest": "5fa5fdb45910bf372dbde7455f11f9db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 101773, "upload_time": "2016-11-24T18:26:01", "url": "https://files.pythonhosted.org/packages/31/2c/632cfbf05a84a6da3959961e2bdc37df8c35a528e6b648d085b3f0fada6e/filterpy-0.1.5.zip" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "95878bd2db2339a049d18ffc5eea2141", "sha256": "c25ac138b92ca021a6953bd1e0aad5e786609b2cea56740624cd21de849b5b11" }, "downloads": -1, "filename": "filterpy-1.0.0.zip", "has_sig": false, "md5_digest": "95878bd2db2339a049d18ffc5eea2141", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 101895, "upload_time": "2017-06-20T17:53:57", "url": "https://files.pythonhosted.org/packages/9f/15/57d60cc78aff7d93b0c57e8103d6fc7405cd2d2b641780550b45bc219bad/filterpy-1.0.0.zip" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "7a6c92df7ec2750e0c15dc950b49b70b", "sha256": "d884b5a305c31a006ef36833f1ed407576160a2b0387f2565a5b934a2063cc1d" }, "downloads": -1, "filename": "filterpy-1.1.0.tar.gz", "has_sig": false, "md5_digest": "7a6c92df7ec2750e0c15dc950b49b70b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63055, "upload_time": "2017-11-19T01:03:48", "url": "https://files.pythonhosted.org/packages/97/e0/a7870fa17350c296ada15e22cbb97c72e232c63d5312fed6f55fc5a36c04/filterpy-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "9c9a2f80761eba287f22547b02e380b5", "sha256": "812e67059de17d4c990f45a0df8f09f73e2417d7a361be44c321fb31ea6b5677" }, "downloads": -1, "filename": "filterpy-1.2.0.zip", "has_sig": false, "md5_digest": "9c9a2f80761eba287f22547b02e380b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103845, "upload_time": "2018-02-01T16:35:55", "url": "https://files.pythonhosted.org/packages/ee/89/f215eac1bbb549721633d5b79406e00b65036030c95bb5649fd31db8477e/filterpy-1.2.0.zip" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "c65d34e72c03767f511af8d05f67da8c", "sha256": "38ba6fb64b48bc787b884a169fe85178a9109fc025c01893bba4ad2da33909ab" }, "downloads": -1, "filename": "filterpy-1.2.1.zip", "has_sig": false, "md5_digest": "c65d34e72c03767f511af8d05f67da8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103843, "upload_time": "2018-02-02T03:48:52", "url": "https://files.pythonhosted.org/packages/22/23/df048dd0b967b32cc704cdd58fcca92297420f41db0dce6561594c942258/filterpy-1.2.1.zip" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "02f30943b7282fabbb10f3785ceaeea9", "sha256": "4e432b685b3489d5d7e7496668f27bce6755ee05b8995bf6e4d581f7dfe378fc" }, "downloads": -1, "filename": "filterpy-1.2.2.zip", "has_sig": false, "md5_digest": "02f30943b7282fabbb10f3785ceaeea9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108314, "upload_time": "2018-04-15T01:00:08", "url": "https://files.pythonhosted.org/packages/cd/d5/9b2e7eec709993e9cef5a16946640b89d1a2e404129274397c216f3a8cc4/filterpy-1.2.2.zip" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "e8ec563a29caac3da2932b735a38ed8f", "sha256": "208535c6aca1b4ca7b5409ad7c0becdda59dfb9c51883970e8201db31b6ea3e0" }, "downloads": -1, "filename": "filterpy-1.2.3.zip", "has_sig": false, "md5_digest": "e8ec563a29caac3da2932b735a38ed8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108398, "upload_time": "2018-04-15T01:46:51", "url": "https://files.pythonhosted.org/packages/69/ee/e9aa14d01e81dafe5aa60b6f233cf05d621f8bdb9ab3fff089b92a61685e/filterpy-1.2.3.zip" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "bbb64e0d1d4fab2f7dd731607e2d6e2f", "sha256": "11e6d55dfc54b18efd8dbcf0ac37ddf85f368a44c4d1432f2ee56a86b819a541" }, "downloads": -1, "filename": "filterpy-1.2.4.zip", "has_sig": false, "md5_digest": "bbb64e0d1d4fab2f7dd731607e2d6e2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108936, "upload_time": "2018-04-17T19:41:27", "url": "https://files.pythonhosted.org/packages/57/20/513e16e54322ea9c9cd055176eeb32863b561464b76b3022a6c0560494a3/filterpy-1.2.4.zip" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "e313f2b7a96291eb5c8e9be38601e0bc", "sha256": "95f04c2a7dad825d37f2fdb5039d1bdedfdc0123658aecaa165af38433b8888c" }, "downloads": -1, "filename": "filterpy-1.3.zip", "has_sig": false, "md5_digest": "e313f2b7a96291eb5c8e9be38601e0bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116594, "upload_time": "2018-04-28T23:32:06", "url": "https://files.pythonhosted.org/packages/5b/21/2bab4779688449e6f096aa43e6b5f8c7ec1245534c51489800492e657121/filterpy-1.3.zip" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "23de985f68055428f9719664093de5c4", "sha256": "07d84910f42b64439c54a47b250d9d4852c779eac7fd3bc464373ac3cfecd86a" }, "downloads": -1, "filename": "filterpy-1.3.1.zip", "has_sig": false, "md5_digest": "23de985f68055428f9719664093de5c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163596, "upload_time": "2018-04-29T15:04:01", "url": "https://files.pythonhosted.org/packages/33/8a/f3fd662742272a9b2a4ed49b3a8391d62a07cd6c679d8c236d756d280bf5/filterpy-1.3.1.zip" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "d409a64c6bb812f8a16ffbd0c9b69f1e", "sha256": "3f2436323e4a7a36718d8b422dce86269c34f5490324b2c11d1297bcb9b427fd" }, "downloads": -1, "filename": "filterpy-1.3.2.zip", "has_sig": false, "md5_digest": "d409a64c6bb812f8a16ffbd0c9b69f1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 168295, "upload_time": "2018-05-03T22:06:39", "url": "https://files.pythonhosted.org/packages/e2/13/f9d785229523e4ed31c5687a65b428d54017d1c7fbe6d42ad2bc42ff6529/filterpy-1.3.2.zip" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "7915cf7f464a162fe4848f0483de6e48", "sha256": "bdca5eeab271d3d8f93e75d0f379f6dbe94c046d9ad5707361a66904abf7001a" }, "downloads": -1, "filename": "filterpy-1.4.0.zip", "has_sig": false, "md5_digest": "7915cf7f464a162fe4848f0483de6e48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 168869, "upload_time": "2018-05-06T01:38:08", "url": "https://files.pythonhosted.org/packages/08/ee/2c53c4f972b531c0eb6afb1d479d58d96058246c981c8a040aef124561c8/filterpy-1.4.0.zip" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "90778c9cf0b3672c822c747147d625d6", "sha256": "5c5a861007bf88ad8adec4eb2e38ce309da2c9389ae7e98c7d06b537ed934788" }, "downloads": -1, "filename": "filterpy-1.4.1.zip", "has_sig": false, "md5_digest": "90778c9cf0b3672c822c747147d625d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 169739, "upload_time": "2018-05-12T18:55:52", "url": "https://files.pythonhosted.org/packages/0b/d7/ddc82318dbe853f4f4ba51be6607f33f533590fe6d50926689b0d80b5530/filterpy-1.4.1.zip" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "5a8b951a2f46434e944469701c558b4e", "sha256": "6e247b3c9de934dee5a8baa152e88b5f50f0d0bd24e5f25496a81795d7425fe0" }, "downloads": -1, "filename": "filterpy-1.4.2.zip", "has_sig": false, "md5_digest": "5a8b951a2f46434e944469701c558b4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 182361, "upload_time": "2018-08-05T16:35:37", "url": "https://files.pythonhosted.org/packages/c2/a4/42e47d43b3e4b0927d5386965ed984c92c0b332b29914fd657c8bc4665da/filterpy-1.4.2.zip" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "93f7be8110dec017ac13e447aa3495e9", "sha256": "36982ed5ea14c7f4f0e8a5bd8e1e12a1b8bf67d64e039a37155e2ff74dcb49cf" }, "downloads": -1, "filename": "filterpy-1.4.3.zip", "has_sig": false, "md5_digest": "93f7be8110dec017ac13e447aa3495e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 187556, "upload_time": "2018-08-21T18:43:26", "url": "https://files.pythonhosted.org/packages/13/35/e25fa6029c3caa0ca6d27cbf4e17cdd517911228aaa60716cb28b9abeb10/filterpy-1.4.3.zip" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "f4a909c118d3fdfa80e190e143e730bf", "sha256": "c7ad565990f0537b54ea01ea473656c89064d6621f22eb65af4a9375ae22e724" }, "downloads": -1, "filename": "filterpy-1.4.4.zip", "has_sig": false, "md5_digest": "f4a909c118d3fdfa80e190e143e730bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 182092, "upload_time": "2018-08-24T15:31:07", "url": "https://files.pythonhosted.org/packages/48/cf/1680291c3332e066e0fa0efb42d478cddd71ce5afd22f46625b411b13654/filterpy-1.4.4.zip" } ], "1.4.5": [ { "comment_text": "", "digests": { "md5": "40b17012e98c358e6e6827e05ba02398", "sha256": "4f2a4d39e4ea601b9ab42b2db08b5918a9538c168cff1c6895ae26646f3d73b1" }, "downloads": -1, "filename": "filterpy-1.4.5.zip", "has_sig": false, "md5_digest": "40b17012e98c358e6e6827e05ba02398", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 177985, "upload_time": "2018-10-10T22:38:24", "url": "https://files.pythonhosted.org/packages/f6/1d/ac8914360460fafa1990890259b7fa5ef7ba4cd59014e782e4ab3ab144d8/filterpy-1.4.5.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "40b17012e98c358e6e6827e05ba02398", "sha256": "4f2a4d39e4ea601b9ab42b2db08b5918a9538c168cff1c6895ae26646f3d73b1" }, "downloads": -1, "filename": "filterpy-1.4.5.zip", "has_sig": false, "md5_digest": "40b17012e98c358e6e6827e05ba02398", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 177985, "upload_time": "2018-10-10T22:38:24", "url": "https://files.pythonhosted.org/packages/f6/1d/ac8914360460fafa1990890259b7fa5ef7ba4cd59014e782e4ab3ab144d8/filterpy-1.4.5.zip" } ] }