Do those wanting static typing, not have access to Mypy and hints?

This page summarizes the projects mentioned and recommended in the original post on /r/Python

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • cinder

    Cinder is Meta's internal performance-oriented production version of CPython. (by facebookincubator)

    How often have you used the dynamic features that are performance problematic? There are many dynamic aspects to python. Most of them are ok for performance. The worst ones for performance are things like adding methods/attributes to classes after class definition. You can add/redefine methods on classes which can make knowing what to lookup problematic. That's the main piece of dynamicness that static python approach from cinder, https://github.com/facebookincubator/cinder, disables. Even that is only disabled in a gradual manner in that you opt in for parts of your code to be static python modules while others behave as normal. Other thing is enable slots usage for any static module mainly meaning state up front all attributes you will have.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts