vkruoso / tesouro-direto

A "Tesoudo Direto" crawler that reports your titles updates to you.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tesouro-direto

pypi Build Status license

Set of tools to allow automated information recovery from your "Tesouro Direto" account.

To install the tool the easiest way is to use pip:

pip install tesouro-direto

Here is a sample configuration file:

# The credentials to access the tesourodireto.bmfbovespa.com.br website.
# This is necessary to the tool to get your information and send it to you.
bmfbovespa:
    cpf: "00000000000"
    password: "secret"

# SMTP settings for email sending. If port is not specified, the default
# value is 25. Provide the username and password if necessary.
smtp:
    server: "mail.mydomain.com"
    port: 587
    username: "user"
    password: "secret"

    from: "me@mydomain.com"
    to: "you@yourdomain.com"

The main goal of this module is to generate an email that keeps you updated regarding your titles. It also aims to provide some numbers that you can use to have a better idea of how your money is working for you.

The email report allows you to have very in depth view of your titles. It lists them based on the brokerage and them on the titles you have.

Besides that it will provide the following information:

  • Summaries of all your titles;
  • Calculations about your title current situation.

Here is a sample email screenshot: (todo)

You can configure crontab to call the program above. This way you can have a automated email at the time and periodicity that you like.

There is a simple module that can calculate the amount of work days between two dates based on Brazilian national holidays. You can use it in your program if you like by importing the module.

About

A "Tesoudo Direto" crawler that reports your titles updates to you.

License:MIT License


Languages

Language:Python 75.4%Language:HTML 24.6%