Posts by user15893 • 16 points
2 posts
-
0
votes1
answer164
viewsA: UPDATE ON DJANGO
In your form the action="." may be changing the url where the post is being made. Just try <form method="post">
-
0
votes1
answer1202
viewsA: Is there a size limit on the writerow of csv?
I don’t know exactly how the csv library works, but you could also use the pandas to read and save csvs (I don’t know if in your case it’s better). You could do import pandas as pd csv =…