Bravera
Active member
- Joined
- Oct 2, 2017
- Messages
- 692
Does anyone know of a group text editor that we can work together to edit this text file as a team?
We would want something private that keeps track of all edits, or allows a moderator to approve edits?
https://www.file.io/download/uKCeyu1ancRJ
^Entire JOS as one Text File
I am not sure that each page should be translated, for example, the rhythmic poems probably wont be translated very well.
The Enochian/Meditation pronunciations will probably not translate very well.
Azazels Astrology Descriptions will probably not translate accurately.
etc.
We would want to work as a team to figure out exactly what should be translated.
Go through each page and make sure there is nothing missing or needs to be formated.
Satanisgod.org Sitemap
^Website to obtain all HTMLs from Entire Website(Not including External Websites)
^Source code to extract HTMLs from XML Sitemap(Python 3.9.1)
Once this is completed, we can use this for any translation program.
We would want something private that keeps track of all edits, or allows a moderator to approve edits?
https://www.file.io/download/uKCeyu1ancRJ
^Entire JOS as one Text File
I am not sure that each page should be translated, for example, the rhythmic poems probably wont be translated very well.
The Enochian/Meditation pronunciations will probably not translate very well.
Azazels Astrology Descriptions will probably not translate accurately.
etc.
We would want to work as a team to figure out exactly what should be translated.
Go through each page and make sure there is nothing missing or needs to be formated.
Satanisgod.org Sitemap
^Website to obtain all HTMLs from Entire Website(Not including External Websites)
Code:
#GET XML
#GET LIST OF ALL HTTPS IN XML
from bs4 import BeautifulSoup
import re
def cleanhtml(raw_html):
cleanr = re.compile('<.*?>')
cleantext = re.sub(cleanr, '' ,raw_html)
return(cleantext)
text = str
with open("sitemap.xml", "r") as f:
text = f.read()
soup = BeautifulSoup(text)
sitemapTags = soup.find_all("loc")
sitelist = []
for sitemap in sitemapTags:
sitelist.append(cleanhtml(str(sitemap)))
for x in sitelist:
print(x)
Once this is completed, we can use this for any translation program.