forked from freqtrade/freqtrade
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'test' into freqtrade-develop
- Loading branch information
Showing
67 changed files
with
6,944 additions
and
1,244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
"""Script to extract the configuration json schema from config_schema.py file.""" | ||
|
||
from pathlib import Path | ||
|
||
import rapidjson | ||
|
||
from freqtrade.configuration.config_schema import CONF_SCHEMA | ||
|
||
|
||
def extract_config_json_schema(): | ||
schema_filename = Path(__file__).parent / "schema.json" | ||
with schema_filename.open("w") as f: | ||
rapidjson.dump(CONF_SCHEMA, f, indent=2) | ||
|
||
|
||
if __name__ == "__main__": | ||
extract_config_json_schema() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file renamed
BIN
+14.8 MB
...arrow-16.1.0-cp311-cp311-linux_armv7l.whl → ...arrow-17.0.0-cp311-cp311-linux_armv7l.whl
Binary file not shown.
Oops, something went wrong.