Coder Social home page Coder Social logo

datasets's Introduction

Datasets

A bunch of some 200 datasets. You can call it mini-kaggle :)

Want to download any csv file for local use? Follow the steps mentioned below: ๐Ÿ‘‡

  1. Go to a csv file in a repository of your choice
  2. From the top right bar just above the file section, select and click on "Raw" button
  3. A page will appear with comma separated data with no styling
  4. Copy the page url
  5. Make a folder in your desktop
  6. Open that folder in your favourite code editor and make a simple python file inside the folder. Name it as you please.
  7. Copy this code [From the section below]
  8. Run the python file
  9. The csv file will get downloaded within sometime, depending upon file size
  10. Now you are ready the use it locally!!
import requests
import pandas as pd
url = '{(copied url here)}' 
res = requests.get(url, allow_redirects=True)
with open('download_file_name.csv','wb') as file:
    file.write(res.content)
download_file_name = pd.read_csv('download_file_name.csv') 

datasets's People

Contributors

mainakrepositor avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.