<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Yogesh Nile</title>
    <description>The latest articles on DEV Community by Yogesh Nile (@yogeshnile).</description>
    <link>https://dev.to/yogeshnile</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F429160%2Fec31f5fd-90e4-453c-86c1-300e9055f514.jpg</url>
      <title>DEV Community: Yogesh Nile</title>
      <link>https://dev.to/yogeshnile</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yogeshnile"/>
    <language>en</language>
    <item>
      <title>handle AWS lambda function code on web with layers</title>
      <dc:creator>Yogesh Nile</dc:creator>
      <pubDate>Sun, 13 Dec 2020 11:08:55 +0000</pubDate>
      <link>https://dev.to/yogeshnile/handle-aws-lambda-function-code-on-web-with-layers-2lo5</link>
      <guid>https://dev.to/yogeshnile/handle-aws-lambda-function-code-on-web-with-layers-2lo5</guid>
      <description>&lt;ul&gt;
&lt;li&gt;When developer write AWS lambda function in python or other language than it require some libraries to run code and those libraries may be require more than 3 mb. AWS does not provide function editor on more than 3 mb code than it difficult to handle errors.&lt;/li&gt;
&lt;li&gt;In this situation AWS provide layers to attach library and reusable those libraries in other lambda function. But if you create a layers in right way than lambda function throw the error. I wanna show to how to create a right layers using ec2 instance in python language.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;ec2 instance must be give iam role to full access s3 bucket.&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;run below command on ec2 instance
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo &lt;/span&gt;apt-get update
&lt;span class="nb"&gt;sudo &lt;/span&gt;apt-get &lt;span class="nb"&gt;install &lt;/span&gt;python3-pip &lt;span class="nt"&gt;-y&lt;/span&gt;
&lt;span class="nb"&gt;sudo &lt;/span&gt;apt-get &lt;span class="nb"&gt;install &lt;/span&gt;zip &lt;span class="nt"&gt;-y&lt;/span&gt;
&lt;span class="nb"&gt;sudo &lt;/span&gt;apt-get &lt;span class="nb"&gt;install &lt;/span&gt;awscli &lt;span class="nt"&gt;-y&lt;/span&gt;
&lt;span class="nb"&gt;mkdir&lt;/span&gt; &lt;span class="nt"&gt;-p&lt;/span&gt; build/python/lib/python3.8/site-packages
pip3 &lt;span class="nb"&gt;install&lt;/span&gt; &amp;lt;package&amp;gt; &lt;span class="nt"&gt;-t&lt;/span&gt; build/python/lib/python3.8/site-packages/ &lt;span class="nt"&gt;--system&lt;/span&gt;
&lt;span class="nb"&gt;cd &lt;/span&gt;build/
zip &lt;span class="nt"&gt;-r&lt;/span&gt; &amp;lt;zip name&amp;gt; &lt;span class="nb"&gt;.&lt;/span&gt;
aws s3 &lt;span class="nb"&gt;cp&lt;/span&gt; &amp;lt;zip file&amp;gt; s3://&amp;lt;bucket&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;goto s3 bucket and copy the zip file link&lt;/li&gt;
&lt;li&gt;goto lambda console click layers&lt;/li&gt;
&lt;li&gt;&lt;p&gt;create layer input zip file link selete runtime and create.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;congratulation you crated lambda layer sucessfully.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>aws</category>
      <category>python</category>
      <category>programming</category>
      <category>cloud</category>
    </item>
    <item>
      <title>Course stream web application in Django </title>
      <dc:creator>Yogesh Nile</dc:creator>
      <pubDate>Tue, 17 Nov 2020 11:07:58 +0000</pubDate>
      <link>https://dev.to/yogeshnile/course-stream-web-application-in-django-33kk</link>
      <guid>https://dev.to/yogeshnile/course-stream-web-application-in-django-33kk</guid>
      <description>&lt;h1&gt;
  
  
  Hello Dev,
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;I wanna show you to I have developed web application like udemy. That you will learn free and paid courses.&lt;/li&gt;
&lt;li&gt;This web application developed in django framework. Django is a Python-based free and open-source web framework that follows the model-template-views architectural pattern. It is maintained by the Django Software Foundation, an American independent organization established as a 501 non-profit.&lt;/li&gt;
&lt;li&gt;This web application are integrated with payment service&lt;/li&gt;
&lt;li&gt;In this application user details are validate via ajax&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Github Repo
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/yogeshnile/course-stream-in-django"&gt;Repo&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Here some screenshot of web application
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Backend &lt;br&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--MueifalX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/course-stream-in-django/main/Images/1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--MueifalX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/course-stream-in-django/main/Images/1.png" alt=""&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--pJWPhjor--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/course-stream-in-django/main/Images/2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--pJWPhjor--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/course-stream-in-django/main/Images/2.png" alt=""&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Courses &lt;br&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--sPT5sOuY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/course-stream-in-django/main/Images/3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--sPT5sOuY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/course-stream-in-django/main/Images/3.png" alt=""&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Course Details &lt;br&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--68z1sqlx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/course-stream-in-django/main/Images/4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--68z1sqlx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/course-stream-in-django/main/Images/4.png" alt=""&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Checkout Page &lt;br&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--DhKIVNvE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/course-stream-in-django/main/Images/5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--DhKIVNvE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/course-stream-in-django/main/Images/5.png" alt=""&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Payment Process  &lt;br&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--DB4C2JLK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/course-stream-in-django/main/Images/6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--DB4C2JLK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/course-stream-in-django/main/Images/6.png" alt=""&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Subscribed Courses &lt;br&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--6KR9wquR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/course-stream-in-django/main/Images/7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6KR9wquR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/course-stream-in-django/main/Images/7.png" alt=""&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;



&lt;h1&gt;
  
  
  Contribution
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;If you find a bug (the website couldn't handle the query and / or gave undesired results), kindly open an issue &lt;a href="https://github.com/yogeshnile/course-stream-in-django/issues/new"&gt;here&lt;/a&gt; by including your search query and the expected result. 

&lt;ul&gt;
&lt;li&gt;If you'd like to request a new function, feel free to do so by opening an issue &lt;a href="https://github.com/yogeshnile/course-stream-in-django/issues/new"&gt;here&lt;/a&gt;. Please include sample queries and their corresponding results.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>django</category>
      <category>python</category>
      <category>github</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Python Library Developed</title>
      <dc:creator>Yogesh Nile</dc:creator>
      <pubDate>Mon, 16 Nov 2020 13:55:28 +0000</pubDate>
      <link>https://dev.to/yogeshnile/python-library-developed-487b</link>
      <guid>https://dev.to/yogeshnile/python-library-developed-487b</guid>
      <description>&lt;p&gt;Hello Dev,&lt;br&gt;
I wanna show you to I developed a python library that contains my public profile and portfolio.&lt;br&gt;
Go and check out &lt;a href="https://pypi.org/project/Yogesh-Nile/"&gt;Yogesh-Nile&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here some example of my library&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="nn"&gt;Yogesh_Nile&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;resume&lt;/span&gt;

&lt;span class="n"&gt;obj&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;resume&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;

&lt;span class="n"&gt;intro&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;obj&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;get_Introduction&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;

&lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;intro&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="nn"&gt;Yogesh_Nile&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;resume&lt;/span&gt;

&lt;span class="n"&gt;obj&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;resume&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;

&lt;span class="n"&gt;link&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;obj&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;get_Links&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;

&lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;link&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Hope you like it, Also check out my &lt;a href="https://github.com/yoeshnile"&gt;github profile&lt;/a&gt;. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;In github I have upload lot of python related repo. You will definitely learn something new.&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>python</category>
      <category>programming</category>
      <category>github</category>
    </item>
    <item>
      <title>Student Result Publish in Django</title>
      <dc:creator>Yogesh Nile</dc:creator>
      <pubDate>Thu, 12 Nov 2020 05:39:08 +0000</pubDate>
      <link>https://dev.to/yogeshnile/student-result-publish-in-django-11h4</link>
      <guid>https://dev.to/yogeshnile/student-result-publish-in-django-11h4</guid>
      <description>&lt;ul&gt;
&lt;li&gt;&lt;p&gt;A couple of days ago I developed student result published web application in django.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://github.com/yogeshnile/SRMS"&gt;github link&lt;/a&gt;&lt;br&gt;
You will like this projects!&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In this project I have used below library.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Django==3.1.1&lt;/li&gt;
&lt;li&gt;django-import-export==2.4.0&lt;/li&gt;
&lt;li&gt;django-admin-interface==0.14.0&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;&lt;p&gt;In this project you can import student result via file like csv, json, xml and many more &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Go and checkout my project &lt;a href="https://github.com/yogeshnile/SRMS"&gt;github link&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  ScreenShot 📸
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--gV6j5n6u--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/x5vjgcj11k8qn95z9y4l.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--gV6j5n6u--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/x5vjgcj11k8qn95z9y4l.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ra44LTOb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/SRMS/master/Images/2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ra44LTOb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/SRMS/master/Images/2.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--X-s3mjko--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/SRMS/master/Images/3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--X-s3mjko--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/SRMS/master/Images/3.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--YP54W0xR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/SRMS/master/Images/4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--YP54W0xR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/SRMS/master/Images/4.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--o8JAjH44--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/SRMS/master/Images/5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--o8JAjH44--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/yogeshnile/SRMS/master/Images/5.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>django</category>
      <category>python</category>
      <category>github</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Basic of Pandas </title>
      <dc:creator>Yogesh Nile</dc:creator>
      <pubDate>Sat, 11 Jul 2020 10:07:34 +0000</pubDate>
      <link>https://dev.to/yogeshnile/basic-of-pandas-22b7</link>
      <guid>https://dev.to/yogeshnile/basic-of-pandas-22b7</guid>
      <description>&lt;p&gt;&lt;strong&gt;Pandas&lt;/strong&gt; is an open-source library that is built on top of NumPy library. It is a Python package that offers various data structures and operations for manipulating numerical data and time series. It is mainly popular for importing and analyzing data much easier. Pandas is fast and it has high-performance &amp;amp; productivity for users.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;pandas
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Advantages
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Fast and efficient for manipulating and analyzing data.&lt;/li&gt;
&lt;li&gt;Data from different file objects can be loaded.&lt;/li&gt;
&lt;li&gt;Easy handling of missing data (represented as NaN) in floating point as well as non-floating point data&lt;/li&gt;
&lt;li&gt;Size mutability: columns can be inserted and deleted from DataFrame and higher dimensional objects&lt;/li&gt;
&lt;li&gt;Data set merging and joining.&lt;/li&gt;
&lt;li&gt;Flexible reshaping and pivoting of data sets&lt;/li&gt;
&lt;li&gt;Provides time-series functionality.&lt;/li&gt;
&lt;li&gt;Powerful group by functionality for performing split-apply-combine operations on data sets. &lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;After the pandas has been installed into the system, you need to import the library. This module is generally imported as –&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="nn"&gt;pandas&lt;/span&gt; &lt;span class="k"&gt;as&lt;/span&gt; &lt;span class="n"&gt;pd&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Pandas generally provide two data structure for manipulating data, They are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Series&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;DataFrame&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
  </channel>
</rss>
