| Name | satkit JSON |
| Version |
0.8.3
JSON |
| download |
| home_page | None |
| Summary | Satellite Orbital Dynamics Toolkit |
| upload_time | 2025-10-11 19:59:00 |
| maintainer | None |
| docs_url | None |
| author | None |
| requires_python | >=3.8 |
| license | MIT License
Copyright (c) 2025 Steven Michael
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
|
| keywords |
satellite
orbit
astrodynamics
sgp4
tle
jpl
ephemeris
|
| VCS |
|
| bugtrack_url |
|
| requirements |
No requirements were recorded.
|
| Travis-CI |
No Travis.
|
| coveralls test coverage |
No coveralls.
|
# Satellite Toolkit with Rust
An accurate, high-performance satellite orbital kinematics toolkit, written in Rust with a sensible interface.
<br/>
Also includes python bindings for *all* functions via via [pyo3](https://pyo3.rs/)
### Github



### Crates.io


### PyPi





## Language Bindings
- **Native Rust** bindings
- **Python bindings** for compiled rust code ... speed of Rust with convenience of Python<br/>
Install with `pip install satkit`<br/>
PyPi includes binary packages for windows, macos (Intel & ARM), and linux. Python documentation is at: <https://satellite-toolkit.readthedocs.io/latest/>
## Features
- High-precision coordinate transforms between:
- International Terrestrial Reference Frame (ITRF)
- Geocentric Celestial Reference Frame (GCRF) using IAU-2000 reduction
- True-Equinox Mean Equator (TEME) frame used in SGP4 propagation of TLEs
- Celestial Intermediate Reference Frame (CIRF)
- Terrestrial Intermediate Reference Frame (TIRF)
- Terrestrial Geodetic frame (latitude, longitude)
- Geodesic distances
- SGP4, and Keplerian orbit propagation
- JPL high-precision planetary ephemerides
- High-order gravity models
- High-precision, high-speed numerical satellite orbit propagation with high-order efficient Runga-Kutta solvers, ability to solve for state transition matrix, and inclusion following forces:
- High-order Earth gravity with multiple models
- Solar gravity
- Lunar gravity
- Drag: NRL MISE-00 density model
- Radiation pressure
## ODE Solvers
The high-precision numerical satellite orbit propagation makes use of adaptive Runga-Kutta methods for integration of ordinary differential equations. The pure-Rust ODE solver is included as part of the library.
The methods use Runga-Kutta pairs for ODE integration and error estimation generated by Jim Verner: [https://www.sfu.ca/~jverner/](https://www.sfu.ca/~jverner/)
## References, Models, and External Software.
### The equations and many of the unit tests underlying this work are drawn from the following sources:
- **"Fundamentals of Astrodynamics and Applications, Fourth Edition"**, D. Vallado, Microcosm Press and Springer, 2013.<br>
[https://celestrak.org/software/vallado-sw.php](https://celestrak.org/software/vallado-sw.php)
- **"Satellite Orbits: Models, Methods, Applications"**, O. Montenbruck and E. Gill, Springer, 2000.<br>
[https://doi.org/10.1007/978-3-642-58351-3](https://doi.org/10.1007/978-3-642-58351-3)
### Data Dependencies
This code makes reference to and relies on models generated by the following:
- **SGP4 Orbit Propagator** - https://celestrak.org/software/tskelso-sw.php<br/>
NORAD / SGP4 orbit propagator used to generate position and velocity states from orbital ephemerides described by Two-Line Element Sets (TLEs). This code base includes a pure-rust translation of the SGP4 orbit propagator
- **NRL MSISE-00 Density Model** - https://ccmc.gsfc.nasa.gov/models/NRLMSIS~00/<br/>
NRL model of air density, including density at high altitudes, used in to compute satellite drag
- **Gravity Models** - http://icgem.gfz-potsdam.de/home<br/>
International Center for Global Earth Models (ICEGM), collection and archive in a common format of all existing global gravity field models
- **Space Weather** - https://celestrak.org/SpaceData/<br/>
Space weather used to modulate the air density used in drag calculations
- **Earth Orientation Parameters** - https://celestrak.org/SpaceData/<br/>
Time-varying Earth orientation parameters used for time epoch conversions and high-precision rotations between the inertial and Earth-fixed coordinate frames
- **IERS Conventions** - https://www.iers.org/IERS/EN/Publications/TechnicalNotes/tn36.html<br/>
International Earth Rotation and Reference Systems Service Technical Note 36 for rotation between inertial and Earth-fixed coordinate systems.
- **JPL Ephemerides** - https://ssd.jpl.nasa.gov/ephem.html<br/>
High-precision ephemerides for solar system bodies (sun, moon, planets) in frame of solar system barycenter
## Verification
The package includes rust test modules and python test modules for verification of nearly all calculations, including but not limited to:
- **JPL Ephemeris** - Via JPL-provided test vectors for Chebychev polynomial calculation
- **SGP4** - Via SGP4 test vectors provided with original C<sup>++</sup> distribution
## Getting Started
### Rust
Simply include the code in your Cargo.toml file to use. Once installed, make sure you run `utils.update_datafiles` to download the most-recent [data files](#data-dependencies) necessary for many calculations. This only needs to be done once, unless more-recent space weather and Earth orientation parameter data is required (these are updated at least daily).
```rust
satkit.utils.update_datafiles()?;
```
### Python
Satkit is available via pypi.org, and can be installed via the `pip` command:
```bash
python -m pip install satkit
```
Binaries are available for Windows (AMD64), Mac (Intel, Apple Silicon) and Linux (x86_64, aarch64) for python versions 3.8 through 3.14.
Once installed, make sure you download the most-recent [data files](#data-dependencies) necessary for many calculations. This only needs to be done once, unless more-recent space weather and Earth orientation parameter data is required (these are updated at least daily).
```python
import satkit as sk
sk.utils.update_datafiles()
```
## Author
Steven Michael (ssmichael@gmail.com)
Please reach out of you find errors in code or calculations, are interested in contributing to this repository, or have suggestions for improvements to the API.
Raw data
{
"_id": null,
"home_page": null,
"name": "satkit",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": "Steven Michael <ssmichael@gmail.com>",
"keywords": "satellite, orbit, astrodynamics, SGP4, TLE, JPL, Ephemeris",
"author": null,
"author_email": "Steven Michael <ssmichael@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/c0/b1/1334c5578d78c7fe22a0ebf6ace4d14dd03eb7bca08d3ae352641472fa97/satkit-0.8.3.tar.gz",
"platform": null,
"description": "# Satellite Toolkit with Rust\n\nAn accurate, high-performance satellite orbital kinematics toolkit, written in Rust with a sensible interface.\n<br/>\nAlso includes python bindings for *all* functions via via [pyo3](https://pyo3.rs/)\n\n### Github\n\n\n\n\n\n### Crates.io\n\n\n\n\n### PyPi\n\n\n\n\n\n\n\n\n\n## Language Bindings\n\n- **Native Rust** bindings\n- **Python bindings** for compiled rust code ... speed of Rust with convenience of Python<br/>\n Install with `pip install satkit`<br/>\n PyPi includes binary packages for windows, macos (Intel & ARM), and linux. Python documentation is at: <https://satellite-toolkit.readthedocs.io/latest/>\n\n## Features\n\n- High-precision coordinate transforms between:\n - International Terrestrial Reference Frame (ITRF)\n - Geocentric Celestial Reference Frame (GCRF) using IAU-2000 reduction\n - True-Equinox Mean Equator (TEME) frame used in SGP4 propagation of TLEs\n - Celestial Intermediate Reference Frame (CIRF)\n - Terrestrial Intermediate Reference Frame (TIRF)\n - Terrestrial Geodetic frame (latitude, longitude)\n- Geodesic distances\n- SGP4, and Keplerian orbit propagation\n- JPL high-precision planetary ephemerides\n- High-order gravity models\n- High-precision, high-speed numerical satellite orbit propagation with high-order efficient Runga-Kutta solvers, ability to solve for state transition matrix, and inclusion following forces:\n - High-order Earth gravity with multiple models\n - Solar gravity\n - Lunar gravity\n - Drag: NRL MISE-00 density model\n - Radiation pressure\n\n## ODE Solvers\n\nThe high-precision numerical satellite orbit propagation makes use of adaptive Runga-Kutta methods for integration of ordinary differential equations. The pure-Rust ODE solver is included as part of the library.\n\nThe methods use Runga-Kutta pairs for ODE integration and error estimation generated by Jim Verner: [https://www.sfu.ca/~jverner/](https://www.sfu.ca/~jverner/)\n\n## References, Models, and External Software.\n\n### The equations and many of the unit tests underlying this work are drawn from the following sources:\n\n- **\"Fundamentals of Astrodynamics and Applications, Fourth Edition\"**, D. Vallado, Microcosm Press and Springer, 2013.<br>\n [https://celestrak.org/software/vallado-sw.php](https://celestrak.org/software/vallado-sw.php)\n- **\"Satellite Orbits: Models, Methods, Applications\"**, O. Montenbruck and E. Gill, Springer, 2000.<br>\n [https://doi.org/10.1007/978-3-642-58351-3](https://doi.org/10.1007/978-3-642-58351-3)\n\n### Data Dependencies\n\nThis code makes reference to and relies on models generated by the following:\n\n- **SGP4 Orbit Propagator** - https://celestrak.org/software/tskelso-sw.php<br/>\n NORAD / SGP4 orbit propagator used to generate position and velocity states from orbital ephemerides described by Two-Line Element Sets (TLEs). This code base includes a pure-rust translation of the SGP4 orbit propagator\n- **NRL MSISE-00 Density Model** - https://ccmc.gsfc.nasa.gov/models/NRLMSIS~00/<br/>\n NRL model of air density, including density at high altitudes, used in to compute satellite drag\n- **Gravity Models** - http://icgem.gfz-potsdam.de/home<br/>\n International Center for Global Earth Models (ICEGM), collection and archive in a common format of all existing global gravity field models\n- **Space Weather** - https://celestrak.org/SpaceData/<br/>\n Space weather used to modulate the air density used in drag calculations\n- **Earth Orientation Parameters** - https://celestrak.org/SpaceData/<br/>\n Time-varying Earth orientation parameters used for time epoch conversions and high-precision rotations between the inertial and Earth-fixed coordinate frames\n- **IERS Conventions** - https://www.iers.org/IERS/EN/Publications/TechnicalNotes/tn36.html<br/>\n International Earth Rotation and Reference Systems Service Technical Note 36 for rotation between inertial and Earth-fixed coordinate systems.\n- **JPL Ephemerides** - https://ssd.jpl.nasa.gov/ephem.html<br/>\n High-precision ephemerides for solar system bodies (sun, moon, planets) in frame of solar system barycenter\n\n## Verification\n\nThe package includes rust test modules and python test modules for verification of nearly all calculations, including but not limited to:\n\n- **JPL Ephemeris** - Via JPL-provided test vectors for Chebychev polynomial calculation\n- **SGP4** - Via SGP4 test vectors provided with original C<sup>++</sup> distribution\n\n## Getting Started\n\n### Rust\n\nSimply include the code in your Cargo.toml file to use. Once installed, make sure you run `utils.update_datafiles` to download the most-recent [data files](#data-dependencies) necessary for many calculations. This only needs to be done once, unless more-recent space weather and Earth orientation parameter data is required (these are updated at least daily).\n\n```rust\nsatkit.utils.update_datafiles()?;\n```\n\n\n### Python\n\nSatkit is available via pypi.org, and can be installed via the `pip` command:\n```bash\npython -m pip install satkit\n```\n\nBinaries are available for Windows (AMD64), Mac (Intel, Apple Silicon) and Linux (x86_64, aarch64) for python versions 3.8 through 3.14.\n\nOnce installed, make sure you download the most-recent [data files](#data-dependencies) necessary for many calculations. This only needs to be done once, unless more-recent space weather and Earth orientation parameter data is required (these are updated at least daily).\n```python\nimport satkit as sk\nsk.utils.update_datafiles()\n```\n\n## Author\n\nSteven Michael (ssmichael@gmail.com)\n\nPlease reach out of you find errors in code or calculations, are interested in contributing to this repository, or have suggestions for improvements to the API.\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2025 Steven Michael\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n ",
"summary": "Satellite Orbital Dynamics Toolkit",
"version": "0.8.3",
"project_urls": null,
"split_keywords": [
"satellite",
" orbit",
" astrodynamics",
" sgp4",
" tle",
" jpl",
" ephemeris"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "7c71c089bd14d3e0246ffa1522241b76733cc5a43802b58c5aff3a97348075af",
"md5": "01ace58845193681e15f35baeeb796eb",
"sha256": "43b4c22801c7e68ef54528f04da64982fc2ebb5619b337cd01d80fa43a2715ef"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "01ace58845193681e15f35baeeb796eb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2188651,
"upload_time": "2025-10-11T19:58:03",
"upload_time_iso_8601": "2025-10-11T19:58:03.785417Z",
"url": "https://files.pythonhosted.org/packages/7c/71/c089bd14d3e0246ffa1522241b76733cc5a43802b58c5aff3a97348075af/satkit-0.8.3-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c2a7a388a0a127ed27a6251484b21500ffc0ec1eee84cbd1506dafba497de035",
"md5": "82d91e2177987f5bb976ae1b272005a1",
"sha256": "5dc28a7b69631ec4b556df568c3fa935ef8d81e27273bcbb3efd81ec153cb490"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "82d91e2177987f5bb976ae1b272005a1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2064852,
"upload_time": "2025-10-11T19:58:05",
"upload_time_iso_8601": "2025-10-11T19:58:05.612217Z",
"url": "https://files.pythonhosted.org/packages/c2/a7/a388a0a127ed27a6251484b21500ffc0ec1eee84cbd1506dafba497de035/satkit-0.8.3-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b236bd6226ca8c603999bbb3472a0e7baa33a16b924c2c048e0e6e0ccf411f74",
"md5": "6ee0aa79a5a3865923ee3da12c1a86cf",
"sha256": "a1560b14f84a809881b87ee92e999174b49bfdec169a85dcc7b78bedb85928cd"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp310-cp310-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "6ee0aa79a5a3865923ee3da12c1a86cf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2271243,
"upload_time": "2025-10-11T19:58:07",
"upload_time_iso_8601": "2025-10-11T19:58:07.289539Z",
"url": "https://files.pythonhosted.org/packages/b2/36/bd6226ca8c603999bbb3472a0e7baa33a16b924c2c048e0e6e0ccf411f74/satkit-0.8.3-cp310-cp310-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b51c5085726f995704fcdb7a9c0ed76438172214c9cb1b572dd92473d4d60f9",
"md5": "5d9eab0b6847a8421cbf298b9eecc444",
"sha256": "466d616b4798805a266883ea0cd5fed8b2f3bb00e3171f7f2c8fd98b608c1904"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "5d9eab0b6847a8421cbf298b9eecc444",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2294973,
"upload_time": "2025-10-11T19:58:08",
"upload_time_iso_8601": "2025-10-11T19:58:08.586103Z",
"url": "https://files.pythonhosted.org/packages/4b/51/c5085726f995704fcdb7a9c0ed76438172214c9cb1b572dd92473d4d60f9/satkit-0.8.3-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b92754a8f708e8a48fad84b2a39da0b905ad7139a5ec665c51c1c7d3ca96d288",
"md5": "ec565fd7f92d6068c61267f2c4995c68",
"sha256": "a05395fdb4ce9d655f08d5f08918ba1d0b1a12f10f7b0b116abe93dfc6540313"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "ec565fd7f92d6068c61267f2c4995c68",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1929121,
"upload_time": "2025-10-11T19:58:10",
"upload_time_iso_8601": "2025-10-11T19:58:10.258536Z",
"url": "https://files.pythonhosted.org/packages/b9/27/54a8f708e8a48fad84b2a39da0b905ad7139a5ec665c51c1c7d3ca96d288/satkit-0.8.3-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "191d0d16c8a8e3cac236dda2732b5b68595c40b27d1d1821aa469af6da101aa2",
"md5": "5512109b0bcf5ab51124f5c3a148db57",
"sha256": "4545f3e1104b7de112aaf6aafb27653941fb06e0609b9beafebe9909325eb16f"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "5512109b0bcf5ab51124f5c3a148db57",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2188429,
"upload_time": "2025-10-11T19:58:12",
"upload_time_iso_8601": "2025-10-11T19:58:12.024189Z",
"url": "https://files.pythonhosted.org/packages/19/1d/0d16c8a8e3cac236dda2732b5b68595c40b27d1d1821aa469af6da101aa2/satkit-0.8.3-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eadad58b0693f4c035f6d692c4706c35dd21036e2f3c883f41abe4797984640c",
"md5": "12735f2679a9db43260badce0cc68dea",
"sha256": "d606efa2bdbebbcf59e4b46d3e876c30befeb46e3a12688f819400738887135b"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "12735f2679a9db43260badce0cc68dea",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2064639,
"upload_time": "2025-10-11T19:58:13",
"upload_time_iso_8601": "2025-10-11T19:58:13.362079Z",
"url": "https://files.pythonhosted.org/packages/ea/da/d58b0693f4c035f6d692c4706c35dd21036e2f3c883f41abe4797984640c/satkit-0.8.3-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cb4e1da8eb77ea39190e694d3b9ea7cb985023524f47a1308030f52378a58a97",
"md5": "b384e81aef8bebd650ef651544909a1e",
"sha256": "12f883e17b7f9ab44e1fbeb16c6e172063a8ce93fefdf371b5ff4ca45100dfc4"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp311-cp311-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "b384e81aef8bebd650ef651544909a1e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2271413,
"upload_time": "2025-10-11T19:58:15",
"upload_time_iso_8601": "2025-10-11T19:58:15.315943Z",
"url": "https://files.pythonhosted.org/packages/cb/4e/1da8eb77ea39190e694d3b9ea7cb985023524f47a1308030f52378a58a97/satkit-0.8.3-cp311-cp311-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f19405765c550e5f74adbde59110f5c9a42c6ca4b27a7d18d2ccebd5502bfc35",
"md5": "18d7d3230b732e3a44db527bb16129e6",
"sha256": "1d5fa4b768674e5f204f8919e0781e40234e236d1de0600708d874679a26baa1"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "18d7d3230b732e3a44db527bb16129e6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2295270,
"upload_time": "2025-10-11T19:58:16",
"upload_time_iso_8601": "2025-10-11T19:58:16.696598Z",
"url": "https://files.pythonhosted.org/packages/f1/94/05765c550e5f74adbde59110f5c9a42c6ca4b27a7d18d2ccebd5502bfc35/satkit-0.8.3-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6d88696538bc1fb0ae68abca6a3238b48da1329e98c93fa5654c7b30e4a62e82",
"md5": "3e1ec179419049e4d6731a4ab34af133",
"sha256": "2b4d68508b65aa6f349a7b33a061359fb79c23044f43885d631eb8f1c86b106d"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "3e1ec179419049e4d6731a4ab34af133",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1927967,
"upload_time": "2025-10-11T19:58:18",
"upload_time_iso_8601": "2025-10-11T19:58:18.038722Z",
"url": "https://files.pythonhosted.org/packages/6d/88/696538bc1fb0ae68abca6a3238b48da1329e98c93fa5654c7b30e4a62e82/satkit-0.8.3-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec4308048dff171279cd8de40031cdf3b839042bf21cf60e206de4412527ebd5",
"md5": "ef8a5a72146fe05dffdd3df48b9edfef",
"sha256": "c0e9e6880674dd24b47f2c892033159aa47037dc2ab7e87d17cb3c055ed59026"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "ef8a5a72146fe05dffdd3df48b9edfef",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2173883,
"upload_time": "2025-10-11T19:58:20",
"upload_time_iso_8601": "2025-10-11T19:58:20.143678Z",
"url": "https://files.pythonhosted.org/packages/ec/43/08048dff171279cd8de40031cdf3b839042bf21cf60e206de4412527ebd5/satkit-0.8.3-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f3e4092aee456921d5d4b13ce61fa152fbed8d18c4d4655ae49f7fcd643c5547",
"md5": "872fa1c741209644a85434087d0a8615",
"sha256": "c67e7bd05fb3a627ecf13b20033b4066dac0bb8561913fd9b608770c8c8eb8f0"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "872fa1c741209644a85434087d0a8615",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2053341,
"upload_time": "2025-10-11T19:58:22",
"upload_time_iso_8601": "2025-10-11T19:58:22.678747Z",
"url": "https://files.pythonhosted.org/packages/f3/e4/092aee456921d5d4b13ce61fa152fbed8d18c4d4655ae49f7fcd643c5547/satkit-0.8.3-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f16df3c27f8627e35dec3df16a73b6082c9857a7aab4927d53e06120849117f1",
"md5": "6e51c42c180b41ed84eadda36ea2a9cf",
"sha256": "a32906cdd72bada107652f3c67f3420c2f0944dd13063e14d741077f280a0e30"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp312-cp312-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "6e51c42c180b41ed84eadda36ea2a9cf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2279218,
"upload_time": "2025-10-11T19:58:24",
"upload_time_iso_8601": "2025-10-11T19:58:24.581098Z",
"url": "https://files.pythonhosted.org/packages/f1/6d/f3c27f8627e35dec3df16a73b6082c9857a7aab4927d53e06120849117f1/satkit-0.8.3-cp312-cp312-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a9c91f1c8e8c23f7428602153c12c0981760c27a64fca4a63a1c84865cf3ae08",
"md5": "4e3e408dd54966b55bc388d537a31dff",
"sha256": "b9f2dfaaeebf895043df0354c98bb693dda2a4bdd7e61a11099977c2b877a5e9"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "4e3e408dd54966b55bc388d537a31dff",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2302852,
"upload_time": "2025-10-11T19:58:26",
"upload_time_iso_8601": "2025-10-11T19:58:26.332935Z",
"url": "https://files.pythonhosted.org/packages/a9/c9/1f1c8e8c23f7428602153c12c0981760c27a64fca4a63a1c84865cf3ae08/satkit-0.8.3-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "54046f4d6f1b90a9200f8980d92904f9dabbba8e538146bebbcd635c1867a3b1",
"md5": "6cd013ff3815d64c9fca0c31108743ff",
"sha256": "531ebfcbea824df07a77eeb50aa5cb07e169d8a9135f6721912ac8a0560c5b36"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "6cd013ff3815d64c9fca0c31108743ff",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1931671,
"upload_time": "2025-10-11T19:58:27",
"upload_time_iso_8601": "2025-10-11T19:58:27.856906Z",
"url": "https://files.pythonhosted.org/packages/54/04/6f4d6f1b90a9200f8980d92904f9dabbba8e538146bebbcd635c1867a3b1/satkit-0.8.3-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ef22f4a32ea5af311c2b55bc6eb5e02c2bd7d145229cea92a192ddea7740479",
"md5": "13ad1b462063dcb174c832b2b4403e68",
"sha256": "9f54bddb236e58d7a35ba956c977c5b3c94fac2ed5bab6edb4a1fede1f7e3b31"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "13ad1b462063dcb174c832b2b4403e68",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2173650,
"upload_time": "2025-10-11T19:58:29",
"upload_time_iso_8601": "2025-10-11T19:58:29.244378Z",
"url": "https://files.pythonhosted.org/packages/7e/f2/2f4a32ea5af311c2b55bc6eb5e02c2bd7d145229cea92a192ddea7740479/satkit-0.8.3-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "831ff69231f67104943716a899283ce9462df8f88f84b731d8b72a01f7b6f0ff",
"md5": "1755bdaf5ac35b6b1ef12f2ddf6c90d8",
"sha256": "fe4e6d41b0f20eeb9c11b05f4fda052e01485a7e54c9bd2b6ee28534d8ba6807"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1755bdaf5ac35b6b1ef12f2ddf6c90d8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2052939,
"upload_time": "2025-10-11T19:58:31",
"upload_time_iso_8601": "2025-10-11T19:58:31.138974Z",
"url": "https://files.pythonhosted.org/packages/83/1f/f69231f67104943716a899283ce9462df8f88f84b731d8b72a01f7b6f0ff/satkit-0.8.3-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1b26bd85f53bfa3e0138bd73d8846e21cbbd624eecbc08f038fd1fd701156599",
"md5": "9fd2dd75c2a89a628b08778adc68fbe1",
"sha256": "683337c19c24c5c8b10aabe9ee1099cb886e23d167d85092362e5e5f18340169"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp313-cp313-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "9fd2dd75c2a89a628b08778adc68fbe1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2279127,
"upload_time": "2025-10-11T19:58:32",
"upload_time_iso_8601": "2025-10-11T19:58:32.979038Z",
"url": "https://files.pythonhosted.org/packages/1b/26/bd85f53bfa3e0138bd73d8846e21cbbd624eecbc08f038fd1fd701156599/satkit-0.8.3-cp313-cp313-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ff5c394b18e716aca6818fab4f4cd25a814c971ce1cfb31c397c4596760ed56",
"md5": "b17ca660800a266bac6d9e2896bf7c41",
"sha256": "092d0276994c61c8e3e12c3db13054aab97cfe3a5b8b35bb9dccb2c39332c6e3"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp313-cp313-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "b17ca660800a266bac6d9e2896bf7c41",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2302220,
"upload_time": "2025-10-11T19:58:34",
"upload_time_iso_8601": "2025-10-11T19:58:34.564674Z",
"url": "https://files.pythonhosted.org/packages/2f/f5/c394b18e716aca6818fab4f4cd25a814c971ce1cfb31c397c4596760ed56/satkit-0.8.3-cp313-cp313-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c5fc96201ce40a337d8842d93b50e7e32255505eb451de313743779801f649b",
"md5": "92f808e7c836af3997534d7631031fc8",
"sha256": "985b7d423973ba679294b1cbc86078294a450f6edfe1d3a0493e868a7aa7638f"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "92f808e7c836af3997534d7631031fc8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1931556,
"upload_time": "2025-10-11T19:58:36",
"upload_time_iso_8601": "2025-10-11T19:58:36.060242Z",
"url": "https://files.pythonhosted.org/packages/2c/5f/c96201ce40a337d8842d93b50e7e32255505eb451de313743779801f649b/satkit-0.8.3-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "08e3a2819056488645d4bfc2aac27c746cbbc41d95ab097f0acfdc9cce512ce9",
"md5": "80519d907890d8fb4089d0f39271fb9b",
"sha256": "f549d3baacee79611d2b81502a225c941f8717d17a9ea36aec84a089ff46d103"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp314-cp314-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "80519d907890d8fb4089d0f39271fb9b",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 2174749,
"upload_time": "2025-10-11T19:58:37",
"upload_time_iso_8601": "2025-10-11T19:58:37.812468Z",
"url": "https://files.pythonhosted.org/packages/08/e3/a2819056488645d4bfc2aac27c746cbbc41d95ab097f0acfdc9cce512ce9/satkit-0.8.3-cp314-cp314-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "19e66c06fe31f17f4347f9daa4f7f97188929a055b06ec28ae8c82db42b2f0dc",
"md5": "a98be3694dd57456e5cc28d21b21e5b4",
"sha256": "ca448d8f96a2333e2a042f4cd38f35ed1f976491e2720db9d5dd37ec0a5aeabf"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp314-cp314-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a98be3694dd57456e5cc28d21b21e5b4",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 2053722,
"upload_time": "2025-10-11T19:58:39",
"upload_time_iso_8601": "2025-10-11T19:58:39.134559Z",
"url": "https://files.pythonhosted.org/packages/19/e6/6c06fe31f17f4347f9daa4f7f97188929a055b06ec28ae8c82db42b2f0dc/satkit-0.8.3-cp314-cp314-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ffd6798113608c4688990b3c6a2075e05f1c96b221a377be8b92af016bd99131",
"md5": "03cd084b32a333ac100e3a90dfb8e328",
"sha256": "9d939841958362419b0d1208f0b4cd9c5ff9ebd4c7ae23842b0db1b8485dcf85"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp314-cp314-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "03cd084b32a333ac100e3a90dfb8e328",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 2280917,
"upload_time": "2025-10-11T19:58:40",
"upload_time_iso_8601": "2025-10-11T19:58:40.819642Z",
"url": "https://files.pythonhosted.org/packages/ff/d6/798113608c4688990b3c6a2075e05f1c96b221a377be8b92af016bd99131/satkit-0.8.3-cp314-cp314-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a7815c9325fa6c1126d8f1969008df3e5bbed0886c80b382ebef19720df6862b",
"md5": "a42e93192bbaa62d13a6ce8624cb4b70",
"sha256": "2636b41fdd92b5b45d0eba5e71336f77fabe8253346e0fc84ea15c679dedb821"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp314-cp314-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "a42e93192bbaa62d13a6ce8624cb4b70",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 2302402,
"upload_time": "2025-10-11T19:58:42",
"upload_time_iso_8601": "2025-10-11T19:58:42.122080Z",
"url": "https://files.pythonhosted.org/packages/a7/81/5c9325fa6c1126d8f1969008df3e5bbed0886c80b382ebef19720df6862b/satkit-0.8.3-cp314-cp314-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4e4dd59d592111720d6feb5cbf819d017c8266f9c1524ccd7ae0dba0ffad9322",
"md5": "cacf8403bd8bf12630fc7a3e57561aba",
"sha256": "604abda2ce2fb85fc425979ef2be8d71771d6bef4e08586314b1dd334e682dd4"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp314-cp314-win_amd64.whl",
"has_sig": false,
"md5_digest": "cacf8403bd8bf12630fc7a3e57561aba",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 1998129,
"upload_time": "2025-10-11T19:58:43",
"upload_time_iso_8601": "2025-10-11T19:58:43.887023Z",
"url": "https://files.pythonhosted.org/packages/4e/4d/d59d592111720d6feb5cbf819d017c8266f9c1524ccd7ae0dba0ffad9322/satkit-0.8.3-cp314-cp314-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3b495edaac7738137a44a9a03e01a04c6d41b96399175af14c0931bf1cee8198",
"md5": "cae9185ba3c19a43cbeecbabee98a1f3",
"sha256": "6836286ec6a193fc3c7469123b8657cdef80c1f7a60abf0b02bfa785f7fee5f0"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp38-cp38-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "cae9185ba3c19a43cbeecbabee98a1f3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2194441,
"upload_time": "2025-10-11T19:58:45",
"upload_time_iso_8601": "2025-10-11T19:58:45.242944Z",
"url": "https://files.pythonhosted.org/packages/3b/49/5edaac7738137a44a9a03e01a04c6d41b96399175af14c0931bf1cee8198/satkit-0.8.3-cp38-cp38-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "63f41ca896f7967ac89eaaeaad4a4ad646bf7cec896b35f6c6f7b0f8721d5c36",
"md5": "74caa687b182517f346ff74b97b7627b",
"sha256": "1b5463ff9c2e22694377d42e7e70b2d25e46a390db0fcb71bbde4aff2226a282"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "74caa687b182517f346ff74b97b7627b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2070250,
"upload_time": "2025-10-11T19:58:46",
"upload_time_iso_8601": "2025-10-11T19:58:46.885532Z",
"url": "https://files.pythonhosted.org/packages/63/f4/1ca896f7967ac89eaaeaad4a4ad646bf7cec896b35f6c6f7b0f8721d5c36/satkit-0.8.3-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9fd76a795a04684af1039280661b4c68ffa0f844bfb1fe004c0fe878c4e05d8e",
"md5": "3bcb793e065e8cc6db440aa93503e3e6",
"sha256": "9b2eb5b4f1dd83ee4fc8f5c5fddefb91383c1f682102c6082d5a6fc9522e9e87"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp38-cp38-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "3bcb793e065e8cc6db440aa93503e3e6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2269494,
"upload_time": "2025-10-11T19:58:49",
"upload_time_iso_8601": "2025-10-11T19:58:49.098482Z",
"url": "https://files.pythonhosted.org/packages/9f/d7/6a795a04684af1039280661b4c68ffa0f844bfb1fe004c0fe878c4e05d8e/satkit-0.8.3-cp38-cp38-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5496bd76ed0dcef02074e7bb157131d6551100e08881b96e07631fcb0749a084",
"md5": "2eb0d7291f9c8817cfef66c6c6c0fa51",
"sha256": "ca98ca0f8f07ee9203d66dee34828b7b77d10a033a85f8f0d3b4a2bf5815adbc"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp38-cp38-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "2eb0d7291f9c8817cfef66c6c6c0fa51",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2294646,
"upload_time": "2025-10-11T19:58:50",
"upload_time_iso_8601": "2025-10-11T19:58:50.401307Z",
"url": "https://files.pythonhosted.org/packages/54/96/bd76ed0dcef02074e7bb157131d6551100e08881b96e07631fcb0749a084/satkit-0.8.3-cp38-cp38-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ddfe633b38c45ec4a694b4cdb2a21306072f3324278cdc20c54bc21416b08ee6",
"md5": "9215727f1a4df7e54f125e42b5de1bf0",
"sha256": "880383a13bdd3347ee8e3e291e6042d9c260a88014692f400acee038e004629c"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "9215727f1a4df7e54f125e42b5de1bf0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1927306,
"upload_time": "2025-10-11T19:58:51",
"upload_time_iso_8601": "2025-10-11T19:58:51.887516Z",
"url": "https://files.pythonhosted.org/packages/dd/fe/633b38c45ec4a694b4cdb2a21306072f3324278cdc20c54bc21416b08ee6/satkit-0.8.3-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dca6f03eb86860a5acd76706ae47e843ca1a7d6f4914a09447b2b8799fb5a19f",
"md5": "1ba80b78d6481c1704b850e348f1b254",
"sha256": "f22f28ea7815ad5f8a7a5fd93e84fab776799346bb106ab7cce138068f159fbc"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "1ba80b78d6481c1704b850e348f1b254",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2190078,
"upload_time": "2025-10-11T19:58:53",
"upload_time_iso_8601": "2025-10-11T19:58:53.628518Z",
"url": "https://files.pythonhosted.org/packages/dc/a6/f03eb86860a5acd76706ae47e843ca1a7d6f4914a09447b2b8799fb5a19f/satkit-0.8.3-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ac6661b8dd15327314840456911ae6a1289d554339156d7dde62a19d4d1533c9",
"md5": "87acdc6a2e2c7f3d4588d3a632706207",
"sha256": "47339994e94a749fc5fe6c9e1ba02cd86d22cbdcc79e702bccafc440546ecc1f"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "87acdc6a2e2c7f3d4588d3a632706207",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2065342,
"upload_time": "2025-10-11T19:58:54",
"upload_time_iso_8601": "2025-10-11T19:58:54.947391Z",
"url": "https://files.pythonhosted.org/packages/ac/66/61b8dd15327314840456911ae6a1289d554339156d7dde62a19d4d1533c9/satkit-0.8.3-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d36c305d19f97dad258b2d83c80469b9fdd03884bd788279eb957929b5a24a35",
"md5": "7eec730263307ac003eea024eca86458",
"sha256": "b91ac2159109980aa7ae56482e1be7ac495c4c5fee6dc3c95b6666bc781dfbb4"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp39-cp39-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "7eec730263307ac003eea024eca86458",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2271983,
"upload_time": "2025-10-11T19:58:56",
"upload_time_iso_8601": "2025-10-11T19:58:56.314257Z",
"url": "https://files.pythonhosted.org/packages/d3/6c/305d19f97dad258b2d83c80469b9fdd03884bd788279eb957929b5a24a35/satkit-0.8.3-cp39-cp39-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "24c0c699731343ca118dba606f2f6f22b6b65fb0a8b4f4a6402f280007abbb5f",
"md5": "35f6681ab9a4998730b0d9e862a6d3d8",
"sha256": "6ef6225317e244f8120fd4b97fa28f65d0f87ea6dd396494d461b414e5592bfa"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp39-cp39-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "35f6681ab9a4998730b0d9e862a6d3d8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2295324,
"upload_time": "2025-10-11T19:58:57",
"upload_time_iso_8601": "2025-10-11T19:58:57.621123Z",
"url": "https://files.pythonhosted.org/packages/24/c0/c699731343ca118dba606f2f6f22b6b65fb0a8b4f4a6402f280007abbb5f/satkit-0.8.3-cp39-cp39-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "96683d6415558f8ea7dc6b5d6f68b6d6238270b46899f83f7a988e2b1430217e",
"md5": "b4be28fd7f74d6141016bd7648cd030f",
"sha256": "c154b449f8deeeec404fa3902a389ffa180b0e0189e3c0fdee1fbac82e9be433"
},
"downloads": -1,
"filename": "satkit-0.8.3-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "b4be28fd7f74d6141016bd7648cd030f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1929408,
"upload_time": "2025-10-11T19:58:58",
"upload_time_iso_8601": "2025-10-11T19:58:58.913339Z",
"url": "https://files.pythonhosted.org/packages/96/68/3d6415558f8ea7dc6b5d6f68b6d6238270b46899f83f7a988e2b1430217e/satkit-0.8.3-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c0b11334c5578d78c7fe22a0ebf6ace4d14dd03eb7bca08d3ae352641472fa97",
"md5": "081c835bf86b729b5065e8780f9139e5",
"sha256": "d172e9eb0f94063021ffb5af88fa9718c8961124d3899eaa963b9495b64be35a"
},
"downloads": -1,
"filename": "satkit-0.8.3.tar.gz",
"has_sig": false,
"md5_digest": "081c835bf86b729b5065e8780f9139e5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 303898,
"upload_time": "2025-10-11T19:59:00",
"upload_time_iso_8601": "2025-10-11T19:59:00.189211Z",
"url": "https://files.pythonhosted.org/packages/c0/b1/1334c5578d78c7fe22a0ebf6ace4d14dd03eb7bca08d3ae352641472fa97/satkit-0.8.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-11 19:59:00",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "satkit"
}