Python Library

1

Is there a place where I can query Python commands and functions in Portuguese?

Eg If I want to know about a command or module like numpy or pandas?

I noticed that a lot of the information is in English, for example if I give a help ('print') in IDLE it shows the documentation of the function only in English.

    
asked by anonymous 28.03.2018 / 18:40

1 answer

1

At the moment, most of the documentation is written in English. Some libraries already have initiates to translate documentation into other languages, see Django, for example.

If English is still a barrier for you, I can suggest that in the libraries you are looking for support is:

  • search for references in Portuguese: authors of books, forums, communities or even search on twitter
  • Open an Issue or report that the library does not support other languages. maybe this is the initial step for them to begin to consider and start something like this
  • If some of these libraries already have some translation project, see how you can help the work progress
  • As much as possible include, even if self-taught, some time of your week to study a little English. It's super tooling.

Other than that, there is not much to be done, unfortunately. Maybe some suggestion has been left out, but I hope it already helps.

    
29.03.2018 / 10:33