تکجوی

مرجعی برای آخرین مطالب طراحی سایت فول استک پایتون/جنگو

تکجوی

مرجعی برای آخرین مطالب طراحی سایت فول استک پایتون/جنگو

همیشا وقتی یه مطلبی رو نیاز دارم، اول مسلما سرچ می کنم. اما گاهی اوقات یه مطلب مفیدی برای طراحی سایت رو می خونم، یا جزئیاتش رو فراموش می کنم، یا آدرس سایتش رو گم می کنم و بعدا حتی شده دو، سه روز دنبالش می گردم تا مجددا پیداش کنم. این وبلاگ کمک می کنه دیگه دنبال مطالب تکراری نگردم و تو کارم صرفه جویی زیادی بشه. ممکنه این مطالب دسته بندی شده، به درد شما هم بخوره.

طبقه بندی موضوعی
بایگانی

۲ مطلب با کلمه‌ی کلیدی «xml» ثبت شده است

  • ۰
  • ۰

https://stackoverflow.com/questions/3224268/python-unicode-encode-error

I'm reading and parsing an Amazon XML file and while the XML file shows a ' , when I try to print it I get the following error:


'ascii' codec can't encode character u'\u2019' in position 16: ordinal not in range(128) 
  • محمد خسروی زاده
  • ۰
  • ۰

http://devarea.com/8-python-modules-for-files-handling/#.Wlu2RyehU8o

Python has input/output features which are very easy to use. Files are accessed through file objects and you can open, read, write and close files using a very simple and easy to use functions from the standard library. To manage files and deal with special file formats (xml, json..) python provides special packages that make the developer life ever easier.

  • محمد خسروی زاده