All of lore.kernel.org
 help / color / mirror / Atom feed
* development in python
@ 2019-05-12 17:05 Tomáš Roj
  2019-05-12 20:22 ` Yağmur Oymak
  2019-05-13  0:52 ` Valdis Klētnieks
  0 siblings, 2 replies; 6+ messages in thread
From: Tomáš Roj @ 2019-05-12 17:05 UTC (permalink / raw)
  To: kernelnewbies


[-- Attachment #1.1: Type: text/plain, Size: 166 bytes --]

Hi everybody,

I know that everything in the kernel is written in C but are there also
some fields where can I code in Python? I mean some websites etc.

thanks,
Tom

[-- Attachment #1.2: Type: text/html, Size: 245 bytes --]

[-- Attachment #2: Type: text/plain, Size: 170 bytes --]

_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: development in python
  2019-05-12 17:05 development in python Tomáš Roj
@ 2019-05-12 20:22 ` Yağmur Oymak
  2019-05-13  0:52 ` Valdis Klētnieks
  1 sibling, 0 replies; 6+ messages in thread
From: Yağmur Oymak @ 2019-05-12 20:22 UTC (permalink / raw)
  To: Tomáš Roj, kernelnewbies

On Sun, 2019-05-12 at 19:05 +0200, Tomáš Roj wrote:
> Hi everybody,
> 
> I know that everything in the kernel is written in C but are there
> also some fields where can I code in Python? I mean some websites
> etc.
> 
> thanks,
> Tom
> _______________________________________________
> Kernelnewbies mailing list
> Kernelnewbies@kernelnewbies.org
> https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

Hey Tom,

There are quite a few Python scripts in the kernel source tree. Most of
them seems to reside under `tools/perf/`. I'm not familiar with perf
tools, maybe someone familiar could help.

By running `find . -name '*.py'` in the source tree, you can find lots
of Python scripts here and there as well. Hope that helps!

-- 
- YO


_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: development in python
  2019-05-12 17:05 development in python Tomáš Roj
  2019-05-12 20:22 ` Yağmur Oymak
@ 2019-05-13  0:52 ` Valdis Klētnieks
  2019-05-14 15:04   ` Amit Kumar
  1 sibling, 1 reply; 6+ messages in thread
From: Valdis Klētnieks @ 2019-05-13  0:52 UTC (permalink / raw)
  To: Tom�\x161 Roj; +Cc: kernelnewbies


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1: Type: text/plain; charset=utf-8, Size: 434 bytes --]

On Sun, 12 May 2019 19:05:29 +0200, TomáÅ¡ Roj said:

> I know that everything in the kernel is written in C but are there also
> some fields where can I code in Python? I mean some websites etc.

Not a whole lot of Python being used for building websites.  Now if you meant
websites that have projects written in Python, I'd suggest giving GitHub
and SourceForge a poke, I'm sure you'll find plenty of Python based projects.

[-- Attachment #1.2: Type: application/pgp-signature, Size: 832 bytes --]

[-- Attachment #2: Type: text/plain, Size: 170 bytes --]

_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: development in python
  2019-05-13  0:52 ` Valdis Klētnieks
@ 2019-05-14 15:04   ` Amit Kumar
  2019-06-08  4:03     ` Chinmay V S
  0 siblings, 1 reply; 6+ messages in thread
From: Amit Kumar @ 2019-05-14 15:04 UTC (permalink / raw)
  To: Valdis Kletnieks; +Cc: Tomá 1 Roj, Kernel Newbies


[-- Attachment #1.1: Type: text/plain, Size: 942 bytes --]

Hi,
I am watching
https://m.youtube.com/watch?v=pqn5hIrz3A8

GDB debugger extension is written in python. So you may work to debug the
kernel and also write extensions if needed.

Regards,
Amit Kumar



On Mon, 13 May 2019, 6:22 am Valdis Klētnieks, <valdis.kletnieks@vt.edu>
wrote:

> On Sun, 12 May 2019 19:05:29 +0200, Tomلإ، Roj said:
>
> > I know that everything in the kernel is written in C but are there also
> > some fields where can I code in Python? I mean some websites etc.
>
> Not a whole lot of Python being used for building websites.  Now if you
> meant
> websites that have projects written in Python, I'd suggest giving GitHub
> and SourceForge a poke, I'm sure you'll find plenty of Python based
> projects.
> _______________________________________________
> Kernelnewbies mailing list
> Kernelnewbies@kernelnewbies.org
> https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
>

[-- Attachment #1.2: Type: text/html, Size: 1698 bytes --]

[-- Attachment #2: Type: text/plain, Size: 170 bytes --]

_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: development in python
  2019-05-14 15:04   ` Amit Kumar
@ 2019-06-08  4:03     ` Chinmay V S
  2019-06-08  8:35       ` Tomáš Roj
  0 siblings, 1 reply; 6+ messages in thread
From: Chinmay V S @ 2019-06-08  4:03 UTC (permalink / raw)
  To: Amit Kumar; +Cc: Tomá 1 Roj, Valdis Kletnieks, Kernel Newbies

...and then there is this

DRGN: A kernel debugger in Python
https://lwn.net/Articles/789641/

_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: development in python
  2019-06-08  4:03     ` Chinmay V S
@ 2019-06-08  8:35       ` Tomáš Roj
  0 siblings, 0 replies; 6+ messages in thread
From: Tomáš Roj @ 2019-06-08  8:35 UTC (permalink / raw)
  To: Chinmay V S; +Cc: Amit Kumar, Valdis Kletnieks, Kernel Newbies


[-- Attachment #1.1: Type: text/plain, Size: 505 bytes --]

Thanks, I'll check it out.

<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
Bez
virů. www.avast.com
<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

so 8. 6. 2019 v 6:04 odesílatel Chinmay V S <cvs268@gmail.com> napsal:

> ...and then there is this
>
> DRGN: A kernel debugger in Python
> https://lwn.net/Articles/789641/
>

[-- Attachment #1.2: Type: text/html, Size: 1493 bytes --]

[-- Attachment #2: Type: text/plain, Size: 170 bytes --]

_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-06-08  8:37 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-12 17:05 development in python Tomáš Roj
2019-05-12 20:22 ` Yağmur Oymak
2019-05-13  0:52 ` Valdis Klētnieks
2019-05-14 15:04   ` Amit Kumar
2019-06-08  4:03     ` Chinmay V S
2019-06-08  8:35       ` Tomáš Roj

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.