JSenkCC commited on
Commit
c01e114
·
verified ·
1 Parent(s): 7fb5d1a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +30 -16
app.py CHANGED
@@ -425,10 +425,6 @@ def generate_documentation_page():
425
  st.subheader(f"Generate Documentation for {st.session_state.current_project}")
426
  st.write("Enter the functionality or parts of the project for which you'd like to generate documentation.")
427
 
428
- # Get the path of the current project
429
- user_folder = os.path.join("user_projects", st.session_state.username)
430
- project_folder = os.path.join(user_folder, st.session_state.current_project)
431
-
432
  # Prompt user for functionality description
433
  functionality = st.text_area(
434
  "Describe the functionality",
@@ -440,6 +436,10 @@ def generate_documentation_page():
440
  if functionality.strip():
441
  st.write("Analyzing project files... Please wait.")
442
 
 
 
 
 
443
  if os.path.exists(project_folder):
444
  try:
445
  # Gather all file paths in the project directory
@@ -451,7 +451,7 @@ def generate_documentation_page():
451
  # Generate documentation using Gemini
452
  documentation = generate_detailed_documentation(file_contents, functionality)
453
 
454
- # Save the documentation in session state for exporting
455
  st.session_state.generated_documentation = documentation
456
 
457
  # Display the final documentation
@@ -468,23 +468,37 @@ def generate_documentation_page():
468
  if "generated_documentation" in st.session_state and st.session_state.generated_documentation:
469
  documentation = st.session_state.generated_documentation
470
 
 
 
 
 
 
471
  # Button to generate PDF
472
  if st.button("Generate PDF"):
473
- pdf_file_path = os.path.join(project_folder, f"{st.session_state.current_project} Documentation.pdf")
474
- generate_pdf(documentation, pdf_file_path)
475
-
476
- # Save the path in session state for later viewing
477
- st.session_state.pdf_file_path = pdf_file_path
478
- st.success("PDF file generated successfully! It will now appear in the 'View Documentation' page.")
479
 
480
  # Button to generate Markdown file
481
  if st.button("Generate Markdown File"):
482
- markdown_file_path = os.path.join(project_folder, f"{st.session_state.current_project} Documentation.md")
483
- generate_markdown_file(documentation, markdown_file_path)
484
 
485
- # Save the path in session state for later viewing
486
- st.session_state.markdown_file_path = markdown_file_path
487
- st.success("Markdown file generated successfully! It will now appear in the 'View Documentation' page.")
 
 
 
 
 
 
 
 
 
 
 
 
 
488
 
489
 
490
  # Helper function to generate PDF
 
425
  st.subheader(f"Generate Documentation for {st.session_state.current_project}")
426
  st.write("Enter the functionality or parts of the project for which you'd like to generate documentation.")
427
 
 
 
 
 
428
  # Prompt user for functionality description
429
  functionality = st.text_area(
430
  "Describe the functionality",
 
436
  if functionality.strip():
437
  st.write("Analyzing project files... Please wait.")
438
 
439
+ # Get the path of the current project
440
+ user_folder = os.path.join("user_projects", st.session_state.username)
441
+ project_folder = os.path.join(user_folder, st.session_state.current_project)
442
+
443
  if os.path.exists(project_folder):
444
  try:
445
  # Gather all file paths in the project directory
 
451
  # Generate documentation using Gemini
452
  documentation = generate_detailed_documentation(file_contents, functionality)
453
 
454
+ # Save the documentation in session state for exporting and viewing
455
  st.session_state.generated_documentation = documentation
456
 
457
  # Display the final documentation
 
468
  if "generated_documentation" in st.session_state and st.session_state.generated_documentation:
469
  documentation = st.session_state.generated_documentation
470
 
471
+ # Define paths for PDF and Markdown files
472
+ user_folder = os.path.join("user_projects", st.session_state.username)
473
+ pdf_path = os.path.join(user_folder, f"{st.session_state.current_project}_Documentation.pdf")
474
+ markdown_path = os.path.join(user_folder, f"{st.session_state.current_project}_Documentation.md")
475
+
476
  # Button to generate PDF
477
  if st.button("Generate PDF"):
478
+ generate_pdf(documentation, pdf_path)
479
+ st.success(f"PDF file generated successfully: {pdf_path}")
 
 
 
 
480
 
481
  # Button to generate Markdown file
482
  if st.button("Generate Markdown File"):
483
+ generate_markdown_file(documentation, markdown_path)
484
+ st.success(f"Markdown file generated successfully: {markdown_path}")
485
 
486
+ # Provide download buttons
487
+ with open(pdf_path, "rb") as pdf_file:
488
+ st.download_button(
489
+ label="Download PDF",
490
+ data=pdf_file.read(),
491
+ file_name=f"{st.session_state.current_project}_Documentation.pdf",
492
+ mime="application/pdf",
493
+ )
494
+
495
+ with open(markdown_path, "rb") as markdown_file:
496
+ st.download_button(
497
+ label="Download Markdown File",
498
+ data=markdown_file.read(),
499
+ file_name=f"{st.session_state.current_project}_Documentation.md",
500
+ mime="text/markdown",
501
+ )
502
 
503
 
504
  # Helper function to generate PDF