learning-credentials 0.3.0rc10__py3-none-any.whl → 0.3.1rc2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- learning_credentials/api/urls.py +3 -6
- learning_credentials/api/v1/urls.py +1 -1
- learning_credentials/apps.py +2 -2
- learning_credentials/compat.py +6 -3
- learning_credentials/generators.py +69 -30
- learning_credentials/models.py +1 -1
- learning_credentials/urls.py +3 -1
- {learning_credentials-0.3.0rc10.dist-info → learning_credentials-0.3.1rc2.dist-info}/METADATA +19 -1
- {learning_credentials-0.3.0rc10.dist-info → learning_credentials-0.3.1rc2.dist-info}/RECORD +13 -13
- {learning_credentials-0.3.0rc10.dist-info → learning_credentials-0.3.1rc2.dist-info}/WHEEL +0 -0
- {learning_credentials-0.3.0rc10.dist-info → learning_credentials-0.3.1rc2.dist-info}/entry_points.txt +0 -0
- {learning_credentials-0.3.0rc10.dist-info → learning_credentials-0.3.1rc2.dist-info}/licenses/LICENSE.txt +0 -0
- {learning_credentials-0.3.0rc10.dist-info → learning_credentials-0.3.1rc2.dist-info}/top_level.txt +0 -0
learning_credentials/api/urls.py
CHANGED
|
@@ -2,11 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
from django.urls import include, path
|
|
4
4
|
|
|
5
|
+
from .v1 import urls as v1_urls
|
|
6
|
+
|
|
5
7
|
urlpatterns = [
|
|
6
|
-
path(
|
|
7
|
-
"v1/",
|
|
8
|
-
include(
|
|
9
|
-
("learning_credentials.api.v1.urls", "learning_credentials_api_v1"), namespace="learning_credentials_api_v1"
|
|
10
|
-
),
|
|
11
|
-
),
|
|
8
|
+
path("v1/", include((v1_urls, "learning_credentials_api_v1"), namespace="learning_credentials_api_v1")),
|
|
12
9
|
]
|
learning_credentials/apps.py
CHANGED
|
@@ -18,8 +18,8 @@ class LearningCredentialsConfig(AppConfig):
|
|
|
18
18
|
plugin_app: ClassVar[dict[str, dict[str, dict]]] = {
|
|
19
19
|
PluginURLs.CONFIG: {
|
|
20
20
|
'lms.djangoapp': {
|
|
21
|
-
PluginURLs.NAMESPACE:
|
|
22
|
-
PluginURLs.APP_NAME:
|
|
21
|
+
PluginURLs.NAMESPACE: name,
|
|
22
|
+
PluginURLs.APP_NAME: name,
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
PluginSettings.CONFIG: {
|
learning_credentials/compat.py
CHANGED
|
@@ -52,10 +52,13 @@ def get_course_grading_policy(course_id: CourseKey) -> dict:
|
|
|
52
52
|
def _get_course_name(course_id: CourseKey) -> str:
|
|
53
53
|
"""Get the course name from Open edX."""
|
|
54
54
|
# noinspection PyUnresolvedReferences,PyPackageRequirements
|
|
55
|
-
from openedx.core.djangoapps.content.
|
|
55
|
+
from openedx.core.djangoapps.content.course_overviews.api import get_course_overview_or_none
|
|
56
56
|
|
|
57
|
-
|
|
58
|
-
|
|
57
|
+
name = str(course_id)
|
|
58
|
+
if course_overview := get_course_overview_or_none(course_id):
|
|
59
|
+
name = course_overview.cert_name_long or course_overview.display_name or name
|
|
60
|
+
|
|
61
|
+
return name
|
|
59
62
|
|
|
60
63
|
|
|
61
64
|
def _get_learning_path_name(learning_path_key: LearningPathKey) -> str:
|
|
@@ -19,9 +19,9 @@ from django.core.files.base import ContentFile
|
|
|
19
19
|
from django.core.files.storage import FileSystemStorage, default_storage
|
|
20
20
|
from pypdf import PdfReader, PdfWriter
|
|
21
21
|
from pypdf.constants import UserAccessPermissions
|
|
22
|
-
from reportlab.pdfbase import
|
|
23
|
-
from reportlab.pdfbase.ttfonts import TTFont
|
|
24
|
-
from reportlab.pdfgen import
|
|
22
|
+
from reportlab.pdfbase.pdfmetrics import FontError, FontNotFoundError, registerFont
|
|
23
|
+
from reportlab.pdfbase.ttfonts import TTFError, TTFont
|
|
24
|
+
from reportlab.pdfgen.canvas import Canvas
|
|
25
25
|
|
|
26
26
|
from .compat import get_default_storage_url, get_learning_context_name, get_localized_credential_date
|
|
27
27
|
from .models import CredentialAsset
|
|
@@ -33,6 +33,7 @@ if TYPE_CHECKING: # pragma: no cover
|
|
|
33
33
|
|
|
34
34
|
from django.contrib.auth.models import User
|
|
35
35
|
from opaque_keys.edx.keys import CourseKey
|
|
36
|
+
from pypdf import PageObject
|
|
36
37
|
|
|
37
38
|
|
|
38
39
|
def _get_user_name(user: User) -> str:
|
|
@@ -45,25 +46,29 @@ def _get_user_name(user: User) -> str:
|
|
|
45
46
|
return user.profile.name or f"{user.first_name} {user.last_name}"
|
|
46
47
|
|
|
47
48
|
|
|
48
|
-
def _register_font(
|
|
49
|
+
def _register_font(font_name: str) -> str | None:
|
|
49
50
|
"""
|
|
50
51
|
Register a custom font if specified in options. If not specified, use the default font (Helvetica).
|
|
51
52
|
|
|
52
|
-
:param
|
|
53
|
-
:returns: The font name.
|
|
53
|
+
:param font_name: The name of the font to register.
|
|
54
|
+
:returns: The font name if registered successfully, otherwise None.
|
|
54
55
|
"""
|
|
55
|
-
if
|
|
56
|
-
|
|
56
|
+
if not font_name:
|
|
57
|
+
return None
|
|
57
58
|
|
|
58
|
-
|
|
59
|
+
try:
|
|
60
|
+
registerFont(TTFont(font_name, CredentialAsset.get_asset_by_slug(font_name)))
|
|
61
|
+
except (FontError, FontNotFoundError, TTFError):
|
|
62
|
+
log.exception("Error registering font %s", font_name)
|
|
63
|
+
else:
|
|
64
|
+
return font_name
|
|
59
65
|
|
|
60
66
|
|
|
61
|
-
def _write_text_on_template(template:
|
|
67
|
+
def _write_text_on_template(template: PageObject, username: str, context_name: str, options: dict[str, Any]) -> Canvas:
|
|
62
68
|
"""
|
|
63
69
|
Prepare a new canvas and write the user and course name onto it.
|
|
64
70
|
|
|
65
71
|
:param template: Pdf template.
|
|
66
|
-
:param font: Font name.
|
|
67
72
|
:param username: The name of the user to generate the credential for.
|
|
68
73
|
:param context_name: The name of the learning context.
|
|
69
74
|
:param options: A dictionary documented in the `generate_pdf_credential` function.
|
|
@@ -86,19 +91,26 @@ def _write_text_on_template(template: any, font: str, username: str, context_nam
|
|
|
86
91
|
return tuple(int(hex_color[i : i + 2], 16) / 255 for i in range(0, 6, 2))
|
|
87
92
|
|
|
88
93
|
template_width, template_height = template.mediabox[2:]
|
|
89
|
-
pdf_canvas =
|
|
94
|
+
pdf_canvas = Canvas(io.BytesIO(), pagesize=(template_width, template_height))
|
|
95
|
+
font = _register_font(options.get('font')) or 'Helvetica'
|
|
90
96
|
|
|
91
97
|
# Write the learner name.
|
|
92
|
-
|
|
98
|
+
if options.get('name_uppercase', getattr(settings, 'LEARNING_CREDENTIALS_NAME_UPPERCASE', False)):
|
|
99
|
+
username = username.upper()
|
|
100
|
+
|
|
101
|
+
name_font = _register_font(options.get('name_font')) or font
|
|
102
|
+
pdf_canvas.setFont(name_font, options.get('name_size', 32))
|
|
93
103
|
name_color = options.get('name_color', '#000')
|
|
94
104
|
pdf_canvas.setFillColorRGB(*hex_to_rgb(name_color))
|
|
95
105
|
|
|
96
106
|
name_x = (template_width - pdf_canvas.stringWidth(username)) / 2
|
|
97
107
|
name_y = options.get('name_y', 290)
|
|
108
|
+
|
|
98
109
|
pdf_canvas.drawString(name_x, name_y, username)
|
|
99
110
|
|
|
100
111
|
# Write the learning context name.
|
|
101
|
-
|
|
112
|
+
context_name_font = _register_font(options.get('context_name_font')) or font
|
|
113
|
+
pdf_canvas.setFont(context_name_font, options.get('context_name_size', 28))
|
|
102
114
|
context_name_color = options.get('context_name_color', '#000')
|
|
103
115
|
pdf_canvas.setFillColorRGB(*hex_to_rgb(context_name_color))
|
|
104
116
|
|
|
@@ -113,13 +125,23 @@ def _write_text_on_template(template: any, font: str, username: str, context_nam
|
|
|
113
125
|
|
|
114
126
|
# Write the issue date.
|
|
115
127
|
issue_date = get_localized_credential_date()
|
|
116
|
-
|
|
128
|
+
if options.get('issue_date_uppercase', getattr(settings, 'LEARNING_CREDENTIALS_ISSUE_DATE_UPPERCASE', False)):
|
|
129
|
+
issue_date = issue_date.upper()
|
|
130
|
+
|
|
131
|
+
issue_date_font = _register_font(options.get('issue_date_font')) or font
|
|
132
|
+
pdf_canvas.setFont(issue_date_font, options.get('issue_date_size', 12))
|
|
117
133
|
issue_date_color = options.get('issue_date_color', '#000')
|
|
118
134
|
pdf_canvas.setFillColorRGB(*hex_to_rgb(issue_date_color))
|
|
119
135
|
|
|
120
136
|
issue_date_x = (template_width - pdf_canvas.stringWidth(issue_date)) / 2
|
|
137
|
+
issue_date_x += options.get('issue_date_x', 0)
|
|
121
138
|
issue_date_y = options.get('issue_date_y', 120)
|
|
122
|
-
|
|
139
|
+
|
|
140
|
+
issue_date_char_space = options.get(
|
|
141
|
+
'issue_date_char_space', getattr(settings, 'LEARNING_CREDENTIALS_ISSUE_DATE_CHAR_SPACE', 0)
|
|
142
|
+
)
|
|
143
|
+
|
|
144
|
+
pdf_canvas.drawString(issue_date_x, issue_date_y, issue_date, charSpace=issue_date_char_space)
|
|
123
145
|
|
|
124
146
|
return pdf_canvas
|
|
125
147
|
|
|
@@ -168,7 +190,7 @@ def generate_pdf_credential(
|
|
|
168
190
|
credential_uuid: UUID,
|
|
169
191
|
options: dict[str, Any],
|
|
170
192
|
) -> str:
|
|
171
|
-
"""
|
|
193
|
+
r"""
|
|
172
194
|
Generate a PDF credential.
|
|
173
195
|
|
|
174
196
|
:param learning_context_key: The ID of the course or learning path the credential is for.
|
|
@@ -179,33 +201,50 @@ def generate_pdf_credential(
|
|
|
179
201
|
|
|
180
202
|
Options:
|
|
181
203
|
- template: The path to the PDF template file.
|
|
182
|
-
-
|
|
183
|
-
A
|
|
184
|
-
- font: The name of the font to use.
|
|
204
|
+
- template_multiline: The path to the PDF template file for multiline context names.
|
|
205
|
+
A multiline context name is specified by using '\n' or ';' as a separator.
|
|
206
|
+
- font: The name of the font to use. The default font is Helvetica.
|
|
185
207
|
- name_y: The Y coordinate of the name on the credential (vertical position on the template).
|
|
186
208
|
- name_color: The color of the name on the credential (hexadecimal color code).
|
|
187
209
|
- name_size: The font size of the name on the credential. The default value is 32.
|
|
188
|
-
-
|
|
210
|
+
- name_font: The font of the name on the credential. It overrides the `font` option.
|
|
211
|
+
- name_uppercase: If set to true (without quotes), the name will be converted to uppercase.
|
|
212
|
+
The default value is False, unless specified otherwise in the instance settings.
|
|
213
|
+
- context_name: Specify the custom course or Learning Path name. If not provided, it will be retrieved
|
|
214
|
+
automatically from the "cert_name_long" or "display_name" fields for courses, or from the Learning Path model.
|
|
189
215
|
- context_name_y: The Y coordinate of the context name on the credential (vertical position on the template).
|
|
190
216
|
- context_name_color: The color of the context name on the credential (hexadecimal color code).
|
|
191
217
|
- context_name_size: The font size of the context name on the credential. The default value is 28.
|
|
218
|
+
- context_name_font: The font of the context name on the credential. It overrides the `font` option.
|
|
219
|
+
- issue_date_x: The horizontal offset for the issue date from its centered position
|
|
220
|
+
(positive values move right, negative values move left; default is 0).
|
|
192
221
|
- issue_date_y: The Y coordinate of the issue date on the credential (vertical position on the template).
|
|
193
222
|
- issue_date_color: The color of the issue date on the credential (hexadecimal color code).
|
|
223
|
+
- issue_date_size: The font size of the issue date on the credential. The default value is 12.
|
|
224
|
+
- issue_date_font: The font of the issue date on the credential. It overrides the `font` option.
|
|
225
|
+
- issue_date_char_space: The character spacing of the issue date on the credential
|
|
226
|
+
(default is 0.0, unless specified otherwise in the instance settings).
|
|
227
|
+
- issue_date_uppercase: If set to true (without quotes), the issue date will be converted to uppercase.
|
|
228
|
+
The default value is False, unless specified otherwise in the instance settings.
|
|
194
229
|
"""
|
|
195
230
|
log.info("Starting credential generation for user %s", user.id)
|
|
196
231
|
|
|
197
232
|
username = _get_user_name(user)
|
|
198
233
|
context_name = options.get('context_name') or get_learning_context_name(learning_context_key)
|
|
234
|
+
template_path = options.get('template')
|
|
199
235
|
|
|
200
|
-
#
|
|
201
|
-
|
|
202
|
-
if '
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
236
|
+
# Handle multiline context name (we support semicolon as a separator to preserve backward compatibility).
|
|
237
|
+
context_name = context_name.replace(';', '\n').replace(r'\n', '\n')
|
|
238
|
+
if '\n' in context_name:
|
|
239
|
+
# `template_two_lines` is kept for backward compatibility.
|
|
240
|
+
template_path = options.get('template_multiline', options.get('template_two_lines', template_path))
|
|
241
|
+
|
|
242
|
+
if not template_path:
|
|
243
|
+
msg = "Template path must be specified in options."
|
|
244
|
+
raise ValueError(msg)
|
|
207
245
|
|
|
208
|
-
|
|
246
|
+
# Get template from the CredentialAsset.
|
|
247
|
+
template_file = CredentialAsset.get_asset_by_slug(template_path)
|
|
209
248
|
|
|
210
249
|
# Load the PDF template.
|
|
211
250
|
with template_file.open('rb') as template_file:
|
|
@@ -214,7 +253,7 @@ def generate_pdf_credential(
|
|
|
214
253
|
credential = PdfWriter()
|
|
215
254
|
|
|
216
255
|
# Create a new canvas, prepare the page and write the data
|
|
217
|
-
pdf_canvas = _write_text_on_template(template,
|
|
256
|
+
pdf_canvas = _write_text_on_template(template, username, context_name, options)
|
|
218
257
|
|
|
219
258
|
overlay_pdf = PdfReader(io.BytesIO(pdf_canvas.getpdfdata()))
|
|
220
259
|
template.merge_page(overlay_pdf.pages[0])
|
learning_credentials/models.py
CHANGED
|
@@ -112,7 +112,7 @@ class CredentialConfiguration(TimeStampedModel):
|
|
|
112
112
|
task_path = f"{task.__wrapped__.__module__}.{task.__wrapped__.__name__}"
|
|
113
113
|
|
|
114
114
|
if self._state.adding:
|
|
115
|
-
schedule,
|
|
115
|
+
schedule, _created = IntervalSchedule.objects.get_or_create(every=10, period=IntervalSchedule.DAYS)
|
|
116
116
|
self.periodic_task = PeriodicTask.objects.create(
|
|
117
117
|
enabled=False,
|
|
118
118
|
interval=schedule,
|
learning_credentials/urls.py
CHANGED
{learning_credentials-0.3.0rc10.dist-info → learning_credentials-0.3.1rc2.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: learning-credentials
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1rc2
|
|
4
4
|
Summary: A pluggable service for preparing Open edX credentials.
|
|
5
5
|
Author-email: OpenCraft <help@opencraft.com>
|
|
6
6
|
License-Expression: AGPL-3.0-or-later
|
|
@@ -176,6 +176,24 @@ Unreleased
|
|
|
176
176
|
|
|
177
177
|
*
|
|
178
178
|
|
|
179
|
+
0.3.1 - 2025-12-15
|
|
180
|
+
******************
|
|
181
|
+
|
|
182
|
+
Added
|
|
183
|
+
=====
|
|
184
|
+
|
|
185
|
+
* Support for defining the course name using the ``cert_name_long`` field (in Studio's Advanced Settings).
|
|
186
|
+
* Support for specifying individual fonts for PDF text elements.
|
|
187
|
+
* Support for \n in learning context names in PDF certificates.
|
|
188
|
+
* Options for uppercase name and issue date in PDF certificates.
|
|
189
|
+
* Option for defining character spacing for issue date in PDF certificates.
|
|
190
|
+
* Option for defining the horizontal offset of the issue date from its centered position (``issue_date_x``).
|
|
191
|
+
|
|
192
|
+
Modified
|
|
193
|
+
========
|
|
194
|
+
|
|
195
|
+
* Replaced ``template_two_lines`` with ``template_multiline``.
|
|
196
|
+
|
|
179
197
|
0.3.0 - 2025-09-17
|
|
180
198
|
******************
|
|
181
199
|
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
learning_credentials/__init__.py,sha256=8Q0-3Hdnfmcj41EKu1GSfzEfwWcYNDlItyEEke2r9bs,62
|
|
2
2
|
learning_credentials/admin.py,sha256=ynK3tVJwLsIeV7Jk66t1FAVyVsU1G-KRIAdRkycVTmA,10439
|
|
3
|
-
learning_credentials/apps.py,sha256=
|
|
4
|
-
learning_credentials/compat.py,sha256=
|
|
3
|
+
learning_credentials/apps.py,sha256=trdQxe-JRhUdUaOQoQWiGL1sn6I1sfDiTvdCwy8yGuw,1037
|
|
4
|
+
learning_credentials/compat.py,sha256=bTAB6bTh99ZyhUqOsDtM_BuIPzFxCjySFtfvc-_fCd4,4731
|
|
5
5
|
learning_credentials/exceptions.py,sha256=UaqBVXFMWR2Iob7_LMb3j4NNVmWQFAgLi_MNMRUvGsI,290
|
|
6
|
-
learning_credentials/generators.py,sha256=
|
|
7
|
-
learning_credentials/models.py,sha256=
|
|
6
|
+
learning_credentials/generators.py,sha256=Ya0TbBD0-T0AWmp6VMQTtBmtgi2obs78vYX38SUmQX8,11696
|
|
7
|
+
learning_credentials/models.py,sha256=J_SCNiu42yhdi12eDMLsxNCTkJK7_vqneQjyGYG5KJ4,16048
|
|
8
8
|
learning_credentials/processors.py,sha256=LkdjmkLBnXc9qeMcksB1T8AQ5ZhYaECyQO__KfHB_aU,15212
|
|
9
9
|
learning_credentials/tasks.py,sha256=byoFEUvN_ayVaU5K5SlEiA7vu9BRPaSSmKnB9g5toec,1927
|
|
10
|
-
learning_credentials/urls.py,sha256=
|
|
10
|
+
learning_credentials/urls.py,sha256=gO_c930rzMylP-riQ9SGHXH9JIMF7ajySDT2Tc-E8x4,188
|
|
11
11
|
learning_credentials/api/__init__.py,sha256=q8sLFfwo5RwQu8FY6BJUL_Jrt3TUojbZK-Zlw9v08EM,40
|
|
12
|
-
learning_credentials/api/urls.py,sha256=
|
|
12
|
+
learning_credentials/api/urls.py,sha256=wW27hrrJ7D_h8PbFDbSxzeaneNla0R-56gjKy9zISG8,216
|
|
13
13
|
learning_credentials/api/v1/__init__.py,sha256=A7ZqENtM4QM1A7j_cAfnzw4zn0kuyfXSWtylFIE0_f8,43
|
|
14
14
|
learning_credentials/api/v1/permissions.py,sha256=TqM50TpR3JGUgZgIgKZF0-R_g1_P2V9bqKzYXgk-VvY,3436
|
|
15
|
-
learning_credentials/api/v1/urls.py,sha256=
|
|
15
|
+
learning_credentials/api/v1/urls.py,sha256=6YqLS4aVfA1cuLOgVe4lFUFa38wVehYKleXBF8ImMm0,287
|
|
16
16
|
learning_credentials/api/v1/views.py,sha256=rkdj1AfRBDzrpRC5uGMAxTUf4P1zs-MSF9lpNMIgYLw,3005
|
|
17
17
|
learning_credentials/conf/locale/config.yaml,sha256=jPen2DmckNDKK30axCKEd2Q2ha9oOG3IBxrJ63Pvznk,2280
|
|
18
18
|
learning_credentials/migrations/0001_initial.py,sha256=61EvThCv-0UAnhCE5feyQVfjRodbp-6cDaAr4CY5PMA,8435
|
|
@@ -31,9 +31,9 @@ learning_credentials/templates/learning_credentials/edx_ace/certificate_generate
|
|
|
31
31
|
learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/from_name.txt,sha256=-n8tjPSwfwAfeOSZ1WhcCTrpOah4VswzMZ5mh63Pxow,20
|
|
32
32
|
learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/head.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
33
|
learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/subject.txt,sha256=S7Hc5T_sZSsSBXm5_H5HBNNv16Ohl0oZn0nVqqeWL0g,132
|
|
34
|
-
learning_credentials-0.3.
|
|
35
|
-
learning_credentials-0.3.
|
|
36
|
-
learning_credentials-0.3.
|
|
37
|
-
learning_credentials-0.3.
|
|
38
|
-
learning_credentials-0.3.
|
|
39
|
-
learning_credentials-0.3.
|
|
34
|
+
learning_credentials-0.3.1rc2.dist-info/licenses/LICENSE.txt,sha256=GDpsPnW_1NKhPvZpZL9imz25P2nIpbwJPEhrlq4vPAU,34523
|
|
35
|
+
learning_credentials-0.3.1rc2.dist-info/METADATA,sha256=fHxCRRyDHCO3lP4GOMR4qW4zBcrPPuATFjPJQ0iESmU,7756
|
|
36
|
+
learning_credentials-0.3.1rc2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
37
|
+
learning_credentials-0.3.1rc2.dist-info/entry_points.txt,sha256=hHqqLUEdzAN24v5OGBX9Fr-wh3ATDPjQjByKz03eC2Y,91
|
|
38
|
+
learning_credentials-0.3.1rc2.dist-info/top_level.txt,sha256=Ce-4_leZe_nny7CpmkeRiemcDV6jIHpIvLjlcQBuf18,21
|
|
39
|
+
learning_credentials-0.3.1rc2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{learning_credentials-0.3.0rc10.dist-info → learning_credentials-0.3.1rc2.dist-info}/top_level.txt
RENAMED
|
File without changes
|