MCPcopy Create free account
hub / github.com/theskumar/python-dotenv / read_files

Function read_files

setup.py:4–9  ·  view source on GitHub ↗
(files)

Source from the content-addressed store, hash-verified

2
3
4def read_files(files):
5 data = []
6 for file in files:
7 with open(file, encoding='utf-8') as f:
8 data.append(f.read())
9 return "\n".join(data)
10
11
12long_description = read_files(['README.md', 'CHANGELOG.md'])

Callers 1

setup.pyFile · 0.85

Calls 1

readMethod · 0.80

Tested by

no test coverage detected