Skip to content
This repository was archived by the owner on Oct 9, 2024. It is now read-only.

Commit b00647e

Browse files
committed
add readme
add readme.md
1 parent cbda636 commit b00647e

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

.vscode/launch.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Python",
6+
"type": "python",
7+
"request": "launch",
8+
"stopOnEntry": false,
9+
"pythonPath": "${config:python.pythonPath}",
10+
"program": "${file}",
11+
"cwd": "${workspaceRoot}",
12+
"console": "integratedTerminal",
13+
"env": {},
14+
"envFile": "${workspaceRoot}/.env",
15+
"debugOptions": [
16+
"WaitOnAbnormalExit",
17+
"WaitOnNormalExit",
18+
"RedirectOutput"
19+
]
20+
},
21+
{
22+
"name": "Attach (Remote Debug)",
23+
"type": "python",
24+
"request": "attach",
25+
"localRoot": "${workspaceRoot}",
26+
"remoteRoot": "${workspaceRoot}",
27+
"port": 3000,
28+
"secret": "my_secret",
29+
"host": "localhost"
30+
}
31+
]
32+
}

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Usage :
2+
3+
Use for convert and split `*.ttc` file into `*.ttf` files
4+
5+
# How to use :
6+
7+
> python ttc2ttf.py [TTC_file_Path]
8+

0 commit comments

Comments
 (0)