Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add files via upload #36

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 3 additions & 91 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,91 +1,3 @@
<h1 align=center> Daily Python Scripts </h1>

**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**

<p align="center">
<a href="https://github.com/metafy-social/daily-python-scripts/issues"><img src="https://img.shields.io/github/issues/metafy-social/daily-python-scripts.svg?style=for-the-badge&logo=appveyor" /></a>&nbsp;&nbsp;
<a href="https://github.com/metafy-social/daily-python-scripts/fork"><img src="https://img.shields.io/github/forks/metafy-social/daily-python-scripts.svg?style=for-the-badge&logo=appveyor" /></a>&nbsp;&nbsp;
<a href="#"><img src="https://img.shields.io/github/stars/metafy-social/daily-python-scripts.svg?style=for-the-badge&logo=appveyor" /></a>&nbsp;&nbsp;
<a href="https://github.com/metafy-social/daily-python-scripts/blob/master/LICENSE"><img src="https://img.shields.io/github/license/metafy-social/daily-python-scripts.svg?style=for-the-badge&logo=appveyor" /></a>&nbsp;&nbsp;
</p>

<p align="center">
<a href="#"><img src="https://forthebadge.com/images/badges/built-with-love.svg" /></a>&nbsp;&nbsp;
<a href="#"><img src="https://forthebadge.com/images/badges/made-with-python.svg" /></a>&nbsp;&nbsp;
<a href="#"><img src="https://forthebadge.com/images/badges/built-by-developers.svg" /></a>&nbsp;&nbsp;
</p>

# 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/)


<h1 align=center> How to Contribute 🤔 </h1>

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 🍻
<!-- readme: contributors -start -->
<table>
<tr>
<td align="center">
<a href="https://github.com/bartick">
<img src="https://avatars.githubusercontent.com/u/69100224?v=4" width="100;" alt="bartick"/>
<br />
<sub><b>Bartick Maiti</b></sub>
</a>
</td>
<td align="center">
<a href="https://github.com/metafy-bot">
<img src="https://avatars.githubusercontent.com/u/114511019?v=4" width="100;" alt="metafy-bot"/>
<br />
<sub><b>Metafy</b></sub>
</a>
</td>
<td align="center">
<a href="https://github.com/personal-use1">
<img src="https://avatars.githubusercontent.com/u/115635715?v=4" width="100;" alt="personal-use1"/>
<br />
<sub><b>Satabda Das</b></sub>
</a>
</td>
<td align="center">
<a href="https://github.com/N00rAhmed">
<img src="https://avatars.githubusercontent.com/u/86896171?v=4" width="100;" alt="N00rAhmed"/>
<br />
<sub><b>Noor Ahmed</b></sub>
</a>
</td>
<td align="center">
<a href="https://github.com/artgoblin">
<img src="https://avatars.githubusercontent.com/u/72606593?v=4" width="100;" alt="artgoblin"/>
<br />
<sub><b>Satabda Das</b></sub>
</a>
</td>
<td align="center">
<a href="https://github.com/rahulkarda">
<img src="https://avatars.githubusercontent.com/u/76204863?v=4" width="100;" alt="rahulkarda"/>
<br />
<sub><b>Rahul Karda</b></sub>
</a>
</td></tr>
</table>
<!-- readme: contributors -end -->
I am Debdatta Ray.
I have made this text to md5 hash converter.
It converts the given text to hashcode.
4 changes: 4 additions & 0 deletions txt_md5.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import hashlib
mystring = input('Enter string to hash: ')
hash_obj = hashlib.md5(mystring.encode())
print(hash_obj.hexdigest())