473,399 Members | 3,656 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

embedded python?

Hi,

I love Python! I've been using it for a couple of years now and have found
it to be a highly productive language. I evangelize it to my developer
friends and am probably responsible for the sale of at least 10 Alex
Martelli books. I am now in the fortunate position of being able to use
Python for a large project, and as such I have a question.

We are developing a distributed application running on approximately six
thousand nodes with somewhat limited hardware resources. Our hardware
target is 66 MHz ARM style processor with 16 Mb ram. We haven't selected
specific hardware yet; the hardware target is what we are trying to fit into
based on price constraints. Each device needs to be able to handle about 2
kbs (yes kilo, not mega) worth of network traffic.

I intend to a least prototype the system in Python. It would be great if we
could we could use Python in production by embedding it in the hardware. My
question is does anyone have any real world experience using python in an
embedded system? Two general categories of questions:

1) Are there any embedded Pythons out there? The nodes will likely be
running some form of Linux, but I don't particularly feel like devoting
resrouces to porting python. Any embedded Linuxes supporting Python?
Thoughts in general?

2) What are the resource requirements of Python? How much overhead do the
network related modules add? Obviously I'll be able to determine our
application's resource usage once the prototype is written, but I curious
about other people's past experience.

In short, is embedding python realistic?

Thoughts and comments are greatly appreciated!

Thanks,
Alex
Jul 18 '05 #1
13 2767
Alexander May wrote:
We are developing a distributed application running on approximately six
thousand nodes with somewhat limited hardware resources. Our hardware
target is 66 MHz ARM style processor with 16 Mb ram. We haven't selected
specific hardware yet; the hardware target is what we are trying to fit into
based on price constraints. Each device needs to be able to handle about 2
kbs (yes kilo, not mega) worth of network traffic.
You mention network, so presumably you have Ethernet (?) interfaces, and
plan on TCP or UDP, in which case you probably first need to consider
operating systems... Python does not automatically give you support for
networking, it just uses the underlying OS support.
I intend to a least prototype the system in Python. It would be great if we
could we could use Python in production by embedding it in the hardware. My
question is does anyone have any real world experience using python in an
embedded system?
Yes, there are a few people around here who have worked on embedded
Python systems, including me (at a past employer).
1) Are there any embedded Pythons out there? The nodes will likely be
running some form of Linux, but I don't particularly feel like devoting
resrouces to porting python. Any embedded Linuxes supporting Python?
Thoughts in general?
I doubt you'll need to do much "porting". Unless the Linices you
are considering are quite unusual, they ought to look a lot like any
other Linux, and Python may well work largely unchanged. Any required
changes could be in areas you don't need, anyway. Again, make sure
you consider right away exactly what OS resources, other than
networking, that you actually need. Multitasking? Signals? Audio?
GUI? etc...
2) What are the resource requirements of Python? How much overhead do the
network related modules add?
_socket.pyd is 49212 on Win32, and 124040 (probably with debugging
symbol table included?) on Linux, for Python 2.3.4. This includes
lots of doc-strings, though, so you can probably shrink it pretty
easily with a configurable setting during compilation.
In short, is embedding python realistic?


Definitely. We did it first on a 33MHz 386 (or 286?) compatible
board with only 1MB of flash and 1MB of RAM, and a tiny embedded
OS with no networking. That took a little slashing, such as removing
floating point support, but for the most part such things were
supported well by #defines during compilation. I think we based
that one on Python 1.5.2. (It was a few years ago.) Performance,
however, turned out to be inadequate and we decided we'd get
farther faster by keeping Python and switching to faster hardware
(than by ditching Python and doing it all in C).

The next version was a 100MHz 486 compatible with 32MB RAM and
Compact Flash as a hard drive. We picked 32MB flash as the target,
but used 64MB for prototyping and kept using it thereafter because
CF cards kept getting cheaper. This version ran vanilla Linux
with everything non-essential removed, and stock Python recompiled
from sources with, I believe, no changes. We stripped a few library
files from the resulting binary (e.g. unicodedata.so) to reduce the
footprint.

I know others have done similar things on hardware in this range,
but I don't know of anything freely available yet. Not sure that
would make sense, either, as everybody uses different hardware in
this sort of thing...

The main advice I can give you from this experience is that if
your hardware doesn't quite cut it, considering putting the money
into better hardware rather than immediately abandoning any thought
of using Python. On the other hand, you have 6K nodes, and we
had less than a few hundred, so the "economies of scale" just
weren't there as much in our case and development costs were
the largest consideration. In your case, saving $100 on each
unit might be more important than saving a few thousand hours
of development time... your call.

-Peter
Jul 18 '05 #2
> 1) Are there any embedded Pythons out there? The nodes will likely be
running some form of Linux, but I don't particularly feel like devoting
resrouces to porting python. Any embedded Linuxes supporting Python?
Thoughts in general?


Python runs fine on ARM-based PDAs running Linux -- see
http://www.vanille.de/projects/python.spy for info and a surprising amount
of ARM binaries. Note that the packages are in ipkg (.ipk) format. These
are similar to Debian's .deb files, and you can get at the contents using
tar a couple of times.

Jul 18 '05 #3
Hi,

Python (at least version 1.something) was running fine on my Psion 5mx
(36 Mhz ARM, 16MB RAM). No problem.
Jirka
Alexander May wrote:
Hi,

I love Python! I've been using it for a couple of years now and have found
it to be a highly productive language. I evangelize it to my developer
friends and am probably responsible for the sale of at least 10 Alex
Martelli books. I am now in the fortunate position of being able to use
Python for a large project, and as such I have a question.

We are developing a distributed application running on approximately six
thousand nodes with somewhat limited hardware resources. Our hardware
target is 66 MHz ARM style processor with 16 Mb ram. We haven't selected
specific hardware yet; the hardware target is what we are trying to fit into
based on price constraints. Each device needs to be able to handle about 2
kbs (yes kilo, not mega) worth of network traffic.

I intend to a least prototype the system in Python. It would be great if we
could we could use Python in production by embedding it in the hardware. My
question is does anyone have any real world experience using python in an
embedded system? Two general categories of questions:

1) Are there any embedded Pythons out there? The nodes will likely be
running some form of Linux, but I don't particularly feel like devoting
resrouces to porting python. Any embedded Linuxes supporting Python?
Thoughts in general?

2) What are the resource requirements of Python? How much overhead do the
network related modules add? Obviously I'll be able to determine our
application's resource usage once the prototype is written, but I curious
about other people's past experience.

In short, is embedding python realistic?

Thoughts and comments are greatly appreciated!

Thanks,
Alex

Jul 18 '05 #4
> You mention network, so presumably you have Ethernet (?) interfaces, and
plan on TCP or UDP...
This is the very start of the project, so very little is locked down. Most
likely we will have Ethernet interfaces and a standard protocol stack, but
we are exploring some mesh networking options such as zigbee.
I doubt you'll need to do much "porting". Unless the Linices you
are considering are quite unusual, they ought to look a lot like any
other Linux, and Python may well work largely unchanged.
One of my concerns is the lack of confidence I'd have in the build. Any
hard to diagnose error that arose could potentially be a logic error or an
interpreter bug (or a hardware bug). On a six thousand node distributed
system, I want to be quite sure of the foundation, and minimize possible
sources of error. I've never compiled python before. Is the test suite
comprehensive enough to justify a high level of confidence in a new build?

An unexplored suggestion was to use Jython and target an embedded chip
designed to accelerate Java bytecode. I know little about Jython or Java
chips, so I can't yet make any sense of this idea.
... rather than immediately abandoning any thought
of using Python.
No chance of that! I agree that the productivity benefit is a very strong
incentive. We are price constrained per unit, so the hardware can't get too
expensive. Your experience is encouraging.in that regards.

Thanks for the info,
Alex
"Peter Hansen" <pe***@engcorp.com> wrote in message
news:Rv********************@powergate.ca... Alexander May wrote:
We are developing a distributed application running on approximately six
thousand nodes with somewhat limited hardware resources. Our hardware
target is 66 MHz ARM style processor with 16 Mb ram. We haven't selected specific hardware yet; the hardware target is what we are trying to fit into based on price constraints. Each device needs to be able to handle about 2 kbs (yes kilo, not mega) worth of network traffic.


You mention network, so presumably you have Ethernet (?) interfaces, and
plan on TCP or UDP, in which case you probably first need to consider
operating systems... Python does not automatically give you support for
networking, it just uses the underlying OS support.
I intend to a least prototype the system in Python. It would be great if we could we could use Python in production by embedding it in the hardware. My question is does anyone have any real world experience using python in an embedded system?


Yes, there are a few people around here who have worked on embedded
Python systems, including me (at a past employer).
1) Are there any embedded Pythons out there? The nodes will likely be
running some form of Linux, but I don't particularly feel like devoting
resrouces to porting python. Any embedded Linuxes supporting Python?
Thoughts in general?


I doubt you'll need to do much "porting". Unless the Linices you
are considering are quite unusual, they ought to look a lot like any
other Linux, and Python may well work largely unchanged. Any required
changes could be in areas you don't need, anyway. Again, make sure
you consider right away exactly what OS resources, other than
networking, that you actually need. Multitasking? Signals? Audio?
GUI? etc...
2) What are the resource requirements of Python? How much overhead do the network related modules add?


_socket.pyd is 49212 on Win32, and 124040 (probably with debugging
symbol table included?) on Linux, for Python 2.3.4. This includes
lots of doc-strings, though, so you can probably shrink it pretty
easily with a configurable setting during compilation.
In short, is embedding python realistic?


Definitely. We did it first on a 33MHz 386 (or 286?) compatible
board with only 1MB of flash and 1MB of RAM, and a tiny embedded
OS with no networking. That took a little slashing, such as removing
floating point support, but for the most part such things were
supported well by #defines during compilation. I think we based
that one on Python 1.5.2. (It was a few years ago.) Performance,
however, turned out to be inadequate and we decided we'd get
farther faster by keeping Python and switching to faster hardware
(than by ditching Python and doing it all in C).

The next version was a 100MHz 486 compatible with 32MB RAM and
Compact Flash as a hard drive. We picked 32MB flash as the target,
but used 64MB for prototyping and kept using it thereafter because
CF cards kept getting cheaper. This version ran vanilla Linux
with everything non-essential removed, and stock Python recompiled
from sources with, I believe, no changes. We stripped a few library
files from the resulting binary (e.g. unicodedata.so) to reduce the
footprint.

I know others have done similar things on hardware in this range,
but I don't know of anything freely available yet. Not sure that
would make sense, either, as everybody uses different hardware in
this sort of thing...

The main advice I can give you from this experience is that if
your hardware doesn't quite cut it, considering putting the money
into better hardware rather than immediately abandoning any thought
of using Python. On the other hand, you have 6K nodes, and we
had less than a few hundred, so the "economies of scale" just
weren't there as much in our case and development costs were
the largest consideration. In your case, saving $100 on each
unit might be more important than saving a few thousand hours
of development time... your call.

-Peter

Jul 18 '05 #5
Thanks. Have you had good experiences with this distro?

I also found this distro linked from riverbank's defunct distro. Do you
know if this continuation of that distro, or an entirely new one?

Alex



"Christopher T King" <sq******@WPI.EDU> wrote in message
news:Pi**************************************@ccc7 .wpi.edu...
1) Are there any embedded Pythons out there? The nodes will likely be
running some form of Linux, but I don't particularly feel like devoting
resrouces to porting python. Any embedded Linuxes supporting Python?
Thoughts in general?


Python runs fine on ARM-based PDAs running Linux -- see
http://www.vanille.de/projects/python.spy for info and a surprising amount
of ARM binaries. Note that the packages are in ipkg (.ipk) format. These
are similar to Debian's .deb files, and you can get at the contents using
tar a couple of times.

Jul 18 '05 #6
PS:
I doubt you'll need to do much "porting". Unless the Linices you
are considering are quite unusual, they ought to look a lot like any
other Linux, and Python may well work largely unchanged.
from http://www.vanille.de/projects/python.spy (from Christopher T King's
post)

"You won't find many Python distributions for arm-linux, because Python is
pretty finnicky when it comes to cross-compiling. The build process of
Python compiles a core part of it (the parser generator pgen) and tries to
execute that later in the build process. This - of course - doesn't work for
cross compiling. My patches to the Python build scripts are available @
sourceforge and are likely to be included into the main Python tree."

-----

Thoughts?




"Peter Hansen" <pe***@engcorp.com> wrote in message
news:Rv********************@powergate.ca... Alexander May wrote:
We are developing a distributed application running on approximately six
thousand nodes with somewhat limited hardware resources. Our hardware
target is 66 MHz ARM style processor with 16 Mb ram. We haven't selected specific hardware yet; the hardware target is what we are trying to fit into based on price constraints. Each device needs to be able to handle about 2 kbs (yes kilo, not mega) worth of network traffic.


You mention network, so presumably you have Ethernet (?) interfaces, and
plan on TCP or UDP, in which case you probably first need to consider
operating systems... Python does not automatically give you support for
networking, it just uses the underlying OS support.
I intend to a least prototype the system in Python. It would be great if we could we could use Python in production by embedding it in the hardware. My question is does anyone have any real world experience using python in an embedded system?


Yes, there are a few people around here who have worked on embedded
Python systems, including me (at a past employer).
1) Are there any embedded Pythons out there? The nodes will likely be
running some form of Linux, but I don't particularly feel like devoting
resrouces to porting python. Any embedded Linuxes supporting Python?
Thoughts in general?


I doubt you'll need to do much "porting". Unless the Linices you
are considering are quite unusual, they ought to look a lot like any
other Linux, and Python may well work largely unchanged. Any required
changes could be in areas you don't need, anyway. Again, make sure
you consider right away exactly what OS resources, other than
networking, that you actually need. Multitasking? Signals? Audio?
GUI? etc...
2) What are the resource requirements of Python? How much overhead do the network related modules add?


_socket.pyd is 49212 on Win32, and 124040 (probably with debugging
symbol table included?) on Linux, for Python 2.3.4. This includes
lots of doc-strings, though, so you can probably shrink it pretty
easily with a configurable setting during compilation.
In short, is embedding python realistic?


Definitely. We did it first on a 33MHz 386 (or 286?) compatible
board with only 1MB of flash and 1MB of RAM, and a tiny embedded
OS with no networking. That took a little slashing, such as removing
floating point support, but for the most part such things were
supported well by #defines during compilation. I think we based
that one on Python 1.5.2. (It was a few years ago.) Performance,
however, turned out to be inadequate and we decided we'd get
farther faster by keeping Python and switching to faster hardware
(than by ditching Python and doing it all in C).

The next version was a 100MHz 486 compatible with 32MB RAM and
Compact Flash as a hard drive. We picked 32MB flash as the target,
but used 64MB for prototyping and kept using it thereafter because
CF cards kept getting cheaper. This version ran vanilla Linux
with everything non-essential removed, and stock Python recompiled
from sources with, I believe, no changes. We stripped a few library
files from the resulting binary (e.g. unicodedata.so) to reduce the
footprint.

I know others have done similar things on hardware in this range,
but I don't know of anything freely available yet. Not sure that
would make sense, either, as everybody uses different hardware in
this sort of thing...

The main advice I can give you from this experience is that if
your hardware doesn't quite cut it, considering putting the money
into better hardware rather than immediately abandoning any thought
of using Python. On the other hand, you have 6K nodes, and we
had less than a few hundred, so the "economies of scale" just
weren't there as much in our case and development costs were
the largest consideration. In your case, saving $100 on each
unit might be more important than saving a few thousand hours
of development time... your call.

-Peter

Jul 18 '05 #7
If you prototype in Python and find the performance to be inadaquate, a
good option might be Pyrex
<http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/>.

On Tue, Jun 29, 2004 at 03:20:45PM +0000, Alexander May wrote:
Hi,

I love Python! I've been using it for a couple of years now and have found
it to be a highly productive language. I evangelize it to my developer
friends and am probably responsible for the sale of at least 10 Alex
Martelli books. I am now in the fortunate position of being able to use
Python for a large project, and as such I have a question.

We are developing a distributed application running on approximately six
thousand nodes with somewhat limited hardware resources. Our hardware
target is 66 MHz ARM style processor with 16 Mb ram. We haven't selected
specific hardware yet; the hardware target is what we are trying to fit into
based on price constraints. Each device needs to be able to handle about 2
kbs (yes kilo, not mega) worth of network traffic.

...

In short, is embedding python realistic?

Thoughts and comments are greatly appreciated!

Thanks,
Alex


Jul 18 '05 #8
Alexander May wrote:
Peter Hansen recklessly declaimed(*):
I doubt you'll need to do much "porting". Unless the Linices you
are considering are quite unusual, they ought to look a lot like any
other Linux, and Python may well work largely unchanged.


from http://www.vanille.de/projects/python.spy (from Christopher T King's
post)

"You won't find many Python distributions for arm-linux, because Python is
pretty finnicky when it comes to cross-compiling. The build process of
Python compiles a core part of it (the parser generator pgen) and tries to
execute that later in the build process. This - of course - doesn't work for
cross compiling. My patches to the Python build scripts are available @
sourceforge and are likely to be included into the main Python tree."

Thoughts?


Yeah, my Linux experience is limited to x86 systems, and my definition
of "unusual" therefore includes anything outside of that. Sorry. :-(

-Peter
Jul 18 '05 #9
Alexander May wrote:
One of my concerns is the lack of confidence I'd have in the build. Any
hard to diagnose error that arose could potentially be a logic error or an
interpreter bug (or a hardware bug). On a six thousand node distributed
system, I want to be quite sure of the foundation, and minimize possible
sources of error. I've never compiled python before. Is the test suite
comprehensive enough to justify a high level of confidence in a new build?
You can't necessarily have confidence in someone else's build either,
unless it's very widely used, and used in the same way yours will be
used. Otherwise you are likely to use functionality that others do
not, and you may still encounter problems.

The test suite is extensive. Personally, I would have pretty high
confidence in any working port, after some basic testing with sample
code that reflects the sort of thing my application needs to do.

I am, however, pretty used to tracking down compiler bugs and such,
so I'm a little blase about that sort of thing.
An unexplored suggestion was to use Jython and target an embedded chip
designed to accelerate Java bytecode. I know little about Jython or Java
chips, so I can't yet make any sense of this idea.


My only comment on that is that mixing many different technologies
together will increase the complexity exponentially. I'd try to
avoid it, at the least for the prototype. Note also that I'm a very
YAGNI(*) sort now, what with Extreme Programming ideas having seeped
into my head so far. I tend to believe I'll find ways around any
issues that arise, and generally do...

-Peter
Jul 18 '05 #10
> You can't necessarily have confidence in someone else's build either,
unless it's very widely used, and used in the same way yours will be
used. Otherwise you are likely to use functionality that others do
not, and you may still encounter problems.
Good point.
An unexplored suggestion was to use Jython and target an embedded chip
designed to accelerate Java bytecode. I know little about Jython or Java chips, so I can't yet make any sense of this idea.


My only comment on that is that mixing many different technologies
together will increase the complexity exponentially. I'd try to
avoid it, at the least for the prototype. Note also that I'm a very


I wasn't terribly fond of it either and had not invested any time exploring
it. Still I was curious on this newsgroups experience.
Note also that I'm a very
YAGNI(*) sort now
I'm just the lazy sort, which seems to lead to the same result.

Thanks again,
Alex

"Peter Hansen" <pe***@engcorp.com> wrote in message
news:ju********************@powergate.ca... Alexander May wrote:
One of my concerns is the lack of confidence I'd have in the build. Any
hard to diagnose error that arose could potentially be a logic error or an interpreter bug (or a hardware bug). On a six thousand node distributed
system, I want to be quite sure of the foundation, and minimize possible
sources of error. I've never compiled python before. Is the test suite comprehensive enough to justify a high level of confidence in a new build?

You can't necessarily have confidence in someone else's build either,
unless it's very widely used, and used in the same way yours will be
used. Otherwise you are likely to use functionality that others do
not, and you may still encounter problems.

The test suite is extensive. Personally, I would have pretty high
confidence in any working port, after some basic testing with sample
code that reflects the sort of thing my application needs to do.

I am, however, pretty used to tracking down compiler bugs and such,
so I'm a little blase about that sort of thing.
An unexplored suggestion was to use Jython and target an embedded chip
designed to accelerate Java bytecode. I know little about Jython or

Java chips, so I can't yet make any sense of this idea.


My only comment on that is that mixing many different technologies
together will increase the complexity exponentially. I'd try to
avoid it, at the least for the prototype. Note also that I'm a very
YAGNI(*) sort now, what with Extreme Programming ideas having seeped
into my head so far. I tend to believe I'll find ways around any
issues that arise, and generally do...

-Peter

Jul 18 '05 #11
What distro are you running?
Thanks,
Alex
"Lars" <la**@post.cz> wrote in message
news:cb**********@new-usenet.uk.sun.com...
Hi,

Python (at least version 1.something) was running fine on my Psion 5mx
(36 Mhz ARM, 16MB RAM). No problem.
Jirka
Alexander May wrote:
Hi,

I love Python! I've been using it for a couple of years now and have found it to be a highly productive language. I evangelize it to my developer
friends and am probably responsible for the sale of at least 10 Alex
Martelli books. I am now in the fortunate position of being able to use
Python for a large project, and as such I have a question.

We are developing a distributed application running on approximately six
thousand nodes with somewhat limited hardware resources. Our hardware
target is 66 MHz ARM style processor with 16 Mb ram. We haven't selected specific hardware yet; the hardware target is what we are trying to fit into based on price constraints. Each device needs to be able to handle about 2 kbs (yes kilo, not mega) worth of network traffic.

I intend to a least prototype the system in Python. It would be great if we could we could use Python in production by embedding it in the hardware. My question is does anyone have any real world experience using python in an embedded system? Two general categories of questions:

1) Are there any embedded Pythons out there? The nodes will likely be
running some form of Linux, but I don't particularly feel like devoting
resrouces to porting python. Any embedded Linuxes supporting Python?
Thoughts in general?

2) What are the resource requirements of Python? How much overhead do the network related modules add? Obviously I'll be able to determine our
application's resource usage once the prototype is written, but I curious about other people's past experience.

In short, is embedding python realistic?

Thoughts and comments are greatly appreciated!

Thanks,
Alex

Jul 18 '05 #12
"Alexander May" <al****************@comcast.net> wrote in message
news:55iEc.112810$2i5.78663@attbi_s52...
PS:
I doubt you'll need to do much "porting". Unless the Linices you
are considering are quite unusual, they ought to look a lot like any
other Linux, and Python may well work largely unchanged.
from http://www.vanille.de/projects/python.spy (from Christopher T King's
post)

"You won't find many Python distributions for arm-linux, because Python is
pretty finnicky when it comes to cross-compiling. The build process of
Python compiles a core part of it (the parser generator pgen) and tries to
execute that later in the build process. This - of course - doesn't work

for cross compiling. My patches to the Python build scripts are available @
sourceforge and are likely to be included into the main Python tree."


Don't worry about this. I've ported Python to a 68K board (8 meg ram, 4 meg
flash) running uClinux. That was a squeeze, due to uClinux limitations I had
to statically link in libxml2, libxslt and other goodies I needed.

It worked, and the build process was easy to tidy up (once you know how it
works). I cross compiled from RH9 (386) using gcc tools. Put the binaries on
NFS and tested from the 68K box. Later, burned a flash rom image with the
binaries.

Jul 18 '05 #13
On Tue, 29 Jun 2004, Alexander May wrote:
Thanks. Have you had good experiences with this distro?
I've used in on my Zaurus under the OpenZaurus Linux build (with which
it's included), and haven't had any problems, but I haven't used it that
extensively, either.
I also found this distro linked from riverbank's defunct distro. Do you
know if this continuation of that distro, or an entirely new one?


I'm not sure. My guess is it's not, since it seems to have been around
independently for quite a few years now (the visible news items go back to
2002).

Jul 18 '05 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: quadric | last post by:
Hi, I have an application that has an embedded/extended Python interpreter. I need to add database capabilities and for reasons to lengthy to explain in this email, also require an embedded...
12
by: Brandon | last post by:
Java seems to have taken off as the platform and language of choice for many embedded devices. Would it be feasible for Python(perhaps running on an embedded version of Linux) to act in such a...
4
by: Dennis Clark | last post by:
Hi all, I've looked through the threads about embedded Python that are a year and a half old, and I thought that I'd ask this question now to see if anything has changed. Has anyone, or is...
3
by: Godzilla | last post by:
Has anyone install Python on Windows XP Embedded? We wish to evaluate the possible solution of installing Python with WinXPE on a PC/104 plus module. Thank you.
20
by: Jack | last post by:
Is there a Python packaging that is specifically for embedded systems? ie, very small and configurable so the user gets to select what modules to install? For Linux-based embedded systems in...
2
by: Carl J. Van Arsdall | last post by:
I'm aware of a couple python projects for embedded systems. I am currently considering using Python on an embedded platform to develop a simple application as a personal project, mostly to see if...
3
by: ycollet | last post by:
Hello, I've written a C embedded application. I want to open a python gui application in my C program but when I do : PyRun_String( "import gui.py", file_input, pDictionary, pDictionary ); ...
0
by: Gabriel Genellina | last post by:
En Tue, 03 Jun 2008 16:58:12 -0300, Pau Freixes <pfreixes@milnou.net> escribió: So the above code corresponds to the standalone version - what about the embedded version? Are you sure it is...
4
by: Chris8Boyd | last post by:
I am embedding Python in a MSVC++ (2005) application. The application creates some environment and then launches a Python script that will call some functions exported from the MSVC++ application....
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.