Python usage notes/Configuration file parsing: Difference between revisions

From Helpful
Jump to navigation Jump to search
m (Created page with "{{Python usage notes}} {{stub}} Note that YAML can be convenient for this. Also commonly used is the ini-style format that can be parsed by [http://docs.python.org/library/co...")
 
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{Python usage notes}}
{{Pythonstuff}}
 


{{stub}}
{{stub}}
Line 8: Line 7:
Also commonly used is the ini-style format that can be parsed by [http://docs.python.org/library/configparser.html ConfigParser] (standard library), and by libraries like [http://pythonpaste.org/initools/ initools] (similar, simpler to use).
Also commonly used is the ini-style format that can be parsed by [http://docs.python.org/library/configparser.html ConfigParser] (standard library), and by libraries like [http://pythonpaste.org/initools/ initools] (similar, simpler to use).


https://pypi.org/project/confection/




[[Category:Python]]
[[Category:Python]]

Latest revision as of 14:02, 29 April 2024

Syntaxish: syntax and language · changes and py2/3 · decorators · importing, modules, packages · iterable stuff · concurrency

IO: networking and web · filesystem

Data: Numpy, scipy · pandas, dask · struct, buffer, array, bytes, memoryview · Python database notes

Image, Visualization: PIL · Matplotlib, pylab · seaborn · bokeh · plotly


Tasky: Concurrency (threads, processes, more) · joblib · pty and pexpect

Stringy: strings, unicode, encodings · regexp · command line argument parsing · XML

date and time


Notebooks

speed, memory, debugging, profiling · Python extensions · semi-sorted

This article/section is a stub — some half-sorted notes, not necessarily checked, not necessarily correct. Feel free to ignore, or tell me about it.

Note that YAML can be convenient for this.

Also commonly used is the ini-style format that can be parsed by ConfigParser (standard library), and by libraries like initools (similar, simpler to use).


https://pypi.org/project/confection/