Script Python permettant de nettoyer et préparer nos données csv.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

536 lines
8.5 KiB

2 years ago
  1. # ---> VisualStudio
  2. ## Ignore Visual Studio temporary files, build results, and
  3. ## files generated by popular Visual Studio add-ons.
  4. ##
  5. ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  6. # User-specific files
  7. *.rsuser
  8. *.suo
  9. *.user
  10. *.userosscache
  11. *.sln.docstates
  12. # User-specific files (MonoDevelop/Xamarin Studio)
  13. *.userprefs
  14. # Mono auto generated files
  15. mono_crash.*
  16. # Build results
  17. [Dd]ebug/
  18. [Dd]ebugPublic/
  19. [Rr]elease/
  20. [Rr]eleases/
  21. x64/
  22. x86/
  23. [Ww][Ii][Nn]32/
  24. [Aa][Rr][Mm]/
  25. [Aa][Rr][Mm]64/
  26. bld/
  27. [Bb]in/
  28. [Oo]bj/
  29. [Ll]og/
  30. [Ll]ogs/
  31. # Visual Studio 2015/2017 cache/options directory
  32. .vs/
  33. # Uncomment if you have tasks that create the project's static files in wwwroot
  34. #wwwroot/
  35. # Visual Studio 2017 auto generated files
  36. Generated\ Files/
  37. # MSTest test Results
  38. [Tt]est[Rr]esult*/
  39. [Bb]uild[Ll]og.*
  40. # NUnit
  41. *.VisualState.xml
  42. TestResult.xml
  43. nunit-*.xml
  44. # Build Results of an ATL Project
  45. [Dd]ebugPS/
  46. [Rr]eleasePS/
  47. dlldata.c
  48. # Benchmark Results
  49. BenchmarkDotNet.Artifacts/
  50. # .NET Core
  51. project.lock.json
  52. project.fragment.lock.json
  53. artifacts/
  54. # ASP.NET Scaffolding
  55. ScaffoldingReadMe.txt
  56. # StyleCop
  57. StyleCopReport.xml
  58. # Files built by Visual Studio
  59. *_i.c
  60. *_p.c
  61. *_h.h
  62. *.ilk
  63. *.meta
  64. *.obj
  65. *.iobj
  66. *.pch
  67. *.pdb
  68. *.ipdb
  69. *.pgc
  70. *.pgd
  71. *.rsp
  72. *.sbr
  73. *.tlb
  74. *.tli
  75. *.tlh
  76. *.tmp
  77. *.tmp_proj
  78. *_wpftmp.csproj
  79. *.log
  80. *.vspscc
  81. *.vssscc
  82. .builds
  83. *.pidb
  84. *.svclog
  85. *.scc
  86. # Chutzpah Test files
  87. _Chutzpah*
  88. # Visual C++ cache files
  89. ipch/
  90. *.aps
  91. *.ncb
  92. *.opendb
  93. *.opensdf
  94. *.sdf
  95. *.cachefile
  96. *.VC.db
  97. *.VC.VC.opendb
  98. # Visual Studio profiler
  99. *.psess
  100. *.vsp
  101. *.vspx
  102. *.sap
  103. # Visual Studio Trace Files
  104. *.e2e
  105. # TFS 2012 Local Workspace
  106. $tf/
  107. # Guidance Automation Toolkit
  108. *.gpState
  109. # ReSharper is a .NET coding add-in
  110. _ReSharper*/
  111. *.[Rr]e[Ss]harper
  112. *.DotSettings.user
  113. # TeamCity is a build add-in
  114. _TeamCity*
  115. # DotCover is a Code Coverage Tool
  116. *.dotCover
  117. # AxoCover is a Code Coverage Tool
  118. .axoCover/*
  119. !.axoCover/settings.json
  120. # Coverlet is a free, cross platform Code Coverage Tool
  121. coverage*.json
  122. coverage*.xml
  123. coverage*.info
  124. # Visual Studio code coverage results
  125. *.coverage
  126. *.coveragexml
  127. # NCrunch
  128. _NCrunch_*
  129. .*crunch*.local.xml
  130. nCrunchTemp_*
  131. # MightyMoose
  132. *.mm.*
  133. AutoTest.Net/
  134. # Web workbench (sass)
  135. .sass-cache/
  136. # Installshield output folder
  137. [Ee]xpress/
  138. # DocProject is a documentation generator add-in
  139. DocProject/buildhelp/
  140. DocProject/Help/*.HxT
  141. DocProject/Help/*.HxC
  142. DocProject/Help/*.hhc
  143. DocProject/Help/*.hhk
  144. DocProject/Help/*.hhp
  145. DocProject/Help/Html2
  146. DocProject/Help/html
  147. # Click-Once directory
  148. publish/
  149. # Publish Web Output
  150. *.[Pp]ublish.xml
  151. *.azurePubxml
  152. # Note: Comment the next line if you want to checkin your web deploy settings,
  153. # but database connection strings (with potential passwords) will be unencrypted
  154. *.pubxml
  155. *.publishproj
  156. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  157. # checkin your Azure Web App publish settings, but sensitive information contained
  158. # in these scripts will be unencrypted
  159. PublishScripts/
  160. # NuGet Packages
  161. *.nupkg
  162. # NuGet Symbol Packages
  163. *.snupkg
  164. # The packages folder can be ignored because of Package Restore
  165. **/[Pp]ackages/*
  166. # except build/, which is used as an MSBuild target.
  167. !**/[Pp]ackages/build/
  168. # Uncomment if necessary however generally it will be regenerated when needed
  169. #!**/[Pp]ackages/repositories.config
  170. # NuGet v3's project.json files produces more ignorable files
  171. *.nuget.props
  172. *.nuget.targets
  173. # Microsoft Azure Build Output
  174. csx/
  175. *.build.csdef
  176. # Microsoft Azure Emulator
  177. ecf/
  178. rcf/
  179. # Windows Store app package directories and files
  180. AppPackages/
  181. BundleArtifacts/
  182. Package.StoreAssociation.xml
  183. _pkginfo.txt
  184. *.appx
  185. *.appxbundle
  186. *.appxupload
  187. # Visual Studio cache files
  188. # files ending in .cache can be ignored
  189. *.[Cc]ache
  190. # but keep track of directories ending in .cache
  191. !?*.[Cc]ache/
  192. # Others
  193. ClientBin/
  194. ~$*
  195. *~
  196. *.dbmdl
  197. *.dbproj.schemaview
  198. *.jfm
  199. *.pfx
  200. *.publishsettings
  201. orleans.codegen.cs
  202. # Including strong name files can present a security risk
  203. # (https://github.com/github/gitignore/pull/2483#issue-259490424)
  204. #*.snk
  205. # Since there are multiple workflows, uncomment next line to ignore bower_components
  206. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  207. #bower_components/
  208. # RIA/Silverlight projects
  209. Generated_Code/
  210. # Backup & report files from converting an old project file
  211. # to a newer Visual Studio version. Backup files are not needed,
  212. # because we have git ;-)
  213. _UpgradeReport_Files/
  214. Backup*/
  215. UpgradeLog*.XML
  216. UpgradeLog*.htm
  217. ServiceFabricBackup/
  218. *.rptproj.bak
  219. # SQL Server files
  220. *.mdf
  221. *.ldf
  222. *.ndf
  223. # Business Intelligence projects
  224. *.rdl.data
  225. *.bim.layout
  226. *.bim_*.settings
  227. *.rptproj.rsuser
  228. *- [Bb]ackup.rdl
  229. *- [Bb]ackup ([0-9]).rdl
  230. *- [Bb]ackup ([0-9][0-9]).rdl
  231. # Microsoft Fakes
  232. FakesAssemblies/
  233. # GhostDoc plugin setting file
  234. *.GhostDoc.xml
  235. # Node.js Tools for Visual Studio
  236. .ntvs_analysis.dat
  237. node_modules/
  238. # Visual Studio 6 build log
  239. *.plg
  240. # Visual Studio 6 workspace options file
  241. *.opt
  242. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  243. *.vbw
  244. # Visual Studio LightSwitch build output
  245. **/*.HTMLClient/GeneratedArtifacts
  246. **/*.DesktopClient/GeneratedArtifacts
  247. **/*.DesktopClient/ModelManifest.xml
  248. **/*.Server/GeneratedArtifacts
  249. **/*.Server/ModelManifest.xml
  250. _Pvt_Extensions
  251. # Paket dependency manager
  252. .paket/paket.exe
  253. paket-files/
  254. # FAKE - F# Make
  255. .fake/
  256. # CodeRush personal settings
  257. .cr/personal
  258. # Python Tools for Visual Studio (PTVS)
  259. __pycache__/
  260. *.pyc
  261. # Cake - Uncomment if you are using it
  262. # tools/**
  263. # !tools/packages.config
  264. # Tabs Studio
  265. *.tss
  266. # Telerik's JustMock configuration file
  267. *.jmconfig
  268. # BizTalk build output
  269. *.btp.cs
  270. *.btm.cs
  271. *.odx.cs
  272. *.xsd.cs
  273. # OpenCover UI analysis results
  274. OpenCover/
  275. # Azure Stream Analytics local run output
  276. ASALocalRun/
  277. # MSBuild Binary and Structured Log
  278. *.binlog
  279. # NVidia Nsight GPU debugger configuration file
  280. *.nvuser
  281. # MFractors (Xamarin productivity tool) working folder
  282. .mfractor/
  283. # Local History for Visual Studio
  284. .localhistory/
  285. # BeatPulse healthcheck temp database
  286. healthchecksdb
  287. # Backup folder for Package Reference Convert tool in Visual Studio 2017
  288. MigrationBackup/
  289. # Ionide (cross platform F# VS Code tools) working folder
  290. .ionide/
  291. # Fody - auto-generated XML schema
  292. FodyWeavers.xsd
  293. # ---> VisualStudioCode
  294. .vscode/*
  295. !.vscode/settings.json
  296. !.vscode/tasks.json
  297. !.vscode/launch.json
  298. !.vscode/extensions.json
  299. *.code-workspace
  300. # Local History for Visual Studio Code
  301. .history/
  302. # ---> Python
  303. # Byte-compiled / optimized / DLL files
  304. __pycache__/
  305. *.py[cod]
  306. *$py.class
  307. # C extensions
  308. *.so
  309. # Distribution / packaging
  310. .Python
  311. build/
  312. develop-eggs/
  313. dist/
  314. downloads/
  315. eggs/
  316. .eggs/
  317. lib/
  318. lib64/
  319. parts/
  320. sdist/
  321. var/
  322. wheels/
  323. share/python-wheels/
  324. *.egg-info/
  325. .installed.cfg
  326. *.egg
  327. MANIFEST
  328. # PyInstaller
  329. # Usually these files are written by a python script from a template
  330. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  331. *.manifest
  332. *.spec
  333. # Installer logs
  334. pip-log.txt
  335. pip-delete-this-directory.txt
  336. # Unit test / coverage reports
  337. htmlcov/
  338. .tox/
  339. .nox/
  340. .coverage
  341. .coverage.*
  342. .cache
  343. nosetests.xml
  344. coverage.xml
  345. *.cover
  346. *.py,cover
  347. .hypothesis/
  348. .pytest_cache/
  349. cover/
  350. # Translations
  351. *.mo
  352. *.pot
  353. # Django stuff:
  354. *.log
  355. local_settings.py
  356. db.sqlite3
  357. db.sqlite3-journal
  358. # Flask stuff:
  359. instance/
  360. .webassets-cache
  361. # Scrapy stuff:
  362. .scrapy
  363. # Sphinx documentation
  364. docs/_build/
  365. # PyBuilder
  366. .pybuilder/
  367. target/
  368. # Jupyter Notebook
  369. .ipynb_checkpoints
  370. # IPython
  371. profile_default/
  372. ipython_config.py
  373. # pyenv
  374. # For a library or package, you might want to ignore these files since the code is
  375. # intended to run in multiple environments; otherwise, check them in:
  376. # .python-version
  377. # pipenv
  378. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  379. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  380. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  381. # install all needed dependencies.
  382. #Pipfile.lock
  383. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  384. __pypackages__/
  385. # Celery stuff
  386. celerybeat-schedule
  387. celerybeat.pid
  388. # SageMath parsed files
  389. *.sage.py
  390. # Environments
  391. .env
  392. .venv
  393. env/
  394. venv/
  395. ENV/
  396. env.bak/
  397. venv.bak/
  398. # Spyder project settings
  399. .spyderproject
  400. .spyproject
  401. # Rope project settings
  402. .ropeproject
  403. # mkdocs documentation
  404. /site
  405. # mypy
  406. .mypy_cache/
  407. .dmypy.json
  408. dmypy.json
  409. # Pyre type checker
  410. .pyre/
  411. # pytype static type analyzer
  412. .pytype/
  413. # Cython debug symbols
  414. cython_debug/
  415. # ---> MicrosoftOffice
  416. *.tmp
  417. # Word temporary
  418. ~$*.doc*
  419. # Word Auto Backup File
  420. Backup of *.doc*
  421. # Excel temporary
  422. ~$*.xls*
  423. # Excel Backup File
  424. *.xlk
  425. # PowerPoint temporary
  426. ~$*.ppt*
  427. # Visio autosave temporary files
  428. *.~vsd*