{ "info": { "author": "Fergal Mullally, Tom Barclay, Geert Barentsen", "author_email": "keplergo@mail.arc.nasa.gov", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering :: Astronomy" ], "description": "# K2fov [![PyPI](http://img.shields.io/pypi/v/K2fov.svg)](https://pypi.python.org/pypi/K2fov/) [![Travis status](https://travis-ci.org/KeplerGO/K2fov.svg)](https://travis-ci.org/KeplerGO/K2fov) [![ADS Bibcode](https://img.shields.io/badge/NASA%20ADS-2016ascl.soft01009M-blue.svg)](http://adsabs.harvard.edu/abs/2016ascl.soft01009M)\n***Check whether targets are in the field of view of NASA's K2 mission.***\n\nThe `K2fov` Python package allows users to check whether a target is in the field of view of K2. \nIn particular, the package adds the `K2onSilicon` and `K2findCampaigns` tools\nto the command line, which allow the visibility of targets to be checked\nduring one (`K2onSilicon`) or all (`K2findCampaigns`) campaigns, respectively.\nThe usage of these tools is explained below.\n\n## Installation\n\nYou will need a modern version of Python 2 or 3 on your system.\nIf this requirement is met, you can install `K2fov` using `pip`:\n```bash\npip install K2fov\n```\nif you have a previous version installed, please make sure you upgrade to the\nlatest version using:\n```bash\npip install K2fov --upgrade\n```\nIt is important to upgrade frequently to ensure that you are using the most\nup to date K2 field parameters.\n\nIf you require to install the latest development version,\ne.g. to test a bugfix, then you can install\nthe package straight from the git repository as follows:\n```\ngit clone https://github.com/KeplerGO/K2fov.git\ncd K2fov\npython setup.py install\n```\n\n\n## Usage\n\n### K2onSilicon\n\nInstalling `K2fov` will automatically add a command line tool \nto your path called `K2onSilicon`, which takes a list of targets\nas input and writes a new list that indicates the \"silicon status\"\nof each target, i.e. whether or not it falls on one of the\ndetectors of the spacecraft's focal plane.\n\n**Example**\n\nThe simplest thing to do is to have a CSV file with columns\n\"RA_degrees, Dec_degrees, Kepmag\".\nDo not use a header.\n\nFor example, create a file called `mytargetlist.csv` containing\nthe following rows:\n```bash\n178.19284, 1.01924, 13.2\n171.14213, 5.314616, 11.3\n```\nThe format for the target list is very strict -- you need three\ncolumns: RA in degrees, Declination in degrees and Kepler\nmagnitude. Headers or other additional columns will cause an execution\nfailure.\n\nYou can then check whether each object in the file falls on silicon\nby calling `K2onSilicon` from the command line:\n```bash\nK2onSilicon mytargetlist.csv 1\n```\nWhere `mytargetlist.csv` is your CSV file and `1` is the K2 Campaign number.\n\nRunning the code will output an updated target list containing the three input columns and an extra column containing either a \"0\" or \"2\".
\n0 = Not observable
\n2 = Target is in the K2 field of view and on silicon
\n\nThe code will also write an image, called `targets_fov.png`, showing where the targets fall.\n\nExecute `K2onSilicon --help` to be reminded of its usage:\n```\n$ K2onSilicon --help\nusage: K2onSilicon [-h] csv_file campaign\n\nRun K2onSilicon to find which targets in a list call on active silicon for a\ngiven K2 campaign.\n\npositional arguments:\n csv_file Name of input csv file with targets, column are Ra_degrees,\n Dec_degrees, Kepmag\n campaign K2 Campaign number\n\noptional arguments:\n -h, --help show this help message and exit\n```\n\n\n### K2findCampaigns\n\nIf instead of checking the targets in a single campaign,\nyou want to understand whether a target is visible in *any* past or\nfuture K2 Campaign, you can use a different tool called `K2findCampaigns`.\n\n**Example**\n\nFor example, to verify whether J2000 coordinate\n(ra, dec) = (269.5, -28.5) degrees is visible at any point\nduring the K2 mission, type:\n```\n$ K2findCampaigns 269.5 -28.5\nSuccess! The target is on silicon during K2 campaigns [9].\nPosition in C9: channel 31, col 613, row 491.\n```\n\nYou can also search by name.\nFor example, to check whether *T Tauri* is visible, type:\n```\n$ K2findCampaigns-byname \"T Tauri\"\nSuccess! T Tauri is on silicon during K2 campaigns [4].\nPosition in C4: channel 3, col 62, row 921.\n```\n\nFinally, you can check a list of targets (either using their coordinates or names), using `K2findCampaigns-csv`.\nFor example:\n```\n$ K2findCampaigns-csv targets.csv\nWriting targets.csv-K2findCampaigns.csv.\n```\n\n**More information**\n\nExecute `K2findCampaigns --help`, `K2findCampaigns-byname --help` or `K2findCampaigns-csv --help` to be reminded of the use:\n```\n$ K2findCampaigns --help\nusage: K2findCampaigns [-h] [-p] ra dec\n\nCheck if a celestial coordinate is (or was) observable by any past or future\nobserving campaign of NASA's K2 mission.\n\npositional arguments:\n ra Right Ascension in decimal degrees (J2000).\n dec Declination in decimal degrees (J2000).\n\noptional arguments:\n -h, --help show this help message and exit\n -p, --plot Produce a plot showing the target position with respect to all\n K2 campaigns.\n```\n\n```\nK2findCampaigns-byname --help\nusage: K2findCampaigns-byname [-h] [-p] name\n\nCheck if a target is (or was) observable by any past or future observing\ncampaign of NASA's K2 mission.\n\npositional arguments:\n name Name of the object. This will be passed on to the CDS name\n resolver to retrieve coordinate information.\n\noptional arguments:\n -h, --help show this help message and exit\n -p, --plot Produce a plot showing the target position with respect to all\n K2 campaigns.\n```\n\n```\n$ K2findCampaigns-csv --help\nusage: K2findCampaigns-csv [-h] input_filename\n\nCheck which objects listed in a CSV table are (or were) observable by NASA's\nK2 mission.\n\npositional arguments:\n input_filename Path to a comma-separated table containing columns\n 'ra,dec,kepmag' (decimal degrees) or 'name'.\n\noptional arguments:\n -h, --help show this help message and exit\n```\n\n\n### K2inMicrolensRegion\n\nFinally, this package adds the `K2inMicrolensRegion` tool to check if a\ncelestial coordinate is inside the 3-megapixel superstamp region\nthat has been allocated to the [Campaign 9 microlensing experiment](http://keplerscience.arc.nasa.gov/k2-c9.html).\nThe stamp covers a large, ~contiguous region towards the Galactic Bulge.\n```\n$ K2inMicrolensRegion --help\nusage: K2inMicrolensRegion [-h] ra dec\n\nCheck if a celestial coordinate is inside the K2C9 microlensing superstamp.\n\npositional arguments:\n ra Right Ascension in decimal degrees (J2000).\n dec Declination in decimal degrees (J2000).\n\noptional arguments:\n -h, --help show this help message and exit\n```\n\n\n## Attribution\n\n`K2fov` was created by Fergal Mullally, Thomas Barclay, and Geert Barentsen\nfor NASA's Kepler/K2 Guest Observer Office.\nIf this tool aided your research, please cite it using the ADS bibcode\n([2016ascl.soft01009M](http://adsabs.harvard.edu/abs/2016ascl.soft01009M))\nand its DOI identifier ([10.5281/zenodo.44283](https://zenodo.org/record/44283)).\n\nThe BibTeX entry is as follows:\n```\n@MISC{2016ascl.soft01009M,\n author = {{Mullally}, Fergal; {Barclay}, Thomas; {Barentsen}, Geert},\n title = \"{K2fov: Field of view software for NASA's K2 mission}\",\n howpublished = {Astrophysics Source Code Library},\n year = 2016,\n month = jan,\n archivePrefix = \"ascl\",\n eprint = {1601.009},\n adsurl = {http://adsabs.harvard.edu/abs/2016ascl.soft01009M},\n adsnote = {Provided by the SAO/NASA Astrophysics Data System},\n doi = {10.5281/zenodo.44283},\n url = {http://dx.doi.org/10.5281/zenodo.44283}\n}\n```", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/KeplerGO/K2fov", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "K2fov", "package_url": "https://pypi.org/project/K2fov/", "platform": "", "project_url": "https://pypi.org/project/K2fov/", "project_urls": { "Homepage": "https://github.com/KeplerGO/K2fov" }, "release_url": "https://pypi.org/project/K2fov/8.0.0/", "requires_dist": null, "requires_python": "", "summary": "Find which targets are in the field of view of K2", "version": "8.0.0" }, "last_serial": 3925434, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "03d5c9f45e268d76b1c2adb197af598b", "sha256": "ca77759f1492322cb63b4cb93a4c4287cd066a39e4a18e970200158eb934a01c" }, "downloads": -1, "filename": "K2fov-1.0.0.tar.gz", "has_sig": false, "md5_digest": "03d5c9f45e268d76b1c2adb197af598b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21946, "upload_time": "2014-02-06T00:44:25", "url": "https://files.pythonhosted.org/packages/13/e5/a6176700c67506a49c3db47beb06b6c4a2b0da4e3849edba66b9fcba1d5e/K2fov-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "357c66c90cd5ca07529d83c045b8a51b", "sha256": "3de62c55b6f491c5e00d0b45daa67017be7bd8fb8bbf15befba668acc740e2e8" }, "downloads": -1, "filename": "K2fov-1.0.1.tar.gz", "has_sig": false, "md5_digest": "357c66c90cd5ca07529d83c045b8a51b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21971, "upload_time": "2014-02-06T01:16:59", "url": "https://files.pythonhosted.org/packages/ec/53/d42f61fed900bb4635b569f854fea5d6f3c7a48170b363159364625d9aff/K2fov-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "015e24e0442369854851ed4c1b93d1c1", "sha256": "d7517d60e77363ea19b53a1dc856d0c89757c824512d77b134514a207432a8f9" }, "downloads": -1, "filename": "K2fov-1.0.2.tar.gz", "has_sig": false, "md5_digest": "015e24e0442369854851ed4c1b93d1c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21980, "upload_time": "2014-02-07T18:43:39", "url": "https://files.pythonhosted.org/packages/27/e1/d662700b5ca26eac866ddd9a68f18bfa99adc532ffffcb76e06dbc2b4ef2/K2fov-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "8dc7b7015986d8c9d4840ed2e2ab2eb7", "sha256": "0ab61bb2b3870dd36bd59eb006fbf35a3bf5ec681d310c9d91017b4e1c53b60e" }, "downloads": -1, "filename": "K2fov-1.0.3.tar.gz", "has_sig": false, "md5_digest": "8dc7b7015986d8c9d4840ed2e2ab2eb7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21987, "upload_time": "2014-02-07T19:09:28", "url": "https://files.pythonhosted.org/packages/73/73/a8868a62dabec34e14a274e1afd2c01045136d5b9c4628692900bda504b4/K2fov-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "48f1a228cf4d1f41adad74683ce15e0f", "sha256": "f76455d143db17ad975036e314e31b35a0696c0e6647982021570d6c87ea09d9" }, "downloads": -1, "filename": "K2fov-1.0.4.tar.gz", "has_sig": false, "md5_digest": "48f1a228cf4d1f41adad74683ce15e0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21989, "upload_time": "2014-02-13T19:58:03", "url": "https://files.pythonhosted.org/packages/3c/0b/bfd48c32b0525f5ba56dc51bfda2bfa252b39c27f75a91e7069dfff9c761/K2fov-1.0.4.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "5503857a17b939cade7e4d3a8c4e58ac", "sha256": "618179a5b46a8af02c005a20138a37611ae41e31494887a7bf65b54508642791" }, "downloads": -1, "filename": "K2fov-1.1.4.tar.gz", "has_sig": false, "md5_digest": "5503857a17b939cade7e4d3a8c4e58ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22362, "upload_time": "2014-02-26T00:09:45", "url": "https://files.pythonhosted.org/packages/c0/66/5d23b9b0f7000b356217766e3879c85acadb7fdca6f5252de808f74ff380/K2fov-1.1.4.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "0fee46ca8d30ed18032ecb0e1ac9166d", "sha256": "658489317a3167dd069973c4b959c80270108a727816df3a2aabf33d0e89c6e8" }, "downloads": -1, "filename": "K2fov-1.2.4.tar.gz", "has_sig": false, "md5_digest": "0fee46ca8d30ed18032ecb0e1ac9166d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22424, "upload_time": "2014-04-05T19:40:26", "url": "https://files.pythonhosted.org/packages/c0/b4/7f9fcf50d79b1882ca90b503100abe41953a9aca2b5f8287c3f5d69bf2d9/K2fov-1.2.4.tar.gz" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "0c8fe4559ebf7009aeb1d0b1e33b8ef8", "sha256": "839e1a777f4ac6f6d0bae9842b9161f3f740dd4737f64473ce273e1d618a41dd" }, "downloads": -1, "filename": "K2fov-1.2.5.tar.gz", "has_sig": false, "md5_digest": "0c8fe4559ebf7009aeb1d0b1e33b8ef8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22432, "upload_time": "2014-04-23T22:42:22", "url": "https://files.pythonhosted.org/packages/14/84/dee814cb33823268c199f0f42761478d20b4190afd1023d32bf6c0725dac/K2fov-1.2.5.tar.gz" } ], "1.2.6": [ { "comment_text": "", "digests": { "md5": "b96b5101e71fa3c842e6d3b70f4e9823", "sha256": "f179b3dd459de15873e6bf5e7d0425c85b51bc902ab8c71df9597a8d27b0aff5" }, "downloads": -1, "filename": "K2fov-1.2.6.tar.gz", "has_sig": false, "md5_digest": "b96b5101e71fa3c842e6d3b70f4e9823", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22453, "upload_time": "2014-05-12T01:04:34", "url": "https://files.pythonhosted.org/packages/a4/4c/ee821bcb7c838b273b6078e24874376941907c3e437b5cd0fc9cd8c4689b/K2fov-1.2.6.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "346f8ee6c952ebf4ae382fabe6fda573", "sha256": "496c648fe7069c4eeb9be9dd4cb63d2458eb46d7451df32c469a7eed064be93c" }, "downloads": -1, "filename": "K2fov-1.3.0.tar.gz", "has_sig": false, "md5_digest": "346f8ee6c952ebf4ae382fabe6fda573", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22469, "upload_time": "2014-06-12T16:47:04", "url": "https://files.pythonhosted.org/packages/62/39/7266610a6addbbddce9b5502a2543bdc073892a830ab9412e5bff12dd3b7/K2fov-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "738f6834fce585fb8657a8ed8a72d12b", "sha256": "7c8ecefb999b61f3a42f40f339ff454608844c17e539554896c260653260e471" }, "downloads": -1, "filename": "K2fov-1.3.1.tar.gz", "has_sig": false, "md5_digest": "738f6834fce585fb8657a8ed8a72d12b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22488, "upload_time": "2014-06-27T01:25:50", "url": "https://files.pythonhosted.org/packages/68/47/14dd4dcda16fdbae6964c42ee961e31a22d9ff0351daa8b2b717eb7cba18/K2fov-1.3.1.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "7029141b3b92db54a26cd6151003a46d", "sha256": "ea31f19f291376d2e21d8abb3e885efe542431c07d04eb5d6f665a853d5f0d35" }, "downloads": -1, "filename": "K2fov-1.4.0.tar.gz", "has_sig": false, "md5_digest": "7029141b3b92db54a26cd6151003a46d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22705, "upload_time": "2014-09-02T20:37:21", "url": "https://files.pythonhosted.org/packages/ad/48/49cf4f41b3de2e0840e779d4e0b3e9f909a1eff107726a7fbe8fd5fe0033/K2fov-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "124ee0dc66304c3147f78d9dc0a6622b", "sha256": "924b6e91e59f27fe97cfe2bbb88e21242145d9959180bc4b8767c36392d90f2c" }, "downloads": -1, "filename": "K2fov-1.4.1.tar.gz", "has_sig": false, "md5_digest": "124ee0dc66304c3147f78d9dc0a6622b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22799, "upload_time": "2014-09-26T18:05:33", "url": "https://files.pythonhosted.org/packages/2f/3a/d0bf4a6686ac08963d12b514c3dff7feb62516ecb64218e5b68a0f43f17c/K2fov-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "20e2e69d498bda7cd56adf6604736a1f", "sha256": "bd5081f77304c80fb4032f9e28f815b9f37765f586b168086a2b077bec5ba0a3" }, "downloads": -1, "filename": "K2fov-1.4.2.tar.gz", "has_sig": false, "md5_digest": "20e2e69d498bda7cd56adf6604736a1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22799, "upload_time": "2014-10-28T15:48:22", "url": "https://files.pythonhosted.org/packages/47/c1/6315201d974c0d9913371ca88f8899bcf5a115c5523b27dbf0c24aa2fd1a/K2fov-1.4.2.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "68c136aad89f5193da2019a0153b355c", "sha256": "12a451e4033f4f547b5afeb62c14af08af6c02c8aa33cb92fb8cadddd8f15aad" }, "downloads": -1, "filename": "K2fov-1.5.0.tar.gz", "has_sig": false, "md5_digest": "68c136aad89f5193da2019a0153b355c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23083, "upload_time": "2015-01-30T18:57:15", "url": "https://files.pythonhosted.org/packages/4f/72/6e9635d5da438e9d2c03aa00e6b442295330c844f624f739517fc5114480/K2fov-1.5.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "8564f41f1040a82660e6c655e637e8a5", "sha256": "a1b37f3e58d3e203b88d8687f3f6763e4cc87c75521b574a9c0ac5268223b1b8" }, "downloads": -1, "filename": "K2fov-1.6.0.tar.gz", "has_sig": false, "md5_digest": "8564f41f1040a82660e6c655e637e8a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23125, "upload_time": "2015-03-02T18:48:45", "url": "https://files.pythonhosted.org/packages/0f/54/49a053a784805eaa63f37c1547148167d610c2ef830e45ccef8d23831375/K2fov-1.6.0.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "6cc177dd273066f41e2d48925814660e", "sha256": "8bdd6d26c5ddbb89a637ccfc25cac3afbbbba9a4cee97c9868bca778904dfc87" }, "downloads": -1, "filename": "K2fov-1.7.0.tar.gz", "has_sig": false, "md5_digest": "6cc177dd273066f41e2d48925814660e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23087, "upload_time": "2015-04-14T21:38:31", "url": "https://files.pythonhosted.org/packages/0e/11/12816dccae16c9945c8869b2ce311ad03a822ac12064a0212c276174f7dd/K2fov-1.7.0.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "2def5ccdf97ce055d4a7eb4e162ac6bd", "sha256": "81bb561e1f55df3e39c6487eef0ec520e49f2454bf2a25e675e8431d45c1ac30" }, "downloads": -1, "filename": "K2fov-1.8.0.tar.gz", "has_sig": false, "md5_digest": "2def5ccdf97ce055d4a7eb4e162ac6bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23087, "upload_time": "2015-06-02T22:21:51", "url": "https://files.pythonhosted.org/packages/55/bd/15e292e95b3a3995cb6701fb955f5520e1854dffb746e40106c318f5bdfe/K2fov-1.8.0.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "d25df750885a5d13b063d1f7b68b45e9", "sha256": "f16cb2e05c9fbf35a3d068e58764ee823d67f025a35b7356e8a0bad262b605bb" }, "downloads": -1, "filename": "K2fov-1.9.0.tar.gz", "has_sig": false, "md5_digest": "d25df750885a5d13b063d1f7b68b45e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23592, "upload_time": "2015-10-31T18:38:55", "url": "https://files.pythonhosted.org/packages/0b/9d/1e150a020b025affff5a7068dcd067f180ba5e2c19fdadf20d48edf9e6d2/K2fov-1.9.0.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "c604e1141ca8a9393fc94065572d5028", "sha256": "fc8f0362b32a3834e188f68dc354c28234697acd93aa6f9ff5eb46757e379833" }, "downloads": -1, "filename": "K2fov-1.9.1.tar.gz", "has_sig": false, "md5_digest": "c604e1141ca8a9393fc94065572d5028", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23752, "upload_time": "2015-11-06T22:11:27", "url": "https://files.pythonhosted.org/packages/fa/b8/a867cb84453469c29e8215d75d58b47f050a69a382cb3e5fe226c8f2b4d5/K2fov-1.9.1.tar.gz" } ], "1.9.2": [ { "comment_text": "", "digests": { "md5": "04a1c13b1d88b22041073733a86abe7e", "sha256": "fc6e8e4190f1ecabf7548f19df93c97c3250e6057ec043cba418ef4e319dfd6d" }, "downloads": -1, "filename": "K2fov-1.9.2.tar.gz", "has_sig": false, "md5_digest": "04a1c13b1d88b22041073733a86abe7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23751, "upload_time": "2015-11-18T13:14:24", "url": "https://files.pythonhosted.org/packages/5a/97/8ff110b4db68a869f562938100f4798eb1ea2a8b3f4c53715d5ae53def05/K2fov-1.9.2.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "8e58ca0a5180bf333e1967491b665fa9", "sha256": "12b37345889b43d1a0eef93f17cbbe207ea2c689127c3c47be77a11b9cffb549" }, "downloads": -1, "filename": "K2fov-2.0.0.tar.gz", "has_sig": false, "md5_digest": "8e58ca0a5180bf333e1967491b665fa9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26025, "upload_time": "2015-11-30T17:49:44", "url": "https://files.pythonhosted.org/packages/c9/b5/1bd4cf06cfa8ed1b6ac25032c0ed7767a54edd0038439febaddd01301180/K2fov-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "ba5d90f9adcf59ce7536dcec1d303c50", "sha256": "e4544b84c8158bbed43e8f3bba5f9776aa22310ab7714597ab0ec3b31ac3f7f7" }, "downloads": -1, "filename": "K2fov-2.0.1.tar.gz", "has_sig": false, "md5_digest": "ba5d90f9adcf59ce7536dcec1d303c50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26030, "upload_time": "2015-12-07T20:06:26", "url": "https://files.pythonhosted.org/packages/21/6f/cbe9b0291607f394bc7ef49b0b13aca850eaae5cb672c4d2ce3fd20d7990/K2fov-2.0.1.tar.gz" } ], "2.1.dev0": [ { "comment_text": "", "digests": { "md5": "f96f45d8b3d2c70d09fc00a89d259dd6", "sha256": "7bb88f92080962fc37da1c05c6f089963d403d756044d6244b5a08b24db8cf59" }, "downloads": -1, "filename": "K2fov-2.1.dev0.tar.gz", "has_sig": false, "md5_digest": "f96f45d8b3d2c70d09fc00a89d259dd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30393, "upload_time": "2015-12-30T22:02:17", "url": "https://files.pythonhosted.org/packages/76/27/cbd610a22b0f13be1d3b67e43f004f52653ae74ced451d9736361fb05d53/K2fov-2.1.dev0.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "c70c3f660887cf22b0d5ee4d0c78fd6a", "sha256": "3e49028954071182c7180ba19d85e86363669b2043ab06b8eee988a3b8883db9" }, "downloads": -1, "filename": "K2fov-3.0.0.tar.gz", "has_sig": false, "md5_digest": "c70c3f660887cf22b0d5ee4d0c78fd6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31472, "upload_time": "2015-12-30T22:09:25", "url": "https://files.pythonhosted.org/packages/ca/c1/2260ecc112cb09f11fdceef45ae17fc4b016009c6e2e7633c7161eda03bb/K2fov-3.0.0.tar.gz" } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "afacb7e8f775f2150c46a23ac310f777", "sha256": "e38d2fd7277e6461eba931c6f59e5d3c88fff6d44767951b29b16e80a9aedcd2" }, "downloads": -1, "filename": "K2fov-3.0.2.tar.gz", "has_sig": false, "md5_digest": "afacb7e8f775f2150c46a23ac310f777", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34195, "upload_time": "2016-01-06T21:55:45", "url": "https://files.pythonhosted.org/packages/ad/08/d358d53ed22a04bee4696e3c15c207aeacd97d7865563439d70d36e3d089/K2fov-3.0.2.tar.gz" } ], "3.0.3": [ { "comment_text": "", "digests": { "md5": "6c549b391d09de0cdabea8d72279e9a4", "sha256": "8e5ddd10a210c73ea0807032edbd3cd30ca76852f61cbd3ff93a7b09906bc6b4" }, "downloads": -1, "filename": "K2fov-3.0.3.tar.gz", "has_sig": false, "md5_digest": "6c549b391d09de0cdabea8d72279e9a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34268, "upload_time": "2016-01-07T15:33:29", "url": "https://files.pythonhosted.org/packages/04/ec/464a892926db17796071ef901a3eef8b61f39ad4c52908cfe70668fef958/K2fov-3.0.3.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "d2b5383cb5191a45daee5719bfdb3198", "sha256": "c9f53ff8581c6e122f22a4f2d538af4305e16892165fe8421abc135c31becc25" }, "downloads": -1, "filename": "K2fov-4.0.0.tar.gz", "has_sig": false, "md5_digest": "d2b5383cb5191a45daee5719bfdb3198", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35103, "upload_time": "2016-01-27T23:33:12", "url": "https://files.pythonhosted.org/packages/2d/c3/38c4d2a4ade53633a1ba5037fc5d54a03070880f2cba31f35874082409f3/K2fov-4.0.0.tar.gz" } ], "4.0.2": [ { "comment_text": "", "digests": { "md5": "71c56b7ad8974448ba2ffc841bd06479", "sha256": "7ec8f03cf1a6fffa83fb895ad5e8f37c085e6123aaaaa58c8270e0934366214b" }, "downloads": -1, "filename": "K2fov-4.0.2.tar.gz", "has_sig": false, "md5_digest": "71c56b7ad8974448ba2ffc841bd06479", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35216, "upload_time": "2016-03-01T21:27:19", "url": "https://files.pythonhosted.org/packages/df/35/71762170719ed21dfc39e86d7a9c991ea59296c3a743fc08a8338be32a4b/K2fov-4.0.2.tar.gz" } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "1e0e6133ffce9f3e4028aa8080c201e5", "sha256": "3d130ce6c03002f29913850a2e583cccdc9e800701f83987ea7c875eaccd86ef" }, "downloads": -1, "filename": "K2fov-4.1.0.tar.gz", "has_sig": false, "md5_digest": "1e0e6133ffce9f3e4028aa8080c201e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41869, "upload_time": "2016-04-02T06:15:54", "url": "https://files.pythonhosted.org/packages/97/14/4f19eadbf2cc7a6cfc22ece22e3a54865ae4deebb6018b877fd7d64c332d/K2fov-4.1.0.tar.gz" } ], "4.2.0": [ { "comment_text": "", "digests": { "md5": "cca06bdaa6c34728dd6ae397956a29af", "sha256": "35781cce41bc6b90a81d777c6636888725254bdd32252b966aec470fdbe64f88" }, "downloads": -1, "filename": "K2fov-4.2.0.tar.gz", "has_sig": false, "md5_digest": "cca06bdaa6c34728dd6ae397956a29af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51185, "upload_time": "2016-06-08T17:27:43", "url": "https://files.pythonhosted.org/packages/d2/da/f09c6809760f1b6ba0e207be14fe2d107c38f6d026b1becaaaf6cd7b7117/K2fov-4.2.0.tar.gz" } ], "5.0.0": [ { "comment_text": "", "digests": { "md5": "ca0bf9f3116c1ac581cdc513a9358c69", "sha256": "700fea694796d66f63a2a7c30677a828fff5a3cbe314e7d0d5bb6eb15b5c0483" }, "downloads": -1, "filename": "K2fov-5.0.0.tar.gz", "has_sig": false, "md5_digest": "ca0bf9f3116c1ac581cdc513a9358c69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51187, "upload_time": "2016-08-01T18:36:12", "url": "https://files.pythonhosted.org/packages/ff/d3/b6683d21618047e1285901b85cddee092378511c60642734f7afe43cf83c/K2fov-5.0.0.tar.gz" } ], "5.1.0": [ { "comment_text": "", "digests": { "md5": "c1faa54b336ed3ec4a39b0b9f4b2e1ed", "sha256": "98e80fcd064ff42cbe6e37c6d3420b3a1ab77dbbba18d3940eebe909253f5117" }, "downloads": -1, "filename": "K2fov-5.1.0.tar.gz", "has_sig": false, "md5_digest": "c1faa54b336ed3ec4a39b0b9f4b2e1ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51219, "upload_time": "2016-08-14T18:14:52", "url": "https://files.pythonhosted.org/packages/b8/e9/e8ea632464b7f3f4222369e270f8061e77926d35a5436be0e13d6137cca2/K2fov-5.1.0.tar.gz" } ], "5.2.0": [ { "comment_text": "", "digests": { "md5": "53249108ee5046c7b76303c3a2fe081c", "sha256": "dcc1b4cf02ba6ddc4085c1638e2b797684d012d8308db46f5bf0f64b20bc62ac" }, "downloads": -1, "filename": "K2fov-5.2.0.tar.gz", "has_sig": false, "md5_digest": "53249108ee5046c7b76303c3a2fe081c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51198, "upload_time": "2016-09-08T21:53:16", "url": "https://files.pythonhosted.org/packages/1d/77/50f2f8ff8fec1696b5727fa584883458f1adcd3441d254683912e9be856d/K2fov-5.2.0.tar.gz" } ], "6.0.0": [ { "comment_text": "", "digests": { "md5": "9ad17e06b01a37b416e4c86b44e8ffd7", "sha256": "faaa69f0834530e584b7fa04978c899553938edb23f8b467e28b1687775515be" }, "downloads": -1, "filename": "K2fov-6.0.0.tar.gz", "has_sig": false, "md5_digest": "9ad17e06b01a37b416e4c86b44e8ffd7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51579, "upload_time": "2016-09-22T18:05:00", "url": "https://files.pythonhosted.org/packages/ab/04/2cc882d598ca631a028c1561d438082506e9a3f032f813464427c9574b56/K2fov-6.0.0.tar.gz" } ], "6.1.0": [ { "comment_text": "", "digests": { "md5": "6fc0f3a7f417c3d2d4162c5cf6bdd41f", "sha256": "eaf84d6d090172f4126aef2f65ae7d2951f889185bb6e0db20f429443e43c9f8" }, "downloads": -1, "filename": "K2fov-6.1.0.tar.gz", "has_sig": false, "md5_digest": "6fc0f3a7f417c3d2d4162c5cf6bdd41f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49469, "upload_time": "2016-10-26T18:13:18", "url": "https://files.pythonhosted.org/packages/49/68/2efb16bcaed998cee6c80151fcab999cfd639eab0232a19435bdb15d5630/K2fov-6.1.0.tar.gz" } ], "6.2.0": [ { "comment_text": "", "digests": { "md5": "10fb7c4eb8409bc5476f40d324190780", "sha256": "0e9bc9de2bb9ef294aa0826abb4a21cf98320b25f05008e7edc7b83fbe07f013" }, "downloads": -1, "filename": "K2fov-6.2.0.tar.gz", "has_sig": false, "md5_digest": "10fb7c4eb8409bc5476f40d324190780", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49483, "upload_time": "2016-11-14T18:50:11", "url": "https://files.pythonhosted.org/packages/94/c4/a3f31751d961406fb6b05eab1a2ebc36002b84fcf3973bd49731c1bded5d/K2fov-6.2.0.tar.gz" } ], "6.3.dev0": [ { "comment_text": "", "digests": { "md5": "a50a198054c95be1a5d26694907a4457", "sha256": "fd81cbed186d33277445fbcfe844b97e68f8324c2bf865c440c362b177c11c25" }, "downloads": -1, "filename": "K2fov-6.3.dev0.tar.gz", "has_sig": false, "md5_digest": "a50a198054c95be1a5d26694907a4457", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50353, "upload_time": "2017-02-25T05:10:40", "url": "https://files.pythonhosted.org/packages/89/74/892aaff6e65029b939c162f6fa9682900b63d32c7499d984c38571f79240/K2fov-6.3.dev0.tar.gz" } ], "7.0.0": [ { "comment_text": "", "digests": { "md5": "9ba7161071070e6e642649fa833a1772", "sha256": "5956fc2a897760f4c25617105a8bae654597adee9ee05e41e531b07d01481e6a" }, "downloads": -1, "filename": "K2fov-7.0.0.tar.gz", "has_sig": false, "md5_digest": "9ba7161071070e6e642649fa833a1772", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53051, "upload_time": "2017-06-16T21:19:46", "url": "https://files.pythonhosted.org/packages/12/c1/028861aedfa442bb1cd5a6eeae362704ccf8d600d4733ba62e449fd3d0a7/K2fov-7.0.0.tar.gz" } ], "7.1.0": [ { "comment_text": "", "digests": { "md5": "c9bbcc7ddaa2c066c64fd13db4ca0512", "sha256": "d11d830eef90d78b45c8202da0c6c15344b972ba7dfeb5468acfbc62a2a68027" }, "downloads": -1, "filename": "K2fov-7.1.0.tar.gz", "has_sig": false, "md5_digest": "c9bbcc7ddaa2c066c64fd13db4ca0512", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53053, "upload_time": "2017-07-03T19:48:09", "url": "https://files.pythonhosted.org/packages/a1/73/a3996b542fd11955c45268ac33aa3e64eebfadf57910564729278995624b/K2fov-7.1.0.tar.gz" } ], "7.1.1": [ { "comment_text": "", "digests": { "md5": "597b30ede4287a1131edfeec508c0a49", "sha256": "f68f4b0dc99bc83b0b228f831b23b9bbb4e31821bd97bc15ca761e1398ef7f69" }, "downloads": -1, "filename": "K2fov-7.1.1.tar.gz", "has_sig": false, "md5_digest": "597b30ede4287a1131edfeec508c0a49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53059, "upload_time": "2017-07-19T16:39:39", "url": "https://files.pythonhosted.org/packages/47/12/cef66cb88d411db888ec08298e434f721e3ebfc3018e7b2b54824eb66144/K2fov-7.1.1.tar.gz" } ], "7.1.2": [ { "comment_text": "", "digests": { "md5": "94af82870e31f984474adaf4769ea327", "sha256": "8228a4c7a0849c780f42ecd502ba42ff7e76ae1f55c38935d25585e06c9f8cff" }, "downloads": -1, "filename": "K2fov-7.1.2.tar.gz", "has_sig": false, "md5_digest": "94af82870e31f984474adaf4769ea327", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56558, "upload_time": "2018-05-16T04:42:51", "url": "https://files.pythonhosted.org/packages/b6/f0/ce00c9722b85ab6a91659a3efca64d7d5733de74c39a613caa6e58b281e5/K2fov-7.1.2.tar.gz" } ], "8.0.0": [ { "comment_text": "", "digests": { "md5": "fa29e1446fe640518d3ad8ec5abdb082", "sha256": "8f13657f6b4796e3f3be8276c786163c136b2d529e31b48a10d0b8b25424eeb4" }, "downloads": -1, "filename": "K2fov-8.0.0.tar.gz", "has_sig": false, "md5_digest": "fa29e1446fe640518d3ad8ec5abdb082", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56581, "upload_time": "2018-06-03T14:10:36", "url": "https://files.pythonhosted.org/packages/e9/83/6caf8a902c0837b7afcaaba82bafa11f8ca899cd934123c14454c5459f5d/K2fov-8.0.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "fa29e1446fe640518d3ad8ec5abdb082", "sha256": "8f13657f6b4796e3f3be8276c786163c136b2d529e31b48a10d0b8b25424eeb4" }, "downloads": -1, "filename": "K2fov-8.0.0.tar.gz", "has_sig": false, "md5_digest": "fa29e1446fe640518d3ad8ec5abdb082", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56581, "upload_time": "2018-06-03T14:10:36", "url": "https://files.pythonhosted.org/packages/e9/83/6caf8a902c0837b7afcaaba82bafa11f8ca899cd934123c14454c5459f5d/K2fov-8.0.0.tar.gz" } ] }