https://github.com/hamid0740/combo-list-fixer
Simple python code to fix your combo list by removing any text after a separator or removing duplicate combos
https://github.com/hamid0740/combo-list-fixer
combo combolist python
Last synced: 4 months ago
JSON representation
Simple python code to fix your combo list by removing any text after a separator or removing duplicate combos
- Host: GitHub
- URL: https://github.com/hamid0740/combo-list-fixer
- Owner: hamid0740
- Created: 2021-10-05T11:51:26.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-10-10T10:05:39.000Z (over 4 years ago)
- Last Synced: 2025-05-02T22:35:48.322Z (about 1 year ago)
- Topics: combo, combolist, python
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Combo List Fixer
A simple python code to fix your combo list by removing any text after a separator or removing duplicate combos
## Removing any text after a separator
As an example we have the following combo list file:
```
abc123@mail.com:password | leaked by anonymous
def456@mail.com:password | leaked by anonymous
ghi789@mail.com:password | leaked by anonymous
```
Obviously, if you want to check these accounts with a checker, you will encounter some problems.
So, by using this code, the above combo list will be like the bottom by setting " |" as the separator:
```
abc123@mail.com:password
def456@mail.com:password
ghi789@mail.com:password
```
## Removing duplicate combos
As an example we have the result of that following combo list file:
```
abc123@mail.com:password
def456@mail.com:password
ghi789@mail.com:password
def456@mail.com:password
```
Then after you accept to remove duplicate combos, the results bottom will be saved:
```
abc123@mail.com:password
def456@mail.com:password
ghi789@mail.com:password
```
## Output
After you enter the required info, if the operation completes successfully, the results will be saved as `output.txt`.
Hope you like the code ❤