• Facebook
  • Twitter
  • Reddit
  • StumbleUpon
  • Digg
  • email

All Samples(18285)  |  Call(2)  |  Derive(0)  |  Import(18283)
Logging package for Python. Based on PEP 282 and comments thereto in
comp.lang.python, and influenced by Apache's log4j system.

Copyright (C) 2001-2010 Vinay Sajip. All Rights Reserved.

To use, simply 'import logging' and log away!

src/p/y/PyAMF-HEAD/doc/tutorials/examples/jython/ant/embedded/src/python/server.py   PyAMF(Download)
 
if __name__ == '__main__':
    import os
    import logging
    from pyamf.remoting.gateway.wsgi import WSGIGateway
    from wsgiref import simple_server
 

src/p/y/PyAMF-HEAD/doc/tutorials/examples/jython/ant/embedded/src/python/client.py   PyAMF(Download)
"""
Hello world example client for Apache Ant.
"""
 
import logging
logging.basicConfig(level=logging.INFO,
           format='%(asctime)s %(levelname)-5.5s [%(name)s] %(message)s')

src/p/y/PyAMF-HEAD/doc/tutorials/examples/actionscript/bytearray/python/gateway/gateway.py   PyAMF(Download)
# Copyright (c) 2007-2009 The PyAMF Project.
# See LICENSE.txt for details.
 
import logging
 
from pyamf.remoting.gateway.django import DjangoGateway
 

src/p/y/PyAMF-HEAD/doc/tutorials/examples/general/authentication/python/client.py   PyAMF(Download)
# Copyright (c) 2007-2009 The PyAMF Project.
# See LICENSE.txt for details.
 
 
import logging
from optparse import OptionParser
 

src/p/y/PyAMF-HEAD/doc/tutorials/examples/actionscript/simple/python/server.py   PyAMF(Download)
@since: 0.5
"""
 
import logging
from wsgiref import simple_server
 
import pyamf

src/p/y/PyAMF-HEAD/doc/tutorials/examples/actionscript/simple/python/client.py   PyAMF(Download)
"""
 
 
import logging
from server import AMF_NAMESPACE, host_info
 
import pyamf

src/p/y/PyAMF-HEAD/doc/tutorials/examples/actionscript/shell/python/gateway.py   PyAMF(Download)
@since: 0.3
"""
 
import sys, logging, types, new
import traceback, pickle
import StringIO
 

src/p/y/PyAMF-HEAD/doc/tutorials/examples/actionscript/shared-object/python/service.py   PyAMF(Download)
# Copyright (c) 2007-2009 The PyAMF Project.
# See LICENSE.txt for details.
 
import sys, os.path, operator
import logging
 
 

src/p/y/PyAMF-HEAD/doc/tutorials/examples/actionscript/shared-object/python/server.py   PyAMF(Download)
 
 
import os
import logging
 
from pyamf.remoting.gateway.wsgi import WSGIGateway
 

src/p/y/PyAMF-HEAD/doc/tutorials/examples/actionscript/shared-object/python/client.py   PyAMF(Download)
"""
 
 
import logging
from optparse import OptionParser
 
from pyamf.remoting.client import RemotingService

  1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9  Next