-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
installing mETL tries to install another xml2dict from pypi (not the right package) #12
Comments
It turns out, that setup.py already directly links to the proper place: dependency_links = [
'https://github.com/ceumicrodata/tarr/archive/tarr-0.1.1.zip',
'https://github.com/bfaludi/XML2Dict/archive/master.zip#egg=xml2dict-0.1'
], after Without pinpointing to the exact version, the install fails as previously.
|
No, the current xml2dict version is 0.1 what the mETL is using. I think the problem You have an another xml2dict package installed on your computer, because many package available with the same name. |
I am using virtualenvs, so I am isolated from any unknown installed packages, so no, I do not have any other I was running https://devcenter.heroku.com/articles/python-pip I have tried to create a mkvirtualenv metl
pip install https://github.com/ceumicrodata/mETL/tarball/master or better mkvirtualenv metl
pip install mETL should work without previously downloading/cloning anything and without polluting any user visible directory with python files - they are of help only for developers. This issue also prevents Can |
Yes, the package will be released to PyPI. I will found an another name for the package but I have not got any naming idea. Do you have any proposal? |
I have glanced over it - it is pretty simple & nice package! At first I though that It somehow resembles JSON, except that the output is not a string, so
What about naming it There is one thing that I spotted as potential problem: attributes are treated as sub-elements (probably intentionally), but what would be the result of parsing <item x="3">
<x>4</x>
</item> ? |
I renamed it, the xmlsquash is quite good idea, thank you. :)
|
Installing current master with
fails with this:
apparently it tries to install
https://pypi.python.org/pypi/XML2Dict/0.2.1
(https://github.com/mcspring/XML2Dict)
instead of
https://github.com/bfaludi/XML2Dict
Proposed solutions:
The text was updated successfully, but these errors were encountered: