Python REST client to interact with InvertirOnline REST API.
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Python REST client to interact with InvertirOnline REST API.
- Install the package from GitHub
$ pip install git+git://github.com/asperduti/iol-rest-client.git#egg=iol_rest_client
It's really simple to use, this is an example:
from iol_rest_client import RestClient
client = RestClient(username="YOUR_USERNAME", password="YOUR_PASSWORD")
print(client.get_estado_cuenta())
print(client.get_operaciones())
For more examples, please refer to examples
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request