Skip to content

Instantly share code, notes, and snippets.

@ptejas26
ptejas26 / TaskConcurrencyManifesto.md
Last active January 1, 2025 19:12 — forked from lattner/TaskConcurrencyManifesto.md
Swift Concurrency Manifesto
@ptejas26
ptejas26 / zap.py
Created November 5, 2023 04:03 — forked from ifeherva/zap.py
Zapier Huggingface daily papers extractor
# Importing the required libraries
import requests
import re
# Defining the URL of the webpage to be scraped
url = "https://huggingface.co/papers"
# Sending a GET request to the webpage and storing the response in a variable
response = requests.get(url)