Lightkurve
==========
**A friendly package for Kepler & TESS time series analysis in Python.**
**Documentation: https://docs.lightkurve.org**
|test-badge| |conda-badge| |pypi-badge| |pypi-downloads| |doi-badge| |astropy-badge|
.. |conda-badge| image:: https://img.shields.io/conda/vn/conda-forge/lightkurve.svg
:target: https://anaconda.org/conda-forge/lightkurve
.. |pypi-badge| image:: https://img.shields.io/pypi/v/lightkurve.svg
:target: https://pypi.python.org/pypi/lightkurve
.. |pypi-downloads| image:: https://pepy.tech/badge/lightkurve
:target: https://pepy.tech/project/lightkurve
.. |test-badge| image:: https://github.com/lightkurve/lightkurve/workflows/Lightkurve-tests/badge.svg
:target: https://github.com/lightkurve/lightkurve/actions?query=branch%3Amain
.. |astropy-badge| image:: https://img.shields.io/badge/powered%20by-AstroPy-orange.svg?style=flat
:target: http://www.astropy.org
.. |doi-badge| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.1181928.svg
:target: https://docs.lightkurve.org/about/citing.html
**Lightkurve** is a community-developed, open-source Python package which offers a beautiful and user-friendly way
to analyze astronomical flux time series data,
in particular the pixels and lightcurves obtained by
**NASA's Kepler and TESS exoplanet missions**.
.. image:: https://raw.githubusercontent.com/lightkurve/lightkurve/main/docs/source/_static/images/lightkurve-teaser.gif
This package aims to lower the barrier for students, astronomers,
and citizen scientists interested in analyzing Kepler and TESS space telescope data.
It does this by providing **high-quality building blocks and tutorials**
which enable both hand-tailored data analyses and advanced automated pipelines.
Documentation
-------------
Read the documentation at `https://docs.lightkurve.org <https://docs.lightkurve.org>`_.
Quickstart and Installation
---------------------------
Please visit our quickstart guide at `https://docs.lightkurve.org/quickstart.html <https://docs.lightkurve.org/quickstart.html>`_.
The easiest way to install *Lightkurve* and all of its dependencies is to use the ``pip`` command,
which is a standard part of all Python distributions.
To install *Lightkurve*, run the following command in a terminal window::
$ python -m pip install lightkurve --upgrade
The ``--upgrade`` flag is optional, but recommended if you already
have *Lightkurve* installed and want to upgrade to the latest version.
Depending on the specific Python environment, you may need to replace ``python``
with the correct Python interpreter, e.g., ``python3``.
If you want to experiment with the latest development version of
*Lightkurve*, you can install it straight from the main branch on GitHub:
.. code-block:: bash
$ git clone https://github.com/lightkurve/lightkurve.git
$ cd lightkurve
$ python -m pip install .
If you want to have a so-called editable install which enables the installed
version to immediately reflect changes made in the source tree, you can use:
.. code-block:: bash
$ python -m pip install poetry
$ poetry install
Please see our guide on `https://docs.lightkurve.org/development/index.html <https://docs.lightkurve.org/development/index.html>`_
for additional instructions.
Contributing
------------
We welcome community contributions!
Please read the guidelines at `https://docs.lightkurve.org/development/contributing.html <https://docs.lightkurve.org/development/contributing.html>`_.
Citing
------
If you find Lightkurve useful in your research, please cite it and give us a GitHub star!
Please read the citation instructions at `https://docs.lightkurve.org/about/citing.html <https://docs.lightkurve.org/about/citing.html>`_.
Contact
-------
Lightkurve is an open source community project created by `the authors <AUTHORS.rst>`_.
The best way to contact us is to `open an issue <https://github.com/lightkurve/lightkurve/issues/new>`_ or to e-mail tesshelp@bigbang.gsfc.nasa.gov.
Please include a self-contained example that fully demonstrates your problem or question.
Raw data
{
"_id": null,
"home_page": "https://docs.lightkurve.org",
"name": "lightkurve",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "NASA, Kepler, TESS, Astronomy",
"author": "Geert Barentsen",
"author_email": "hello@geert.io",
"download_url": "https://files.pythonhosted.org/packages/1b/a0/04a218b6db46b9637cf90208ebc92449743c41467eabb3f0358f9ccb0a33/lightkurve-2.5.0.tar.gz",
"platform": null,
"description": "Lightkurve\n==========\n\n**A friendly package for Kepler & TESS time series analysis in Python.**\n\n**Documentation: https://docs.lightkurve.org**\n\n|test-badge| |conda-badge| |pypi-badge| |pypi-downloads| |doi-badge| |astropy-badge|\n\n.. |conda-badge| image:: https://img.shields.io/conda/vn/conda-forge/lightkurve.svg\n :target: https://anaconda.org/conda-forge/lightkurve\n.. |pypi-badge| image:: https://img.shields.io/pypi/v/lightkurve.svg\n :target: https://pypi.python.org/pypi/lightkurve\n.. |pypi-downloads| image:: https://pepy.tech/badge/lightkurve\n :target: https://pepy.tech/project/lightkurve\n.. |test-badge| image:: https://github.com/lightkurve/lightkurve/workflows/Lightkurve-tests/badge.svg\n :target: https://github.com/lightkurve/lightkurve/actions?query=branch%3Amain\n.. |astropy-badge| image:: https://img.shields.io/badge/powered%20by-AstroPy-orange.svg?style=flat\n :target: http://www.astropy.org\n.. |doi-badge| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.1181928.svg\n :target: https://docs.lightkurve.org/about/citing.html \n\n**Lightkurve** is a community-developed, open-source Python package which offers a beautiful and user-friendly way\nto analyze astronomical flux time series data,\nin particular the pixels and lightcurves obtained by\n**NASA's Kepler and TESS exoplanet missions**.\n\n.. image:: https://raw.githubusercontent.com/lightkurve/lightkurve/main/docs/source/_static/images/lightkurve-teaser.gif\n\nThis package aims to lower the barrier for students, astronomers,\nand citizen scientists interested in analyzing Kepler and TESS space telescope data.\nIt does this by providing **high-quality building blocks and tutorials**\nwhich enable both hand-tailored data analyses and advanced automated pipelines.\n\n\nDocumentation\n-------------\n\nRead the documentation at `https://docs.lightkurve.org <https://docs.lightkurve.org>`_.\n\n\nQuickstart and Installation\n---------------------------\n\nPlease visit our quickstart guide at `https://docs.lightkurve.org/quickstart.html <https://docs.lightkurve.org/quickstart.html>`_. \n\nThe easiest way to install *Lightkurve* and all of its dependencies is to use the ``pip`` command,\nwhich is a standard part of all Python distributions.\nTo install *Lightkurve*, run the following command in a terminal window::\n\n $ python -m pip install lightkurve --upgrade\n\nThe ``--upgrade`` flag is optional, but recommended if you already\nhave *Lightkurve* installed and want to upgrade to the latest version.\n\nDepending on the specific Python environment, you may need to replace ``python``\nwith the correct Python interpreter, e.g., ``python3``.\n\nIf you want to experiment with the latest development version of\n*Lightkurve*, you can install it straight from the main branch on GitHub:\n\n.. code-block:: bash\n\n $ git clone https://github.com/lightkurve/lightkurve.git\n $ cd lightkurve\n $ python -m pip install .\n\nIf you want to have a so-called editable install which enables the installed\nversion to immediately reflect changes made in the source tree, you can use:\n\n.. code-block:: bash\n\n $ python -m pip install poetry\n $ poetry install\n\nPlease see our guide on `https://docs.lightkurve.org/development/index.html <https://docs.lightkurve.org/development/index.html>`_\nfor additional instructions.\n\n\nContributing\n------------\n\nWe welcome community contributions!\nPlease read the guidelines at `https://docs.lightkurve.org/development/contributing.html <https://docs.lightkurve.org/development/contributing.html>`_.\n\n\nCiting\n------\n\nIf you find Lightkurve useful in your research, please cite it and give us a GitHub star!\nPlease read the citation instructions at `https://docs.lightkurve.org/about/citing.html <https://docs.lightkurve.org/about/citing.html>`_.\n\n\nContact\n-------\nLightkurve is an open source community project created by `the authors <AUTHORS.rst>`_.\nThe best way to contact us is to `open an issue <https://github.com/lightkurve/lightkurve/issues/new>`_ or to e-mail tesshelp@bigbang.gsfc.nasa.gov.\nPlease include a self-contained example that fully demonstrates your problem or question.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "A friendly package for Kepler & TESS time series analysis in Python.",
"version": "2.5.0",
"project_urls": {
"Bug Tracker": "https://github.com/lightkurve/lightkurve/issues",
"Documentation": "https://docs.lightkurve.org",
"Homepage": "https://docs.lightkurve.org",
"Repository": "https://github.com/lightkurve/lightkurve"
},
"split_keywords": [
"nasa",
" kepler",
" tess",
" astronomy"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "4a36d06ca0f6b653d03837e19a87e0dc04e2664a6363e66413427be6a57dc4ea",
"md5": "e1e49c1df286061dfb90525c3e03aaf2",
"sha256": "926052a4ea525d6cc46830c9d73f6bf39b81b939a2bf751537082048e3409cb4"
},
"downloads": -1,
"filename": "lightkurve-2.5.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "e1e49c1df286061dfb90525c3e03aaf2",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 270436,
"upload_time": "2024-08-29T17:16:40",
"upload_time_iso_8601": "2024-08-29T17:16:40.580141Z",
"url": "https://files.pythonhosted.org/packages/4a/36/d06ca0f6b653d03837e19a87e0dc04e2664a6363e66413427be6a57dc4ea/lightkurve-2.5.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1ba004a218b6db46b9637cf90208ebc92449743c41467eabb3f0358f9ccb0a33",
"md5": "8d2d8451a8a6c49d19f13bce34b53ff9",
"sha256": "53fbfb385f6085a23d3a5678569677229c4a8c5bf4c0c7582ac39fc415c1ee14"
},
"downloads": -1,
"filename": "lightkurve-2.5.0.tar.gz",
"has_sig": false,
"md5_digest": "8d2d8451a8a6c49d19f13bce34b53ff9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 239838,
"upload_time": "2024-08-29T17:16:41",
"upload_time_iso_8601": "2024-08-29T17:16:41.908504Z",
"url": "https://files.pythonhosted.org/packages/1b/a0/04a218b6db46b9637cf90208ebc92449743c41467eabb3f0358f9ccb0a33/lightkurve-2.5.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-29 17:16:41",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "lightkurve",
"github_project": "lightkurve",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "lightkurve"
}