第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何從 python 腳本創(chuàng)建多個(gè) PlantUML 圖?

如何從 python 腳本創(chuàng)建多個(gè) PlantUML 圖?

米琪卡哇伊 2023-03-16 09:29:04
設(shè)想大多數(shù)說明建議您可以使用 python 生成 PlantUML 圖python -m plantuml example_diagram.txt:我想創(chuàng)建一個(gè) python 腳本,它在創(chuàng)建時(shí)生成多個(gè) PlantUML 圖,這樣我就可以立即更新一組完整的圖,而無需運(yùn)行多個(gè)命令。示例文件以下文件用于生成 PlantUML 圖:example_flow.txt內(nèi)容:' http://tonyballantyne.com/graphs.html#orgheadline19' http://graphviz.org/doc/info/shapes.html' Indicate the direction of the flowchartleft to right direction' Give a block the variable name 'first' and define starting point as (*)(*) --> "The first block" as firstfirst --> "A" as A' Give the block a variable name s.t. you can just use its variable name in the next blocks  --> "D" as Dfirst --> "B" as B  --> Dfirst --> "C" as C  --> D  ' Define end point as (*)  D --> (*)Graphviz_example.txt內(nèi)容:' http://tonyballantyne.com/graphs.html#orgheadline19' http://graphviz.org/doc/info/shapes.htmldigraph summary{    // initialize the variable blocks    start [label="Start with a Node"]    next [label="Choose your shape", shape=box]    warning [label="Don't go overboard", color=Blue, fontcolor=Red,fontsize=24,style=filled, fillcolor=green,shape=octagon]    end [label="Draw your graph!", shape=box, style=filled, fillcolor=yellow]    // Indicate the direction of the flowchart    rankdir=LR; // Rank direction left to right        // Create the connections    start->next    start->warning     next->end [label="Getting Better...", fontcolor=darkblue]}問題如何從單個(gè) python 腳本創(chuàng)建這些圖表?
查看完整描述

1 回答

?
呼喚遠(yuǎn)方

TA貢獻(xiàn)1856條經(jīng)驗(yàn) 獲得超11個(gè)贊

為同一目錄下的2個(gè)文件生成

創(chuàng)建一個(gè)以內(nèi)容命名的 python 文件create_diagrams.py:


from plantuml import PlantUML

from os.path import abspath


# create a server object to call for your computations

server = PlantUML(url='http://www.plantuml.com/plantuml/img/',

                          basic_auth={},

                          form_auth={}, http_opts={}, request_opts={})


# Send and compile your diagram files to/with the PlantUML server

server.processes_file(abspath('./example_flow.txt'))

server.processes_file(abspath('./Graphviz_example.txt'))

并運(yùn)行它,例如在帶有 python 3.6 的 anaconda 中使用命令:python create_diagrams.py。


為目錄中的所有文件生成

還可以為.txt目錄中的所有文件生成圖表Diagrams:


from plantuml import PlantUML

import os

from os.path import abspath


server = PlantUML(url='http://www.plantuml.com/plantuml/img/',

                          basic_auth={},

                          form_auth={}, http_opts={}, request_opts={})



# create subfolder name

diagram_dir = "./Diagrams"


# loop through all .txt files in the subfolder

for file in os.listdir(diagram_dir):

  filename = os.fsdecode(file)

  if filename.endswith(".txt"):

    # Call the PlantUML server on the .txt file

    server.processes_file(abspath(f'./Diagrams/{filename}'))

筆記

此實(shí)現(xiàn)需要有效的互聯(lián)網(wǎng)連接,因?yàn)槟?PlantUML 服務(wù)器為您生成圖形。要在本地編譯,您還可以下載.jarPlantUML 軟件的文件并從 python 調(diào)用它來進(jìn)行計(jì)算。這篇文章的問題中給出了一個(gè)更詳細(xì)的例子。


查看完整回答
反對(duì) 回復(fù) 2023-03-16
  • 1 回答
  • 0 關(guān)注
  • 90 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)