You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,14 @@
4
4
5
5
### Inspiration 💡
6
6
7
-
Some of the programs in this repository are inspired from the projects given in [Automate the Boring Stuff with Python](https://automatetheboringstuff.com/) by Al Sweigart and some other are born out of redundant curiosity of a boring mind during lazy afternoons.
7
+
Some of the programs in this repository are inspired from the projects given in [Automate the Boring Stuff with Python](https://automatetheboringstuff.com/) by [Al Sweigart](https://github.com/asweigart) and some other are born out of redundant curiosity of a boring mind during lazy afternoons.
8
8
9
9
This repository would contain python scripts, some of which might come of use occasionally. The purpose of creating this is to explore the various modules and implementations of the language through creating programs that are as much fun to use as they are to make.
10
10
11
11
## How to Use? 😀
12
12
13
13
- Clone the repository `$ git clone https://github.com/thepushkarp/JFF-Python-Scripts.git`
14
-
- Create a virtual environment ([click here](https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/) to learn abou Virtual Environment)
14
+
- Create a virtual environment ([click here](https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/) to learn about Virtual Environment)
15
15
16
16
```sh
17
17
python3 -m venv env
@@ -47,7 +47,7 @@ pip install -r requirements.txt
47
47
48
48
### Code Destroyer
49
49
50
-
This program, inspired by [benbjohnson](https://github.com/benbjohnson)'s[tweet](https://twitter.com/benbjohnson/status/533848879423578112?lang=en) replaces semicolon ";" (U+003B) in files with a Greek Question Mark ";" (U+037E), that looks alike, but shows syntax errors (since it is a different character) leaving the programmer scratching their heads in confusion. ;-)
50
+
Code Destroyer, inspired by a[tweet](https://twitter.com/benbjohnson/status/533848879423578112?lang=en) by Ben Johnson, replaces semicolon ";" (U+003B) in files with a Greek Question Mark ";" (U+037E), that looks alike, but shows syntax errors (since it is a different character) leaving the programmer scratching their heads in confusion. ;-)
51
51
52
52
#### Usage:
53
53
@@ -63,7 +63,7 @@ Enter the full filename (like helloWorld.c) in the prompt that follows.
63
63
64
64
### Phone Number and Email Extractor
65
65
66
-
This program takes in the text from your clipboard and saves the Phone Numbers and Email Addresses found in it to .txt files. It searches for Indian Mobile Phone Numbers, Toll-Free Numbers, Telephone Numbers and Emails using Regular Expressions.
66
+
Phone Number and Email Extractor takes in the text from your clipboard and saves the Phone Numbers and Email Addresses found in it to .txt files. It searches for Indian Mobile Phone Numbers, Toll-Free Numbers, Telephone Numbers and Emails using Regular Expressions.
0 commit comments