<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>python Archives - Mazikim&#039;s Blog</title>
	<atom:link href="https://www.mazikim.com/tag/python-2/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.mazikim.com/tag/python-2/</link>
	<description>Open Source - Linux - CakePHP - Django</description>
	<lastBuildDate>Thu, 11 Oct 2018 18:52:04 +0000</lastBuildDate>
	<language>fr-FR</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.1</generator>
	<item>
		<title>Uploader un fichier avec AngularJS et Django Rest Framework</title>
		<link>https://www.mazikim.com/django/uploader-un-fichier-avec-angularjs-et-django-rest-framework/</link>
					<comments>https://www.mazikim.com/django/uploader-un-fichier-avec-angularjs-et-django-rest-framework/#respond</comments>
		
		<dc:creator><![CDATA[Aymeric DERBOIS]]></dc:creator>
		<pubDate>Sat, 28 May 2016 13:28:50 +0000</pubDate>
				<category><![CDATA[angular]]></category>
		<category><![CDATA[Django]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[Django rest framework]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">http://www.mazikim.com/?p=980</guid>

					<description><![CDATA[<p>Hey les amis ! Voici un petit tips rapide pour gérer l&#8217;upload de fichier avec AngularJS en front et Django-Rest-Framework en back. C&#8217;est assez simple quand on a toutes les cartes en main (et j&#8217;ai galéré pour toutes les avoir ces foutus cartes :D). Alors côté AngularJS j&#8217;utilse la bibliothèque ng-file-upload. L&#8217;installation est simple comme<a class="more-link" href="https://www.mazikim.com/django/uploader-un-fichier-avec-angularjs-et-django-rest-framework/">Lire la suite <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://www.mazikim.com/django/uploader-un-fichier-avec-angularjs-et-django-rest-framework/">Uploader un fichier avec AngularJS et Django Rest Framework</a> appeared first on <a rel="nofollow" href="https://www.mazikim.com">Mazikim&#039;s Blog</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.mazikim.com/django/uploader-un-fichier-avec-angularjs-et-django-rest-framework/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Python, liste et rotation</title>
		<link>https://www.mazikim.com/python/python-list-et-rotation/</link>
					<comments>https://www.mazikim.com/python/python-list-et-rotation/#respond</comments>
		
		<dc:creator><![CDATA[Aymeric DERBOIS]]></dc:creator>
		<pubDate>Sun, 13 Dec 2015 05:50:10 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">http://www.mazikim.com/?p=970</guid>

					<description><![CDATA[<p>Vous voulez faire des rotations sur une liste comme dans l&#8217;exemple suivant : l = &#91;&#34;un&#34;, &#34;deux&#34;, &#34;trois&#34;&#93; # rotate here print l &#62;&#62;&#62; &#91;'trois', 'un', 'deux'&#93; Les listes python ne nous offre pas directement un système pour faire ce genre de chose, mais il y a un module python qu&#8217;il vous faut absolument découvrir<a class="more-link" href="https://www.mazikim.com/python/python-list-et-rotation/">Lire la suite <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://www.mazikim.com/python/python-list-et-rotation/">Python, liste et rotation</a> appeared first on <a rel="nofollow" href="https://www.mazikim.com">Mazikim&#039;s Blog</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.mazikim.com/python/python-list-et-rotation/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Fabric &#8211; yum, pip, cacher les sorties &#8211; stdout</title>
		<link>https://www.mazikim.com/fabric/fabric-yum-pip-cacher-les-sorties-stdout/</link>
					<comments>https://www.mazikim.com/fabric/fabric-yum-pip-cacher-les-sorties-stdout/#respond</comments>
		
		<dc:creator><![CDATA[Aymeric DERBOIS]]></dc:creator>
		<pubDate>Tue, 10 Nov 2015 23:46:01 +0000</pubDate>
				<category><![CDATA[Fabric]]></category>
		<category><![CDATA[fabric]]></category>
		<category><![CDATA[pip]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[yum]]></category>
		<guid isPermaLink="false">http://www.mazikim.com/?p=959</guid>

					<description><![CDATA[<p>Cet article parle de Fabric1. Depuis Fabric2 est sortie, et a beaucoup changé. Fabric est franchement un outil vraiment bien branlé pour faire ses déploiements, mais aussi installer ses serveurs. Par exemple, voici une installation basique: from fabric.api import * from fabric.colors import * &#160; def install&#40;&#41;: env.user = 'admin' print&#40;green&#40;'=== Installing basics for Nginx/Uwsgi/MariaDB/RabbitMQ<a class="more-link" href="https://www.mazikim.com/fabric/fabric-yum-pip-cacher-les-sorties-stdout/">Lire la suite <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://www.mazikim.com/fabric/fabric-yum-pip-cacher-les-sorties-stdout/">Fabric &#8211; yum, pip, cacher les sorties &#8211; stdout</a> appeared first on <a rel="nofollow" href="https://www.mazikim.com">Mazikim&#039;s Blog</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.mazikim.com/fabric/fabric-yum-pip-cacher-les-sorties-stdout/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Django &#8211; login as. Se connecter à un autre compte quand on est admin</title>
		<link>https://www.mazikim.com/django/django-login-as-se-connecter-a-un-autre-compte-quand-on-est-admin/</link>
					<comments>https://www.mazikim.com/django/django-login-as-se-connecter-a-un-autre-compte-quand-on-est-admin/#respond</comments>
		
		<dc:creator><![CDATA[Aymeric DERBOIS]]></dc:creator>
		<pubDate>Fri, 09 Oct 2015 16:32:53 +0000</pubDate>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[login as]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">http://www.mazikim.com/?p=906</guid>

					<description><![CDATA[<p>Parfois, lorsqu&#8217;un utilisateur nous reporte un bug, on aimerait bien se connecter à son compte pour mieux comprendre son problème. Django_su est la bibliothèque Django qu&#8217;il vous faut pour cela. Le projet est assez ancien (il a été créé en 2011) et il reste encore assez actif. Pour preuve j&#8217;ai fait une pull request qui<a class="more-link" href="https://www.mazikim.com/django/django-login-as-se-connecter-a-un-autre-compte-quand-on-est-admin/">Lire la suite <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://www.mazikim.com/django/django-login-as-se-connecter-a-un-autre-compte-quand-on-est-admin/">Django &#8211; login as. Se connecter à un autre compte quand on est admin</a> appeared first on <a rel="nofollow" href="https://www.mazikim.com">Mazikim&#039;s Blog</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.mazikim.com/django/django-login-as-se-connecter-a-un-autre-compte-quand-on-est-admin/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Utiliser Celery dans un projet Django</title>
		<link>https://www.mazikim.com/django/utiliser-celery-dans-un-projet-django/</link>
					<comments>https://www.mazikim.com/django/utiliser-celery-dans-un-projet-django/#respond</comments>
		
		<dc:creator><![CDATA[Aymeric DERBOIS]]></dc:creator>
		<pubDate>Tue, 06 Oct 2015 03:45:58 +0000</pubDate>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[celery]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">http://www.mazikim.com/?p=891</guid>

					<description><![CDATA[<p>Celery permet de façon simple, l’exécution de code Django en background. Un exemple simple d&#8217;utilisation est lorsque l&#8217;on permet à l&#8217;utilisateur de faire une tache qui prends plusieurs secondes à s&#8217;exécuter, celui-ci doit attendre la fin de la tâche pour que la page se charge. Et ça, c&#8217;est pas cool ! Celery va permettre d&#8217;exécuter<a class="more-link" href="https://www.mazikim.com/django/utiliser-celery-dans-un-projet-django/">Lire la suite <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://www.mazikim.com/django/utiliser-celery-dans-un-projet-django/">Utiliser Celery dans un projet Django</a> appeared first on <a rel="nofollow" href="https://www.mazikim.com">Mazikim&#039;s Blog</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.mazikim.com/django/utiliser-celery-dans-un-projet-django/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CentOS7, Django, virtualenv, uwsgi et nginx. On déploie !</title>
		<link>https://www.mazikim.com/centos/centos7-django-virtualenv-uwsgi-et-nginx-on-deploie/</link>
					<comments>https://www.mazikim.com/centos/centos7-django-virtualenv-uwsgi-et-nginx-on-deploie/#respond</comments>
		
		<dc:creator><![CDATA[Aymeric DERBOIS]]></dc:creator>
		<pubDate>Wed, 30 Sep 2015 02:26:41 +0000</pubDate>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Django]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[uwsgi]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">http://www.mazikim.com/?p=857</guid>

					<description><![CDATA[<p>Cela peut paraître un peu complexe, mais en faite pas du tout ! Utiliser nginx avec une application Django c&#8217;est assez simple. Je vais vous le prouver ! Pré-requis Nous allons faire pointer le domaine my_site.local vers notre app Django. On part du CentOS7 fraîchement installée pour l&#8217;exemple. Installation de base Tout d&#8217;abord on installe<a class="more-link" href="https://www.mazikim.com/centos/centos7-django-virtualenv-uwsgi-et-nginx-on-deploie/">Lire la suite <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://www.mazikim.com/centos/centos7-django-virtualenv-uwsgi-et-nginx-on-deploie/">CentOS7, Django, virtualenv, uwsgi et nginx. On déploie !</a> appeared first on <a rel="nofollow" href="https://www.mazikim.com">Mazikim&#039;s Blog</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.mazikim.com/centos/centos7-django-virtualenv-uwsgi-et-nginx-on-deploie/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>gtk_notebook_buildable_add_child: assertion failed: (page != NULL)</title>
		<link>https://www.mazikim.com/python/gtk_notebook_buildable_add_child-assertion-failed-page-null/</link>
					<comments>https://www.mazikim.com/python/gtk_notebook_buildable_add_child-assertion-failed-page-null/#respond</comments>
		
		<dc:creator><![CDATA[Aymeric DERBOIS]]></dc:creator>
		<pubDate>Thu, 21 May 2015 16:04:54 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[glade]]></category>
		<category><![CDATA[pygtk]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">http://www.mazikim.com/?p=843</guid>

					<description><![CDATA[<p>Voici une erreur des plus explicite non ? Vraiment ? Le contexte est simple, je suis en train de développer une petite application en python et pour l&#8217;interface je pars sur du pyGtk. Comme mon interface est assez simple, j&#8217;ai décidé d&#8217;utiliser Glade pour la construire. Une simple fenêtre, dans laquelle je met des onglets.<a class="more-link" href="https://www.mazikim.com/python/gtk_notebook_buildable_add_child-assertion-failed-page-null/">Lire la suite <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://www.mazikim.com/python/gtk_notebook_buildable_add_child-assertion-failed-page-null/">gtk_notebook_buildable_add_child: assertion failed: (page != NULL)</a> appeared first on <a rel="nofollow" href="https://www.mazikim.com">Mazikim&#039;s Blog</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.mazikim.com/python/gtk_notebook_buildable_add_child-assertion-failed-page-null/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Utiliser MySQL dans vos programmes Python</title>
		<link>https://www.mazikim.com/fedora/utiliser-mysql-dans-vos-programmes-python/</link>
					<comments>https://www.mazikim.com/fedora/utiliser-mysql-dans-vos-programmes-python/#comments</comments>
		
		<dc:creator><![CDATA[Aymeric DERBOIS]]></dc:creator>
		<pubDate>Mon, 27 Jun 2011 21:19:51 +0000</pubDate>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Mysql-python]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">http://www.mazikim.com/?p=460</guid>

					<description><![CDATA[<p>Python est un langage interprété qui a de nombreux avantages. Il permet de développer très rapidement et proprement des applications de tous types. Nous allons voir ici comment accéder à une base de données MySQL avec Python de manière très simple. Généralement le problème c&#8217;est de commencer, trouver la bonne librairie et de trouver un<a class="more-link" href="https://www.mazikim.com/fedora/utiliser-mysql-dans-vos-programmes-python/">Lire la suite <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://www.mazikim.com/fedora/utiliser-mysql-dans-vos-programmes-python/">Utiliser MySQL dans vos programmes Python</a> appeared first on <a rel="nofollow" href="https://www.mazikim.com">Mazikim&#039;s Blog</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.mazikim.com/fedora/utiliser-mysql-dans-vos-programmes-python/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Mise en cache de page à l’aide de disk: enhanced 
Mise en cache de la base de données de 26/55 requêtes en 0.049 secondes utilisant disk

Served from: www.mazikim.com @ 2023-03-17 08:37:32 by W3 Total Cache
-->