Compare commits

..

No commits in common. "main" and "devel" have entirely different histories.
main ... devel

8 changed files with 0 additions and 45 deletions

2
.gitignore vendored
View File

@ -1,2 +0,0 @@
__pycache__/
*.pyc

View File

@ -1,3 +0,0 @@
from cli import main
main()

View File

@ -1,2 +0,0 @@
import argparse

View File

@ -1 +0,0 @@

View File

@ -1,2 +0,0 @@
class GiteaIssue:

View File

@ -1,35 +0,0 @@
from urllib.parse import urlparse
def urlparse_w(url):
parseresult = urlparse(url)
splitted_path = parseresult.path.split('/')
# add some more metadata
gitea_username = splitted_path[1]
gitea_reponame = splitted_path[2]
return {
"raw": parseresult,
"username": gitea_username,
"reponame": gitea_reponame,
}
class GiteaRepo:
def __init__(self, urlspec):
"""
Return a GiteaRepo from a urlspec (see urllib.parse.ParseResult) and some other metadata
For implementation details, see urlparse_w.
If you want to take an actual url, use the .from_url classmethod.
"""
self.urlspec = urlspec
@classmethod
def from_url(cls, url):
"""
Return a GiteaRepo from a url.
"""
parsed = urlparse_w(url)
return cls(parsed)