File: __init__.py

package info (click to toggle)
pysrs 1.0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 288 kB
  • sloc: python: 1,342; sh: 72; makefile: 23
file content (16 lines) | stat: -rw-r--r-- 345 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# Copyright (c) 2004-2010 Business Management Systems. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the same terms as Python itself.
__version__ = '1.0.4'

__all__= [
  'new',
  '__version__'
]

from . import ses

def new(secret=None,*args,**kw):
  return ses.SES(secret,*args,**kw)