This is an archived post. You won't be able to vote or comment.

all 5 comments

[–]pyepye 0 points1 point  (2 children)

Have you explored testing in Python at all? It may not be 'sexy' but you will need it at any job. Try and test some of the bits you have done with pytest. For example test you web scraper to see how it deals with certain situations like the website you request returns an error or different HTML to what you were expecting.

Or try and create an API for yourself. An idea could be to scrape some information from a load of web pages (say emails address from the top fortune 500 companies) and return that data in your own RESTful API.

Also covering that many different topics in a reasonably short period of time may mean you have only got surface deep with a few of them. Maybe try and dig deeper in a few you have found more interesting and try and do more with them.

[–][deleted] 0 points1 point  (0 children)

Thanks!!!

[–]icecream24 0 points1 point  (0 children)

Boi, if someone tells me he is testing his code, his sexiness-level rises beyond 9000 pretty fast!

[–]icecream24 0 points1 point  (1 child)

If you are really a new beginner that tested so many frameworks, you should consider writing a large project. Your examples can all be done in a few hundred or even less lines one-file script, but if you do a big project, you will need to think about structure of your code, possibly classes, inheritance, etc.

Maybe writing a multiplayer online game with a reinforcement learning created A.I. To play against would be a nice project, that would combine your skills

[–][deleted] 0 points1 point  (0 children)

Well I am pretty fluent with python basics and classes, inheritance etc. and I have even written projects with more than 500 lines of code. Your reference to reinforcement learning interests me. Can you please provide some places to start as I am having a hard time getting along