|
|
|
|
|
by dandersh
2013 days ago
|
|
I think your comment on intermediate skills is an important one. Personally it seems like there is often a dearth of intermediate resources to better understand and utilize the language. Maybe it's more complex use cases, patterns and best practices, advanced syntax (looking at you, Haskell), etc. For Python I think you're lucky in how versatile and ubiquitous it is. I've found the best way for applying Python is "I want to learn x" and oftentimes 'x' is suitable or desired with Python. In your case I can see search (as mentioned by someone else) as being useful. Also being able to make API requests for cases/documents that you may want to search or maybe save to a local db for later indexing. Speaking of indexing, maybe you may start looking into a bit of NLP. My biggest piece of advice would be that if you really want to use Python, use it in a situation where it makes sense but could be accomplished a different way. Maybe that document request form that you were going to fill out via the UI can be done via an API endpoint you can write in Python. Instead of searching via 'Ctrl-F' write a small script that you pass document(s) to search and term(s) to search for. |
|