Who has Python experience?

I’m looking for 5 students with some prior Python experience, meaning you know how to use…

  • Dictionaries & lists
  • PIP to install things
  • Different versions of Python

If you have that sort of level of competence and an interest in Blender let me know. I’ll post a 5 usage coupon here in a few days so that you can come into the Blender Python course super early for free, in return for some invaluable early feedback.

Deal?

1 Like

Hey Ben,

I have some prior Python experience and of course I am interested in Blender!

I can certainly provide some feedback too.

1 Like

That would be me Ben! I would love to have even more fun fiddling with python in blender… have a quick look at the topic of my post just today on this very site: python re-fit
Doing a pilot of a new course be a great learning experiance! I would love it!
I have done loads of stuff like this here scraper a made to monitor a online discount store while at work :wink:

@author: Mike
'''
import urllib2
import urllib
import cookielib
import time
import hashlib

oldhash = ""
newhash = ""

cj = cookielib.MozillaCookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
#opener.addheaders = [('User-agent', 'Mozilla/5.0')]

link = 'http://www.ibood.com/nl/nl/'
data = opener.open(link)
while (1==1):
	
	
	print data.read()
	newhash = str.upper(hashlib.md5(data.read()).hexdigest())
	
	if (newhash != oldhash ):
		oldhash = newhash
		print "\a" #system beep
	
	time.sleep(30)
opener.close()

And I know about PIP setup.py install stuff… Let me know when I can be of assistance!

:slight_smile:

1 Like

Need to get the course through Udemy approval, then I’ll let you guys in for a look. Should be next week.

1 Like

Can’t wait Ben!

1 Like

Privacy & Terms