HOW TO CREATE A CHATBOT WITH PYTHON AND CHATTERBOT

Поделиться
HTML-код
  • Опубликовано: 18 сен 2024

Комментарии • 133

  • @yagamiprogrammer7792
    @yagamiprogrammer7792 7 лет назад +3

    Teu inglês é mt bom cara, sério. Parece que estou assistindo um tutorial internacional nativo

    • @codigo_logo
      @codigo_logo  7 лет назад +1

      Valeu.

    • @mariotreglia4066
      @mariotreglia4066 6 лет назад +1

      If "DID" then "WATCH" not "WATCHED", no mais um verdadeiro show de bola, muito obrigado mesmo pela aula! Saudações de Tokyo!

  • @benjaminononogbu4540
    @benjaminononogbu4540 4 года назад

    Thanks man yours was informative despite the little errors as I learnt how to customize my own chat. Other videos I have watched always made us of the installed chats, which is not far from being trivial

  • @shmoqe
    @shmoqe 5 лет назад +1

    Thank you!
    If you're using the new version of chatterbot, then you have to use:
    trainer = ListTrainer(bot)
    trainer.train(conv)
    instead of
    bot.set_trainer()
    bot.train()

  • @limitless1692
    @limitless1692 4 года назад

    Very clean and simple
    Thank You :)

  • @cicerosilva-ye8mn
    @cicerosilva-ye8mn 5 лет назад +2

    from chatterbot import ChatBot
    from chatterbot.trainers import ListTrainer
    bot = ChatBot('teste')
    conv = open('chats.txt', 'r').readlines()
    trainer = ListTrainer(bot)
    trainer.train(conv)
    while True:
    try:
    request = input('you: ')
    response = bot.get_response(request)
    print('bot:', response)
    except(KeyboardInterrupt, EOFError, SystemExit):
    break

  • @Darkeb2
    @Darkeb2 6 лет назад +1

    Valeu amigo estou aprendendo Python para spark, mas vou fazer esse tutorial para praticar

  • @IrfanAli-hr1yi
    @IrfanAli-hr1yi 4 года назад +1

    I have an error 'ChatBot' object has no attribute 'set_trainer'

  • @manishmeshram51
    @manishmeshram51 5 лет назад +4

    updated code for latest version 1.0.4 (if you got any error in function set_trainer)
    from chatterbot.trainers import ListTrainer
    from chatterbot import ChatBot
    bot = ChatBot('Test')
    conv =open('sample.txt','r').readlines()
    trainer = ListTrainer(bot)
    trainer.train(conv)
    while True:
    request = input('You: ')
    response = bot.get_response(request)
    print('Bot: ',response)

  • @aldison5070
    @aldison5070 5 лет назад +1

    Okay okay okay(x50)
    Speach = talk.read(you)
    Speach = str.replace(Speach,"okay","")

  • @GeekCoders
    @GeekCoders 5 лет назад

    what is the use of list trainer there what does it do

  • @askme5291
    @askme5291 5 лет назад +1

    i didn't get the bot
    it shows like this
    C:\Users\jogin>python train.py
    Traceback (most recent call last):
    File "train.py", line 1, in
    from chatterbot.trainers import ListTrainers
    ImportError: cannot import name 'ListTrainers' from 'chatterbot.trainers' (C:\Users\jogin\AppData\Local\Programs\Python\Python37\lib\site-packages\chatterbot\trainers.py)

    • @askme5291
      @askme5291 5 лет назад

      till so many day's, i'm trying but it doesn't get

    • @friend18best
      @friend18best 5 лет назад

      did u resolve this issue

    • @ilyaprieur8254
      @ilyaprieur8254 5 лет назад

      if you have an issue with set_trainers, replace " bot.set_trainer(ListTrainer)
      bot.train(conv) "
      with " trainer = ListTrainer(bot)
      trainer.train(conv) "

  • @felixbaksa3662
    @felixbaksa3662 6 лет назад +4

    Traceback (most recent call last):
    File "main.py", line 19, in
    request = input('You: ')
    File "", line 1, in
    NameError: name 'chatterbot' is not defin

    • @codigo_logo
      @codigo_logo  6 лет назад

      Você importou o chatterbot?

    • @felixbaksa3662
      @felixbaksa3662 6 лет назад

      When I try to run main.py with python3 it says:
      Traceback (most recent call last):
      File "main.py", line 1, in
      from chatterbot.trainers import ListTrainer
      ModuleNotFoundError: No module named 'chatterbot'
      But when I run with python :
      List Trainer: [####################] 100%
      You: Hi
      Traceback (most recent call last):
      File "main.py", line 13, in
      request = input('You: ')
      File "", line 1, in
      NameError: name 'Hi' is not defined

    • @nanisanjay6618
      @nanisanjay6618 6 лет назад

      request=raw_input('you:')
      put "raw_" before input

    • @ApartmentAngelsFireStarters
      @ApartmentAngelsFireStarters 6 лет назад

      use a 32 bit
      and make sure you made a another system variable for the path for the chatterbot-master folder

    • @theantirgbguy2256
      @theantirgbguy2256 5 лет назад

      RapDuo use raw_input and remove brackets from print function

  • @oscararrieta1235
    @oscararrieta1235 4 года назад +1

    If you want to access to the confidence value:
    response.confidence

  • @sandeepchaurasia4702
    @sandeepchaurasia4702 6 лет назад +1

    Traceback (most recent call last):
    File "main.py", line 13, in
    request = input('You: ')
    File "", line 1, in
    NameError: name 'Hi' is not defined
    Please help

  • @vipinyadav-to1wc
    @vipinyadav-to1wc 5 лет назад +2

    Why there is a need of using AI and ML algo.s for building good bots if it seems so easy with this ?
    Can you please tell ?

    • @codigo_logo
      @codigo_logo  5 лет назад

      Well, these type of Chabot will only answer the same responses everytime. A AI/Deep Learning chatbot can do much more, like extract info, generate new answers, learn from you, because they can at some level understand what you're saying, not just using some statements to create a response.

    • @movie0007
      @movie0007 3 года назад

      @@codigo_logo This is what I am aiming to do right now. I've seen so many tutorials through google searches, youtube, I have not found a tutorial that has worked yet. And all I keep seeing is, pip install chatterbot, then listtrainers, and then my_bot(name=PyBot and all this other stuff I type in EXACTLY what is shown in the tutorial and all I get is errors. Nothing works. So trying your video.

  • @ajithrs1535
    @ajithrs1535 6 лет назад

    great ! thank you sir, ajith r s

  • @bibi94275
    @bibi94275 4 года назад

    Can we integrate chat bot with a java application or it can only be integrated with django and flask app

  • @coolshailendra2805
    @coolshailendra2805 6 лет назад

    Hi, Is there any way to make model which can read any given document like pdf and provide index where to look for ?

  • @TrangPham-nf8qx
    @TrangPham-nf8qx 5 лет назад +2

    An error occurred when I ran the code: AttributeError: 'ChatBot' object has no attribute 'set_trainer'
    help me :((

    • @vijaysakshi9786
      @vijaysakshi9786 5 лет назад +1

      If you are getting this error, then for sure your version of chatterbox is different.
      you should use below code-
      bot = ChatBot('MyChatBot')
      conversation = open('chat.txt','r').readlines()
      trainer=ListTrainer(bot)
      trainer.train(conversation)
      chat.txt=> is your txt file name.
      Hope it will work for you.

  • @hiagoleres208
    @hiagoleres208 5 лет назад

    Olá, eu e um grupo de amigos gostariamos de desenvolver um chatbot para o TCC, só que não queriamos usar uma interface pronta(tipo Wpp e messenger) queriamos criar nossa própria interface... Como você recomendaria eu fazer isso?

  • @kishorreddy3070
    @kishorreddy3070 5 лет назад +3

    Iam installed chatterbot
    But while importing it shows errors

  • @praduthaldar34
    @praduthaldar34 5 лет назад +1

    Chatterbot made some changes in its files where there is no set_trainer() method in chatbot file that's why this code is not working so plz upload new video.

    • @manishmeshram51
      @manishmeshram51 5 лет назад +1

      from chatterbot.trainers import ListTrainer
      from chatterbot import ChatBot
      bot = ChatBot('Test')
      conv =open('sample.txt','r').readlines()
      trainer = ListTrainer(bot)
      trainer.train(conv)
      while True:
      request = input('You: ')
      response = bot.get_response(request)
      print('Bot: ',response)

    • @friend18best
      @friend18best 5 лет назад

      did u resolve this issue and how

    • @manishmeshram51
      @manishmeshram51 5 лет назад

      It's resolved.

    • @friend18best
      @friend18best 5 лет назад

      @@manishmeshram51 how

    • @friend18best
      @friend18best 5 лет назад +2

      Waiting

  • @周杰鴨
    @周杰鴨 6 лет назад

    Exucse me , my computer system is Win10 , that i also opend the cmd in manager ,
    than i under the instruction "pip install chatterbot" , but it can't work.
    however it is allow to under another instruction (ex: pip install opencv-python )
    Did you have any idea to solve this question ?

    • @alphanordicwarrior7533
      @alphanordicwarrior7533 6 лет назад

      Well , Firstly Unzip the file which you Dowloaded , then there should the a setup.py file in there , copy the DIR of the chatbot folder which u unziped and cd that into the CMD , so that DIR is open - Then Try to do py setup.py and then it will install by itself , or try py -3.4 (or if u have another version write instead of 3.4) setup.py

  • @zubadibrahim5657
    @zubadibrahim5657 5 лет назад +1

    Hi....
    I am trying to make chatbot using your video but I am receiving following error message can you please guide me.....
    ImportError: No module named 'chatterbot_corpus'

    • @friend18best
      @friend18best 5 лет назад +1

      did you resolve

    • @zubadibrahim5657
      @zubadibrahim5657 5 лет назад

      @@friend18best yes I have solved it....
      thanks

    • @vaaaako
      @vaaaako 3 года назад

      @@zubadibrahim5657 how?

  • @garwert
    @garwert 6 лет назад

    What have i to write in the code to have the ability to tell him that his last answer is wrong and he must not repeat it for this question ever again?

  • @harisrihari6328
    @harisrihari6328 6 лет назад +2

    hey i have already built a Chatbot nd running it from cmd prompt but i like to create gui for my chatbot can anyone pls tell how can I do that

    • @codigo_logo
      @codigo_logo  6 лет назад +1

      Using some GUI library such as WxWidgets, Pyglet, PyQt.

    • @Maina-l9o
      @Maina-l9o 6 лет назад

      Código Logo - Programação e Inteligência Artificial

    • @junoon-e-cricket189
      @junoon-e-cricket189 5 лет назад

      hey bro could u plz guide me

  • @emmyrajput9178
    @emmyrajput9178 6 лет назад

    can you explain what should i do in exchange for os.listdir in windows everything else is working fine and thanks.....

  • @oneofusall
    @oneofusall 6 лет назад +1

    Do I always need to train again every time when I start?

    • @codigo_logo
      @codigo_logo  6 лет назад

      No, you need to set an argument:
      bot = Chatbot('Test', read_only=True)
      that's it

  • @hdserpas4797
    @hdserpas4797 6 лет назад +1

    Oye brother, tienes que ser exacto con estos tipos de lecciones. Muchas preguntas, debe de ser mas fluido y sin malentendidos. Todo debe de estar claro para que cualquier persona entendiende. Todo debe de ser explicado incluyendo los Pasos para programas que no tenemos.

    • @hdserpas4797
      @hdserpas4797 6 лет назад

      Por ejemplo, donde bajar packetes de python specificos. Y ese .py que tu tienes viene de Verbot... Verdad?

    • @codigo_logo
      @codigo_logo  6 лет назад

      Desculpe me, ho se hablar español, pero stoy feliz con su comentario y yo se que algunas vezes yo esqueso algun detalhes.

  • @coolwei
    @coolwei 6 лет назад

    Code: pastebin.com/x44edmVF

    • @ilyaprieur8254
      @ilyaprieur8254 5 лет назад

      if you have an issue with set_trainers, replace " bot.set_trainer(ListTrainer)
      bot.train(conv) "
      with " trainer = ListTrainer(bot)
      trainer.train(conv) "

  • @kislaypathak3194
    @kislaypathak3194 6 лет назад +1

    Hi i have run main.py script but getting below issue
    request = input('You: ')
    ^
    IndentationError: expected an indented block
    Below is the main.py script
    from chatterbot.trainners import ListTrainer
    from chatterbot import chatbot
    bot =ChatBoat('Test')
    conv = open('chats.txt', 'r').readlines()
    bot.set_trainer(ListTrainer)
    bot.train(conv)
    while True:
    request = input('You: ')
    response = bot.get_response(request)
    print('Bot: ', response)
    Note:I am using python 3.6 v

    • @codigo_logo
      @codigo_logo  6 лет назад

      from chatterbot.trainners import ListTrainer
      from chatterbot import chatbot
      bot =ChatBoat('Test')
      conv = open('chats.txt', 'r').readlines()
      bot.set_trainer(ListTrainer)
      bot.train(conv)
      while True:
      request = input('You: ')
      response = bot.get_response(request)
      print('Bot: ', response)
      Você tem que indentar o código.

    • @kislaypathak3194
      @kislaypathak3194 6 лет назад

      thanks

    • @VedicGemstoneTherapy1027
      @VedicGemstoneTherapy1027 5 лет назад

      Give a gap between the while loop and input command
      Eg: while True:
      Say=input('you')

  • @manomac5451
    @manomac5451 6 лет назад

    Hi really nice tutorial! I've one small query, instead of text response I want to redirect to a function. Eg: If the user type, "what is the time now" then it should go to 'time() function' .Can you please guide me how to do this ?Thanks in advance :)

    • @DnKZone
      @DnKZone 2 года назад

      do something like this..
      if "time" in user_input:
      time()
      else:
      # get response from chatterbot

  • @networkmarketing2258
    @networkmarketing2258 6 лет назад +4

    this is not an Artificial intellegence, this is just reading lines in Que..., its totally waste..no Intellengence required

    • @IuryWarewolf
      @IuryWarewolf 6 лет назад +2

      Actually, it does learn. It's not the most sophisticated machine learning, but it creates its own table that stores the data and respond with the comment which has the highest confidence.

  • @pintupatel3429
    @pintupatel3429 5 лет назад

    PS D:\xampp\htdocs\instagram_demo\chatbot\chatbot-demo> python main.py
    Traceback (most recent call last):
    File "main.py", line 1, in
    from chatterbot.trainers import ListTainer # method to train the chatbot
    ModuleNotFoundError: No module named 'chatterbot'

  • @mainpicturesstudio5628
    @mainpicturesstudio5628 Год назад

    can you also put your own native language for your conversations

  • @naveenreddy6628
    @naveenreddy6628 5 лет назад

    bot.set_trainer(ListTrainer)
    bot.train(conv)
    Getting error like
    Instance of 'ChatBot' has no 'set_trainer' member
    can any one help me please

    • @TheAzharmohammed
      @TheAzharmohammed 5 лет назад

      Same here i m to facing a same issue

    • @ilyaprieur8254
      @ilyaprieur8254 5 лет назад

      if you have an issue with set_trainers, replace " bot.set_trainer(ListTrainer)
      bot.train(conv) "
      with " trainer = ListTrainer(bot)
      trainer.train(conv) "

  • @thatcosmokramer
    @thatcosmokramer 5 лет назад

    0:23 Don't you fucking dare type sudo!

  • @saraskumar1061
    @saraskumar1061 6 лет назад +6

    which operating system are you using?

    • @НатальяСоколова-я1г
      @НатальяСоколова-я1г 6 лет назад +3

      its ubuntu

    • @VahinSharma
      @VahinSharma 6 лет назад +2

      It's the OS which i'm using :O BTW it's Ubuntu 16.04

    • @fozyf0x926
      @fozyf0x926 6 лет назад

      Ubuntu is bae bro, been using it for a month now for programming

    • @networkmarketing2258
      @networkmarketing2258 6 лет назад

      ubuntu

    • @harjitsingh7308
      @harjitsingh7308 6 лет назад +1

      Fozy F0X ubuntu is overkill for laptops any laptop i tried it with they just heat up too fast. I use peppermint os and that works great especially for software development

  • @SarithaRasabathuni
    @SarithaRasabathuni 4 года назад

    How to remove no value for search_text was available on the provided input

  • @movie0007
    @movie0007 3 года назад

    Nope. This doesn't work either. I did EXACTLY what you did, word for word. Python 3.6 and all I got was this long error message.
    Traceback (most recent call last):
    File "F:\Program Files\Python\lib\site-packages
    umpy\core\__init__.py", line 22, in
    from . import multiarray
    File "F:\Program Files\Python\lib\site-packages
    umpy\core\multiarray.py", line 12, in
    from . import overrides
    File "F:\Program Files\Python\lib\site-packages
    umpy\core\overrides.py", line 7, in
    from numpy.core._multiarray_umath import (
    ModuleNotFoundError: No module named 'numpy.core._multiarray_umath'
    During handling of the above exception, another exception occurred:
    Traceback (most recent call last):
    File "F:/Program Files/Python/main.py", line 4, in
    bot = ChatBot('Test') # creates the chatbot
    File "F:\Program Files\Python\lib\site-packages\chatterbot\chatterbot.py", line 28, in __init__
    self.storage = utils.initialize_class(storage_adapter, **kwargs)
    File "F:\Program Files\Python\lib\site-packages\chatterbot\utils.py", line 33, in initialize_class
    return Class(*args, **kwargs)
    File "F:\Program Files\Python\lib\site-packages\chatterbot\storage\sql_storage.py", line 20, in __init__
    super().__init__(**kwargs)
    File "F:\Program Files\Python\lib\site-packages\chatterbot\storage\storage_adapter.py", line 23, in __init__
    'tagger_language', languages.ENG
    File "F:\Program Files\Python\lib\site-packages\chatterbot\tagging.py", line 20, in __init__
    import spacy
    File "F:\Program Files\Python\lib\site-packages\spacy\__init__.py", line 10, in
    from thinc.neural.util import prefer_gpu, require_gpu
    File "F:\Program Files\Python\lib\site-packages\thinc\__init__.py", line 5, in
    import numpy # noqa: F401
    File "F:\Program Files\Python\lib\site-packages
    umpy\__init__.py", line 140, in
    from . import core
    File "F:\Program Files\Python\lib\site-packages
    umpy\core\__init__.py", line 48, in
    raise ImportError(msg)
    ImportError:
    IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!
    Importing the numpy C-extensions failed. This error can happen for
    many reasons, often due to issues with your setup or how NumPy was
    installed.
    We have compiled some common reasons and troubleshooting tips at:
    numpy.org/devdocs/user/troubleshooting-importerror.html
    Please note and check the following:
    * The Python version is: Python3.6 from "F:\Program Files\Python\pythonw.exe"
    * The NumPy version is: "1.19.4"
    and make sure that they are the versions you expect.
    Please carefully study the documentation linked above for further help.
    Original error was: No module named 'numpy.core._multiarray_umath'

  • @sarthakmahapatra9002
    @sarthakmahapatra9002 6 лет назад +1

    How to use Confidence function?? My bot is also giving absurd answers?? Please Help.

    • @codigo_logo
      @codigo_logo  6 лет назад +1

      They removed the confidence function in the new version from the ChatBot class.

    • @MsLaez
      @MsLaez 6 лет назад +3

      Hello, instead of use "bot.confidence" I used "response.confidence", it works :)
      Check what user "gunthercox" said (github.com/gunthercox/ChatterBot/issues/607 )

  • @siddharthgautam8280
    @siddharthgautam8280 5 лет назад +1

    Is there a way so that the training progress doesnt print

  • @AliKhan-zv6nh
    @AliKhan-zv6nh 5 лет назад

    ChatBot' object has no attribute 'set_trainer'
    please help how can i slove this problem ...............................???
    python Version is 3.5.0
    i install Chatterbot with the help of pip3 install Chatterbot

    • @ilyaprieur8254
      @ilyaprieur8254 5 лет назад

      if you have an issue with set_trainers, replace " bot.set_trainer(ListTrainer)
      bot.train(conv) "
      with " trainer = ListTrainer(bot)
      trainer.train(conv) "

  • @selvaganapathi9708
    @selvaganapathi9708 6 лет назад +1

    Can you please explain how handle context this chatterbot?

    • @codigo_logo
      @codigo_logo  6 лет назад

      Sorry, I can't 'cuz I don't know. But I do know that some research has been made regarding this using Deep Learning: chatbotsmagazine.com/contextual-chat-bots-with-tensorflow-4391749d0077

    • @Catty19947
      @Catty19947 6 лет назад

      I actually found the answer by uninstalling the python 3.6 and install python3.5. The problem solved.

    • @fozyf0x926
      @fozyf0x926 6 лет назад

      doeun kol how? Isn't the newer version better?

  • @raginiprasad1389
    @raginiprasad1389 6 лет назад +1

    How to fix the error of cannot import name chatbot..plzz help

    • @amarprajapati2370
      @amarprajapati2370 5 лет назад

      which OS you r using?

    • @Gaztoof
      @Gaztoof 5 лет назад

      @@amarprajapati2370 windows 10 and i have same problemm

  • @Catty19947
    @Catty19947 6 лет назад +1

    I have a problem with sqlite3 operationError. Can you help?

    • @codigo_logo
      @codigo_logo  6 лет назад

      Could you paste the error here?

  • @sandeepchaurasia4702
    @sandeepchaurasia4702 6 лет назад

    When I am typing command for bot I need to use single quotes (') why???

  • @horarium6021
    @horarium6021 4 года назад

    fix every bug :::: AttributeError: 'ChatBot' object has no attribute 'set_trainer'
    from chatterbot import ChatBot
    #from chatterbot.trainers import ChatterBotCorpusTrainer
    from chatterbot.trainers import ListTrainer
    import os
    Jarvis = ChatBot('Jarvis')
    # Create a new trainer for the chatbot
    dossier = "conversation"
    #Jarvis.set_trainer(ListTrainer)
    trainer = ListTrainer(Jarvis)
    for fichier in os.listdir(dossier):
    causeries = open(dossier+'/'+fichier, 'r').readlines()
    print(' [+] chargement de la conversation : '+fichier)
    trainer.train(causeries)
    while True:
    request = input('Toi : ')
    response = Jarvis.get_response(request)
    print('Jarvis : '+str(response))

  • @sachin2122
    @sachin2122 5 лет назад

    Working fine but giving answers which are not in the file

  • @nismo5807
    @nismo5807 6 лет назад

    Can i use this and make it a Bot for Twitter?

  • @bodybuildinghub6832
    @bodybuildinghub6832 4 года назад

    No module named en
    Plz....... help

  • @garra.alexandre
    @garra.alexandre 6 лет назад

    File "chat.py", line 1, in
    from chatterbot.trainers import ListTrainer
    ImportError: No module named 'chatterbot'

    • @garra.alexandre
      @garra.alexandre 6 лет назад +1

      Esse erro deu no windows e no linux, ja instalei a biblioteca

    • @codigo_logo
      @codigo_logo  6 лет назад

      instalou no windows?

    • @garra.alexandre
      @garra.alexandre 6 лет назад

      Linux e Windows mesmo erro. Como se nao encontra-se a biblioteca

    • @Catty19947
      @Catty19947 6 лет назад

      simply install this package via pip: pip install chatterbot

    • @pratiknighot7088
      @pratiknighot7088 6 лет назад

      you will require python3 version

  • @shericeross3241
    @shericeross3241 6 лет назад +1

    How do I exit main.py in order to start again?

  • @pablogracia1690
    @pablogracia1690 4 года назад

    ?
    ImportError: No module named 'chatterbot_corpus'

    • @horarium6021
      @horarium6021 4 года назад

      first ) pip install chatterbot_corpus
      then ) correct the PyYAML by installing the both version using pip install --ignore-installed PyYAML==3.5
      edit few lines like this
      from chatterbot import ChatBot
      #from chatterbot.trainers import ChatterBotCorpusTrainer
      from chatterbot.trainers import ListTrainer
      import os
      Jarvis = ChatBot('Jarvis')
      # Create a new trainer for the chatbot
      dossier = "conversation"
      #Jarvis.set_trainer(ListTrainer)
      trainer = ListTrainer(Jarvis)
      for fichier in os.listdir(dossier):
      causeries = open(dossier+'/'+fichier, 'r').readlines()
      print(' [+] chargement de la conversation : '+fichier)
      trainer.train(causeries)
      while True:
      request = input('Toi : ')
      response = Jarvis.get_response(request)
      print('Jarvis : '+str(response))

  • @thalesgames2929
    @thalesgames2929 4 года назад

    Manjando de inglês hein ;-;

  • @swapnilvishwakarma7476
    @swapnilvishwakarma7476 6 лет назад

    how can i add quick replies

  • @bruhaspati560
    @bruhaspati560 5 лет назад

    please provide source code

  • @bodybuildinghub6832
    @bodybuildinghub6832 4 года назад

    Bro plz help

  • @Mzahid5279
    @Mzahid5279 3 года назад

    I'm getting traceback error, there's an attribute error : module 'time' has no attribute 'clock' ,

  • @bodybuildinghub6832
    @bodybuildinghub6832 4 года назад

    No module named en
    Plz....... help

  • @bodybuildinghub6832
    @bodybuildinghub6832 4 года назад

    No module named en
    Plz....... help

  • @bodybuildinghub6832
    @bodybuildinghub6832 4 года назад

    No module named en
    Plz....... help