From 20330431527b42649399741107aa1d1a2ceec575 Mon Sep 17 00:00:00 2001 From: LogendherDev Date: Sat, 29 May 2021 01:21:38 -0700 Subject: [PATCH 1/3] fits commit --- CHANGELOG.txt | 6 ++++++ Dev_WordList_Gen/__init__.py | 16 ++++++++++++++++ LICENCE.txt | 7 +++++++ MANIFEST.in | 1 + README.txt | 24 ++++++++++++++++++++++++ setup.py | 24 ++++++++++++++++++++++++ 6 files changed, 78 insertions(+) create mode 100644 CHANGELOG.txt create mode 100644 Dev_WordList_Gen/__init__.py create mode 100644 LICENCE.txt create mode 100644 MANIFEST.in create mode 100644 README.txt create mode 100644 setup.py diff --git a/CHANGELOG.txt b/CHANGELOG.txt new file mode 100644 index 0000000..540979b --- /dev/null +++ b/CHANGELOG.txt @@ -0,0 +1,6 @@ +Change Log +========== + +0.0.1 (29/05/2021) +------------------ +- First Release \ No newline at end of file diff --git a/Dev_WordList_Gen/__init__.py b/Dev_WordList_Gen/__init__.py new file mode 100644 index 0000000..2d2ddd2 --- /dev/null +++ b/Dev_WordList_Gen/__init__.py @@ -0,0 +1,16 @@ +import itertools as it +""" +chrs=input("Words :") +mins=int(input("Min Length:")) +maxs=int(input("Max Length:")) +""" + +def dev_generate(chrs,mins,maxs): + for i in range(mins,maxs+1, 1): + for combination in it.product(chrs, repeat=i): + #fo=open("wordlist.txt","a") + char=''.join(combination) + print(char) + #print(char, file=fo) + #fo.close() + return("wordlist.txt was Created Sucessfully.") diff --git a/LICENCE.txt b/LICENCE.txt new file mode 100644 index 0000000..1888c2b --- /dev/null +++ b/LICENCE.txt @@ -0,0 +1,7 @@ +Copyright 2021 Logendher Gunasekaran + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..2ee8ab3 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +global-include *.txt *.py \ No newline at end of file diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..03ad51c --- /dev/null +++ b/README.txt @@ -0,0 +1,24 @@ +Dev_WordList_Gen +Author : Logendher Gunasekaran +Getting Started +Create Your Simple Wordlist in Very Easy Steps + +import Dev_WordList_Gen + +chrs="1234567890" +mins=1 +maxs=1 +Dev_WordList_Gen.dev_generate(chrs,mins,maxs) + +output + +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..b6b5677 --- /dev/null +++ b/setup.py @@ -0,0 +1,24 @@ +from setuptools import setup, find_packages + +classifiers = [ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Education', + 'Operating System :: Microsoft :: Windows :: Windows 10', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3' +] + +setup( + name='Dev_WordList_Gen', + version='0.0.2', + description='Create a Wordlist Easily.', + long_description=open('README.txt').read() + '\n\n' + open('CHANGELOG.txt').read(), + url='', + author='Logendher Gunasekaran', + author_email='logendher@bytfort.com', + license='MIT', + classifiers=classifiers, + keywords='wordlist', + packages=find_packages(), + install_requires=['itertools'] +) \ No newline at end of file From 5e4249783be2fceaab0900645a5f3e215b4ce7f8 Mon Sep 17 00:00:00 2001 From: Logendher Gunasekaran <84576395+LogendherDev@users.noreply.github.com> Date: Sat, 29 May 2021 01:30:59 -0700 Subject: [PATCH 2/3] Update README.md --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index 48de7e1..97c5ba1 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,28 @@ # Dev-WordList-Gen Create Your Simple Wordlist in Very Easy Steps + +##Author : Logendher Gunasekaran + +##Getting Started +Create Your Simple Wordlist in Very Easy Steps +''' +import Dev_WordList_Gen + +chrs="1234567890" +mins=1 +maxs=1 +Dev_WordList_Gen.dev_generate(chrs,mins,maxs) +''' +##output +''' +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +''' From be072562e4e18cbfe5d709e690f66a4bc9cda4ec Mon Sep 17 00:00:00 2001 From: Logendher Gunasekaran <84576395+LogendherDev@users.noreply.github.com> Date: Sat, 29 May 2021 01:31:43 -0700 Subject: [PATCH 3/3] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 97c5ba1..5493810 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,20 @@ # Dev-WordList-Gen Create Your Simple Wordlist in Very Easy Steps -##Author : Logendher Gunasekaran +## Author : Logendher Gunasekaran -##Getting Started +## Getting Started Create Your Simple Wordlist in Very Easy Steps -''' +``` import Dev_WordList_Gen chrs="1234567890" mins=1 maxs=1 Dev_WordList_Gen.dev_generate(chrs,mins,maxs) -''' -##output -''' +``` +## output +``` 0 1 2 @@ -25,4 +25,4 @@ Dev_WordList_Gen.dev_generate(chrs,mins,maxs) 7 8 9 -''' +```