new exports and restructuring
All checks were successful
All checks were successful
This commit is contained in:
parent
43d21deeed
commit
fc80fc9b84
2 changed files with 18 additions and 1 deletions
16
README.md
16
README.md
|
@ -17,7 +17,9 @@ specified depencencies are not hosted on that index.
|
|||
|
||||
## Usage
|
||||
|
||||
`skyeweave` is a CLI application, meaning it needs to be accessed via the commandline.
|
||||
### commandline
|
||||
|
||||
`skyeweave` is primarily a CLI application.
|
||||
|
||||
The following options are available:
|
||||
|
||||
|
@ -39,6 +41,18 @@ skyeweave --output out --id 70
|
|||
|
||||
This would generate the expressions for Scathach (Servant Id 70) in the folder out, using subfolders to better separate the outputs of multiple runs.
|
||||
|
||||
### python scripts [EXPERIMENTAL]
|
||||
|
||||
`skyeweave` can also be used in other Python scripts.
|
||||
|
||||
```python
|
||||
from skyeweave import compose
|
||||
|
||||
compose(70)
|
||||
```
|
||||
|
||||
This feature will be expanded upon in future releases.
|
||||
|
||||
## Issues / Support
|
||||
|
||||
If there are any issues with `skyeweave`, feel free to reach out to me using the AtlasAcademy discord (`#dev-corner`) or create an issue in this repo.
|
||||
|
|
3
test.py
Normal file
3
test.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from skyeweave import compose
|
||||
|
||||
compose(70)
|
Loading…
Reference in a new issue