Cet article est une ébauche concernant la Mongolie et la religion.
Vous pouvez partager vos connaissances en l’améliorant (comment ?) selon les recommandations des projets correspondants.
Dayan Deerkh (Mongol cyrillique : Даян Дээрх, parfois retranscrit Dayan Deerh), ou Dayan Degereki ( Wylie : Ta-yan Te-ri-khe) est une divinité du chamanisme mongol, omniprésente dans le chamanisme jaune. Elle est reliée à un rite de la fertilité se pratiquant dans une grotte, dans le district de Tsagaan-Üür, aïmag de Hövsgöl[1].
Il est à la fois une divinité de la fertilité et un esprit gardien des initiations chamaniques, et à la fois une déité protectrices de la loi bouddhiste[2]
Sommaire
1Annexes
1.1Bibliographie
1.2Voir aussi
1.3Notes et références
1.4Liens externes
Annexes |
Bibliographie |
(en) Ágnes Birtalan, The representation of the Mongolian shaman deity Dayan Deerh in invocations and in a Buddhist scroll painting, vol. 42, coll. « Études mongoles et sibériennes, centrasiatiques et tibétaines », 1er décembre 2011(DOI 10.4000/emscat.1800, lire en ligne)
(en) Róbert J. Török, A Tibetan offering ritual to Dayan Degereki, a Mongolian local deity, vol. 62, coll. « Acta orientalia Academiae Scientiarum Hungaricae », 3 janvier 2009(DOI 10.1556/AOrient.62.2009.1.3), p. 45-87
Ágnes Birtalan, « An Invocation to Dayan Dērx Collected from a Darkhad Shaman's Descendant », dans Kara György, The Black Master: Essays on Central Eurasia in Honor of György Kara on His 70th Birthday, Otto Harrassowitz Verlag, 2005(ISBN 9783447051866, lire en ligne), p. 21–33
Carole Pegg, Mongolian Music, Dance, & Oral Narrative: Performing Diverse Identities, U of Washington P, 2001(ISBN 9780295981123, lire en ligne)
Ippei Shimamura, « Yellow Shamans (Mongolia) », dans Shamanism: An Encyclopedia of World Beliefs, Practices, and Culture, vol. 1, ABC-CLIO, 2004(ISBN 9781576076453, lire en ligne), p. 649–651
Voir aussi |
Tengrisme
Chamanisme mongol
Chamanisme jaune
Notes et références |
↑ Ágnes Birtalan 2011
↑ Török Róbert J. 2009
Liens externes |
Cette section est vide, insuffisamment détaillée ou incomplète. Votre aide est la bienvenue ! Comment faire ?
(en) « ARTEFACTS — Dayan Degereki », sur moncol.net, Thangka et collection d'œuvres originales et historiques sur le sujet et les sujets annexes.
1
I am trying to find out how to save and close to an existing workbook using xlwings after writing in it: import xlwings as xw list_of_values = [1, 2, 3] workbook_path = 'abc.xlsx' wb = xw.Book(workbook_path) ws = wb.sheets['sheet1'] ws.range('E35').value = list_of_values wb.save() wb.close() When I get to wb.save(workbook_path) , there is a prompt stating: 'A file named abc.xlsx' already exists in this location. Do you want to replace it?' I want to overwrite the file immediately without the prompt coming up. According to the docs, wb.save() should automatically overwrite (see: https://docs.xlwings.org/en/v0.6.4/api.html). I have also tried wb.save(workbook_path) but the pop-up still appears. Appreciate any help on this please. p.s. - I am basically try...
Ne doit pas être confondu avec freeware, open source ou copyleft. Logo du projet GNU, initiateur du mouvement du logiciel libre. Un logiciel libre est un logiciel dont l'utilisation, l'étude, la modification et la duplication par autrui en vue de sa diffusion sont permises, techniquement et légalement [ 1 ] , ceci afin de garantir certaines libertés induites, dont le contrôle du programme par l'utilisateur et la possibilité de partage entre individus [ 2 ] . Ces droits peuvent être simplement disponibles – cas du domaine public – ou bien établis par une licence, dite « libre », basée sur le droit d'auteur. Les « licences copyleft » garantissent le maintien de ces droits aux utilisateurs même pour les travaux dérivés. Les logiciels libres constituent une alternative à ceux qui ne le sont pas, qualifiés de « propriétaires » ou de « privateurs » [ Note 1 ] . Ces derniers sont alors considérés par une partie de la communauté du logiciel libre comme étant l...
1
1
I'm still learning PostgreSQL. During my testing, I have only been using INSERT statement in either psycopg2 and now asyncpg. I now have the need to UPDATE data in my test database, instead of replacing all of it. I'm currently trying to do a simple replacement test in a testing table, before I move to development table with more data. I want to replace any $1 name that is in CONFLICT with a name that is already in the table users. I'm trying the query code, which is passed to the DB via asyncpg. I keep getting a syntax errors, so I'm a little lost on how to correct these errors. What is the proper syntax for this query? '''INSERT INTO users(name, dob) VALUES($1, $2) ON CONFLICT (name) DO UPDATE "users" SET name = 'TEST' W...