Some plots from this page are now working yet: https://plotly.com/python/horizontal-bar-charts/
For instance
import plotly.express as px
df = px.data.tips()
fig = px.bar(df, x="total_bill", y="day", orientation='h')
fig.show()
results in this figure, where bars are not well aligned

Some plots from this page are now working yet: https://plotly.com/python/horizontal-bar-charts/
For instance
results in this figure, where bars are not well aligned