| Conditions | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | #!/usr/bin/env python3 |
||
| 14 | def droidscraper_main(): |
||
| 15 | """ |
||
| 16 | Wrap around :mod:`bbarchivist.networkutils` web scraping. |
||
| 17 | """ |
||
| 18 | parser = scriptutils.default_parser("bb-droidscraper", "Autoloader scraper.") |
||
| 19 | args = parser.parse_args(sys.argv[1:]) |
||
|
|
|||
| 20 | parser.set_defaults() |
||
| 21 | scriptutils.slim_preamble("DROIDSCRAPER") |
||
| 22 | print(" ") |
||
| 23 | networkutils.loader_page_scraper() |
||
| 24 | decorators.enter_to_exit(True) |
||
| 25 | |||
| 29 |