This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { render } from 'react-dom'; | |
import InputTrigger from 'react-input-trigger'; | |
class App extends Component { | |
constructor() { | |
this.state = { | |
top: null, | |
left: null, | |
showSuggestor: false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""OAuth2Support for aiohttp.ClientSession. | |
Based on the requests_oauthlib class | |
https://github.com/requests/requests-oauthlib/blob/master/requests_oauthlib/oauth2_session.py | |
""" | |
# pylint: disable=line-too-long,bad-continuation | |
import logging | |
from oauthlib.common import generate_token, urldecode | |
from oauthlib.oauth2 import WebApplicationClient, InsecureTransportError |
OlderNewer