ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Python Web Scraping Snippets

🌐 Collection of Sublime Text snippets for web scraping in Python

Details

Installs

  • Total 527
  • Win 351
  • Mac 59
  • Linux 117
May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28
Windows 0 0 1 1 1 0 0 1 1 1 1 0 0 1 0 2 0 1 0 1 1 2 1 0 0 2 0 1 0 0 2 1 1 0 2 0 1 0 1 2 2 0 0 0 0
Mac 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
Linux 0 0 2 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 0 0 2 0 0 0 1 1 1 1 0 0 0

Readme

Source
raw.​githubusercontent.​com

🌐 Python Web Scraping Snippets

Downloads Tag Repo size License

Python Web Scraping Snippets is a collection of Sublime Text snippets for web scraping and HTML parsing in Python.

💻 Installation

The easiest way to install Python Web Scraping Snippets is through Package Control. After it is enabled inside Sublime Text, open the command palette and find Package Control: Install Package and press ENTER. Then, find Python Web Scraping Snippets in the list. Press ENTER again, and this package is installed!

📈 Snippets

Imports

Import snippets start with i followed by the import alias.

Trigger Description
ibs from bs4 import BeautifulSoup
irequests import requests
iAsyncHTMLSession from requests_html import AsyncHTMLSession
iHTMLSession from requests_html import HTMLSession

BeautifulSoup4

Trigger Description
bs bs4.BeautifulSoup
find bs4.BeautifulSoup.find
find_all bs4.BeautifulSoup.find_all
prettify bs4.BeautifulSoup.prettify
select bs4.BeautifulSoup.select
select_one bs4.BeautifulSoup.select_one

Requests

Trigger Description
delete requests.delete
get requests.get
head requests.head
patch requests.patch
post requests.post
put requests.put
request requests.request

Requests-HTML

Trigger Description
AsyncHTMLSession requests_html.AsyncHTMLSession
HTMLSession requests_html.HTMLSession

The snippet files are in the snippets folder of this GitHub repository.