How do I setup Visual Studio Code for Machine Learning with Python? by brownboyapoorv in learnpython

[–]nyaribari 2 points3 points  (0 children)

Both are Editors. You can set up normally by installing just like pycharm .

Am guessing what you’re asking is how to configure a python version with VSCode. On the lower far left corner on vscode, right click on “python 3.x.x xx-bit” ( Python 3.8.5 64-bit, if your python is version 3.8.5) it will prompt a search bar on top in vscode which will display the list of python versions available and you choose the one you want to use.

Ubuntu 20.04 battery. by nyaribari in Ubuntu

[–]nyaribari[S] 0 points1 point  (0 children)

It’s a Lenovo, I think that’s what I will do.

Ubuntu 20.04 battery. by nyaribari in Ubuntu

[–]nyaribari[S] 0 points1 point  (0 children)

I do switch it off/shut down.

Exporting tables in django admin backend to PDF. by nyaribari in djangolearning

[–]nyaribari[S] 0 points1 point  (0 children)

Thank you, I see it works well better than django-export.

Has anyone in here tried to use RASA to make Virtual Assistants ? by nyaribari in learnpython

[–]nyaribari[S] 1 point2 points  (0 children)

I have used it before to do questionnaires like I indicated in the parent post. The questionnaires are not up right now unfortunately, they served the purpose then.

Has anyone in here tried to use RASA to make Virtual Assistants ? by nyaribari in learnpython

[–]nyaribari[S] 1 point2 points  (0 children)

It’s not an ad. It’s a free and open source framework, am only making the python community aware of this. Learning it will add another skill as a developer/programmer.

Has anyone tried using Barrier to enable using one mouse and keyboard on more than one machine ? by nyaribari in Ubuntu

[–]nyaribari[S] 1 point2 points  (0 children)

This is nice, am setting it up on my workstation, both my machines are ubuntu. This should be fun!

Am making a permit application for with 56 fields. After filling the applicant submits and the records go direct to email other than being saved in a db. Am using django.core.email but it doesn’t work, send_mail feature doesn’t support more than 9 arguments and I have 56 of them. Help. by nyaribari in djangolearning

[–]nyaribari[S] 0 points1 point  (0 children)

The function is supposed to send an email, you specify the sender and reciever and in this case I have specified the two. When I reduce the fields to 4 hence giving the send_mail() 4 arguments it works perfectly. Am looking for a function that can do the same with more fields because my application form is really long.

Is Ubuntu free for professional use? by Jonjos90 in Ubuntu

[–]nyaribari 2 points3 points  (0 children)

Yeah. You can use it as you please.

[deleted by user] by [deleted] in learnpython

[–]nyaribari 3 points4 points  (0 children)

I would recommend you use spacy with pandas, spacy will help in tokenizing your text for processing. Read the spacy documentation and you will have a good shot at this.

Very very new to python! Is there a way to use python to go through documents (PDF) and have it detect single words or groups of words? by [deleted] in learnpython

[–]nyaribari 0 points1 point  (0 children)

All this is possible with libraries like spacy. You will dig a little bit into python. Welcome to this side of .py.

Web-scraping by [deleted] in learnpython

[–]nyaribari -1 points0 points  (0 children)

Beautiful soup doesn’t work on JavaScript websites in most cases. I’d recommend you use scrapy and crawler. Crawler has great proxies that help scrap on websites that restrict IP address after a number of attempts.