79 Companies using Bokeh

NameLinksEmployeesRevenueTrafficCountrySEOIndustry
logo
Motion2AI

ai-powered forklift telem..

20$42K - $3K$0 united states ..100%
logo
VES Ltd

better air for the built ..

142$34K - $1K$96K united kingdom..83%
logo
Bloom Burton & Co.

accelerating returns in h..

30$28K - $50K$53K canada74%
logo
Atama.AI

atama.ai develops ai-base..

9$4K - $24K$0 netherlands83%
logo
IFR-A / International Foo..

international food recrui..

6$30K - $45K$4K netherlands86%
logo
Bokeh

bokeh is an integrated cr..

14$25K - $14K$57K united states ..93%
logo
Optimalistic

optimalistic ontwikkelt o..

5$7K - $41K$639 netherlands100%
logo
G&Partners SA

progettazione, vendita e ..

6$28K - $37K$944 switzerland73%
logo
Bokeh Production

Imaginer - Produire - Réa..

3$29K - $40K$1K france67%
logo
KPI Retail-Sales & Mercha..

plateforme b2b dotée de n..

1$21K - $22K$56K morocco8%
logo
Stock + Bokeh

storytelling built on fee..

2$25K - $44K$516 united kingdom..3%
logo
Delicious Bokeh

Most productions companie..

4$35K - $20K$94K south africa8%
logo
Pixel Bokeh Productions L..

Using video and animation..

1$15K - $7K$78K united states ..51%
logo
Snow Academy

Innovation Skills for Tea..

2$8K - $6K$80K united states ..54%
logo
bokeh marketing

1$42K - $36K$76K united kingdom..93%

Want to download the entire list?

Enter your email and download the entire list of 79+ companies

We care about your data. Read our privacy policy.

How to use Bokeh

Bokeh is a Python library that provides interactive visualizations for web browsers. Here are the steps to use Bokeh:

  1. Install Bokeh: First, you need to install Bokeh on your computer or server where you will be running your Python code. You can do this by using pip, the package installer for Python. Open your command prompt and run the following command:
pip install bokeh
  1. Import Bokeh: Once you have installed Bokeh, you can import it in your Python code using the following command:
from bokeh.plotting import figure, output_file, show
  1. Create a plot: You can create a plot using the
    figure
    function from Bokeh. You can pass various parameters to this function to customize your plot, such as the title, axis labels, and plot dimensions.
p = figure(title="My Plot", x_axis_label='X', y_axis_label='Y', plot_width=400, plot_height=400)
  1. Add data to the plot: After you have created a plot, you can add data to it using various glyph functions provided by Bokeh. For example, you can add circles to the plot with the
    circle
    function.
p.circle([1, 2, 3], [4, 5, 6], size=10, color="navy", alpha=0.5)
  1. Specify output options: Before you can display or save your plot, you need to specify the output options. You can do this using the
    output_file
    function from Bokeh.
output_file("myplot.html")
  1. Display or save the plot: Finally, you can display or save your plot using the
    show
    function from Bokeh.
show(p)

Alternatively, you can save the plot to a file using the

save
function.

from bokeh.io import export_png export_png(p, filename="myplot.png")

These are the basic steps you need to follow to use Bokeh. However, Bokeh provides many more features and customization options, such as different types of glyphs, layouts, and interactive widgets. You can explore these features in the Bokeh documentation and examples gallery.

Make your sales data-driven.

Website's technology stack, including its CMS, ecommerce platform, and payment processor, along with details about the industry, company and its contacts.

GDPR Compliant

CCPA Compliant

SOC2 Compliant

App screenshot