Skip to content

Commit

Permalink
android-12-checker: Google pls gib me Android12 kthx (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
SahilSonar authored Sep 6, 2021
1 parent 20d3c82 commit 9a4ab6e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Android 11 Checker
# Android 12 Checker

This script checks for Android 11 tags every 10 minutes. Let's just know we've been waiting for quite a while now and I was bored 😆
This script checks for Android 12 tags every 10 minutes. Let's just know we've been waiting for quite a while now and I was bored 😆
The program also requires [nyancat](https://github.com/klange/nyancat), else it will not run.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ def main():
for li in soup.findAll('li', {'class': 'RefList-item'}):
tag = li.findChildren('a', recursive=False)[0]['href'].split('/')[-1]
tag_list.append(tag)
matching = [s for s in tag_list if 'android-11' in s or 'android11' in s]
matching = [s for s in tag_list if 'android-12' in s or 'android12' in s]
if len(matching) > 0:
print('[!] ANDROID 11 IS HERE!')
print('[!] ANDROID 12 IS HERE!')
print('[!] Result: {}'.format(matching))
else:
print('[*] No Android 11 (yet) 😕')
print('[*] No Android 12 (yet) 😕')
print('[*] Sleep time! 😴')
time.sleep(10 * 60) # Wait for 10 minutes
try:
Expand Down

8 comments on commit 9a4ab6e

@gaganmalvi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

gimme authorship wen bc

@gaganmalvi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also, lessgooooooooooooo

@SahilSonar
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you want authorship for s/11/12/g?

@gaganmalvi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes
taang kheechne de na bey 😂

@SahilSonar
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You gib me android-12 or I crie ;-;

@gaganmalvi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you give me authorship naw

@ZIDAN44
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you give me authorship naw

No never

@gaganmalvi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Zidan is kil

Please sign in to comment.