-
Notifications
You must be signed in to change notification settings - Fork 0
/
agregaEnClassroom.py
69 lines (52 loc) · 2.17 KB
/
agregaEnClassroom.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
from __future__ import print_function
from datetime import datetime
import csv
from tkinter import filedialog as fd #Libreria para escoger archivo
import os.path
from unicodedata import name
from google.auth.transport.requests import Request
from google.oauth2.credentials import Credentials
from google_auth_oauthlib.flow import InstalledAppFlow
from googleapiclient.discovery import build
from googleapiclient import errors
from googleapiclient.errors import HttpError
SCOPES = ['https://www.googleapis.com/auth/admin.directory.user',
'https://www.googleapis.com/auth/admin.directory.group',
'https://www.googleapis.com/auth/admin.directory.orgunit',
'https://www.googleapis.com/auth/classroom.courses']
def agregaIndiv(correo, cursoId):
creds = Credentials.from_authorized_user_file('token.json', SCOPES)
service = build('classroom', 'v1', credentials=creds)
student={
'userId':correo
}
try:
student = service.courses().students().create(courseId=cursoId,body=student).execute()
print("Usuario asignado")
return True
except errors.HttpError as error:
print("Ya estas asignado en este curso")
def agregaLoteSelec(rutaCorreo, rutaCursos):
creds = Credentials.from_authorized_user_file('token.json', SCOPES)
service = build('classroom', 'v1', credentials=creds)
with open(rutaCorreo,'r') as file:
correos=csv.reader(file)
for correo in correos:
print(correo[0])
def main():
opcion= int(input("""
Seleccione el numero de operación:
1. Agregar usuario indiviudal
2. Agregar usuarios por lote a definir
3. Agregar usuarios en lote definido
Ingrese acá un numero: """))
if opcion == 1:
mail=input("Ingrese un correo valido en el sistema: ")
idCourse=input("Ingrese un Id de curso valido: ")
agregaIndiv(mail, idCourse)
elif opcion ==2:
print("Selecciona archivo con correos")
rutaMail = fd.askopenfilename()
#print("Selecciona archivo con cursos")
#rutaCourse= fd.askopenfilename()
agregaLoteSelec(rutaMail,"")