Skip to content

Instantly share code, notes, and snippets.

@Beomi
Created August 3, 2018 07:00
Show Gist options
  • Save Beomi/b9ac079298d96027bedb59b93d45fa1c to your computer and use it in GitHub Desktop.
Save Beomi/b9ac079298d96027bedb59b93d45fa1c to your computer and use it in GitHub Desktop.
맥북은 언제 판매되나여
import requests
res = requests.get('https://www.apple.com/kr_edu_5001245/shop/configUpdate/MR972KH/A?option.processor__dummy_z0v3=065-C6CJ&option.memory__dummy_z0v3=065-C6CP&option.hard_drivesolid_state_drive__dummy_z0v3=065-C6CT&option.keyboard_and_documentation_z0v3=065-C6GX&option.software_placeholder_1_z0v3=065-C171&product=MR972KH%2FA&step=config').json()['body']['replace']['summary']['shippingEstimate']
if res == '현재 구매 불가':
pass
else:
import telegram
bot = telegram.Bot(token='텔레그램봇토큰')
chat_id = 12341234 # 개인 채팅 ID
bot.sendMessage(chat_id=chat_id, text='맥북사러가자 https://www.apple.com/kr_edu_5001245/shop/buy-mac/macbook-pro?product=MR972KH/A&step=config#')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment