Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
c84635d
Add files via upload
Aljbab14 Mar 18, 2023
0229218
Rename export_commands.py to plugInCommands.py
Aljbab14 Apr 3, 2023
90ee899
Add files via upload
Aljbab14 Apr 3, 2023
c49e754
Update plugInCommands.py
Aljbab14 Apr 5, 2023
98dcd4d
Update builtInCommands.py
Aljbab14 Apr 5, 2023
fa19c34
Add files via upload
Aljbab14 Apr 5, 2023
21a2447
Create Plug-in Commands.MD
Aljbab14 Apr 6, 2023
17ff113
Create Built in Commands.MD
Aljbab14 Apr 6, 2023
3937eaa
Update Built in Commands.MD
Aljbab14 Apr 11, 2023
c3e2ba5
Update Built in Commands.MD
Aljbab14 Apr 11, 2023
fd358ec
Update Built in Commands.MD
Aljbab14 Apr 11, 2023
1d1dde6
Update Built in Commands.MD
Aljbab14 Apr 11, 2023
5753b8c
Update builtInCommands.py
Aljbab14 Apr 11, 2023
ff01e19
Update builtInCommands.py
Aljbab14 Apr 11, 2023
bebf381
Update Plug-in Commands.MD
Aljbab14 Apr 11, 2023
759a4b3
Update plugInCommands.py
Aljbab14 Apr 11, 2023
414e804
Update builtInCommands.py
Aljbab14 Apr 11, 2023
cd570da
Add files via upload
Aljbab14 Apr 11, 2023
bec9674
Create All Commands.MD
Aljbab14 Apr 11, 2023
91b8988
Update All Commands.MD
Aljbab14 Apr 11, 2023
55848e6
Update AllCommands.py
Aljbab14 Apr 11, 2023
3e197ad
Update builtInCommands.py
Aljbab14 Apr 12, 2023
6c6714e
Add files via upload
Aljbab14 Apr 12, 2023
6138bb7
Update Built in Commands.MD
Aljbab14 Apr 12, 2023
792fa98
Update Built in Commands.MD
Aljbab14 Apr 12, 2023
12ba535
Add files via upload
Aljbab14 Apr 12, 2023
ebea113
Add files via upload
Aljbab14 Apr 12, 2023
bfebd39
Add files via upload
Aljbab14 Apr 22, 2023
3a86611
Update plugInCommands.py
Aljbab14 Apr 22, 2023
2e28a6c
Add files via upload
Aljbab14 Apr 25, 2023
30013de
Update EmbedAllCommands.py
Aljbab14 Apr 26, 2023
ed5851f
Update EmbedAllCommands.py
Aljbab14 Apr 26, 2023
4432aa0
Create EmbedAllCommands.MD
Aljbab14 Apr 26, 2023
a6a2719
Update EmbedAllCommands.MD
Aljbab14 Apr 26, 2023
efcb2b9
Update ReadPickleFile.py
Aljbab14 Apr 26, 2023
733b73c
Update EmbedAllCommands.py
Aljbab14 Apr 26, 2023
c4ce60e
Update EmbedAllCommands.MD
Aljbab14 Apr 26, 2023
5238574
Update EmbedAllCommands.MD
Aljbab14 Apr 26, 2023
f152514
Update EmbedAllCommands.MD
Aljbab14 Apr 26, 2023
66f9f01
Update EmbedAllCommands.MD
Aljbab14 Apr 26, 2023
aedfde7
Delete PickleCommands
Aljbab14 Apr 26, 2023
9515900
Add files via upload
Aljbab14 Apr 26, 2023
13cfe44
Update EmbedAllCommands.MD
Aljbab14 Apr 26, 2023
9ef9f76
Update EmbedAllCommands.py
Aljbab14 May 2, 2023
24d544c
Resolved conflicts and updated files
Aljbab14 May 2, 2023
9162072
Refactored plug-in commands.
Aljbab14 May 2, 2023
65ad8b1
Update files
Aljbab14 May 2, 2023
0a8ea00
Update EmbedAllCommands.MD
Aljbab14 May 3, 2023
ece6494
Update EmbedAllCommands.MD
Aljbab14 May 3, 2023
460a566
Update EmbedAllCommands.MD
Aljbab14 May 3, 2023
cb5995a
Update EmbedAllCommands.MD
Aljbab14 May 3, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions All Commands.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# **All Commands**
This Python script merges the data from `plugInCommands.py` and `builtInCommands.py` and saves the combined data in a JSON file called `AllCommands.json`. You can run this script in two different ways:

### *Option 1: Run the code directly:*
To run the code directly, simply execute the `AllCommands.py` script in your terminal:
```
python3 AllCommands.py
```
This will create an `AllCommands.json` file in the same directory, containing the combined data from `plugInCommands.py` and `builtInCommands.py`.

### *Option 2: Call the file from a different Python script:*
You can also use the `AllCommands.py` script as a module and call its `ExportCommands()` function from a different Python script. To do this, follow these steps:

1. Import the main function from `AllCommands.py` in your new Python script:
```
from AllCommands import ExportCommands
```
2. Call the ExportCommands() function in your new script:
```
merged_data = ExportCommands()
```
3. This will execute the merging process and return the combined data as a dictionary. The `AllCommands.json` file will also be created in the same directory as `AllCommands.py`.

Here's an example of how to use the ExportCommands() function from a different Python script:
```
from AllCommands import ExportCommands

def process_merged_data():
merged_data = ExportCommands()
# Perform additional processing on merged_data if needed

if __name__ == "__main__":
process_merged_data()
```
In this example, the `process_merged_data()` function imports and calls the `ExportCommands()` function from `AllCommands.py`. You can perform additional processing on the returned merged_data dictionary as needed.
Loading