L/L Research Channeling Material - all sessions in one file

Oh yes this is really good. I noticed that you added Ra and even earlier channelings (like 1958).

However I’ll definitely continue to use what I’ve done myself and add new sessions to my folder as they come up. I see today that there are two new ones!

But thanks to you. I thought I would take all your text files and combine it into literally one text file. That might come in handy someday, too.

I did it with a script in Python running it in Jupyter Notebook (maybe someone likes that sort of thing here):

import os

Define the path to the folder containing the text files

folder_path = ‘path/to/your/folder’ # Replace with the path to your folder
output_file_path = ‘path/to/your/folder/combined_file.txt’ # Replace with the path to your output file

Collect the names of all text files in the folder

text_files = [f for f in os.listdir(folder_path) if f.endswith(‘.txt’)]

Combine the contents of all text files into one file

with open(output_file_path, ‘w’, encoding=‘utf-8’) as output_file:
for filename in text_files:
with open(os.path.join(folder_path, filename), ‘r’, encoding=‘utf-8’) as input_file:
# Copy the file content to the output file
output_file.write(input_file.read())
# Add three lines of spacing between files
output_file.write(‘\n\n\n’)

All the sessions in one txt file uploaded by me:

1 Like