Skip to main content

PyPI

GeoDesk is a fast and storage-efficient geospatial database for OpenStreetMap data. Also available for C++ and for Java.

[!IMPORTANT] For Version 2.0, you will need to build GOLs with GOL Tool 2.0.

To read GOLs built with GOL Tool 1.x, use Version 1.3.0 of this toolkit.

Why GeoDesk?

  • Small storage footprint — GeoDesk's GOL files are only 20% to 50% larger than the original OSM data in PBF format — that's less than a tenth of the storage consumed by a traditional SQL-based database.

  • Fast queries — typically 50 times faster than SQL.

  • Fast to get started — Converting .osm.pbf data to a GOL is 20 times faster than an import into an SQL database. Alternatively, download pre-made data tiles for just the regions you need and automatically assemble them into a GOL.

  • Intuitive API — No need for object-relational mapping; GeoDesk queries return Python objects. Quickly discover tags, way-nodes and relation members. Get a feature's geometry, measure its length/area.

  • Proper handling of relations — (Traditional geospatial databases deal with geometric shapes and require workarounds to support this unique and powerful aspect of OSM data.)

  • Seamless integration with Shapely for advanced geometric operations, such as buffer, union, simplify, convex and concave hulls, Voronoi diagrams, and much more.

  • Modest hardware requirements — If it can run 64-bit Python, it'll run GeoDesk.

Get Started

Requirements

Download

pip install geodesk

Create a GOL

Create a Geographic Object Library based on any .osm.pbf file, using the GOL Tool.

For example:

gol build switzerland switzerland-latest.osm.pbf

Example Application

Find all the pubs in Zurich (Switzerland) and print their names:

from geodesk import *

# Open switzerland.gol
features = Features("switzerland")      

# Get the feature that represents the area of the city of Zurich
zurich = features("a[boundary=adminstrative][admin_level=8][name:en=Zurich]").one

# Define a set that contains nodes and areas that are pubs
pubs = features("na[amenity=pub]")

# Iterate through the pubs that are contained in the area of Zurich
# and print their names
for pub in pubs.within(zurich):
    print(pub.name)        

More Examples

Find all movie theaters within 500 meters from a given point:

movieTheaters = features("na[amenity=cinema]").around(
    meters=500, lat=47.37, lon=8.54)

Remember, OSM uses British English for its terminology.

Discover the bus routes that traverse a given street:

for route in street.parents("[route=bus]")):
    print(f"- {route.ref} from {route.from} to {route.to}")

Count the number of entrances of a building:

number_of_entrances = building.nodes("[entrance]").count

Documentation

GeoDesk Developer's Guide

Related Repositories

  • geodesk — GeoDesk for Java
  • libgeodesk — GeoDesk for C++
  • geodesk-gol — command-line utility for building, maintaining and querying GOL files
  • gol-tool — legacy GOL Tool (supports GOL 1.0 files)

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.

geodesk-2.2.4-cp314-cp314-win_amd64.whl (494.6 kB view details)

Uploaded CPython 3.14Windows x86-64

geodesk-2.2.4-cp314-cp314-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

geodesk-2.2.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

geodesk-2.2.4-cp314-cp314-macosx_11_0_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

geodesk-2.2.4-cp314-cp314-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

geodesk-2.2.4-cp313-cp313-win_amd64.whl (479.7 kB view details)

Uploaded CPython 3.13Windows x86-64

geodesk-2.2.4-cp313-cp313-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

geodesk-2.2.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

geodesk-2.2.4-cp313-cp313-macosx_11_0_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

geodesk-2.2.4-cp313-cp313-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

geodesk-2.2.4-cp312-cp312-win_amd64.whl (479.7 kB view details)

Uploaded CPython 3.12Windows x86-64

geodesk-2.2.4-cp312-cp312-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

geodesk-2.2.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

geodesk-2.2.4-cp312-cp312-macosx_11_0_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

geodesk-2.2.4-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

geodesk-2.2.4-cp311-cp311-win_amd64.whl (479.4 kB view details)

Uploaded CPython 3.11Windows x86-64

geodesk-2.2.4-cp311-cp311-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

geodesk-2.2.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

geodesk-2.2.4-cp311-cp311-macosx_11_0_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

geodesk-2.2.4-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

geodesk-2.2.4-cp310-cp310-win_amd64.whl (479.4 kB view details)

Uploaded CPython 3.10Windows x86-64

geodesk-2.2.4-cp310-cp310-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

geodesk-2.2.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

geodesk-2.2.4-cp310-cp310-macosx_11_0_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

geodesk-2.2.4-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file geodesk-2.2.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: geodesk-2.2.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 494.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.16

File hashes

Hashes for geodesk-2.2.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f9c31301da730345a765b0305a9eeeea3d1edd4eeeaaeb996ebf6de8bb645031
MD5 6eefcbaa212a070d6981fafcac2033e3
BLAKE2b-256 c4720123de1bb23423044a189ca6b7baeb09905c6694830baba6c36fa1191f4d

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c290ff1c705a07a102a3f0b7c1a5ce64a108dc56831a705716e6f3f614334061
MD5 2076d757454cfc1764f99dd888928009
BLAKE2b-256 61ee873e87a429c1a41e510b37da3d918801a23a2a62534b43e5588e848bb0d9

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f364073e58d95257876157e63f9395700e59b2ee62b65ca56608bce5f463afe
MD5 259bee7ce4a74cb3f6342e6d01760532
BLAKE2b-256 38e590faa99b1a52f9bc6d3c151e202ec4d5f15b47a58b6ffb90a91f73e605b4

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c62196d653190d943451d9e94039b6e71907a77b51a9dde8e6490a5bfd90c497
MD5 d3c5f419cfd9cbc139b839fdcf0f30cc
BLAKE2b-256 fd2605ff0b71a51a7f715ca75ded0ece1d6839c3b4abfa1f94cfe9e87cb9eeac

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a25b123fab2ecd5043f919a9763b66eefe8d7a0cc7a5a68ae80b07d32eaeabd
MD5 58042ccc63cf32e4cf55c514bba46fd8
BLAKE2b-256 9884cefba9f4625c48b73ab77692adc0ba29181c11256b35e4af4e22ba72bdf6

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: geodesk-2.2.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 479.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.16

File hashes

Hashes for geodesk-2.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f1f6d6707ceeac5db83e00338993c363e9f448d931eb025aa880058d679ba58e
MD5 35960d6ab9ea1f699df482230aac7390
BLAKE2b-256 6754b385e456be1bee2e74c5dfcd02b258917972be515611dc0207b4814e6086

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4442731079527eca7f115fcf73dc2260145c9d37e05a011791ef071f83861741
MD5 d2510badecb2822ac58fdc608625c85e
BLAKE2b-256 a30ff8bd68c9cd35232015a56fd4803a51a01b7771c5abb3b2be13242587c523

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 11e328ce011ce162954327b54414451f6563f868697f37d812f49ffc4b1cd4ac
MD5 5a6adbc8a94957712cecd10fad433b19
BLAKE2b-256 f3628538dd52841d14ab5076d5d396c8a35b265b6740b0a9c68af8b792f53940

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a012c19c02996f5fab4d97c4f1a04027ddf7a6eeb22847b43c8940e74bd1d6b0
MD5 d46aba40e3d67b30ab512f543a505ef6
BLAKE2b-256 c8c45e8d3671a9873ec31fd50e739e0bf062a568b5329c43b5d59df2e93caf5d

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e2e0ddf03c1bbc9ffbf03e24845235f8285ef545a6173a41112ea438610b727
MD5 bfa4a7b262bb70243e7914294555f67b
BLAKE2b-256 0e2b1afc8db21c2022b789394e5066a79e29c774d7a3d33be6e3429f60e34b26

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: geodesk-2.2.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 479.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.16

File hashes

Hashes for geodesk-2.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e13b63f10ae2c62e4838e8a2329c9c15a659b28078d3fc6497c3c401cd62c41a
MD5 c8586b80b28d4b9ae3799079b5f3bca8
BLAKE2b-256 ca522e517a6cfe36cb3f209b53b09da897121acb1c3d9aa070655f2ea81253d2

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1f85b365a1ad5b1b19b3df0755b2486d61c393ca6fa7f4d1fe4585117ae3f0b
MD5 cc515c4732330698c2c0909ed9f758df
BLAKE2b-256 3a760a3c48541300d9976654c6994c2c95a0d885258189af20fbf7fb5cbe15f6

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 669969795e2e033b4ea46ed755ae0c2c0b42d7af82b824f2285ddf742def5be6
MD5 1b892f2bfcc028148b101b635546a15d
BLAKE2b-256 14fb298a2e022925de721c9c5f05c989b5868ae6b4d941e541852b622c210b8a

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e489f5d86a8342de8dfd2ddec877cb5e9c9de234ee6bc665b8ea728afa7545cf
MD5 27eabff789f652f3acda81779ca7edb0
BLAKE2b-256 405e18d6abef62fb86aee7f21cb14755cfa49de640c2fad59ebe5f937bea70b0

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 478033e2bbb71ea64ebad9d2989ccdfd77c68e48f5e5a6ca66c264ad39e20a8b
MD5 7884480e05b95f4bd9d914f5aa34bd5b
BLAKE2b-256 d0acded624beff159011de7df7c1e23c8e338aeb993228358a5c53955a5567ea

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: geodesk-2.2.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 479.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.16

File hashes

Hashes for geodesk-2.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6eced8b241a50611fec7f0a6239324b51e0aa2eadb8faaf93556d8ef870621c2
MD5 c8ccf61a59cc03b0be4ab65542fade09
BLAKE2b-256 c46a7641bb32ce379f05a0153381abaa717f781ba5a7fff271c2d646ecb14e26

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e055b4e23de1ffbf8898269f687e9fbc32149093d4b76f4f5deb57e786d1ea20
MD5 35edb89c714009776c80936b738c7033
BLAKE2b-256 afc700485bfcd90562def1dc9ddaef15e9437eebbb36823c08aea49e93155c6d

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 54c0c0503644fffaf165e2b377ec0d33bebe6acc22e3e935592d51a93bc091e5
MD5 ac2aa41f4127524d32306015a45fd330
BLAKE2b-256 e95858ea6a147fb29bdcb1b8ef6f7a652e68586812cb1208566bd4f2be0a8613

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b4bd5e67f96d3210f1dcd205b2a20291210054aad1b3ec59bf9d3518d1c61cee
MD5 6b135699f8689ca95d3b12c0bb0a027e
BLAKE2b-256 7454cf38ca69c11599eac24cfff4343a6a9b5ab15ce27ffee06f36292bc74a43

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7cc3aacbb274657876a54bc92a429d130e9390b21764bf6da16fd2b34a74966
MD5 2ae409e1903b21aa31eb51e95c3cace6
BLAKE2b-256 cbec95b93a7d5ddf8ee3015e7244316577cdc11eaeb35a5dbb61915f6f31a699

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: geodesk-2.2.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 479.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.16

File hashes

Hashes for geodesk-2.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 32c4d4016434d0bfaa7bde6ff07f07c81a5bfc660d975e229aae2a79d2717af9
MD5 d3a46f4ac0bfa1e8d039a9358185b547
BLAKE2b-256 8f051e642a821c1679166f0c8d679f7be573889b2aff9e8d6880a8c2a7ad54a3

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70cadb381fbdd9d39874745f2eb5e6478e0c4a1fb424338a69d1569223258c11
MD5 43325ea98f8556ffd71bfa2e1d576256
BLAKE2b-256 254cd2da5e3dcb39ca1ce82c7e6567adea6136fa8fece0b5ca59ae81eee60256

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8ef2e9bbd379ccc21a3054ced601734a4d40b228e3fc0d3f084bb8e3859b61a
MD5 64cbbd1f9466d672c9dc41423ac7e473
BLAKE2b-256 8018374d470527c9a84d02bcf0fede8ca07270b23ae41c2cb16748424165ca61

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 3df318fadddf15a5124823ea5f8e02c2c5311ec5c2f60f0bc6e0e23047c0c504
MD5 3c9f1edbea40a0766e2a4c9736912f42
BLAKE2b-256 849610194a2349b86623a8141baffb27a8772a30fe2c80ea8ee42425b2b61109

See more details on using hashes here.

File details

Details for the file geodesk-2.2.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geodesk-2.2.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13c95390b5aa73f1b9c3230643b11b175f264c3430db9d904191ea92149f2c11
MD5 b5c18edc685668a8f2788ec26f7164ee
BLAKE2b-256 2b00713e9a72f1ea0caa6ac442f76f4cff3653ff1131b4c28ee95adf39babe86

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.2.4 This release

25 files

2.2.3

25 files

2.2.2

25 files

2.2.1

25 files

2.2.0

25 files

2.1.3

25 files

2.1.2

30 files

2.1.1

30 files

2.1.0

30 files

2.0.5

25 files

2.0.4

25 files

1.3.0

25 files

1.2.0

25 files

1.1.0

25 files

1.0.0

10 files

0.2.1

25 files

0.2.0

30 files

0.1.13

30 files

0.1.12

24 files

0.1.11

23 files

0.1.10

18 files

0.1.9

18 files

0.1.8

18 files

0.1.7

18 files

0.1.6

18 files

0.1.5

18 files

0.1.4

18 files

0.1.3

18 files

0.1.2

18 files

0.1.1

18 files

0.1.0

18 files

0.0.8

18 files

0.0.7

18 files

0.0.6

12 files

0.0.5

14 files

0.0.4

14 files

0.0.3

14 files

0.0.2

2 files

0.0.1

2 files

0.0.0

3 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page