DEV Community

pymoondra
pymoondra

Posted on

Where to store data for small personal web project?

I am working on two small personal projects:

one involves financial data (daily open,close, high, low)
two involves text files with urls

Is there a free storage service that I can use to read data from?
I plan to use Python to read the data.

Thank you for your suggestions.

Latest comments (4)

Collapse
 
mellen profile image
Matt Ellen

You can use the heroku free / hobby dev tier. That gives you access to a free postgres instance. There is a limit of 10000 rows.

Collapse
 
pymoondra profile image
pymoondra

Just saw this thank you.
I would need more than 10000k rows, so currently looking into AZURE and AWS

Collapse
 
saberhosneydev profile image
Saber Hosney

I don't think there's such thing for your specific case but you can do some work around!
You can try using Heroku and set it up to serve your files or Storing those files on Github and read em with raw

Collapse
 
pymoondra profile image
pymoondra

Thank you. I will look into your github idea.