本文整理汇总了Python中parse_rest.datatypes.Object.class_code方法的典型用法代码示例。如果您正苦于以下问题:Python Object.class_code方法的具体用法?Python Object.class_code怎么用?Python Object.class_code使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类parse_rest.datatypes.Object
的用法示例。
在下文中一共展示了Object.class_code方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: register
# 需要导入模块: from parse_rest.datatypes import Object [as 别名]
# 或者: from parse_rest.datatypes.Object import class_code [as 别名]
import json
from pprint import pprint
from parse_rest.connection import register, ParseBatcher
from parse_rest.datatypes import Object as ParseObject
from parse_rest.datatypes import ParseType, ParseResource
APPLICATION_ID = "2yokKd96SUq3dKCQDcSI7LlGPJ7ZddnCMwbCIvX7"
REST_API_KEY = "MyfLxYfGm8iaxVahmsTCeKSNNuiz2wKzkQIOCyhS"
register(APPLICATION_ID, REST_API_KEY)
with open('doc.json') as data_file:
data = json.load(data_file)
data_to_upload = []
for course in range(len(data)):
current = data[course]
if current['Term'] == '20151':
if current['DivisionCode'] == 'CC' or current['DivisionName'] == 'SCH OF ENGR & APP SCI: UGRAD' or current['DivisionCode'] == 'BC' or current['DivisionCode'] == 'GS':
newClass = ParseObject()
newClass.class_code = current['Course']
newClass.instructor = current['Instructor1Name']
newClass.name = current['CourseTitle']
#call function that gets location, start, and end time
#newClass.location, newClass.startTime, newClass.endTime = parseMeetString(current)
data_to_upload.append(newClass)
batcher = ParseBatcher()
for x in range(0, len(data_to_upload), 50):
batcher.batch_save(data_to_upload[x: (x+50) < len(data_to_upload) ? x+50 : len(data_to_upload)])