-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjs_dl.py
93 lines (82 loc) · 3.23 KB
/
js_dl.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
from prompt_toolkit import prompt
from art import *
import json
from prompt_toolkit.completion import (
WordCompleter,
Completer,
FuzzyWordCompleter,
)
import requests
class JS_DL:
def __init__(self, endpoint_url, download_url):
self.endpoint_url = endpoint_url
self.download_url = download_url
tprint("js-dl")
def list_all_libs(self):
print("\nDownloading libraries list....")
libraries_dict = requests.get(self.endpoint_url).text
libraries = json.loads(libraries_dict)
libraries_list = []
for value in libraries["results"]:
libraries_list.append(value["name"])
libraries_completion = FuzzyWordCompleter(libraries_list)
selected_library = prompt("\nLibrary: ", completer=libraries_completion)
print(selected_library)
return selected_library
def select_lib_version(self, sel_library):
# https://api.cdnjs.com/libraries/vue?fields=versions
library_version_endpoint = (
self.endpoint_url + "/" + sel_library + "?fields=versions"
)
library_versions = requests.get(library_version_endpoint).text
library_versions = json.loads(library_versions)
library_versions_list = []
for version in library_versions["versions"]:
library_versions_list.append(version)
library_versions_completer = FuzzyWordCompleter(library_versions_list)
selected_version = prompt("\nVersion: ", completer=library_versions_completer)
print(selected_version)
return selected_version
def get_lib_file_url(self, sel_library, sel_version):
# https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.11/vue.js
# https://api.cdnjs.com/libraries/vue/2.6.11?fields=files
library_download_file_endpoint = (
self.endpoint_url + "/" + sel_library + "/" + sel_version + "?fields=files"
)
library_files = requests.get(library_download_file_endpoint).text
library_files = json.loads(library_files)
file_path_urls = []
for file in library_files["files"]:
file_path_urls.append(file)
library_file_completion = FuzzyWordCompleter(file_path_urls)
selected_library_file = prompt("\nFile: ", completer=library_file_completion)
# print(selected_library_file)
library_download_url = (
self.download_url
+ "/"
+ sel_library
+ "/"
+ sel_version
+ "/"
+ selected_library_file
)
return library_download_url, selected_library_file
def download_lib_file(
self, library_download_url, selected_library_file, sel_library, sel_version
):
print(library_download_url)
file_content = requests.get(library_download_url).text
with open(selected_library_file, "w") as f:
f.write(file_content)
# Write to a external file for later use
with open("js_libraries.txt", "a+") as f2:
f2.write(
"\n"
+ sel_library
+ ","
+ sel_version
+ ","
+ selected_library_file
+ ","
+ library_download_url
)