diff --git a/Automation/src/Scripts_For_Stackoverflow/README.md b/Automation/src/Scripts_For_Stackoverflow/README.md
new file mode 100644
index 00000000..f93b9f98
--- /dev/null
+++ b/Automation/src/Scripts_For_Stackoverflow/README.md
@@ -0,0 +1,7 @@
+# StackOverflow_badge_counter
+## Motivation for this script
+I have a tendency to go to the stackoverflow website again and again to check my reputation and badges. So I made this sctipt to automate the process.
+## What this script does
+This python scripts counts the gold, silver and bronze badges earned by the user. It also shows the user's current reputation as well as by how much the reputation has changed on that particular date, week.
+## Caution!!!
+Make sure you replace the user_id variable on the first line of the script to your user id which can be found on the stackoverflow website. User id can be found beside the stackoverflow icon if you go to your profile page.
diff --git a/Automation/src/Scripts_For_Stackoverflow/StackOverflow_badge_counter.py b/Automation/src/Scripts_For_Stackoverflow/StackOverflow_badge_counter.py
new file mode 100644
index 00000000..e6b4ba73
--- /dev/null
+++ b/Automation/src/Scripts_For_Stackoverflow/StackOverflow_badge_counter.py
@@ -0,0 +1,12 @@
+user_id = '22656'
+url = 'http://api.stackexchange.com/2.2/users/'+user_id+'?order=desc&sort=reputation&site=stackoverflow'
+import requests
+response = requests.get(url)
+json = response.json()
+print('Total medals = {}'.format(json['items'][0]['badge_counts']['gold']+json['items'][0]['badge_counts']['silver']+json['items'][0]['badge_counts']['bronze']))
+print('Bronze = {}'.format(json['items'][0]['badge_counts']['bronze']))
+print('Silver = {}'.format(json['items'][0]['badge_counts']['silver']))
+print('Gold = {}'.format(json['items'][0]['badge_counts']['gold']))
+print('Current reputation = {}'.format(json['items'][0]['reputation']))
+print('Reputation change today = {}'.format(json['items'][0]['reputation_change_day']))
+print('Reputation change this week = {}'.format(json['items'][0]['reputation_change_week']))