Hey I need to add a few lines of code to a library I use.
It is nessesary for my program otherwise it will put an error with too many requests back.
Is there an easy way to do this?
Thanks!
Hey I need to add a few lines of code to a library I use.
It is nessesary for my program otherwise it will put an error with too many requests back.
Is there an easy way to do this?
Thanks!
If it's some low level thing that cannot be set up in your code in a regular way, you can find the library code in the virtualenv and change the relevant part, for example by editing:
/home/grumpyp/.virtualenvs/myvirtualenv/lib/python3.8/site-packages/example_package/file_to_be_changed.py
Thanks that helped!