Пікірлер
@MrHossainmoazzem
@MrHossainmoazzem 3 ай бұрын
This was my first session - Thanks so much Tim C
@mdjunaidwaquar7324
@mdjunaidwaquar7324 3 ай бұрын
Awesome 🎉
@micmike
@micmike 6 ай бұрын
The sound is so poor I had to leave the video
@DTimCummings
@DTimCummings 6 ай бұрын
To use a web browser through a proxy, use the IP address of the flask server, not 127.0.0.1. In my case it should have been 192.168.17.180:5000
@encapsulatio
@encapsulatio Жыл бұрын
Hope you can make this video also for Linux and the most popular right now for devs is Fedora. Thank you!
@MM-oq1lb
@MM-oq1lb Жыл бұрын
Are you sure we can learn Python in 1 hour and 20 minutes?
@DTimCummings
@DTimCummings Жыл бұрын
😉That is the joke. Of Python's 35 keywords, we can learn 14 of them in 1 hour and 20 minutes.
@auroragb
@auroragb Жыл бұрын
Why did you use pyenv instead of venv that comes with Python?
@DTimCummings
@DTimCummings Жыл бұрын
I normally use venv and recommend it for most projects. The point of this video was to try out pyenv to see what it has to offer. Actually the main point was to see how to install pyenv on Windows. It looks like pyenv offers the ability to install multiple versions of python and to specify for each project which version of python to use. It also avoids the need to activate and deactivate virtual environments.
@auroragb
@auroragb Жыл бұрын
@@DTimCummings considering how well venv integrates with vs code, it seems that pyenv is a solution looking for a problem if you use vs code If you don't use an ide, pyenv offers marginal benefits, but learning an extra tool just for the sake of learning extra tool seems like effort that can be applied to learning the vs code features that can be used to swap interpreters and environment
@bs3edfgu2sast-fb2br
@bs3edfgu2sast-fb2br Жыл бұрын
high quality
@smil3ymacD
@smil3ymacD Жыл бұрын
what number do these videos begin on and how to access playlist please?
@DTimCummings
@DTimCummings Жыл бұрын
You can see full list of videos at kzbin.infostreams . The first number is 52 and there are some gaps in the numbering because they are for meetups of which some do not have videos. You can also checkout our github repository with python scripts for each video. The beginning of each script contains a docstring with links to youtube, colab notebooks, meetup events, other github repositories and references. github.com/timcu/bpaml-sessions/tree/master/online . Mine are the scripts with _tim_ in the name.
@MyCodingDiary
@MyCodingDiary Жыл бұрын
Your passion for programming really shines through your videos. Keep up the great work!
@reygus7564
@reygus7564 Жыл бұрын
Hellow! First of all, thank you so much for this video. it's very useful to have a visualization of code from an experienced person. My question is about adding an image(s) to the "story" and combine it with a "Paragraphs". Is it gonin just thgough the "canvas" and "drawInlineImage" or it have another way. I am just at the beginning of tha path, so i appologize if the question not corresponse with that level. Anyway, thank you again!
@DTimCummings
@DTimCummings Жыл бұрын
As well as `Paragraph`s there are other `Flowable`s. I demonstrated others like `Preformatted`, `ListFlowable`, `BalancedColumns`, `Spacer`. There is another one called `Image`. You can read about it here docs.reportlab.com/reportlab/userguide/ch9_other_useful_flowables/#imagefilename . `Flowable`s don't give you a lot of control where the image will show on the page, but they do control where it displays relative to other content. If you are more interested in position on page then use canvas like you suggested.
@DanielLee-mq7jn
@DanielLee-mq7jn Жыл бұрын
Hi Tim, Thanks for the upload, very informative for a beginner like myself.
@bolong3112
@bolong3112 Жыл бұрын
Thank you so much !This tutorial save my life save my time.
@niceswiss
@niceswiss 2 жыл бұрын
Thank you Sir
@NandkumarKandeswarath
@NandkumarKandeswarath 2 жыл бұрын
inaudible
@BlueDolphinBlues
@BlueDolphinBlues 2 жыл бұрын
Why are there 3 arrays in the basic script but only one of them passes information to the python script? How do you make the function return a soft error message in the cell if something doesn't work correctly?
@tarakeshnc
@tarakeshnc 2 жыл бұрын
You are amazing tutor. Thanks for this high quality video.
@garybateman1363
@garybateman1363 2 жыл бұрын
I was enjoying following this along until I started getting errors about things "is deprecated" messages more and more frequently.
@DTimCummings
@DTimCummings 2 жыл бұрын
Try my later videos which were updated for a more recent version of dash. kzbin.info/www/bejne/bWm1komjl5KWaZI (Windows: tasks 1-6, meetup 100) kzbin.info/www/bejne/ZqfGhWWqd5yckJY (Windows: tasks 7-10, meetup 101)
@tonyradice4166
@tonyradice4166 2 жыл бұрын
Is there a way to submit questions after the live session?
@DTimCummings
@DTimCummings 2 жыл бұрын
Best way is the slack channel because more than one person will be watching and could provide an answer. Here is OK also because future viewers will see the answer, but it might come slower
@tonyradice4166
@tonyradice4166 2 жыл бұрын
@@DTimCummings Mr. Cummings - First, THANK YOU for creating these presentations - as a newly retired engineer I am looking at this to expand my knowledge of Python and Libre Office. I apologize for what may be "newbie" questions, but ,,, 1) Is there a link to the Slack Channel? I am afraid I am un acquainted with that channel. 2) After reviewing meeting 118 - Why is datetime in the structure datetime.datetime.now() - why the two (2) "datetimes"? 3) Do you have a presentation that details how to determine what methods are used in a library and how to use them? (My background is not in Object Oriented programming - I am trying to learn...) Again, thank you!
@DTimCummings
@DTimCummings 2 жыл бұрын
@@tonyradice4166 1) Please email skypyprojectatgmaildotcom for an invitation to join slack channel 2) Different ways to use datetime a) import datetime # imports whole library but everything in library needs to be prefixed by datetime d = datetime.datetime.now() # first datetime is library name prefix, second datetime is class within library b) from datetime import datetime # only imports the datetime class from library but now it doesn't need prefix d = datetime.now() 3) From python console type the following to see methods and classes import datetime help(datetime) # help on all classes in datetime library help(datetime.datetime) # help on all functions in datetime class help(datetime.datetime.now) # help on now function in datetime class in datetime library dir(datetime) # list of classes or functions in datetime library dir(datetime.datetime) # list of functions in datetime class
@tonyradice4166
@tonyradice4166 2 жыл бұрын
@@DTimCummings - AGAIN, Many Thanks!! - (1) in progress (2) Understood (3) Will be working with!
@tonyradice4166
@tonyradice4166 2 жыл бұрын
G'Day, Tim - stumbled on this while looking up PyUno - will be looking for more and will be sending some questions. Thank You VERY MUCH for the amount of detail !!
@VorpalForceField
@VorpalForceField 2 жыл бұрын
fantastic resource .. Thank You for sharing .. cheers :)
@piotrbienkowski1095
@piotrbienkowski1095 2 жыл бұрын
I am very much interested in the topic but why is the audio so quiet?
@danielcurda9949
@danielcurda9949 3 жыл бұрын
Thank you in deep for the great video. It helped me much.
@gerzallazreg
@gerzallazreg 3 жыл бұрын
even I didn't watch all the video but I think it's helpful and I will share it in Facebook groups
@freigeist3161
@freigeist3161 3 жыл бұрын
Great content Tim!
@pingwchen
@pingwchen 3 жыл бұрын
Thank you so much for this great video! It has been so difficult to find a video talking about LibreOffice + Python. Would you be able to tell us how to make VS Code recongnize XSCRIPTCONTEXT? Could VS Code debug python with LibreOffice's python interpreter? When typing LibreOffice code, can VS Code prompt methods and properties? Thank you again!
@DTimCummings
@DTimCummings 3 жыл бұрын
gitlab.com/LibreOfficiant/ide_utils is a project specifically for this requirement.
@pingwchen
@pingwchen 3 жыл бұрын
@@DTimCummings Thanks for the direction. I managed to get Pycharm working (no debug). VS Code seems difficult to setup. Thanks again!
@DTimCummings
@DTimCummings 3 жыл бұрын
Sorry I missed youtube chats during the session. There is a slackspace for sharing data and chatting during the streaming event at beginnerspython.slack.com - please email skypyprojectatgmaildotcom for an invitation to join the space.
@helloWorld-dd2yc
@helloWorld-dd2yc 3 жыл бұрын
Just 62 subscribers and 2 likes!!! That is criminal. I was searching and searching KZbin for python scripting with Libreoffice and this is by far the most comprehensive video on it. This is some high quality content and it deserves more likes.
@DTimCummings
@DTimCummings 3 жыл бұрын
Thanks for the great review. I too found existing documentation and tutorials for Python scripting of LibreOffice lacking and incomplete. I hope this video provides all you need to know to get started and be productive.
@s__n_ghs_w_j_g_r_v_4967
@s__n_ghs_w_j_g_r_v_4967 3 жыл бұрын
The documentation is indeed so lacking that it probably discourages many people from even trying, so they don't even think of looking up on KZbin. But it is on KZbin that I found the best APSO tutorial for example !
@esbeesri2303
@esbeesri2303 Жыл бұрын
@@DTimCummings The audio is horrible.
@subkarmankaur95
@subkarmankaur95 4 жыл бұрын
A great event to learn python language. I love using Jupyter notebook.
@forever3797
@forever3797 4 жыл бұрын
I think this is beginners Python, not beginners coding. I think I have some reading on terminology to do before I give it a try next month.
@DTimCummings
@DTimCummings 4 жыл бұрын
Thanks for this comment. I will think how to make it more understandable for beginner coders.
@forever3797
@forever3797 4 жыл бұрын
@@DTimCummings Thanks Tim, you could do that or clarify that it's beginners Python, not beginner's coding - whichever fits your intention better. I liked your delivery style. I will go over the recording and try to educate myself for next month. Looking forward to it. Cheers.
@crimewave01
@crimewave01 4 жыл бұрын
we need an episode 4
@crimewave01
@crimewave01 4 жыл бұрын
very wholesome :))
@DTimCummings
@DTimCummings 4 жыл бұрын
Jupyter notebook for tonight's session can be copied from colab.research.google.com/drive/1o_bqokKbg4GUfc2NeRMru4ZUvdxmCy8c