根据`电影`名搜索信息 :param number: number/name depends on type :param sources: sources string with `,` Eg: `` :param type: `adult`, `general`
(number, sources: str = None, **kwargs)
| 8 | |
| 9 | |
| 10 | def search(number, sources: str = None, **kwargs): |
| 11 | """ 根据`电影`名搜索信息 |
| 12 | |
| 13 | :param number: number/name depends on type |
| 14 | :param sources: sources string with `,` Eg: `` |
| 15 | :param type: `adult`, `general` |
| 16 | """ |
| 17 | sc = Scraping() |
| 18 | return sc.search(number, sources, **kwargs) |
| 19 | |
| 20 | |
| 21 | def getSupportedSources(): |
no test coverage detected