Skip to content

hayesall/ffscraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ffscraper

License_ Travis CI continuous integration build status_ Code coverage status_ Documentation status_

Yet another set of scraping tools for FanFiction.Net

Getting Started

pip install ffscraper

Interact with the scraper from the command line:

$ python -m ffscraper --help
$ python -m ffscraper -s 123

Or import the Python package and start building your own systems:

import ffscraper as ffs

sids = ["123", "124", "125"]

for id in sids:
  story = ffs.fanfic.story.scraper(id)
  print(story)

References

Attribution