New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

python-flot-utils

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

python-flot-utils

Makes it easy to convert Python data structures to JSON strings suitable for flot series and options

  • 0.2.1
  • PyPI
  • Socket score

Maintainers
1

python-flot-utils

PyFlot makes it easy to generate flot_ graphs. Its primary goal is to allow one to specify data inputs and options in a Python application and generate the appropriate JSON. Common uses of this will be rendering into a template as flot() arguments or as the payload of an XHR response. PyFlot takes care of all the annoying details of converting types to match up with how flot expects them.

For example::

>>> import pyflot 
>>> graph = pyflot.Flot() 
>>> graph.add_line([(1, 1), (2, 2), (3, 3)]) 
>>> print graph.series_json 
[{"data": [[1, 1], [2, 2], [3, 3]]}]

In this simple example the series_json is a JSON string in the format expected by flot.

The following Django template snippet shows how you might use it in a Django template::

<script id="source" language="javascript" type="text/javascript"> 
$(function () {
    $.plot($("#linear-graph"), {{ graph.series_json|safe }}, {{ graph.options_json|safe }});
});
</script>     

.. _flot: http://code.google.com/p/flot/

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc