summaryrefslogtreecommitdiff
path: root/plac/doc/example3.py
blob: 979b1a4c6ac6a616de3df67727f43f6e5a42dbce (plain)
1
2
3
4
5
6
7
8
# example3.py
def main(dsn):
    "Do something with the database"
    print(dsn)
    # ...
 
if __name__ == '__main__':
    import plac; plac.call(main)