Skip to content
This repository was archived by the owner on May 25, 2022. It is now read-only.
Closed
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
53 changes: 53 additions & 0 deletions projects/Url_Shortener/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# Url Shortner

This is a Simple Python Script which makes you're URL (Link) shortener.

# Prerequisites

- Little bit experience with Python programming language.
- Very basic terminal commands.

# Library Used
```
pip3 install pyshorteners
```

# How to run the code locally

- Clone this Repository

```
git clone https://github.com/Python-World/python-mini-projects
```

- Go to the Project directory

```
cd python-mini-projects
```

- Go to the projects folder

```
cd projects
```

- Go to the project file folder

```
cd Url-Shortener
```

- Run the following command

```
python code.py
```

# About Author

Hey, I am Gaurav 14 y/o New in Programing from India, I love to contribute to Open-Source in Python and Machine Learning. You can catch me on [Twitter](https://twitter.com/gaurtvin) and [LinkedIn](https://linkedin.com/in/gaurtvin).

Any comments, suggestions or corrections are welcome. Contribution are welcome.

## Happy Coding!
5 changes: 5 additions & 0 deletions projects/Url_Shortener/code.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import pyshorteners

s = pyshorteners.Shortener()

print(s.gitio.short('https://github.com/gaurtvin'))
53 changes: 53 additions & 0 deletions projects/Windows_Message_Notifier/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# Windows Message Notifier

This is a Simple Python Script which notify a message. It works fine with Windows and It does't work with macOS

# Prerequisites

- Little bit experience with Python programming language.
- Very basic terminal commands.

# Library Used
```
pip3 install plyer
```

# How to run the code locally

- Clone this Repository

```
git clone https://github.com/Python-World/python-mini-projects
```

- Go to the Project directory

```
cd python-mini-projects
```

- Go to the projects folder

```
cd projects
```

- Go to the project file folder

```
cd Windows-Message-Notifier
```

- Run the following command

```
python code.py
```

# About Author

Hey, I am Gaurav 14 y/o New in Programing from India, I love to contribute to Open-Source in Python and Machine Learning. You can catch me on [Twitter](https://twitter.com/gaurtvin) and [LinkedIn](https://linkedin.com/in/gaurtvin).

Any comments, suggestions or corrections are welcome.

## Happy Coding!
10 changes: 10 additions & 0 deletions projects/Windows_Message_Notifier/code.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from plyer import notification

notification.notify(
title = "Hello World!",
message= "My test Message!",
# displaying time
timeout=10
)

# This works fine with Windows 10/11. I yet not tested in macOS as I tested I update.