hibikidesu / javscraper

Python library for scraping JAVs
GNU General Public License v3.0
40 stars 9 forks source link

NotImplementedError #7

Open sugizo opened 5 months ago

sugizo commented 5 months ago

code

#jav = javscraper.OnePondo() # not work
jav = javscraper.TenMusume() # not work
jav.debug = debug
search_jav = 'cfnm'
print(jav.search(search_jav) )
get_jav = 'aarm205'
print(jav.get_video(get_jav) )

result

NotImplementedError                       Traceback (most recent call last)
[<ipython-input-25-e361f9c3c678>](https://localhost:8080/#) in <cell line: 4>()
      2 jav.debug = debug
      3 search_jav = 'cfnm'
----> 4 print(jav.search(search_jav) )
      5 get_jav = 'aarm205'
      6 print(jav.get_video(get_jav) )

[/usr/local/lib/python3.10/dist-packages/javscraper/onepondo.py](https://localhost:8080/#) in search(self, query)
     19         :return: List of found URLs
     20         """
---> 21         raise NotImplementedError()
     22 
     23     def get_video(self, video: str) -> Optional[JAVResult]:

NotImplementedError: