diff --git a/README.md b/README.md index e26b0cc..1907de8 100644 --- a/README.md +++ b/README.md @@ -1,91 +1,3 @@ -

Daily Python Scripts

- -**Do you know anything that can help all to easy our tough life than tell that secret to us and help us to become lazy like Panda** - -

-    -    -    -    -

- -

-    -    -    -

- -# How to start - -* Well it's quite simple just thought of any Idea that can be automated -* Equip your weapon, I mean Python and required libraries 😂 (**[Refer here](https://automatetheboringstuff.com/)** for some basic guides to enhance Python language) -* Yess That's all you need 😋 - -## Hacktoberfest 2022 Update - -**See full details and guidelines on** - * [Hacktober cheasheat](https://github.com/metafy-social/daily-python-scripts/blob/master/HACKTOBERFEST.md) - * [Official website](https://hacktoberfest.digitalocean.com/) - - -

How to Contribute 🤔

- -You can contribute by adding new scripts, improving current scripts or Documentation. Here are some Instructions before making a Pull Request - -## Here are the steps to Make contribute 👣 - -- [x] Take a look at [Contributing Guide](https://github.com/metafy-social/daily-python-scripts/blob/master/CONTRIBUTING.md) (Necessary) -- [x] Create an issue for making any change to code. when issue will be approve you can make a change. -- [x] Pull latest change from upstream branch before starting the changing code. -- [x] Add your file in proper folder(lowercase) with README.md in it. Add requirements.txt if needed. -- [x] Please use flake8 linting in your code (See below to check flake8 linting) - -# Contributors 💪😎 -Thanks a lot for spending your time helping! Keep rocking 🍻 - - - - - - - - - -
- - bartick -
- Bartick Maiti -
-
- - metafy-bot -
- Metafy -
-
- - personal-use1 -
- Satabda Das -
-
- - N00rAhmed -
- Noor Ahmed -
-
- - artgoblin -
- Satabda Das -
-
- - rahulkarda -
- Rahul Karda -
-
- +I am Debdatta Ray. +I have made this text to md5 hash converter. +It converts the given text to hashcode. \ No newline at end of file diff --git a/txt_md5.py b/txt_md5.py new file mode 100644 index 0000000..6e75b8f --- /dev/null +++ b/txt_md5.py @@ -0,0 +1,4 @@ +import hashlib +mystring = input('Enter string to hash: ') +hash_obj = hashlib.md5(mystring.encode()) +print(hash_obj.hexdigest()) \ No newline at end of file