Python Testimonials With Proofs

2020-01-18 Thread Abdur-Rahmaan Janhangeer
Greetings list, while exploring zipapp, i came across this quote on Shiv's docs: <> Starting with that, i compiled top companies quotes like instagram, quora, netflix, facebook etc on Python. https://github.com/Abdur-rahmaanJ/pytestimonials All quotes have original sources. I deliberately lef

Re: Modules Objects in Python

2020-01-18 Thread Chris Angelico
On Sun, Jan 19, 2020 at 12:56 PM M.R.P. wrote: > > Are modules objects in python? Yes, modules are objects. You can import a module, and then work with it as any other object. You can have a dictionary mapping names to modules (Python has one of these internally). They have a type, they can have

Re: Modules Objects in Python

2020-01-18 Thread DL Neil via Python-list
On 19/01/20 2:51 PM, M.R.P. wrote: Are modules objects in python? Modules offer an independent namespace implemented by a dictionary object - so you may dir() (or help()) and moduleNM.__dict__, and thus pick-up data values and code-units. So, they have many characteristics and behaviors in

Modules Objects in Python

2020-01-18 Thread M.R.P.
Are modules objects in python? -- https://mail.python.org/mailman/listinfo/python-list

Re: Debian Buster: ModuleNotFoundError: No module named 'mysql'

2020-01-18 Thread ^Bart
pip is probably defaulting to Python 2.7. Try using pip3, or this more explicit syntax: Now it works! Python 3.7.3 (default, Apr 3 2019, 05:39:12) [GCC 8.3.0] on linux Type "help", "copyright", "credits" or "license()" for more information. >>> == RESTART: /home/gabriele/Corso_4.0/Pyth

Re: Debian Buster: ModuleNotFoundError: No module named 'mysql'

2020-01-18 Thread Michael Torrie
On 1/18/20 9:03 AM, ^Bart wrote: >> What could I do to fix this issue?! :\ > > I understood I have Python 2.7 and Python 3 but I can't install modules > on Python 3... :\ > > ^Bart pip is probably defaulting to Python 2.7. Try using pip3, or this more explicit syntax: python3 -m pip install

Re: Debian Buster: ModuleNotFoundError: No module named 'mysql'

2020-01-18 Thread ^Bart
What could I do to fix this issue?! :\ I understood I have Python 2.7 and Python 3 but I can't install modules on Python 3... :\ ^Bart -- https://mail.python.org/mailman/listinfo/python-list

Debian Buster: ModuleNotFoundError: No module named 'mysql'

2020-01-18 Thread ^Bart
Hi guys, I'd like to use Python to connect to my MariaDB db, it works from phpmyadmin and if I open a console with mysql -u root -p. I tried: $ pip search mysql-connector | grep --color mysql-connector-python mysql-connector-python (8.0.19) - MySQL driver written in Py