Added track formatting into baseSong.
This commit is contained in:
parent
43f630d5d3
commit
3d54a752a4
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,5 +1,5 @@
|
|||||||
# Byte-compiled / optimized / DLL files
|
# Byte-compiled / optimized / DLL files
|
||||||
src/__pycache__/
|
*__pycache__
|
||||||
src/*.py[cod]
|
src/*.py[cod]
|
||||||
src/*$py.class
|
src/*$py.class
|
||||||
|
|
||||||
|
@ -11,3 +11,6 @@ class song(object):
|
|||||||
self.duration = ""
|
self.duration = ""
|
||||||
self.size = 0
|
self.size = 0
|
||||||
self.url = ""
|
self.url = ""
|
||||||
|
|
||||||
|
def format_track(self):
|
||||||
|
return "{0}. {1}. {2}".format(self.title, self.duration, self.size)
|
@ -1,10 +1,10 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- coding: UTF-8 -*-
|
# -*- coding: UTF-8 -*-
|
||||||
import baseFile
|
|
||||||
import re
|
import re
|
||||||
import json
|
import json
|
||||||
import requests
|
import requests
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
|
from . import baseFile
|
||||||
|
|
||||||
class interface(object):
|
class interface(object):
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user