Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
4
def
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
12
long_description = read_files([
'README.md'
,
'CHANGELOG.md'
])
Callers
1
setup.py
File · 0.85
Calls
1
read
Method · 0.80
Tested by
no test coverage detected