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.md b/README.md index 48de7e1..5493810 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 +``` 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