Skip to content

Instantly share code, notes, and snippets.

@me-suzy
Created April 23, 2025 09:12
Show Gist options
  • Save me-suzy/b3d203e93967cf7c305fa1065d907e04 to your computer and use it in GitHub Desktop.
Save me-suzy/b3d203e93967cf7c305fa1065d907e04 to your computer and use it in GitHub Desktop.
acord wikipedia imagini.py
from docx import Document
from datetime import date
# Traducerea în limba engleză
translated_text = """
Statement of Consent for the Use of Images on Wikipedia
I, Viorel Iulian Peștean, hereby declare that I am the creator and/or sole copyright holder of the following images categorized as media files:
- Viorel_Iulian_Peștean_2.jpg
- Viorel_Iulian_Peștean_-_Membru_al_academiei_romane_de_stiinte_agricole.jpg
- Viorel_Iulian_Peștean_-_Consilier_Judetean_Iasi.jpg
- Viorel_Iulian_Peștean_-_Premiul_Gheorghe_Ionescu_Sisesti.jpg
I agree that the above-mentioned works may be published under the Creative Commons Attribution-ShareAlike 4.0 International license.
By this declaration, I acknowledge that I grant any person the right to use these works, including for commercial or other purposes, as well as the right to modify them according to their needs, provided that they comply with the terms of the license and any other applicable laws.
I am aware that this agreement is not limited to Wikipedia or its affiliated sites.
I am also aware that the copyright holder always retains ownership of the material, as well as the right to be attributed in accordance with the chosen license. Modifications made by others will not be claimed as having been made by the copyright holder.
I acknowledge that I cannot revoke this agreement and that the content may or may not be permanently retained on a Wikimedia project.
Furthermore, I express my consent for all images found in the volumes:
- Pestean, Viorel Iulian – Distinguished Figures in Romanian Agricultural Science (Vol. 1, Vol. 2, Vol. 3) to be used on Wikipedia.
These images are part of a collection I personally gathered over nearly 15 years from old archives and other sources. Many of them are rare or may no longer exist elsewhere, and they are the result of my efforts in biographical research about significant figures in Romanian agricultural science.
Viorel Iulian Peștean Signature
Date: {}
""".format(date.today().strftime("%d.%m.%Y"))
# Creăm documentul Word în limba engleză
doc_en = Document()
doc_en.add_heading('Statement of Consent for the Use of Images on Wikipedia', level=1)
doc_en.add_paragraph(translated_text)
# Salvăm fișierul .docx
docx_path_en = "Statement_Wikipedia_Viorel_Iulian_Pestean.docx"
doc_en.save(docx_path_en)
docx_path_en
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment