Metadata-Version: 2.2
Name: combined_bukmacherska
Version: 0.5.0
Summary: Biblioteka do analizy wyników sportowych i treningu modeli
Home-page: https://github.com/TwojeRepo
Author: [Twoje Imię]
Author-email: [Twój Email]
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: matplotlib
Requires-Dist: scikit-learn
Requires-Dist: catboost
Requires-Dist: xgboost
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

import os

# Ścieżka głównego katalogu
base_path = r"C:\Users\rockd\Desktop\combined_bukmacherska"

# Ścieżki do plików README
readme1_path = os.path.join(base_path, "combined_bukmacherska1", "README1.md")
readme2_path = os.path.join(base_path, "combined_bukmacherska2", "README2.md")
main_readme_path = os.path.join(base_path, "README.md")

# Łączenie treści z plików README1.md i README2.md
with open(main_readme_path, 'w') as main_readme:
    with open(readme1_path, 'r') as readme1:
        main_readme.write("# Combined Bukmacherska 1\n\n")
        main_readme.write(readme1.read())
        main_readme.write("\n\n")

    with open(readme2_path, 'r') as readme2:
        main_readme.write("# Combined Bukmacherska 2\n\n")
        main_readme.write(readme2.read())
