Skip to main content

Parse robots.txt

Project description

robotsparsetools

robots.txt is important when crawling website

This module will help you parse robots.txt

Install

$ pip install robotsparsetools

Usage

Parse

Please create an Parse instance first

from robotsparsetools import Parse

url = "URL of robots.txt you want to parse"
p = Parse(url) # Create an instance. Returns a Parse class with the useragent as the key

# Get allow list
p.Allow(useragent)

# Get disallow list
p.Disallow(useragent)

# Get value of Crawl-delay(Return value is int or None)
p.delay(useragent)

# Find out if crawls are allowed
p.can_crawl(url, useragent)

If no useragent is specified, the value of '*' will be referenced

Also, since the Parse class inherits from dict, you can also use it like dict

from robotsparsetools import Parse

p = Parse(url)
p["*"]
p.get("*") # Can also use get method

Read

You can parse its contents by passing a text or local path to Read

from robotsparsetools import Read
import requests

url = "URL of robots.txt you want to parse"
r = requests.get(url)
p = Read(r.text)

path = "File path of robots.txt you want to parse"
p = Read(path)

The return value is a Parse instance

Make(✨ new in 1.3)

You can easily generate the contents of robots.txt by using this

from robotsparsetools import Make

base = Make()

base.add_sitemap("https://xxxxxx.com/sitemap.xml")
all = base.add_useragent("*")
all.add_disallow("/hoge")

bot = base.add_useragent("bot")
bot.add_allow(["/example", "/any/*"])
bot.add_disallow(["/test", "/xxx/"])

path = "File path"
base.to_file(path) # Output the result to a file

print(base.make()) # Generation

Below is the result of this code

User-agent: *
Disallow: /hoge

User-agent: bot
Disallow: /test
Disallow: /xxx/
Allow: /example
Allow: /any/*

Sitemap: https://xxxxxx.com/sitemap.xml

Error Classes

Also, there are three error classes

from robotsparsetools import NotURLError, NotFoundError, UserAgentExistsError

Command line

You can use rp command

$ rp URL # If you do not specify any options, output Y if crawl is allowed, N if not allowed
$ rp -a URL # Output the Allow list
$ rp -d URL # Output the Disallow list
$ rp -c URL # Output the Crawl-delay

License

This program's license is MIT

Downloads

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

robotsparsetools-1.3.3.tar.gz (6.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

robotsparsetools-1.3.3-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

Details for the file robotsparsetools-1.3.3.tar.gz.

File metadata

  • Download URL: robotsparsetools-1.3.3.tar.gz
  • Upload date:
  • Size: 6.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.1

File hashes

Hashes for robotsparsetools-1.3.3.tar.gz
Algorithm Hash digest
SHA256 71b4f51032d81a535cad944879b572adb3880f733a89d5f6995e870717eba9cd
MD5 4216e7eb019eddebbe61a1b2cc51463a
BLAKE2b-256 68048be196c8bf7617db7ac213c204a9531ceee95702a47d0837e5cacbcee5ec

See more details on using hashes here.

File details

Details for the file robotsparsetools-1.3.3-py3-none-any.whl.

File metadata

  • Download URL: robotsparsetools-1.3.3-py3-none-any.whl
  • Upload date:
  • Size: 7.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.1

File hashes

Hashes for robotsparsetools-1.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 a3db2bee06726cd72349865b296a6e4a46f4b55723cb5148e5cb3b0d64221e71
MD5 ad669ddc3d95518e655365b3a833f31f
BLAKE2b-256 2f05008448b75c0ceca5f1c2b8e499e0ca885d7168dca388165f85bfb66ae383

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page