Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brraghav/simpleTools
This Repository is intended to create and maintain simple Tools that anyone can use without having to code. The tools can be as simple as extracting few keywords from text, but with lot of options and customizations.
https://github.com/brraghav/simpleTools
Last synced: 17 days ago
JSON representation
This Repository is intended to create and maintain simple Tools that anyone can use without having to code. The tools can be as simple as extracting few keywords from text, but with lot of options and customizations.
- Host: GitHub
- URL: https://github.com/brraghav/simpleTools
- Owner: brraghav
- License: mit
- Created: 2022-02-15T09:16:34.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-29T06:58:08.000Z (about 2 years ago)
- Last Synced: 2024-08-08T00:44:01.640Z (4 months ago)
- Language: Python
- Size: 41 MB
- Stars: 12
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- project-awesome - brraghav/simpleTools - This Repository is intended to create and maintain simple Tools that anyone can use without having to code. The tools can be as simple as extracting few keywords from text, but with lot of options and (Python)
README
# simpleTools
This Repository is intended to create and maintain simple Tools that anyone can use without having to code. The tools can be as simple as extracting few keywords from text, but with lot of options and customizations. \
Invoking the tools should be as simple as Double Clicking the Python files. Any extra requirements will be mentioned explicitly in the python files itself or an Usage example will be provided.### simpleLogFilter.py
Select Input Location,
Select Output Location,
Enter Output Filename if required,
Enter Keyword(s) (comma separated),
Check the suggestions option to get more keyword options.
Click on Submit and then click on Open Output File Location Button to go to the output location.![image](https://user-images.githubusercontent.com/46163555/154674017-ec517875-6015-426c-8ef7-85006e21a45a.png)
### Python Modules Installation
pip install PySimpleGUI### simpleUMLGenerator
![image](https://user-images.githubusercontent.com/27662483/155001410-b3ab267e-4cbb-4712-abf4-3314df8fcde4.png)### Pre-requisites
pip install PysimpleGUI \
pip install pylint \
Install GraphViz software from : https://graphviz.org/download/ \
You need to install Graphviz with the option "Add Graphviz to the System PATH for all users". \
If the python module does not contain <__ init __ .py>, add an empty <__ init __ .py> file in the module.### simplePy2Exe
This tool generates exe from a python file. It uses pyinstaller internally to generate the executable.### Pre-requisites
python3 -m pip install PysimpleGUI \
python3 -m pip install pyinstaller### simpleFileUtility
This tool helps in splitting a single big file into smaller chunks or merge multipe chunks of files into a single file. The testing is done only
on csv files. Support for other file types will be added later.### Pre-requisites
python3 -m pip install PysimpleGUI \
python3 -m pip install pandas### simpleParamiko
This tool helps in executing Linux commands remotely from Windows machine using Paramiko. The user can send multiple linux command at once and get the command output in the Output text box in the Windows machine itself.
### Pre-requisites
python3 -m pip install paramiko