FemtoTrader
FemtoTrader
Python 3
Hello, maybe you might support Python 3 `print ...` should be replaced by `print(...)` ``` python -m http.server 8000 ``` should be use to run micro web server Kind regards
... except if we merge ! see https://github.com/dsc/bunch/network Maybe we should create an organization and try to consolidate our efforts
I want to use [Sourcegraph code search and code review](https://sourcegraph.com) with bunch. A project maintainer needs to enable it to set up a webhook so the code is up-to-date there....
Hello, With Python 2.7: ``` from bunch import Bunch b=Bunch(foo=Bunch(lol=True), hello=42, ponies='are pretty!') [ (k,b[k]) for k in b ] ``` returns ``` [('ponies', 'are pretty!'), ('foo', Bunch(lol=True)), ('hello', 42)]...
Hello, I think it will be nice to add some tests (not with `unittest` package but using either `nosetests`or `py.test` Moreover continuous integration with Travis-CI will be a good idea...
I took most recent fork https://github.com/redodo/lunch/ and fork it https://github.com/femtotrader/lunch/ to add CI https://travis-ci.org/femtotrader/lunch I saw this with Python 3.3: AttributeError: 'Bunch' object attribute 'values' is read-only Any idea ?...
Hello, I see 2 README files so the question is Markdown or reStructuredText ? If you prefere Markdown you might be interested by https://pypi.python.org/pypi/setuptools-markdown Kind regards
Hi, this is probably out of the scope of this package... but improving URI/URL handling is probably something to consider. See discussion at https://discourse.julialang.org/t/join-parts-of-a-url-joinpath/12441/12 about `joinpath` for URL. Kind regards
Hello, I noticed you are using ``` from pandas.io.data import DataReader ``` you might use https://github.com/pydata/pandas-datareader see https://github.com/pydata/pandas/blob/master/pandas/io/data.py ``` The pandas.io.data module is moved to a separate package (pandas-datareader). After...
Hello, I wonder if we shouldn't add some logging functions. What is your opinion ? Kind regards