Closed Enrico68 closed 1 year ago
I believe the error may be related to your Pandas version. In the requirements.txt file, you've specified 'pandas>=1.1.5.' However, in Pandas 2.0, the 'append' method has been deprecated. You have a few options to resolve this:
You can update the Pandas version to one that supports the 'append' method. Replace 'append' with '_append' if it's suitable for your code. Use the 'concat' function instead. Please note that the syntax for 'concat' will change, and you'll need to modify your code to use it like this: 'pd.concat([s1, s2]).'
Problem description
When I try to fetch more
crypto_data
using a more window temporal, I am getting this errorExample
Expected behavior
getting the data
Environment