Cin7 notes, BigIdeas notes and just updated a script for cin7.
This commit is contained in:
@ -425,6 +425,7 @@ Other question from Sophia:
|
||||
## 2/23/2024
|
||||
|
||||
Script for adding their Custom end of [quiz verbiage](./Notes for NorthPass Review.docx).
|
||||
|
||||
```js
|
||||
let observer;
|
||||
|
||||
|
||||
@ -69,4 +69,11 @@ Expected a process --> here's version 1, go check it out. Instead, it was a flui
|
||||
|
||||
### Post-launch Notes
|
||||
|
||||
TODO: They still need course migration for their instances. Charles to do this.
|
||||
DONE: They still need course migration for their instances. Charles to do this.
|
||||
|
||||
## 02/26/2024
|
||||
|
||||
### Weekly Sync
|
||||
|
||||
Category & Filter Links
|
||||
|
||||
|
||||
@ -315,3 +315,9 @@ ZJv566jvbzHpfCTqrJyj7Guvjr9i56NpLmz2DA==
|
||||
-----END CERTIFICATE-----
|
||||
```
|
||||
Logout URL: https://login.microsoftonline.com/43f1ba74-0140-48d7-9ded-17e6e43a6ef6/saml2
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="wistia_responsive_padding" style="padding:56.25% 0 0 0;position:relative;"><div class="wistia_responsive_wrapper" style="height:100%;left:0;position:absolute;top:0;width:100%;"><iframe src="https://fast.wistia.net/embed/iframe/abeeiozirh?seo=false&videoFoam=true" title="Visit Capture Overview - ODM Video" allow="autoplay; fullscreen" allowtransparency="true" frameborder="0" scrolling="no" class="wistia_embed" name="wistia_embed" msallowfullscreen width="100%" height="100%"></iframe></div></div>
|
||||
<script src="https://fast.wistia.net/assets/external/E-v1.js" async></script>
|
||||
|
||||
@ -3,11 +3,11 @@ import os
|
||||
import Apikeys
|
||||
import requests
|
||||
|
||||
apikey = Apikeys.WALMARTPROD
|
||||
apikey = Apikeys.CIN7
|
||||
cmd = "touch ~/Downloads/Spark_Categories.csv"
|
||||
|
||||
os.system(cmd)
|
||||
url = "https://api2.northpass.com/v2/categories?limit=100"
|
||||
url = "https://api.northpass.com/v2/categories?limit=100"
|
||||
headers = {
|
||||
"accept": "application/json",
|
||||
"X-Api-Key" : apikey,
|
||||
@ -18,12 +18,12 @@ response = response.json()
|
||||
for item in response['data']:
|
||||
id = item['id']
|
||||
name = item['attributes']['name']
|
||||
with open('/Users/normrasmussen/Downloads/Spark_Categories.csv', 'a', newline='') as csvfile:
|
||||
with open('/Users/normrasmussen/Downloads/Cin7.csv', 'a', newline='') as csvfile:
|
||||
writer = csv.writer(csvfile, delimiter=',', quotechar='|', quoting=csv.QUOTE_MINIMAL)
|
||||
writer.writerow([name, id,])
|
||||
# print(f"Category: {name} and ID: {id}")
|
||||
|
||||
with open('/Users/normrasmussen/Downloads/Spark_Categories.csv', 'r') as readfile:
|
||||
with open('/Users/normrasmussen/Downloads/Cin7.csv', 'r') as readfile:
|
||||
reader = csv.reader(readfile)
|
||||
for row in reader:
|
||||
print(row)
|
||||
|
||||
10
Todos.md
10
Todos.md
@ -18,7 +18,7 @@
|
||||
|
||||
## 2/21/2024
|
||||
|
||||
- [ ] Begin design of Luminate Learning Path completion page
|
||||
- [-] Begin design of Luminate Learning Path completion page
|
||||
- [ ] Test Weglot in templates for Datasnipper
|
||||
- [ ] Can we adjust where the button shows up?
|
||||
- [ ] Can we adjust dynamic elements that translate and are too long?
|
||||
@ -41,7 +41,13 @@ FEAT: Transcripts page - Clickable courses, Export of table "proof for learner",
|
||||
|
||||
## 02-23-2024
|
||||
|
||||
- [ ] HackerRank - Publish and force retakes on all courses in their LP.
|
||||
- [X] HackerRank - Publish and force retakes on all courses in their LP.
|
||||
- [ ] Move HackerRank to old publishing.
|
||||
- [ ] Anthology - Test products on Dashboard with *only* Line images and Text product.
|
||||
- [ ] Anthology - Add Properties Updates to CSV Workflow.
|
||||
|
||||
## 02-26-2024
|
||||
|
||||
- [ ] Cin7: updating properties from course settings not working. Figure out fix.
|
||||
- [ ] Artera: Update CustomCSS tab with Milestone language.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user