Open triantares opened 2 years ago
Already done that in my pull request
the 'setup.py' should have: install_requires = ["BeautifulSoup4 >= 4.9.0"]
Right, forgot.
I'll add you collaborator access so you can fix any bugs you find, as I'm busy with other projects. Not motivated to do this one because it's a mess. 🤕
Right, you should have an invitation now. :-)
When installing I get 'file periscope.py (for module periscope) not found' multiple times. Yet another stumbling block.
Oh, when installing. Dammit, I didn't think of that. Installation paths are probably different than the git repo.
Can you confirm that running bin/periscope
works, though?
Can you confirm that running bin/periscope works, though? Same error as @Thanatermesis in his pastebin.
From installed path (/usr/local/bin/periscope):
Traceback (most recent call last):
File "/usr/local/bin/periscope", line 4, in
I meant from the git working directory. I know that one is fucked up.
I hate PEP 420.
Not sure if this relales to 'issue1' but ........ Shouldn't 'BeautifulSoup' be imported from 'bs4' in python3? i.e use all imports thus: "from bs4 import BeautifulSoup" ---------------------termial-snip------------- ack Beautiful periscope/plugins/Addic7ed.py 21:from BeautifulSoup import BeautifulSoup 97: soup = BeautifulSoup(content)
periscope/plugins/Podnapisi.py 22:from BeautifulSoup import BeautifulSoup 83: # Workaround for the Beautifulsoup 3.1 bug 85: soup = BeautifulSoup(content) 116: # Workaround for the Beautifulsoup 3.1 bug or HTML bugs 119: soup = BeautifulSoup(content)
periscope/plugins/TvSubtitles.py 9:import os, re, BeautifulSoup, urllib 269: soup = BeautifulSoup.BeautifulSoup(content) 294: soup = BeautifulSoup.BeautifulSoup(content) 314: soup2 = BeautifulSoup.BeautifulSoup(page2) 337: soup = BeautifulSoup.BeautifulSoup(content)
periscope/plugins/SubsWiki.py 21:from BeautifulSoup import BeautifulSoup 74: soup = BeautifulSoup(page)
periscope/plugins/SubDivX.py 27:from BeautifulSoup import BeautifulSoup 77: soup = BeautifulSoup(content) 112: soup = BeautifulSoup(content)
periscope/plugins/LegendasTV.py 35:from BeautifulSoup import BeautifulSoup, BeautifulStoneSoup 415: soup = BeautifulSoup(result)
532: soup = BeautifulSoup(result)
547: soup = BeautifulSoup(result)
572: soup = BeautifulSoup(result)
597: soup = BeautifulSoup(result)
periscope/plugins/SubScene.py 21:from BeautifulSoup import BeautifulSoup 92: soup = BeautifulSoup(page) 170: soup = BeautifulSoup(page)
periscope/plugins/Subtitulos.py 21:from BeautifulSoup import BeautifulSoup 70: soup = BeautifulSoup(content)
setup.py 15: install_requires = ["BeautifulSoup >= 3.2.0"] ----------------/terminal-snip-------------------------------------------------------