mirror of
https://github.com/kennethreitz/neon-api-python.git
synced 2026-06-05 22:50:18 +00:00
14 lines
207 B
Python
14 lines
207 B
Python
from .client import NeonAPI
|
|
from .__version__ import __version__
|
|
|
|
|
|
def from_environ():
|
|
return NeonAPI.from_environ()
|
|
|
|
|
|
def from_token(token):
|
|
return NeonAPI.from_token(token)
|
|
|
|
|
|
from .client import *
|