Skip to main content

Kstar Planner is an Automated PDDL based planner that includes planners for top-k and top-quality planning computational tasks.

The codebase consists of multiple planners, for multiple computational problems, roughly divided into two categories:

  1. Top-k planning
  2. Top-quality planning
    2.1. Top-quality planning
    2.2. Unordered top-quality planning

The planner implements

  • Pure K* search based top-k and top-quality planning
  • Symmetry based pruning: OK* search
  • Partial order reduction: RK* search Both symmetry based pruning and partial order reduction can be used together: ORK* search

Installation

pip install kstar-planner

Running (examples)

Top-k

OK* with lmcut heuristic

from kstar_planner import planners
from pathlib import Path

domain_file = Path("your/path/domain.pddl")
problem_file = Path("your/path/problem.pddl")

plans = planners.plan_topk(domain_file=domain_file, problem_file=problem_file, number_of_plans_bound=100, timeout=30)
print(plans)

Top-quality

OK* with iPDB heuristic (recommended)

from kstar_planner import planners
from pathlib import Path

domain_file = Path("your/path/domain.pddl")
problem_file = Path("your/path/problem.pddl")

heuristic = "ipdb(transform=undo_to_origin())"

plans = planners.plan_topq(domain_file=domain_file, problem_file=problem_file, quality_bound=1.0,number_of_plans_bound=100, timeout=30, search_heuristic=heuristic)
print(plans)

Unordered Top-quality

ORK* with iPDB heuristic (recommended)

from kstar_planner import planners
from pathlib import Path

domain_file = Path("your/path/domain.pddl")
problem_file = Path("your/path/problem.pddl")

heuristic = "ipdb(transform=undo_to_origin())"

plans = planners.plan_unordered_topq(domain_file=domain_file, problem_file=problem_file, quality_bound=1.0,number_of_plans_bound=100, timeout=30, search_heuristic=heuristic)
print(plans)

Citing

Top-k planning

@InProceedings{lee-et-al-socs2023,
  title =        "On K* Search for Top-k Planning",
  author =       "Junkyu Lee and Michael Katz and Shirin Sohrabi",
  booktitle =    "Proceedings of the 16th Annual Symposium on
                  Combinatorial Search (SoCS 2023)",
  publisher =    "{AAAI} Press",
  year =         "2023"
}

@InProceedings{katz-lee-ijcai2023,
  author =       "Michael Katz and Junkyu Lee",
  title =        "K* Search Over Orbit Space for Top-k Planning",
  booktitle =    "Proceedings of the 32nd International Joint
                  Conference on Artificial Intelligence (IJCAI 2023)",
  publisher =    "{IJCAI}",
  year =         "2023"
}

Top-quality planning

@InProceedings{katz-lee-socs2023,
  title =        "K* and Partial Order Reduction for Top-quality Planning",
  author =       "Michael Katz and Junkyu Lee",
  booktitle =    "Proceedings of the 16th Annual Symposium on
                  Combinatorial Search (SoCS 2023)",
  publisher =    "{AAAI} Press",
  year =         "2023"
}

Licensing

Kstar Planner is an Automated PDDL based planner that includes planners for top-k and top-quality planning computational tasks. Copyright (C) 2023 Junkyu Lee, Michael Katz, IBM Research, USA. The code extends the Fast Downward planning system. The license for the extension is specified in the LICENSE file.

Fast Downward

Fast Downward

Fast Downward is a domain-independent classical planning system.

Copyright 2003-2022 Fast Downward contributors (see below).

For further information:

Tested software versions

This version of Fast Downward has been tested with the following software versions:

OS Python C++ compiler CMake
Ubuntu 20.04 3.8 GCC 9, GCC 10, Clang 10, Clang 11 3.16
Ubuntu 18.04 3.6 GCC 7, Clang 6 3.10
macOS 10.15 3.6 AppleClang 12 3.19
Windows 10 3.6 Visual Studio Enterprise 2017 (MSVC 19.16) and 2019 (MSVC 19.28) 3.19

We test LP support with CPLEX 12.9, SoPlex 3.1.1 and Osi 0.107.9. On Ubuntu, we test both CPLEX and SoPlex. On Windows, we currently only test CPLEX, and on macOS, we do not test LP solvers (yet).

Contributors

The following list includes all people that actively contributed to Fast Downward, i.e. all people that appear in some commits in Fast Downward's history (see below for a history on how Fast Downward emerged) or people that influenced the development of such commits. Currently, this list is sorted by the last year the person has been active, and in case of ties, by the earliest year the person started contributing, and finally by last name.

  • 2003-2022 Malte Helmert
  • 2008-2016, 2018-2022 Gabriele Roeger
  • 2010-2022 Jendrik Seipp
  • 2010-2011, 2013-2022 Silvan Sievers
  • 2012-2022 Florian Pommerening
  • 2013, 2015-2022 Salomé Eriksson
  • 2018-2022 Patrick Ferber
  • 2021-2022 Clemens Büchner
  • 2021-2022 Dominik Drexler
  • 2022 Remo Christen
  • 2015, 2021 Thomas Keller
  • 2016-2020 Cedric Geissmann
  • 2017-2020 Guillem Francès
  • 2018-2020 Augusto B. Corrêa
  • 2020 Rik de Graaff
  • 2015-2019 Manuel Heusner
  • 2017 Daniel Killenberger
  • 2016 Yusra Alkhazraji
  • 2016 Martin Wehrle
  • 2014-2015 Patrick von Reth
  • 2009-2014 Erez Karpas
  • 2014 Robert P. Goldman
  • 2010-2012 Andrew Coles
  • 2010, 2012 Patrik Haslum
  • 2003-2011 Silvia Richter
  • 2009-2011 Emil Keyder
  • 2010-2011 Moritz Gronbach
  • 2010-2011 Manuela Ortlieb
  • 2011 Vidal Alcázar Saiz
  • 2011 Michael Katz
  • 2011 Raz Nissim
  • 2010 Moritz Goebelbecker
  • 2007-2009 Matthias Westphal
  • 2009 Christian Muise

History

The current version of Fast Downward is the merger of three different projects:

  • the original version of Fast Downward developed by Malte Helmert and Silvia Richter
  • LAMA, developed by Silvia Richter and Matthias Westphal based on the original Fast Downward
  • FD-Tech, a modified version of Fast Downward developed by Erez Karpas and Michael Katz based on the original code

In addition to these three main sources, the codebase incorporates code and features from numerous branches of the Fast Downward codebase developed for various research papers. The main contributors to these branches are Malte Helmert, Gabi Röger and Silvia Richter.

License

The following directory is not part of Fast Downward as covered by this license:

  • ./src/search/ext

For the rest, the following license applies:

Fast Downward is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or (at
your option) any later version.

Fast Downward is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

kstar_planner-1.6.0-cp313-cp313-win_amd64.whl (64.0 MB view details)

Uploaded CPython 3.13Windows x86-64

kstar_planner-1.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (59.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

kstar_planner-1.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (58.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

kstar_planner-1.6.0-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

kstar_planner-1.6.0-cp313-cp313-macosx_10_13_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

kstar_planner-1.6.0-cp313-cp313-macosx_10_13_universal2.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

kstar_planner-1.6.0-cp312-cp312-win_amd64.whl (64.0 MB view details)

Uploaded CPython 3.12Windows x86-64

kstar_planner-1.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (59.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

kstar_planner-1.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (58.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

kstar_planner-1.6.0-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

kstar_planner-1.6.0-cp312-cp312-macosx_10_13_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

kstar_planner-1.6.0-cp312-cp312-macosx_10_13_universal2.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

kstar_planner-1.6.0-cp311-cp311-win_amd64.whl (64.0 MB view details)

Uploaded CPython 3.11Windows x86-64

kstar_planner-1.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (59.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

kstar_planner-1.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (59.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

kstar_planner-1.6.0-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

kstar_planner-1.6.0-cp311-cp311-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

kstar_planner-1.6.0-cp311-cp311-macosx_10_9_universal2.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

kstar_planner-1.6.0-cp310-cp310-win_amd64.whl (64.0 MB view details)

Uploaded CPython 3.10Windows x86-64

kstar_planner-1.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (59.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

kstar_planner-1.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (58.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

kstar_planner-1.6.0-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

kstar_planner-1.6.0-cp310-cp310-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

kstar_planner-1.6.0-cp310-cp310-macosx_10_9_universal2.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

kstar_planner-1.6.0-cp39-cp39-win_amd64.whl (64.0 MB view details)

Uploaded CPython 3.9Windows x86-64

kstar_planner-1.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (59.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

kstar_planner-1.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (58.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

kstar_planner-1.6.0-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

kstar_planner-1.6.0-cp39-cp39-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

kstar_planner-1.6.0-cp39-cp39-macosx_10_9_universal2.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

kstar_planner-1.6.0-cp38-cp38-win_amd64.whl (64.0 MB view details)

Uploaded CPython 3.8Windows x86-64

kstar_planner-1.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (59.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

kstar_planner-1.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (58.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

kstar_planner-1.6.0-cp38-cp38-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

kstar_planner-1.6.0-cp38-cp38-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

kstar_planner-1.6.0-cp38-cp38-macosx_10_9_universal2.whl (1.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file kstar_planner-1.6.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 db91f00faf1c7b354da587c1fddd1efc26a65bc280a31fd5ecd12281549da3e1
MD5 ba4ab68fe4ea28db3e61a2aa4588d9bb
BLAKE2b-256 6ee66a2144c49ebf068138da781f14aed4bee803f7c19e70e9642bc9b56b65b7

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 709b267997a81ca3e744e38bdd62c6697fa622832ff7e3c34ed958c6daa74042
MD5 23cb2d1d5c7d2a4282b3ed8fa2f6384b
BLAKE2b-256 6e677252ae523540ca79564b5ec69eafdd12382b03870035871dcfc0571601ba

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1359c279c03c7ade7819e3966b90b4c59cf58b80ce5d1f26da85f21c652ff57
MD5 2ffbee3d2d8ac303315c16e2e526bc2f
BLAKE2b-256 2e4b46b201ed70b42060054305e6bd921b41ed9e756716eef8c4f297b96f3b08

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3640280d3f8eae1c808cf0797bb1fa8b80f48f3ce7e4203648975e82cb81311f
MD5 ec5e9287f4524a0318d0e78a3c540cdc
BLAKE2b-256 47daba13326c481f647dde7c0f77fdb91294cd727d855ec3a4fd353394e385cc

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 89ed66b8beffebb8fa5de30f2ccec600660762d2d8ad8d616a4c2143bb8b4af2
MD5 07a4876d2fd1fa08dd9516edd8cef424
BLAKE2b-256 a9289058dd4a8d35e96b406b442f5cabe4deab4281cc47bf167696b0e464da3c

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d0e26e2a27ac12e2edc7b80680b97d2b407935911b3a47186f67ce62d2e8c710
MD5 4c541e86c31d838bdd53903c1781977d
BLAKE2b-256 c6ec99e7705dc1dcf13079a8d4e70624caa7a2282ba9c9725473fad0d2cbe828

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fd25c3f2d6d102aba1973d6aca93deb1428aef25e5406319405b90b7f5330ae0
MD5 e85e71d40d0bd833592aca122080ae21
BLAKE2b-256 c3188a470a6f14ca039aeb759693d6e8f45a9b2ed82264f839ad964d74cffbe7

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2345e9409cd02c30107fc3dd68c5bef48c0dfc7a1b408e86a553d600e90c2222
MD5 fa0bad7a53c2f9da4863e1f8e2bbb9ad
BLAKE2b-256 0ef22d484aec7bc7547244dcdc5111bfe01b9ebe3219d55bf44db0dd8aeff640

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f570c94f38dd54c969bae9e3838629fbed9fe9aeeaf288c09d47d37b83727093
MD5 b309a340285f787e3cb49cac60e8666f
BLAKE2b-256 344ba7ef7749f4fc0efe41d67465e98329446a92ff9a06bb3e8518f3ae4307e5

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbd78cfa27ca3440a6b0084bb09010881dce81547544edc6aae0d1f0631e8a91
MD5 04d0479f7096b553167a7e702d84729c
BLAKE2b-256 f86ec40c88f8c73fd4873ddb0f045a37260bcc3949b23e3af27e2ce5d8f05cf1

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2fd702ec739a9da2f45d3eb9aa99c9395aefff0e7f0eae6a5057561ee28bff69
MD5 39d7865c6f04976969fe23445e406d3c
BLAKE2b-256 9390ef3763bbadf3a671f26a6483e06a344d8f175659e145edd5d1b06451bbba

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e7e4afeaef6fffb7126e0fcd0f35f985bfded9d9ef2e92e6cea3fd26413ae016
MD5 29dcf60f1096dad91add95a0de3db78e
BLAKE2b-256 5d336661a5e5d04ffa4811399e711bb4accb86b702ef78f1f8e83ebca7cfa9f1

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3bbc6626e60653681df968bfa65e0ed30e454ca1850dc8acaecdb237b988e313
MD5 1782e8684c6a6aa16a5383c8ecfd50d6
BLAKE2b-256 43d8c56703ea2f58184ded4881670fd10163fce1afe0d730216805e51ac00214

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 292bee21f03ceda853bfa8ddd9e54f0ccae4c3413ae3737125515f9a5644ea06
MD5 9a965005a71929b88542f47965548e62
BLAKE2b-256 faefa25019ffe1dc491debe2f01a5a8246ce5cd845e97795ba92ca7273dc75bb

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e004850e5390ae5a6cc88aed040487d79bcd5ab8710e0cc2c8c207cef3104b86
MD5 b6db8f377ab35b6486c43384073c5231
BLAKE2b-256 bf71780b2b5ce60c52d7a1d8f4138b521924db06a7f95f751788889888ca2f5b

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86078150dbcd84e3589d83a8a830abc0d2083fc1eadc1b97361beea6285304cf
MD5 d6ffda8858316a38fd658ddb9ca41d14
BLAKE2b-256 5c2e576c4b9749f5f9cec0a07965d7f72838479882257a5d712ca166706e3ad2

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8148ae8b5eb2da0b1bf0e936b3e9be716b67f756408b464352510817df3003c
MD5 26039f6bf2d59f883feb2afc1f9e1c9d
BLAKE2b-256 f4df68f77a74109a356b496fe9aa8869667e53009d82fac6fdec6f061d406c02

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 917611189e8d74feca1deb74e4905fcfabf216276fe970e0eda3c85629ced49c
MD5 d864347a95a47f9817ce6b8cf40b9bdf
BLAKE2b-256 bb9619fd37a045273409dca7fbbcafeacc646036dff606683d576d05590e9a5e

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fd64f15c8e1f1607a518159eed59441ad4d9962616110e17f44705fbf56762c4
MD5 960cdb9f9e0d6702cdbe06cfaba03648
BLAKE2b-256 f00a0254bce94d44c8878737d0c3f2cbdac8895d72e21e0afea8fc4ba7c6991f

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53f67c3b0f036dc845b9668517c468c20f3775a66664f5d966224ec3fb3b377e
MD5 eb1a2fbcd109f170ca5dc1ab22a52769
BLAKE2b-256 917ee3f0b48f329433a86672ed17162fd1b9aec37bad9ba633e51660438d1925

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76596291c0bba4a3dad1d39d3ad283fe4dbe3791708441a911b50734582cb346
MD5 b013d13318b685ce3d4d8b1282577966
BLAKE2b-256 c690516cb12208f731fc10fe6a4eb2bbcd02311539e1c3d7ee7478854f8b7f06

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50e761976a34922f4cc0b48e788d3398c82eaefa9d10b5895892c0ec7da481cd
MD5 83bce57b6e11b17e77f336e421082dbf
BLAKE2b-256 94edf078e28e9c806ac896acfa6f87f6ee6e370dd1b0db9d841952022529d769

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5edb4f31d39c02c778f938f3e9fa8779433104e8abd677d22d5ed783b9b6c81a
MD5 bb000cefabfc0891194313d3e481f276
BLAKE2b-256 ef3ce7791ef06a2c65d9f5ce7de36e40f7838004a9ea7f63a14753394bfbe56b

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0ce8feb431e2cbcb645409606d81e8787696662c359fb57ce863802134cebcae
MD5 9354454d03f8490580ce959aa352d014
BLAKE2b-256 5ad367e3800166dbbb2547811c77f705515ccb7dc49e44ea9424d13eea7df94a

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3a05798ed58176b01c3303af8651027fe92c796c5cb65e3a79c29968292028f2
MD5 3fa38f1d4ddc5fee22c67a5f602cafb4
BLAKE2b-256 6c5bd0bf0e5a90ce0a25a7e23da3dec2eaced9e11e7964175fd8651ce25fb955

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c8493fee7f99e869718b46d9c5b72f55debf03d443586be3a18e2124b519215
MD5 dd2c607593aa9c8f991c7002d2ff8b07
BLAKE2b-256 95fe16f79d151847302b506b21c5195bcf528aa837465e52843accddf721883c

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e72a0cb538d51194b7a7c301ad01e25a3fee6a90dbadb51ff16ef41dc47ccbc9
MD5 ea4fd85ec234e2bc465b689876e4ebcf
BLAKE2b-256 108dfa7d19577f5843d1a26a6b4b4adac8b516dc689b15170eeb7c772f35e40a

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f7f33d243a71ff2fc5cbe1156ac75afc3c025c1e61051a9d5a9d21a8b877360
MD5 d32db6d986e6be98069c8c3201272a73
BLAKE2b-256 a71412504beac7863adcf70b02afa77fca4b0fb49667de80b6e5991c4debe38f

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 acee69633a593acc24c5241bc3019da71eabee1b52e9ee99f65006fbca5f408f
MD5 8857a8613485c3a7aac87167f2df66e0
BLAKE2b-256 643ee2e7e62a4950fa1105e1b2365f89f1b367d8f845f45f3a51bf2b401899df

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c9cca7662aa123add545154aa8cf8de00ff88c3e788548679e728bc62df999e6
MD5 44fb48a2749f9c82bab128fe6c643bef
BLAKE2b-256 5b51d7ec501a5af6df80b534aa81893a7bf3134657357f07c9ab01fcfbd04246

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fc1121ca7a4647ad7f3715b272d210d0e99da530b445ade1a10293a0e71a5e4b
MD5 4d471a93e144db303fb9e562b3e2fe67
BLAKE2b-256 116d46dfe19b1ccba0de17143bdb4ac6b7c68e817a6d4829455359a4b9213853

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ba0adffc0594ee11efdbcb59be8a3fd70886bd29430183cffed9770e0b18a39
MD5 66ea8fbe061952ad4691d3a30e6e5051
BLAKE2b-256 f3b05ce8e1de0baf0908708da0957b43c6c1afe0a70c922bce405133118b40bd

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81442096094ce6171fbd50a604d693eca0e5f153356f1f1cece47612470da77b
MD5 58d8c2aaccb171e4808d7f39e3e3df38
BLAKE2b-256 26e2aa1d1c38f488cecd4ab28b873851507161c0655bf5ef0c8d9eae125adb1b

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35d1d03d22fb18454a58548cfdfbe161e3ca4ee3d8469b2b13596688aaed2008
MD5 c5be8cc3db4958c96ba85a998ad03662
BLAKE2b-256 69a685f3b7212b904d821683010eb3a8c1faf8438422b56f2e7963672b998b8b

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d7491521d8e708180e1e9f4207e154fe4760e86555f06ea87685a6a195481037
MD5 0b7450aaf73be5aebdedb13f1d476d9a
BLAKE2b-256 0a679cdf00bebbd83d9a86eebc5fb43204ba868380867d20dbd9b5acb03ab8c3

See more details on using hashes here.

File details

Details for the file kstar_planner-1.6.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for kstar_planner-1.6.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8dad4e9f66e3684adb1933f1f109dae6d6ff481ea57a1f34e1247933312d6a64
MD5 3b3c44c47e47a9edcbf23fabfeb9df17
BLAKE2b-256 9ce9f1ad5f864efff39fd11ced1683b14d1f2282c8b2e5902fd5b340ed9c7bde

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.6.0 This release

36 files

1.5.2

36 files

1.4.16

30 files

1.4.6

20 files

1.4.2

20 files

1.4.1

20 files

1.4.0

20 files

1.3.5

20 files

1.3.4

20 files

1.3.3

20 files

1.3.2

20 files

1.3.1

20 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page