Coder Social home page Coder Social logo

merrimanind / drawpyo Goto Github PK

View Code? Open in Web Editor NEW
207.0 207.0 11.0 4.37 MB

A Python library for programmatically generating Draw.io charts.

Home Page: https://pypi.org/project/drawpyo/

License: MIT License

Python 100.00%
diagrams diagramsnet drawio drawio-tools python

drawpyo's People

Contributors

beeta avatar kinow avatar mark-iv-ii avatar merrimanind avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

drawpyo's Issues

Add BasicObject .create_from_style() function

Draw.io allows users to see the style attribute for any shape. This should be an option for parse any style attribute string into its component properties and generate a Draw.pyo BasicObject with those properties.

Create import from Draw.io file function

This will be a bigger task to get to eventually and for at least awhile there will be Draw.io features not supported in Draw.pyo. But it would be useful eventually to be able to generate a Python object from a Draw.io file and modify it.

Add FlowChart diagram type

Add a custom diagram type for working with FlowCharts.

Sub classes should include:

  • Start
  • End
  • Process
  • Decision
    Each class should have the appropriate functions for linking. FlowChart should have an .auto_layout() function that will attempt to make it pretty.

Add a from_template to object creation

It would be nice to be able to define an object with the formatting desired then create new objects that mirror the formatting by passing the template in as an argument.

Select toml vs tomllib conditionally based on Python version in build process

Starting in 3.11, Python started shipping tomllib as a standard library. Prior to that, a library had to be imported with the best option being toml. Currently, drawpyo has no dependencies except this library so it would be nice to preserve that independence. However, it would also be nice to have compatibility with Python pre 3.11.

The way it's currently handled is with a version check and a conditional import:

    if version_info.minor < 11:
        import toml

        data = toml.load(file_name)
    else:
        import tomllib

        with open(file_name, "rb") as f:
            data = tomllib.load(f)

But this won't work with builds and releases. It has to be seen if a conditional dependency can be set based on major Python version for a build.

Add BinaryTree tree diagram type

This can be a simple subclass of the basic TreeDiagram but enforcing only two children, renaming some objects to left and right, and prestyling it

Adding object from lib behaves incorrect

Thanks for the repo first.

If I only add with the ellipse, then the page only displays the basic object without ellipse
item_from_lib = drawpyo.diagram.object_from_library( page=page, library="general", obj_name="ellipse", value="ellipse" )

I have to add one more line to make it working.
item_from_lib.apply_style_string("ellipse;")

Make leading whitespaces in XML output prettier

This is a low priority since Draw.io doesn't care about white space and as soon as the file is opened and saved in Draw.io the formatting is cleaned up. But the current XML output doesn't have pretty whitespace and it bothers me.

Add FamilyTree diagram type

A new diagram type for creating actual family trees would be useful for geneological work. This could be mostly a subclass of TreeDiagrams. But it will need some added complexity to support pairs of parents as parent nodes.

Typo: File leaked in drawpyo.File.write()

ResourceWarning: unclosed file <_io.TextIOWrapper name='test_out\\extra\\Scenario3.5\\plx_253114.drawio' mode='w' encoding='utf-8'>

This appears to be due to you missing brackets:
file.close vs file.close()

f.close

It might also be a good opportunity to instead use with, which automatically closes the file for you.

with open(path.join(self.file_path, self.file_name), write_mode, encoding="utf-8") as f:
    f.write(self.xml)

Thank you for this great library - it has been hugely helpful.

Support Draw.io's XML based library file structure

The Draw.io app supports importing and exporting from an XML file format. This should be supported.

Also, if the base libraries that ship with the Draw.io app are saved in this format then this could supplant the TOML defs for the built in libraries.

Example is not working?

I feel very stupid but I am not able to run even the example:

import drawpyo
file = drawpyo.File()

Gives me:

    file = drawpyo.File()
AttributeError: partially initialized module 'drawpyo' has no attribute 'File' (most likely due to a circular import)

I just installed drawpyo in version 0.1.3 that should be fine?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.