14 lines
281 B
Python
14 lines
281 B
Python
from nyaapy.nyaasi.nyaa import Nyaa
|
|
from nyaapy.torrent import Torrent
|
|
|
|
cat = Nyaa()
|
|
|
|
data = cat.search(
|
|
" The 100th Time's the Charm - She Was Executed 99 Times, So How Did She Unlock 'Super Love' Mode!",
|
|
category=3,
|
|
subcategory=1,
|
|
)
|
|
|
|
for i in data:
|
|
print(i.name)
|