Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bunji2/graph.pptx
Extracting the graph data of nodes and edges from directed graph edited in PPTX.
https://github.com/bunji2/graph.pptx
Last synced: about 14 hours ago
JSON representation
Extracting the graph data of nodes and edges from directed graph edited in PPTX.
- Host: GitHub
- URL: https://github.com/bunji2/graph.pptx
- Owner: bunji2
- License: mit
- Created: 2018-01-04T07:14:39.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-04T11:00:43.000Z (almost 7 years ago)
- Last Synced: 2024-06-20T08:00:03.884Z (5 months ago)
- Language: Go
- Homepage:
- Size: 75.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bunji2/graph.pptx
Go package that extracts the graph data of nodes and edges from directed graph edited in PPTX.
## Installation
```
go get github.com/bunji2/graph.pptx
```## Usage
Followin sample extracts nodes and edges from PPTX file "sample.pptx".
```go
import (
"fmt"
gp "github.com/bunji2/graph.pptx"
)func sample() {
gp.Init()
if err := gp.Parse("sample.pptx"); err == nil {
gp.Dump()
}
}
```## Document
* [godoc.org](https://godoc.org/github.com/bunji2/graph.pptx)## License
under the MIT License
by Bunji2