mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
32 lines
No EOL
1,018 B
Python
32 lines
No EOL
1,018 B
Python
#!/usr/bin/python3
|
|
|
|
from glob import glob
|
|
from re import search, compile
|
|
|
|
# Globals
|
|
URL_REGEX = compile("override val mainUrl(?:\:\s?String)?[^\"']+[\"'](https?://[a-zA-Z0-9\.-]+)[\"']")
|
|
START_MARKER = "<!--SITE LIST START-->"
|
|
END_MARKER = "<!--SITE LIST END-->"
|
|
GLOB = "app/src/main/java/com/lagradost/cloudstream3/*providers/*Provider.kt"
|
|
|
|
sites = []
|
|
|
|
for path in glob(GLOB):
|
|
with open(path, "r", encoding='utf-8') as file:
|
|
try:
|
|
sites.append(search(URL_REGEX, file.read()).groups()[0])
|
|
except Exception as ex:
|
|
print("{0}: {1}".format(path, ex))
|
|
|
|
with open("README.md", "r+", encoding='utf-8') as readme:
|
|
raw = readme.read()
|
|
if START_MARKER not in raw or END_MARKER not in raw:
|
|
raise RuntimeError("Missing start and end markers")
|
|
readme.seek(0)
|
|
|
|
readme.write(raw.split(START_MARKER)[0])
|
|
for site in sites:
|
|
readme.write("- [{0}]({0}) \n".format(site))
|
|
readme.write(raw.split(END_MARKER)[-1])
|
|
|
|
readme.truncate() |