2014-02-21 21:25:11 +01:00
|
|
|
# py
|
|
|
|
|
|
|
|
## Python builtins for golang
|
|
|
|
|
|
|
|
### Info
|
|
|
|
Attempt to implement most important python builtin functions in golang
|
|
|
|
|
|
|
|
### Usage
|
2014-02-21 21:26:58 +01:00
|
|
|
Install with
|
|
|
|
|
|
|
|
go get github.com/rnhmjoj/py
|
|
|
|
Use with
|
|
|
|
|
|
|
|
import (. py)
|
2014-02-21 21:25:11 +01:00
|
|
|
|
|
|
|
### Docs
|
|
|
|
See [Python docs](http://docs.python.org/3/library/functions.html). Functions should behave in the same way.
|
|
|
|
|
|
|
|
### License
|
2014-02-21 21:26:58 +01:00
|
|
|
Dual licensed under the MIT and GPL licenses:
|
|
|
|
http://www.opensource.org/licenses/mit-license.php
|
|
|
|
http://www.gnu.org/licenses/gpl.html
|