Skip to content

Instantly share code, notes, and snippets.

@jkhaui
Created January 21, 2019 05:31
Show Gist options
  • Save jkhaui/3e18d7a233255f9dcaa16cc4797b4430 to your computer and use it in GitHub Desktop.
Save jkhaui/3e18d7a233255f9dcaa16cc4797b4430 to your computer and use it in GitHub Desktop.
from graphene import ObjectType, String, Field, Int
# Schema Objects
class CitationObject(ObjectType):
title = String()
oclc = Int()
language = String()
publisher = String()
city = String()
publish_year = Int()
pages = Int()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment