Pythonology
Pythonology
  • 124
  • 657 913
Set Up Thonny IDE Virtual Environment
In this video you are going to learn how to create a virtual environment for Thonny IDE. Thonny IDE is a great IDE for beginners in Python.
Imagine having multiple projects, each requiring different versions of the same library. Without virtual environments, installing these libraries system-wide could lead to conflicts and unexpected behavior. Virtual environments create isolated spaces for each project, ensuring they have the specific dependencies they need without affecting other projects or the system itself.
Переглядів: 136

Відео

TinyDB: A Lightweight Python Database For Simple Projects
Переглядів 307Місяць тому
TinyDB is a Python library that offers a simple document oriented (any document represented as dict can be stored in TinyDB) approach to storing and managing data. Support Pythonology www.buymeacoffee.com/pythonology - Read More on Pythonology Website- pythonology.eu/tinydb-a-lightweight-python-database-for-simple-projects/ Best Online Resource for Python Datacamp: The best online resource to l...
Python Type Hints: More Readable Code With type Hints in Python
Переглядів 205Місяць тому
Type hints are comments/annotations that specify the expected data types for variables, function arguments, and return values. By incorporating type hints, you can significantly enhance the readability, maintainability, and reliability of your Python code. Support Pythonology www.buymeacoffee.com/pythonology Read More on Pythonology Website pythonology.eu/cleaner-more-reliable-python-code-with-...
How to Use Pydoc: A Guide for Generating Python Documentation
Переглядів 3,8 тис.7 місяців тому
PyDoc is a module that helps you create documentation for your Python code. In this video, you will learn how to use Pydoc to write docstrings, generate HTML pages, and browse the documentation of any Python module. Whether you are a beginner or an expert, Pydoc can help you document your code better and faster. Watch this video to find out how. Article and Code on Pythonology Website: pythonol...
Text Classification with Python: Build and Compare Three Text Classifiers
Переглядів 9 тис.9 місяців тому
Text Classification involves assigning a label to a piece of text based on its content or context. In this tutorial we learn how to classify texts by building three text classifiers: LinearSVC, ComplementNB, and MultinomialNB, We will use Scikit-learn, and Kaggle and the datasets available there. Datacamp: The best online resource to learn Python, Web Scraping, Data analysis, and Data Science (...
Text Analysis with Python: Intro to Textacy
Переглядів 2,7 тис.10 місяців тому
Textacy is a Python library for performing a variety of natural language processing (NLP) tasks, built on the high-performance spaCy library. you will learn how extracts N-grams, key terms, key words in context, readability value, number of unique words, lexical diversity,... using Textacy. Datacamp: The best online resource to learn Python, Web Scraping, Data analysis, and Data Science (Affili...
Text Analysis with Python: Intro to Spacy
Переглядів 3,4 тис.10 місяців тому
Learn how to use Spacy to do common NLP tasks such as Tokenization, Part of Speech Tagging, Named Entity Recognition, Dependency Parsing, and Lemmatization! Datacamp: The best online resource to learn Python, Web Scraping, Data analysis, and Data Science (Affiliate link) datacamp.pxf.io/pythonology Check my website for Python projects: pythonology.eu
Text Analysis with Python: What is text analysis?
Переглядів 2,9 тис.10 місяців тому
Text analysis (specially computerized text analysis, drawing on NLP : Natural Language Processing) is the process of Transforming Unstructured Textual Data into Meaningful Insights. What does unstructured mean here? What insights are we looking for? Why Python and how can Python help? In this series of videos you will learn to analyze texts as linguists do. Datacamp: The best online resource to...
Reflex: Write Python and Build REACT.JS Apps
Переглядів 17 тис.10 місяців тому
Write Python, read React! Use only Python to build React application. Use Reflex, a full stack Python framework to build apps which are compiled to Javascript. It is based on React and Chakra UI for the frontend. The Hosting service I use (Affiliate Link): hostinger.com?REFERRALCODE=1VAHID17 Datacamp: The best online resource to learn Python, Web Scraping, Data analysis, and Data Science (Affil...
Django course Episode 7 (User Sign Up | User Registration )
Переглядів 583Рік тому
Django is the most popular Python web framework for building fullstack apps. In this series of tutorials, I will make several project using Django framework. The projects will grow bigger with more functionality (user authentication, signup, login, reviews, comments,...). In this episode we learn how to create forms for users to register and sign up! In the next episode, I explain how users can...
Django course Episode 6 (Search Bar | Complex Search | Order Poems)
Переглядів 256Рік тому
Django is the most popular Python web framework for building fullstack apps. In this series of tutorials, I will make several project using Django framework. The projects will grow bigger with more functionality (user authentication, signup, login, reviews, comments,...). In this episode we learn how to add a search functionality to our Django project to search both in titles and ion poets. Als...
Django course Episode 5 (Rich Text Editor | SummerNote | Poems Count)
Переглядів 531Рік тому
Django is the most popular Python web framework for building fullstack apps. In this series of tutorials, I will make several project using Django framework. The projects will grow bigger with more functionality (user authentication, signup, login, reviews, comments,...). In this episode we learn how to use SummerNote as a Rich Text Editor inside your admin dashboard, Datacamp: The best online ...
Django course Episode 4 (Add Static files | CSS | Images)
Переглядів 3,5 тис.Рік тому
Django is the most popular Python web framework for building fullstack apps. In this series of tutorials, I will make several project using Django framework. The projects will grow bigger with more functionality (user authentication, signup, login, reviews, comments,...). In this episode we learn how to add CSS and images (static files) to our project. Datacamp: The best online resource to lear...
Django course Episode 3 (Dynamic Title Tag | Media Files | Upload Image)
Переглядів 350Рік тому
Django is the most popular Python web framework for building fullstack apps. In this series of tutorials, I will make several project using Django framework. The projects will grow bigger with more functionality (user authentication, signup, login, reviews, comments,...). In this episode we learn how to upload images from the Admin dashboard, and how to change the title tag of web pages dynamic...
Django course Episode 2 (Dynamic URLs)
Переглядів 445Рік тому
Django is the most popular Python web framework for building fullstack apps. In this series of tutorials, I will make several project using Django framework. The projects will grow bigger with more functionality (user authentication, signup, login, reviews, comments,...). Datacamp: The best online resource to learn Python, Web Scraping, Data analysis, and Data Science (Affiliate link) datacamp....
Django course Episode 1
Переглядів 1 тис.Рік тому
Django course Episode 1
Speech to Text App - Python GUI Project
Переглядів 2,3 тис.Рік тому
Speech to Text App - Python GUI Project
Failed Banks List Data Analysis with Pandas -- Beginner Project
Переглядів 1,2 тис.Рік тому
Failed Banks List Data Analysis with Pandas Beginner Project
10X Faster coding with Amazon CodeWhisperer (Free)
Переглядів 533Рік тому
10X Faster coding with Amazon CodeWhisperer (Free)
Python Modules -- Document Modules with Docstrings
Переглядів 707Рік тому
Python Modules Document Modules with Docstrings
Glob Module: File Searching in Python
Переглядів 1,5 тис.Рік тому
Glob Module: File Searching in Python
Build a Simple Naive Bayes Text Classifier using TextBlob - NLP
Переглядів 3,4 тис.Рік тому
Build a Simple Naive Bayes Text Classifier using TextBlob - NLP
Text analysis with Stanza - Stanford NLP Python Package
Переглядів 4,3 тис.Рік тому
Text analysis with Stanza - Stanford NLP Python Package
SEO Analysis Web App with Python and Streamlit
Переглядів 5 тис.Рік тому
SEO Analysis Web App with Python and Streamlit
Extract text, links, images, tables from Pdf with Python | PyMuPDF, PyPdf, PdfPlumber tutorial
Переглядів 100 тис.Рік тому
Extract text, links, images, tables from Pdf with Python | PyMuPDF, PyPdf, PdfPlumber tutorial
Build a Website SEO Analyzer using Python | BeautifulSoup Part 2
Переглядів 3,3 тис.Рік тому
Build a Website SEO Analyzer using Python | BeautifulSoup Part 2
SEO Analysis using Python | BeautifulSoup | Part1
Переглядів 5 тис.Рік тому
SEO Analysis using Python | BeautifulSoup | Part1
Cocktail Finder Web Project | Bottle Web Framework
Переглядів 993Рік тому
Cocktail Finder Web Project | Bottle Web Framework
Python | Bottle Web Framework - Part 3 - Static Files static_file
Переглядів 1,4 тис.Рік тому
Python | Bottle Web Framework - Part 3 - Static Files static_file
Python | Bottle Web Framework - Part 2 - include() , rebase()
Переглядів 1,7 тис.Рік тому
Python | Bottle Web Framework - Part 2 - include() , rebase()

КОМЕНТАРІ

  • @coachvik
    @coachvik 2 дні тому

    Solid tutorial! Thank you. 💯

  • @MohammedAmineBenbakreti
    @MohammedAmineBenbakreti 6 днів тому

    thank you so much for this amazing explanation, can you please do more tutorials about reflex

  • @jason17493
    @jason17493 7 днів тому

    Well explained, thanks

  • @mksmurff
    @mksmurff 9 днів тому

    I wish everyone explained it this simply. Thank you

  • @user-eh2fn6kc6b
    @user-eh2fn6kc6b 13 днів тому

    after only 10 months the same code is not running, AttributeError: 'App' object has no attribute 'compile'. Did you mean: '_compile'?

    • @Pythonology
      @Pythonology 13 днів тому

      Reflex has changed A LOT since I created this video. Refer to the documentation

  • @gilltim5711
    @gilltim5711 21 день тому

    Outstanding.

  • @heyy7149
    @heyy7149 21 день тому

    hi, i want to add currency converter in my exisisting web-app , how can i do it

  • @darkwingduckization
    @darkwingduckization 21 день тому

    Tried this in pycharm, but am getting the following error when creating "pipeMNB" : ValueError: np.nan is an invalid document, expected byte or unicode string. Anyone know how to fix this?

    • @joaopedrogodinho
      @joaopedrogodinho 17 днів тому

      There are probably empty values in your data column, you need to ignore these cases by applying some filters to your data frame

  • @QasimAli-hd7pd
    @QasimAli-hd7pd 22 дні тому

    Well explained

  • @hirrog3865
    @hirrog3865 22 дні тому

    After so much searching I finally get a video that is so easy to grasp on scrapping from multiple pages. Thank you

  • @yadsee4884
    @yadsee4884 24 дні тому

    more reflex please!

  • @misstopper1
    @misstopper1 24 дні тому

    Sir i want to add a delete contact button in this- please can you please tell how to do that? It's a request 🙏

  • @user-xs5xw7oh4l
    @user-xs5xw7oh4l 25 днів тому

    very helpful video sir. you voice is so calm that i could grab everything.

  • @emye35
    @emye35 26 днів тому

    THANK YOU SO SO MUCH! Many blessings to you! 🙌🙌

  • @atbellum4458
    @atbellum4458 26 днів тому

    Thank you for help. Greetings from the Brazil.💪😀👏

  • @izainonline
    @izainonline 28 днів тому

    Do u have ? Or make a series playlist like after scrapping and saving file to csv we took that csv for further work like this csv file open in bi or tableu and we perforrm analysis on that.

  • @izainonline
    @izainonline 28 днів тому

    Great Tutorial can we scrap the secure or can say not allowed scrapping text.

  • @vaibhavshinde6419
    @vaibhavshinde6419 Місяць тому

    are these pip packages free for commercial use?

  • @gvenagas
    @gvenagas Місяць тому

    I found that by opening a pdf file with Mozilla Firefox and inspecting it with the developer tools you can collect its text (with the help of JavaScript) after the web browser has converted it to HTML and maybe save it for further processing with someone programming language.

  • @peakyblinders3365
    @peakyblinders3365 Місяць тому

    Sir you're amazing, you teach the concepts from very basic, the right way of teaching, I'm really grateful to you 💖. Please keep up the good work sir, number of views or subscribers do not determine your potential and amazing teachings . Thank you sir?

  • @manenyadav3220
    @manenyadav3220 Місяць тому

    just another rubbish way of teaching a module, what if the file that needs to be compressed is in another location and you want to write the compression in another location. what is the read and write paths how they function.

    • @Pythonology
      @Pythonology Місяць тому

      You can simply press the dislike button, unsubscribe, and never watch this channel videos again. Learn to Google and use chatgpt. Don't expect spoonfeeding

  • @ashishverma-mj1kl
    @ashishverma-mj1kl Місяць тому

    loved it!

  • @CitizenCoder
    @CitizenCoder Місяць тому

    NO idea why you don't have any comments on this thing, but the video was super helpful. I have struggled to get a working rich text editor in django (most of the instructions/documentation assume expertise) and failed. This video worked great. Note to anyone having this issue, if you keep getting a "styles" error, pip uninstall bleach and install a lower version. Thanks again for the great video!

  • @julioccesar2925
    @julioccesar2925 Місяць тому

    please Vahid, make more videos about this content! Best quality out there, you are really a great teacher!

    • @Pythonology
      @Pythonology Місяць тому

      I will. thanks for your comment

  • @a.a8720
    @a.a8720 Місяць тому

    HI, im trying to follow the Reflex tutorial, but no matter what I do its not showing up at localhost 3000, all my other projects are there, but not the reflex, when I run it, the terminal says, app running at localhost 3002, but when I go there its just the reflex page telling me to go to the docs, please help

  • @a.a8720
    @a.a8720 Місяць тому

    Hi, will you make more Reflex Tutorials?

  • @ThuyPham-xt7jw
    @ThuyPham-xt7jw Місяць тому

    can i import an array for list of urls?

  • @mehmanmammadov
    @mehmanmammadov Місяць тому

    +

  • @lukecalvert4500
    @lukecalvert4500 Місяць тому

    Have a thumb my man, first one of these videos ive found showing how to do it without using imported data sets.

  • @huntercoleman1347
    @huntercoleman1347 Місяць тому

    Please provide links to the data in the video description.

  • @sabrinaazwa759
    @sabrinaazwa759 Місяць тому

    thanks alot for the detailed tutorial!!!

  • @maelkelvin2953
    @maelkelvin2953 Місяць тому

    Sou brasileiro e precisava entregar um trabalho da faculdade com esse tema. Voce me ajudou muito!! Muito obrigado, ja tinha assistido varios videos mas nenhum explicou como voce.

  • @MedoHamdani
    @MedoHamdani Місяць тому

    Will it work for Arabic?

  • @besutube
    @besutube Місяць тому

    Hello Vahid, I noticed you seem to have an extension for Reflex in your VS Code editor. I can't find anything like that, so I am curious what you are using to get this autocompletion. Compliments for this very clear explanation of the fundamentals of Reflex!

    • @Pythonology
      @Pythonology Місяць тому

      Hi and thanks for your comment. I really cannot remember, i think it might be Amazon Code whisperer? I still use it.

  • @dianamartello7828
    @dianamartello7828 Місяць тому

    This is one of the most helpful videos I've ever seen! Thank you so much

  • @abigailmapuladikobo9941
    @abigailmapuladikobo9941 Місяць тому

    Thanks for the video. How can we extract text data from multiple pdf files(more than 100)? I want to extract the “abstract “ which is a paragraph, in every pdf file

  • @OmniOrbit
    @OmniOrbit Місяць тому

    Extremely informative

  • @ideationtosuccess5439
    @ideationtosuccess5439 2 місяці тому

    Awesome. I am also interested in knowing how to extract text and import into EXCEL file which is my ultimate requirement.

  • @SkillsGear
    @SkillsGear 2 місяці тому

    Finally, a video that puts paid courses to shame! Hats off to you for the great tutorial! You just did not explain, the way you went back and forth helped me understand a lot. Kudos! Could not resist the urge to hit the like and subscribe button. Will definitely visit your channel for more guides and tutorials! ♥

  • @PANDURANG99
    @PANDURANG99 2 місяці тому

    will it work for my custom dada? Like I have Classification and sub Classification also. Sentence : I am going to school and play cricket. Classification : school and Sub Classification: Sports

    • @PANDURANG99
      @PANDURANG99 2 місяці тому

      Have you tried to make lowercase all text?

  • @JCDC510
    @JCDC510 2 місяці тому

    Hi! Thank you very much for the video! Do you have another video to explain what to do if you need to classify something with two or mor variables? For example a message that is "ham" & "Spam" at the same time?

  • @mhr4291
    @mhr4291 2 місяці тому

    One semester just in one video! thanks!!!

  • @MuhammadFAH33M
    @MuhammadFAH33M 2 місяці тому

    @Pythonology You are the best Explainer I've just discovered today ❤ Question❓ How to Schedule this program to Run on windows? Do I need to leave pycharm left open with the script? Please create a video about how to multiple python scripts to perform scrapping tasks automatically I'll be thankful 😊

  • @JosephChineduEchemazu
    @JosephChineduEchemazu 2 місяці тому

    Link to get the jdon file

  • @the_unplugged_alpha
    @the_unplugged_alpha 2 місяці тому

    the github link to this repo please

  • @digitalmachine0101
    @digitalmachine0101 2 місяці тому

    Good information

  • @-CSE-ArnabSannigrahi
    @-CSE-ArnabSannigrahi 2 місяці тому

    I was very much eager to learn reflex but the speed of the server is very slow is there any solution to it

  • @catchiemitakata2142
    @catchiemitakata2142 2 місяці тому

    The best tut on web scraping. Very beginner friendly. Keep it up

  • @PANDURANG99
    @PANDURANG99 2 місяці тому

    is it possible to read read pdf from online location like google drive, sharepoint using python without download pdf

    • @oguve278
      @oguve278 2 місяці тому

      That sounds quite sneaky, but I’d take screenshots of your screen and utilize some sort of Computer Vision detection or OCR…

    • @PANDURANG99
      @PANDURANG99 2 місяці тому

      @@oguve278 Great, but there is so difference between OCR,cv and pdf, in pdf you will get exact text but in cv it confused between zero and O , I and 1 so much complicated without predefined text format.

  • @annicesullivan
    @annicesullivan 2 місяці тому

    Nice tutorial on scraping multiple pages to CSV with BeautifulSoup! Any tips on reliable proxies for handling large scraping jobs like this? Heard Proxy-Store offers specialized scraping packages, anyone tried them out?