Styles


Languages


Syntax

  <!-- with the wrapping background div -->
   <WrappedCode 
	   language="py"
	   mode="dark"
   >
            {`import requests
response = requests.get('<https://api.github.com>')
print(response.json())
            `}
    </WrappedCode>

    <!-- without the wrapping background div -->
    <Code 
	    language="py"
	    mode="dark"
    >
            {`import requests
response = requests.get('<https://api.github.com>')
print(response.json())
            `}
    </Code>