TGTGInsighttelegram intelligenceLIVE / telegram public index
← GitHub Trends

TGINSIGHT SIMILAR POSTS

Find similar content

Source channel @githubtrending · Post #14649 · Apr 30

#typescript#csv#diagrams#graph#json#nextjs#react#tool#visualization#yaml JSON Crack is a free, open-source tool that instantly turns complex JSON, YAML, CSV, XML, or TOML data into clear, interactive graphs, making it easier to explore and understand your information. It lets you convert between formats, validate data, generate code (like TypeScript interfaces), run queries, and export visuals as images—all while keeping your data private since everything processes locally on your device[1][2][5]. https://github.com/AykutSarac/jsoncrack.com

Results

11 similar posts found

djangoproject

@djangoproject · Post #76 · 07/02/2016, 11:05 AM

https://docs.python.org/3.5/library/csv.html The so-called #CSV (Comma Separated Values) format is the most common import and export format for spreadsheets and databases. CSV format was used for many years prior to attempts to describe the format in a standardized way in RFC 4180. The lack of a well-defined standard means that subtle differences often exist in the data produced and consumed by different applications. These differences can make it annoying to process CSV files from multiple sources. Still, while the delimiters and quoting characters vary, the overall format is similar enough that it is possible to write a single module which can efficiently manipulate such data, hiding the details of reading and writing the data from the programmer.

Hashtags

djangoproject

@djangoproject · Post #329 · 05/04/2017, 04:34 AM

# The standard string repr for dicts is hard to read: »> my_mapping = {'a': 23, 'b': 42, 'c': 0xc0ffee} »> my_mapping {'b': 42, 'c': 12648430. 'a': 23} # 😞 # The "#json" module can do a much better job: »> import json »> print(json.dumps(my_mapping, indent=4, sort_keys=True)) { "a": 23, "b": 42, "c": 12648430 } # Note this only works with dicts containing # primitive types (check out the "pprint" module): »> json.dumps({all: 'yup'}) TypeError: keys must be a string

Hashtags

djangoproject

@djangoproject · Post #379 · 07/12/2017, 09:12 PM

http://zetcode.com/python/csv/ Python #CSV tutorial shows how to read and write CSV #data with Python csv module. #learn

The Devs

@thedevs · Post #1913 · 05/26/2021, 03:43 PM

The Norway problem, why you should refuse implicit typing on YAML. #article#yaml#coding @thedevs https://kutt.it/z0XkDY

The Devs

@thedevs · Post #2147 · 06/01/2025, 12:58 PM

JSON is dangerous (and slow). #article#json @thedevs https://thedevs.link/mnVS3t

The Devs

@thedevs · Post #1999 · 09/20/2022, 07:02 AM

JSON Hero, a beautiful JSON viewer. #tools#json @thedevs https://kutt.it/lL2sWb

Hashtags

djangoproject

@djangoproject · Post #464 · 10/16/2017, 08:07 AM

http://www.csestack.org/python-libraries-for-data-science/ As per the DIKW Pyramid Model, #Data_Science job revolves around finding the information, knowledge from Raw Data. And it can be bundled into the stack of 4 entities: source of #data manage and store data analyze the data display analyzed output (#visualization, statistics)

djangoproject

@djangoproject · Post #469 · 10/16/2017, 08:32 AM

https://s3.amazonaws.com/assets.datacamp.com/blog_assets/Scikit_Learn_Cheat_Sheet_Python.pdf #Scikit_learn is an open source Python library that implements a range of #machine_learning , preprocessing, cross-#validation and #visualization algorithms using a unified interface...

djangoproject

@djangoproject · Post #569 · 02/08/2018, 07:27 PM

http://v1k45.com/blog/modern-django-part-1-setting-up-django-and-react/ Modern Django: Part 1: Setting up #Django and #React This will be a multi part tutorial series on how to create a "Modern" web application or SPA using Django and React.js.

djangoproject

@djangoproject · Post #480 · 10/30/2017, 02:22 PM

https://github.com/scottwoodall/django-react-template A Django & React Template A collection of #Django and #React modules that will help bootstrap your next Django web application.