├── .gitignore ├── README.md ├── create_db.py └── make_readme.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | *.sqlite3* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/world-development-indicators-sqlite/HEAD/README.md -------------------------------------------------------------------------------- /create_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/world-development-indicators-sqlite/HEAD/create_db.py -------------------------------------------------------------------------------- /make_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/world-development-indicators-sqlite/HEAD/make_readme.py --------------------------------------------------------------------------------